Changes between Initial Version and Version 1 of TracTimeline


Ignore:
Timestamp:
Jul 27, 2005, 1:38:22 PM (19 years ago)
Author:
trac
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • TracTimeline

    v1 v1  
     1= The Trac Timeline =
     2[[TracGuideToc]]
     3
     4The timeline provides a historic view of the project in a single report.
     5
     6It lists all Trac events that have occured in chronological order, a
     7brief description of each event and if applicable, the person responsible for
     8the change.
     9
     10The timeline lists these kinds of events:
     11 * '''Wiki page events''' -- Creation and changes
     12 * '''Ticket events''' -- Creation and resolution/closing
     13 * '''Source code changes ''' -- Subversion commits
     14 * '''Milestone ''' -- Milestone reached
     15
     16Each event entry provides a hyperlink to the specific event in question, and
     17in the case svn commit log messages, displays the commit message itself.
     18
     19== Subversion Commit Messages ==
     20It's important to note that WikiFormatting can be used in commit log messages,
     21including TracLinks.
     22
     23This allows developers hyperlink and refer to issue tickets, wikipages and files
     24directly when committing a patch to the repository.
     25
     26Example:
     27
     28{{{
     29 $ svn commit -m "Updated foo to bar. See FooBar. This fixes bug #42."
     30}}}
     31
     32This is a subtle but quite useful feature.
     33
     34== RSS Support ==
     35The 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.
     36
     37
     38----
     39See also: TracGuide, TracWiki, WikiFormatting, TracRss, TracNotification