Changes between Version 5 and Version 6 of TracSchedulerPlugin


Ignore:
Timestamp:
Nov 18, 2015, 8:55:18 AM (8 years ago)
Author:
figaro
Comment:

Cosmetic changes

Legend:

Unmodified
Added
Removed
Modified
  • TracSchedulerPlugin

    v5 v6  
    55== Description
    66
    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.
     7This 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.
    88
    9 Features will be added to this plugin in next version:
     9Features will be added to this plugin in the next version:
    1010 * support crontab format
    1111
    12 See:'''ZoomQuiet''' ~ Collection KSPEG Trac hacking
     12See: '''ZoomQuiet''' ~ Collection KSPEG Trac hacking
    1313
    1414== Bugs/Feature Requests
     
    2424== Download
    2525
    26 Download the zipped source from [download:tracschedulerplugin here].
     26Download the zipped source from [export:tracschedulerplugin here].
    2727
    2828== Source
    2929
    30 You can check out TracSchedulerPlugin from [http://trac-hacks.org/svn/tracschedulerplugin here] using Subversion, or [source:tracschedulerplugin browse the source] with Trac.
     30You can check out TracSchedulerPlugin from [/svn/tracschedulerplugin here] using Subversion, or [source:tracschedulerplugin browse the source] with Trac.
    3131
    3232== Installation
    3333
    34 You can install this software as normal Trac plugin.
     34You can install this software as normal Trac plugin:
    3535
    3636 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:
    4340 {{{#!sh
    4441cp dist/*.egg /srv/trac/env/plugins
     
    7067        rows = parent.queryDb(sqlString)
    7168        self.log.debug(rows)
    72 
    7369}}}
    7470