Changes between Version 5 and Version 6 of TracSchedulerPlugin
- Timestamp:
- Nov 18, 2015, 8:55:18 AM (9 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
TracSchedulerPlugin
v5 v6 5 5 == Description 6 6 7 This plugin provides an extension point for trac plugin developers to manager their scheduled tasks. It polls register plugins, and run matched tasks like '''crontab''' in linux/unix.7 This plugin provides an extension point for Trac plugin developers to manage their scheduled tasks. It polls register plugins, and run matched tasks like '''crontab''' in Linux/Unix. 8 8 9 Features will be added to this plugin in next version:9 Features will be added to this plugin in the next version: 10 10 * support crontab format 11 11 12 See: '''ZoomQuiet''' ~ Collection KSPEG Trac hacking12 See: '''ZoomQuiet''' ~ Collection KSPEG Trac hacking 13 13 14 14 == Bugs/Feature Requests … … 24 24 == Download 25 25 26 Download the zipped source from [ download:tracschedulerplugin here].26 Download the zipped source from [export:tracschedulerplugin here]. 27 27 28 28 == Source 29 29 30 You can check out TracSchedulerPlugin from [ http://trac-hacks.org/svn/tracschedulerplugin here] using Subversion, or [source:tracschedulerplugin browse the source] with Trac.30 You can check out TracSchedulerPlugin from [/svn/tracschedulerplugin here] using Subversion, or [source:tracschedulerplugin browse the source] with Trac. 31 31 32 32 == Installation 33 33 34 You can install this software as normal Trac plugin .34 You can install this software as normal Trac plugin: 35 35 36 36 1. Uninstall Trac Scheduler if you have installed it before. 37 1. Change to the directory containing setup.py. 38 1. If you want to install this plugin globally, install this plugin to the Python path: 39 * python setup.py install 40 1. If you want to install this plugin to one Trac instance only: 41 * python setup.py bdist_egg 42 * copy the generated egg file to the trac instance's plugins directory 37 1. Change to the directory containing `setup.py`. 38 1. If you want to install this plugin globally, install this plugin to the Python path: `python setup.py install` 39 1. If you want to install this plugin to one Trac instance only: `python setup.py bdist_egg` and copy the generated egg file to the Trac instance's plugins directory: 43 40 {{{#!sh 44 41 cp dist/*.egg /srv/trac/env/plugins … … 70 67 rows = parent.queryDb(sqlString) 71 68 self.log.debug(rows) 72 73 69 }}} 74 70