Edgewall Software

Changes between Version 47 and Version 48 of TimeTracking


Ignore:
Timestamp:
Aug 23, 2006, 6:41:59 PM (18 years ago)
Author:
Russ AT acceleration.net
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • TimeTracking

    v47 v48  
    55Support for basic time tracking is an often request feature, but it does not look like it is going to be integrated into Trac any time soon. Please read #710 for further details. Still there are ways to enhance the ticket system with the desired functionality. This page is meant as an overview of working solutions and as a howto.
    66
    7 So far two solutions are available that are described below, both modify the Trac's source code:
    8 
     7So far three solutions are available that are described below, the first is a plugin and the second two modify Trac's source code:
     8 
     9 * Using the [http://trac-hacks.org/wiki/TimingAndEstimationPlugin Timing And Estimation Plugin] (for Trac 0.10)
    910 * Using custom ticket fields (for Trac 0.9.x)
    1011 * Extending the data model  (for Trac 0.8)
    1112
    1213The patches are unofficial, please do not report bugs through the Trac ticket system. Instead contact the trac user mailing list or [mailto:steffenp@gmx.de Steffen Pingel].
     14
     15----
     16
     17== Trac 0.10 (using a Trac Plugin) ==
     18The [http://trac-hacks.org/wiki/TimingAndEstimationPlugin Timing And Estimation Plugin] works much the same as the Trac .9.x custom fields approach, accept that it should be easier to install and provides a bit more in depth reporting.  It also contains a ticket change daemon that will allow you to add time and have it sum the total up.  The [http://trac-hacks.org/wiki/TimingAndEstimationPlugin project page] contains links to a [https://216.155.103.1:50219/projects/TestForTimingAndEstimation demo version] so you can see it in action to decide if it is right for you , as well as bug reporting links.
    1319
    1420----