djblets.extensions.resources¶
-
class
ExtensionResource
(extension_manager)[source]¶ Bases:
djblets.webapi.resources.base.WebAPIResource
Provides information on installed extensions.
-
fields
= {u’class_name’: {u’type’: <type ‘str’>, u’description’: u’The class name for the extension.’}, u’installed’: {u’type’: <type ‘bool’>, u’description’: u’Whether or not the extension is installed.’}, u’can_enable’: {u’type’: <type ‘bool’>, u’description’: u’Whether or not the extension can be enabled.’}, u’loadable’: {u’type’: <type ‘bool’>, u’description’: u’Whether or not the extension is currently loadable. An extension may be installed but missing or may be broken due to a bug.’}, u’name’: {u’type’: <type ‘str’>, u’description’: u’The name of the extension.’}, u’author’: {u’type’: <type ‘str’>, u’description’: u’The author of the extension.’}, u’enabled’: {u’type’: <type ‘bool’>, u’description’: u’Whether or not the extension is enabled.’}, u’summary’: {u’type’: <type ‘str’>, u’description’: u”A summary of the extension’s functionality.”}, u’can_disable’: {u’type’: <type ‘bool’>, u’description’: u’Whether or not the extension can be disabled.’}, u’version’: {u’type’: <type ‘str’>, u’description’: u’The installed version of the extension.’}, u’author_url’: {u’type’: <type ‘str’>, u’description’: u”The author’s website.”}, u’load_error’: {u’type’: <type ‘str’>, u’description’: u’If the extension could not be loaded, this will contain any errors captured while trying to load.’}}[source]¶
-
get_list
(*args, **kwargs)[source]¶ Returns the list of known extensions.
Each extension in the list has been installed, but may not be enabled.
-
update
(*args, **kwargs)[source]¶ Updates the state of the extension.
If
enabled
is true, then the extension will be enabled, if it is not already. If false, it will be disabled.
Returns links to the resources provided by the extension.
The result should be a dictionary of link names to a dictionary of information. The information should contain:
- ‘method’ - The HTTP method
- ‘href’ - The URL
- ‘title’ - The title of the link (optional)
- ‘resource’ - The WebAPIResource instance
- ‘list-resource’ - True if this links to a list resource (optional)
-