Changes between Version 5 and Version 6 of TimeTrackingPlugin


Ignore:
Timestamp:
Jun 16, 2015, 9:45:31 AM (9 years ago)
Author:
figaro
Comment:

Cosmetic changes

Legend:

Unmodified
Added
Removed
Modified
  • TimeTrackingPlugin

    v5 v6  
    1515Tasks are created and estimated per ''year''.
    1616
    17 (There is ''no'' formal connection between tasks and tickets. Informally wiki-links to tickets can be entered in the task or log descriptions.)
     17There is ''no'' formal connection between tasks and tickets. Informally wiki-links to tickets can be entered in the task or log descriptions.
    1818
    1919Optional:
     
    2323=== Screenshots
    2424
    25 The tasks and estimation panel (rows link to ''Edit Task'' mode):[[BR]]
     25The tasks and estimation panel (rows link to ''Edit Task'' mode):
     26
    2627[[Image(Tasks-Panel.png)]]
    2728
    28 The time logging panel (rows link to ''Edit Log Entry'' mode):[[BR]]
     29The time logging panel (rows link to ''Edit Log Entry'' mode):
     30
    2931[[Image(Log-Panel.png)]]
    3032
    31 One of many possible reports:[[BR]]
     33One of many possible reports:
     34
    3235[[Image(Example-Report.png)]]
    3336
    34 The charts macro:[[BR]]
     37The charts macro:
     38
    3539[[Image(Example-Chart.png)]]
    36 
    37 === Configuration
    38 
    39 Optionally you can change some configuration options in trac.ini to hide or rename certain fields. The defaults are:
    40 {{{#!ini
    41 [timetracking]
    42 year = True
    43 location = True
    44 location.label = Location
    45 category.label = Category
    46 project.label = Project
    47 }}}
    4840
    4941=== Charts
     
    7365
    7466If you have any issues, create a
    75 [http://trac-hacks.org/newticket?component=TimeTrackingPlugin&owner=lucid new ticket].
     67[/newticket?component=TimeTrackingPlugin new ticket].
     68
     69[[TicketQuery(component=TimeTrackingPlugin&group=type,format=progress)]]
    7670
    7771== Download
     
    8579== Installation
    8680
    87 Installation of the plugin requires the usual step, e.g. easy_install `http://trac-hacks.org/svn/timetrackingplugin/trunk` and enable it in Trac's plugin !admin page or by adding `timetracking.* = enabled` to the `[components]` section in trac.ini.
     81Installation of the plugin requires the usual step with `easy_install`:
     82{{{#!sh
     83easy_install http://trac-hacks.org/svn/timetrackingplugin/trunk
     84}}}
    8885
    89 A database upgrade will be required as usual (`trac-admin path-to-your-trac-environment upgrade`).
     86Then enable it in Trac's plugin !admin page or in the `[components]` section in your `trac.ini` file:
     87{{{#!ini
     88[components]
     89timetracking.* = enabled
     90}}}
    9091
    91 Assign the new `TIME_TRACKING` and `TIME_TRACKING_ADMIN` permissions to the appropriate Trac groups / users (e.g. in Trac's permission !admin page).
     92A database upgrade will be required as usual:
     93{{{#!sh
     94trac-admin path-to-your-trac-environment upgrade
     95}}}
     96
     97Assign the new `TIME_TRACKING` and `TIME_TRACKING_ADMIN` permissions to the appropriate Trac groups / users, for example in Trac's permission !admin page.
    9298
    9399Create reports under ''View Tickets''. You can copy from the [browser:timetrackingplugin/trunk/docs/reports.txt example reports].
     100
     101== Configuration
     102
     103Optionally you can change some configuration options in your `trac.ini` file to hide or rename certain fields. The defaults are:
     104{{{#!ini
     105[timetracking]
     106year = True
     107location = True
     108location.label = Location
     109category.label = Category
     110project.label = Project
     111}}}
    94112
    95113== Recent Changes