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. |
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)]] |
19 | | |
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. |
21 | | |
22 | | === Example === |
23 | | |
24 | | In the following example, we rename the link to the Wiki start "Home", and hide the "!Help/Guide" link. |
25 | | 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. |
| 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 viewed in the [TracIni#trac-section trac section of TracIni]. |
| 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 | |