Changes between Version 1 and Version 2 of TracChangeFileBiffPlugin


Ignore:
Timestamp:
Mar 29, 2015, 7:26:48 AM (9 years ago)
Author:
Tetsuya Morimoto
Comment:

suport gitignore style for pattern matching

Legend:

Unmodified
Added
Removed
Modified
  • TracChangeFileBiffPlugin

    v1 v2  
    3232filebiff.options =          ; will be set when you configure File Biff settings
    3333filebiff.size = 3           ; this option is used by TracMultiSelectBoxPlugin
     34filebiff.matching_pattern = fnmatch ; glob matching pattern (fnmatch or gitignore)
    3435}}}
    3536
     
    4344- Cc and Filename are configured multiple values separated by comma.
    4445- The glob pattern for Filename is allowed with [https://docs.python.org/2/library/fnmatch.html fnmatch module].
     46- The glob pattern for Filename is allowed
     47- The glob pattern is configurable in `filebiff.matching_pattern` of `[ticket-custom]`. The possible values are (default: `fnmatch`):
     48   - `fnmatch`: standard glob pattern by [fnmatch module](https://docs.python.org/2/library/fnmatch.html "fnmatch module").
     49   -  `gitignore`: gitignore sytle pattern by [pathspec library](https://pypi.python.org/pypi/pathspec/ "pathspec library").
     50 
    4551
    4652Added `[changefilebiff]` section after you configured File Biff settings like this.