Edgewall Software

Changes between Initial Version and Version 1 of TracTimeline


Ignore:
Timestamp:
Mar 1, 2004, 10:53:34 PM (20 years ago)
Author:
anonymous
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • TracTimeline

    v1 v1  
     1= The Trac Timeline =
     2The timeline provides a historic view of the project in a simple report.
     3It lists all Trac events that have occured in chronological order, with a
     4brief description of each event and if applicable, the person responsible for
     5the change.
     6
     7The timeline lists the following type of events:
     8 * '''Wiki page events''' -- Creation and changes
     9 * '''Ticket events''' -- Creation and resolution/closing
     10 * '''Source code changes ''' -- Subversion commits
     11
     12Each event entry provides a hyperlink to the specific event in question, and
     13in the case svn commit log messages, displays the commit message.
     14
     15== Subversion Commit Messages ==
     16It's important to note that WikiFormatting can be used in commit log messages,
     17including TracLinks.
     18
     19This allows developers hyperlink and refer to issue tickets, wikipages and files
     20directly when committing a patch to the repository.
     21
     22Example:
     23
     24{{{ $ svn commit -m "Updated foo to bar. See FooBar. This fixes bug #42." }}}
     25
     26This is a subtle but powerful feature.
     27
     28
     29See also: TracGuide, TracWiki, WikiFormatting