Changes between Initial Version and Version 1 of Trac Timeline


Ignore:
Timestamp:
Jul 15, 2004, 7:52:56 PM (20 years ago)
Author:
trac
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Trac Timeline

    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 * '''Milestone ''' -- Milestone completed
     12
     13Each event entry provides a hyperlink to the specific event in question, and
     14in the case svn commit log messages, displays the commit message.
     15
     16== Subversion Commit Messages ==
     17It's important to note that WikiFormatting can be used in commit log messages,
     18including TracLinks.
     19
     20This allows developers hyperlink and refer to issue tickets, wikipages and files
     21directly when committing a patch to the repository.
     22
     23Example:
     24
     25{{{
     26 $ svn commit -m "Updated foo to bar. See FooBar. This fixes bug #42."
     27}}}
     28
     29This is a subtle but powerful feature.
     30
     31== RSS Support ==
     32The Timeline module supports subscribtion using RSS 2.0 syndication. To subscribe to project events, click the '''RSS Feed''' link in the navigation bar, or the orange XML icon at the bottom of the page. See TracRss for more information on RSS support in Trac.
     33
     34
     35----
     36See also: TracGuide, TracWiki, WikiFormatting