Changes between Version 1 and Version 2 of TracNavigation
- Timestamp:
- 02/16/12 09:19:03 (13 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
TracNavigation
v1 v2 7 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. 8 8 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. 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 11 There is one special entry in the `[metanav]` section: `logout.redirect` is the page the user sees after hitting the logout button. 12 13 Possible URL formats: 14 || '''config''' || '''redirect to''' || 15 || `wiki/Logout` || `/projects/env/wiki/Logout` || 16 || `http://hostname/` || `http://hostname/` || 17 || `/projects` || `/projects` || 18 [[comment(see also #Trac3808)]] 10 19 11 20 Note that it is still not possible to customize the '''contextual navigation bar''', i.e. the one usually placed below the main navigation bar. … … 13 22 === Example === 14 23 15 In the following example, we rename the link to the Wiki start "Home", and hide the " Help/Guide" link.24 In the following example, we rename the link to the Wiki start "Home", and hide the "!Help/Guide" link. 16 25 We also make the "View Tickets" entry link to a specific report. 17 26 … … 24 33 [metanav] 25 34 help = disabled 35 logout.redirect = wiki/Logout 26 36 }}} 27 37