Changes between Version 42 and Version 43 of CodeTagsPlugin


Ignore:
Timestamp:
Mar 25, 2015, 4:23:35 PM (9 years ago)
Author:
figaro
Comment:

Cosmetic changes

Legend:

Unmodified
Added
Removed
Modified
  • CodeTagsPlugin

    v42 v43  
    1 = A plugin for displaying code tags (`XXX`, `FIXME`, `TODO`, etc.) =
     1= A plugin for displaying code tags (`XXX`, `FIXME`, `TODO`, etc.)
    22
    33Demo [http://developer.wz2100.net/codetags here], [http://git.mortis.eu/codetags.git git repository].
    4 Since I cannot find any documentation directly I just wanted to tell you people that you need a subdirectory named cache thats writeable by your trac to make this work. Oh and dont wonder that it takes so much time the first time used ;). Also don't forget to grant the CODETAGS_VIEW permission.
     4Since I cannot find any documentation directly I want to point out that you need a subdirectory named cache thats writeable by your Trac to make this work. This takes some time in the first time used. Also don't forget to grant the `CODETAGS_VIEW` permission.
    55
    6 To enable in the trac.ini:
     6To enable in the `trac.ini` file:
    77{{{
    88#!ini
     
    1111}}}
    1212
    13 Additional configuration options in trac.ini:
     13Additional configuration options can be added to the `trac.ini` file:
    1414{{{
    1515#!ini
     
    2020}}}
    2121
    22 {{{scan_files}}} allows you to define specific file types to scan (default: *) [[br]]
    23 {{{scan_folders}}} specifies which directories within the repository to scan (default: *) [[br]]
    24 {{{exclude_folders}}} specifies directories that are subdirectories of {{{scan_folders}}} but don't need to be scanned [[br]]
    25 {{{exclude_files}}} specifies files that shouldn't be scanned even though they're included by scan_files [[br]]
    26 {{{tags}}} allows you to specify what tags to locate, though only the defaults are colored at all. (default: XXX, TODO, FIXME) [[br]]
     22 {{{scan_files}}} :: allows you to define specific file types to scan (default: *)
     23 {{{scan_folders}}} :: specifies which directories within the repository to scan (default: *) [[br]]
     24 {{{exclude_folders}}} :: specifies directories that are subdirectories of {{{scan_folders}}} but don't need to be scanned [[br]]
     25 {{{exclude_files}}} :: specifies files that shouldn't be scanned even though they're included by scan_files [[br]]
     26 {{{tags}}} :: allows you to specify what tags to locate, though only the defaults are colored at all. (default: XXX, TODO, FIXME) [[br]]
    2727
    2828By default, this plugin doesn't ignore binary files. If you use svn/trac in a web-dev environment, this is a pain, since the tagger finds tags in files such as `.gif`.
     
    3030This, however, shouldn't be a serious problem because CodeTagsPlugin plugin searches for word boundaries (regex '\b') at the edges of words.
    3131
    32 = Last Release Version =
    33 The last CodeTagsPlugin release is [http://git.mortis.eu/git/codetags.git/snapshot/0.3.tar.gz codetags-0.3.tar.gz].
     32== Download / Source
    3433
    35 = Bugs =
     34The latest CodeTagsPlugin release is [http://git.mortis.eu/git/codetags.git/snapshot/0.3.tar.gz codetags-0.3.tar.gz].
     35
     36== Bugs / Known issues
     37
    3638 * When moving/deleting files with TODO tags in them, they will not disappear from the list
    3739  * I've tested this and it works fine for me - rjollos 2009-08-03.
     
    4749   * Fixed by patch [attachment:basic_multirepo_support.patch]
    4850
     51== Feature Requests
    4952
    50 = Feature Request =
    5153Since the tracker has no !CodeTags component I will put that here:
    5254 * feature "upgrade CodeTag to issue". Click on one of the CodeTags to be brought to a "New Ticket" page, with fields already completed (will require some parsing). Bonus points if the CodeTag (and surrounding comments, which might be numerous) can optionally be removed from the SVN and a commit log entry automatically generated.