Changes between Version 1 and Version 2 of TracNavigation
- Timestamp:
- Mar 2, 2014, 3:22:52 PM (11 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
TracNavigation
v1 v2 3 3 Starting with Trac 0.11, it is now possible to customize the main and meta navigation entries in some basic ways. 4 4 5 The new `[mainnav]` and `[metanav]` configuration sections can now be used to customize the text and link used for the navigation items, or even to disable them. 5 The new `[mainnav]` and `[metanav]` configuration sections can now 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 also be used to change the order. 6 6 7 `[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 and accessible for the current user. 7 === `[mainnav]` #mainnav-bar 8 `[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. 8 9 9 `[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.10 10 11 Note that it is still not possible to customize the '''contextual navigation bar''', i.e. the one usually placed below the main navigation bar. 11 ** [=#Example Example] ** 12 12 13 === Example === 14 15 In the following example, we rename the link to the Wiki start "Home", and hide the "Help/Guide" link. 16 We also make the "View Tickets" entry link to a specific report. 13 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. 17 14 18 15 Relevant excerpt from the TracIni: … … 21 18 wiki.label = Home 22 19 tickets.href = /report/24 20 }}} 23 21 22 === `[metanav]` #metanav-bar 23 `[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. 24 25 There is one special entry in the `[metanav]` section: `logout.redirect` is the page the user sees after hitting the logout button. 26 [[comment(see also #Trac3808)]] 27 28 ** Example ** 29 30 {{{ 24 31 [metanav] 25 32 help = disabled 33 logout.redirect = wiki/Logout 26 34 }}} 27 35 36 37 === Notes 38 Possible URL formats (for `.href` or `.redirect`): 39 || '''config''' || '''redirect to''' || 40 || `wiki/Logout` || `/projects/env/wiki/Logout` || 41 || `http://hostname/` || `http://hostname/` || 42 || `/projects` || `/projects` || 43 44 45 === `[trac]` #nav-order 46 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. 47 48 ** Example ** 49 50 In the following example, we change the order to prioritise the ticket related items further left. 51 52 Relevant excerpt from the TracIni: 53 {{{ 54 [trac] 55 mainnav = wiki,tickets,newticket,timeline,roadmap,browser,search,admin 56 }}} 57 58 The default order and item names can be found in the source, which at the time of writing [source:trunk/trac/web/chrome.py@10883:397,402-403#L396 is here] 59 60 === Context Navigation #ctxtnav-bar 61 62 Note that it is still not possible to customize the '''contextual navigation bar''', i.e. the one usually placed below the main navigation bar. 63 64 28 65 ---- 29 See also: TracInterfaceCustomization, the TracHacks:NavAddPlugin(still needed for adding entries)66 See also: TracInterfaceCustomization, and the [http://trac-hacks.org/wiki/NavAddPlugin TracHacks:NavAddPlugin] or [http://trac-hacks.org/wiki/MenusPlugin TracHacks:MenusPlugin] (still needed for adding entries)