Changes between Version 1 and Version 2 of TracNavigation


Ignore:
Timestamp:
Jan 22, 2019, 12:08:22 AM (5 years ago)
Author:
trac
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • TracNavigation

    v1 v2  
    1 = Trac Navigation =
     1= Trac Navigation
    22
    3 The main and meta navigation entries can be customized in some basic ways. The `[mainnav]` and `[metanav]` configuration sections can be used to customize the text and link used for the navigation items, or even to disable them.  The `mainnav` and `metanav` options in the `[trac]` configuration section can be used to change the order.
     3The main and meta navigation entries can be customized in some basic ways. The `[mainnav]` and `[metanav]` configuration sections can be used to customize the text and link used for the navigation items, or even to disable them. The `mainnav` and `metanav` options in the `[trac]` configuration section can be used to change the order.
    44
    55=== `[mainnav]` #mainnav-bar
     6
    67`[mainnav]` corresponds to the '''main navigation bar''', the one containing entries such as ''Wiki'', ''Timeline'', ''Roadmap'', ''Browse Source'' and so on. This navigation bar is meant to access the default page of the main modules enabled in Trac that are accessible for the current user.
    7 
    88
    99** [=#Example Example] **
    1010
    11 In the following example, we rename the link to the Wiki start "Home", and make the "View Tickets" entry link to a specific report.  The second example (below) also hides the "!Help/Guide" link.
     11In the following example we rename the link to the Wiki start "Home", and make the "View Tickets" entry link to a specific report. The second example below also hides the "!Help/Guide" link.
    1212
    1313Relevant excerpt from the TracIni:
    14 {{{
     14{{{#!ini
    1515[mainnav]
    1616wiki.label = Home
     
    1919
    2020=== `[metanav]` #metanav-bar
     21
    2122`[metanav]` corresponds to the '''meta navigation bar''', by default positioned above the main navigation bar and below the ''Search'' box. It contains the ''Log in'', ''Logout'', ''!Help/Guide'' etc. entries. This navigation bar is meant to access some global information about the Trac project and the current user.
    2223
     
    2627** Example **
    2728
    28 {{{
     29{{{#!ini
    2930[metanav]
    3031help = disabled
     
    3233}}}
    3334
     35=== Notes
    3436
    35 === Notes
    36 Possible URL formats (for `.href` or `.redirect`):
     37Possible URL formats for `.href` or `.redirect`:
    3738|| '''config''' || '''redirect to''' ||
    3839|| `wiki/Logout` || `/projects/env/wiki/Logout` ||
     
    4041|| `/projects` || `/projects` ||
    4142
     43=== `[trac]` #nav-order
    4244
    43 === `[trac]` #nav-order
    44 The `mainnav` and `metanav` options in the `[trac]` configuration section control the order in which the navigation items are displayed (left to right).  This can be useful with plugins that add navigation items.
     45The `mainnav` and `metanav` options in the `[trac]` configuration section control the order in which the navigation items are displayed (left to right). This can be useful with plugins that add navigation items.
    4546
    4647** Example **
     
    4950
    5051Relevant excerpt from the TracIni:
    51 {{{
     52{{{#!ini
    5253[trac]
    5354mainnav = wiki,tickets,newticket,timeline,roadmap,browser,search,admin
     
    5859=== Context Navigation #ctxtnav-bar
    5960
    60 Note that it is still not possible to customize the '''contextual navigation bar''', i.e. the one usually placed below the main navigation bar.
    61 
     61Note that it is still not possible to customize the '''contextual navigation bar''', ie the one usually placed below the main navigation bar.
    6262
    6363----