Changes between Version 27 and Version 28 of BreadCrumbsNavPlugin


Ignore:
Timestamp:
Oct 30, 2017, 9:42:47 AM (6 years ago)
Author:
figaro
Comment:

Further cosmetic changes

Legend:

Unmodified
Added
Removed
Modified
  • BreadCrumbsNavPlugin

    v27 v28  
    55== Description
    66
    7 This plugin will inject a list of recently visited pages just above the main navigational bar, as [wikipedia:Breadcrumb_(navigation) 'bread crumbs'] that you can follow home.
     7This plugin will display a list of recently visited pages just above the main navigational bar, as [wikipedia:Breadcrumb_(navigation) 'bread crumbs']:
    88
    99[[Image(breadcrumbsnav.png, width=500, border=2)]]
     10
     11The amount of breadcrumbs to display is configurable.
    1012
    1113See also: ShowPathPlugin
     
    6466== Configuration
    6567
    66 There are four options you may set in `trac.ini`:
     68There are 4 options that can be set in your `trac.ini` file for this plugin:
    6769
     70{{{#!ini
     71[breadcrumbs]
     72ignore_pattern =
     73label =
     74max_crumbs = 6
     75paths = /wiki/,/ticket/,/milestone/
     76}}}
     77
     78Explanation:
    6879 ignore_pattern::
    6980 A regular expression pattern that can be applied to the name of the resource; if it matches the resource, it will not be added to the user's breadcrumbs. Defaults to nothing.
     
    7687 Note that these really are interpreted as regular expressions, even though the default values look more like shell globs. It seems these default values also match /wik/foo or /tickebar, which might not be the authors intent.
    7788
    78 These options can be set as follows in your `trac.ini` file:
    79 
    80 {{{#!ini
    81 [breadcrumbs]
    82 ignore_pattern =
    83 label =
    84 max_crumbs = 6
    85 paths = /wiki/,/ticket/,/milestone/
    86 }}}
    87 
    8889== Recent Changes
    8990