['Development'] = Development/Plugins = We're sorry. not much docs yet. Plugins consist of a core part and ui parts for the various user-interfaces. Take a look at the blocklist plugin for an example. = Various random facts = * any "export_*" method in the core plugin is exposed as "plugin-name_*" in deluge.ui.client * the deluge.ui.client api is available to core plugins as "from deluge.plugins.coreclient import client" == Adding a status-field to core == * define a callback-function http://dev.deluge-torrent.org/browser/trunk/deluge/plugins/label/label/core.py?rev=3607#L356 * register that callback http://dev.deluge-torrent.org/browser/trunk/deluge/plugins/label/label/core.py?rev=3607#L74 == Adding a column to gtk-ui == * callback for cell : http://dev.deluge-torrent.org/browser/trunk/deluge/plugins/label/label/gtkui/__init__.py#L51 * register that callback : http://dev.deluge-torrent.org/browser/trunk/deluge/plugins/label/label/gtkui/__init__.py#L115