Changes between Version 3 and Version 4 of TracInterfaceCustomization
- Timestamp:
- May 19, 2008, 10:20:36 PM (17 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
TracInterfaceCustomization
v3 v4 41 41 42 42 == Custom Navigation Entries == 43 The new [mainnav] and [metanav] can now be used to customize the text and link used for the navigation items, or even to disable them .43 The new [mainnav] and [metanav] can now be used to customize the text and link used for the navigation items, or even to disable them (but not for adding new ones). 44 44 45 45 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 . … … 53 53 }}} 54 54 55 See also TracNavigation for a more detailed explanation of the mainnav and metanav terms. 55 56 56 57 == Site Appearance == … … 69 70 <!--! Add site-specific style sheet --> 70 71 <head py:match="head" py:attrs="select('@*')"> 71 ${select('* ')}72 ${select('*|comment()|text()')} 72 73 <link rel="stylesheet" type="text/css" 73 74 href="${href.chrome('site/style.css')}" /> … … 118 119 119 120 == Project List == 120 You can use a custom ClearSilvertemplate to display the list of projects if you are using Trac with multiple projects.121 You can use a custom Genshi template to display the list of projects if you are using Trac with multiple projects. 121 122 122 123 The following is the basic template used by Trac to display a list of links to the projects. For projects that could not be loaded it displays an error message. You can use this as a starting point for your own index template.