Changes between Version 3 and Version 4 of TracInterfaceCustomization
- Timestamp:
- 2019-02-22T10:54:46+10:00 (6 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
TracInterfaceCustomization
v3 v4 32 32 33 33 == Custom Navigation Entries 34 The `[mainnav]` and `[metanav]` sections of trac.ini be used to customize the navigation items' text and link, or even disable them, but not for addingnew ones.34 The `[mainnav]` and `[metanav]` sections of trac.ini be used to customize the navigation entries, disable them and even add new ones. 35 35 36 In the following example, we rename the link to the Wiki start "Home", and hide the "!Help/Guide". We also make the "View Tickets" entry link to a specific report: 36 In the following example, we: 37 * rename the link to WikiStart to be //Home// 38 * hide the ''About'' entry 39 * make the //View Tickets// entry link to a specific report 40 * add a //Builds// entry that links to an external build system 41 * move the //Admin// entry to the meta navigation bar 37 42 {{{#!ini 38 43 [mainnav] … … 41 46 42 47 [metanav] 43 help = disabled 48 about = disabled 49 builds = enabled 50 builds.href = https://travis-ci.org/edgewall/trac 51 admin = enabled 44 52 }}} 45 53