Edgewall Software

Changes between Version 35 and Version 36 of TimeTracking


Ignore:
Timestamp:
Feb 20, 2006, 2:34:31 AM (18 years ago)
Author:
steffenp@…
Comment:

Added patch for 0.9.4

Legend:

Unmodified
Added
Removed
Modified
  • TimeTracking

    v35 v36  
    1010This patch is 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].
    1111
     12----
     13
    1214== Extending the data model ==
    1315
     16This patch is for Trac version 0.8.
     17
    1418A patch has been posted to #1005 that adds two new fields to the ticket table, "Planned work" and "Actual work", that can be edited in the ticket view. It also extends the Roadmap with a progress bar that displays how much work has been done and how much remains.
    1519
     20----
     21
    1622== Using custom ticket fields ==
     23
     24This patch is for Trac version 0.9.x.
    1725
    1826A less invasive way to add time tracking is through TracTicketsCustomFields. Custom fields are meant as an extension mechanism that allows to store additional data with tickets without changing the underlying data model.
     
    3745===== Patching Trac =====
    3846
    39 Download and apply the [http://steffenpingel.de/patches/trac/trac-time-tracking-0.9.3.diff time tracking patch]:
     47Download and apply the [http://steffenpingel.de/patches/trac/trac-time-tracking-0.9.4.diff time tracking patch]:
    4048
    4149 * Download and unzip/untar Trac
    4250 * Run patch from the created trac-0.9 directory:
    4351{{{
    44 patch -p0 < trac-time-tracking-0.9.3.diff
     52patch -p0 < trac-time-tracking-0.9.4.diff
    4553}}}
    4654
     
    164172This closes ticket #1, increases the time spent by 1 hour and decreases the remaining time by 1 hour.
    165173
     174
     175===== Changelog =====
     176
     177Patches for older version of Trac can be found at http://steffenpingel.de/patches/trac/.
     178
     179''[http://steffenpingel.de/patches/trac/trac-time-tracking-0.9.4.diff 0.9.4]''
     180
     181 * The patch has been adapted for Trac 0.9.4
     182 * The difference between estimated and spent + remaining time is now displayed
     183 * The progress bar is now displayed when spent work is less than 1
     184
     185''[http://steffenpingel.de/patches/trac/trac-time-tracking-0.9.3.diff 0.9.3]''
     186
     187 * The patch has been adapted for Trac 0.9.3
     188
     189''[http://steffenpingel.de/patches/trac/trac-time-tracking-0.9.2.diff 0.9.2]''
     190
     191 * The patch has been adapted for Trac 0.9.2
     192
    166193----
    167194