2007-07-06 00:57:33 +00:00
|
|
|
# An example plugin for use with Deluge
|
|
|
|
|
2007-07-20 21:07:55 +00:00
|
|
|
plugin_name = _("Scheduler") # The name of the plugin
|
2007-07-06 00:57:33 +00:00
|
|
|
plugin_author = "Lazka - updated by markybob" # The author's Name
|
|
|
|
plugin_version = "0.5.2" # The plugin's version number
|
2007-07-20 21:07:55 +00:00
|
|
|
plugin_description = _("Scheduler") # A description of the plugin
|
2007-07-06 00:57:33 +00:00
|
|
|
|
|
|
|
def deluge_init(deluge_path):
|
|
|
|
global path
|
|
|
|
path = deluge_path
|
|
|
|
|
|
|
|
|
|
|
|
from Scheduler.plugin import plugin_Scheduler
|
|
|
|
|
|
|
|
def enable(core, interface):
|
|
|
|
global path
|
|
|
|
return plugin_Scheduler(path, core, interface)
|