Changes between Version 7 and Version 8 of TimeTrackingPlugin


Ignore:
Timestamp:
Mar 23, 2016, 6:40:36 PM (8 years ago)
Author:
figaro
Comment:

Cosmetic changes

Legend:

Unmodified
Added
Removed
Modified
  • TimeTrackingPlugin

    v7 v8  
    66
    77This plugin supports time tracking by adding the following to Trac:
    8 * A ''Tasks'' !admin panel, where tasks can be created and assigned a time estimate.
    9 * A ''Log'' !admin panel, where users can log the time they spend on these tasks.
     8* A ''Tasks'' admin panel, where tasks can be created and assigned a time estimate.
     9* A ''Log'' admin panel, where users can log the time they spend on these tasks.
    1010* A new permission `TIME_TRACKING` that is required to use these panels.
    11 * Two new database tables (to store these tasks and log entries).
     11* Two new database tables to store these tasks and log entries.
    1212
    1313Trac's reporting module can be used to define various reports that summarize these tasks and log entries. For reporting purposes tasks can be grouped into ''projects'' and ''categories'', and log entries can record a ''location''.
     
    5555=== !WeekPlan
    5656
    57 Enable and register the ``TimeTrackingWeekPlanEventProvider`` in trac.ini under `[weekplan]` `event_providers`, and use the WeekPlanPlugin to display log entries. Specify the plan as `log:username`.
     57Enable and register the `TimeTrackingWeekPlanEventProvider` in your `trac.ini` file under `[weekplan] event_providers`, and use the WeekPlanPlugin to display log entries. Specify the plan as `log:username`.
    5858
    5959Example: `[[WeekPlan(plan=log:pinky|log:brain)]]`
     
    8181Installation of the plugin requires the usual step with `easy_install`:
    8282{{{#!sh
    83 easy_install http://trac-hacks.org/svn/timetrackingplugin/trunk
     83easy_install https://trac-hacks.org/svn/timetrackingplugin/trunk
    8484}}}
    8585
    86 Then enable it in Trac's plugin !admin page or in the `[components]` section in your `trac.ini` file:
     86Then enable it in Trac's plugin admin page or in your `trac.ini` file:
    8787{{{#!ini
    8888[components]
     
    9595}}}
    9696
    97 Assign the new `TIME_TRACKING` and `TIME_TRACKING_ADMIN` permissions to the appropriate Trac groups / users, for example in Trac's permission !admin page.
     97Assign the new `TIME_TRACKING` and `TIME_TRACKING_ADMIN` permissions to the appropriate Trac groups / users, for example in Trac's permission admin page.
    9898
    9999Create reports under ''View Tickets''. You can copy from the [browser:timetrackingplugin/trunk/docs/reports.txt example reports].