Changes between Version 2 and Version 3 of TimelineCheckinFilterPlugin


Ignore:
Timestamp:
May 11, 2009, 10:04:08 PM (15 years ago)
Author:
Dave
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • TimelineCheckinFilterPlugin

    v2 v3  
    2323You can check out TimelineCheckinFilterPlugin from [http://trac-hacks.org/svn/timelinecheckinfilterplugin here] using Subversion, or [source:timelinecheckinfilterplugin browse the source] with Trac.
    2424
    25 == Example ==
     25== Requirements ==
     26 * Trac 0.11
     27 * Subversion repository.
    2628
    27 Coming soon...
     29Only actually tested on 0.11.1. Log a bug if it doesn't work in any other 0.11.x version.
     30
     31== Installation ==
     32 * Put the python file in the plugins directory of the trac environment (or in the global plugins directory).
     33 * Components changes:
     34  * Disable the basic trac component ChangesetModule.
     35  * Enable the component TimelineCheckinFilter
     36  * These changes can be done via the WebAdmin interface or by adding the following lines to trac.ini:
     37
     38{{{
     39[components]
     40trac.versioncontrol.web_ui.changeset.changesetmodule = disabled
     41TimelineCheckinFilter.* = enabled
     42}}}
     43
     44== Configuration ==
     45The following configuration can be added to trac.ini:
     46
     47{{{
     48[timeline-checkin-filter]
     49filter_paths = trunk:trunk, branch1:branches/branch1, proj2-trunk:project2/trunk, arbitrary-label:arbitrary/path
     50filter_users = username1, username2
     51}}}
    2852
    2953== Recent Changes ==