= Customizing the Trac Interface = [[TracGuideToc]] == Introduction == This page is meant to give users suggestions on how they can customize the look of Trac. Topics on this page cover editing the HTML templates and CSS files, but not the program code itself. The topics are intended to show users how they can modify the look of Trac to meet their specific needs. Suggestions for changes to Trac's interface applicable to all users should be filed as tickets, not listed on this page. == Project Logo and Icon == The easiest parts of the Trac interface to customize are the logo and the site icon. Both of these can be configured with settings in [wiki:TracIni trac.ini]. The logo or icon image should be put in a folder named "htdocs" in your project's environment folder. (''Note: in projects created with a Trac version prior to 0.9 you will need to create this folder'') ''Note: you can actually put the logo and icon anywhere on your server (as long as it's accessible through the web server), and use their absolute or server-relative URLs in the configuration.'' Now configure the appropriate section of your [wiki:TracIni trac.ini]: === Logo === Change the `src` setting to `site/` followed by the name of your image file. The `width` and `height` settings should be modified to match your image's dimensions (the Trac chrome handler uses "`site/`" for files within the project directory `htdocs` and "`common/`" for the common ones). {{{ [header_logo] src = site/my_logo.gif alt = My Project width = 300 height = 100 }}} === Icon === Icons should be a 16x16 image in `.gif` or `.ico` format. Change the `icon` setting to `site/` followed by the name of your icon file. Icons will typically be displayed by your web browser next to the site's URL and in the `Bookmarks` menu. {{{ [project] icon = site/my_icon.ico }}} Note though that this icon is ignored by Internet Explorer, which only accepts a file named ``favicon.ico`` at the root of the host. To make the project icon work in both IE and other browsers, you can store the icon in the document root of the host, and reference it from ``trac.ini`` as follows: {{{ [project] icon = /favicon.ico }}} == Site Header & Footer == In the environment folder for each Trac project there should be a directory called {{{templates}}}. This folder contains files {{{site_header.cs}}} and {{{site_footer.cs}}}. Users can customize their Trac site by adding the required HTML markup to these files. The content of these two files will be placed immediately following the opening {{{}}} tag and immediately preceding the closing {{{}}} tag of each page in the site, respectively. These files may contain static HTML, though if users desire to have dynamically generated content they can make use of the [http://www.clearsilver.net/ ClearSilver] templating language from within the pages as well. When you need to see what variables are available to the template, append the query string `?hdfdump=1` to the URL of your Trac site. This will display a structured view of the template data. Static content, needs to be put outside the ClearSilver tag. For example: {{{

TEST FOOTER

}}} == Site CSS == The primary means to adjust the layout of a Trac site is to add [http://www.w3.org/TR/REC-CSS2/ CSS] style rules that overlay the default rules. This is best done by editing the `site_css.cs` file in the enviroment's `templates` directory. The content of that template gets inserted into a `` element on every HTML page generated by Trac. While you can add your custom style rules directly to the `site_css.cs` file, it is recommended that you simply reference an external style sheet, thereby enabling browsers to cache the CSS file instead of transmitting the rules with every response. The following example would import a style sheet located in the `style` root directory of your host: {{{ @import url(/style/mytrac.css); }}} You can use a !ClearSilver variable to reference a style sheet stored in the project environment's `htdocs` directory: {{{ @import url(/site/style.css); }}} == Project List == You can use a custom ClearSilver template to display the list of projects if you are using Trac with multiple projects. 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. {{{ #!text/html Available Projects

Available Projects

}}} Once you've created your custom template you will need to configure the webserver to tell Trac where the template is located: For [wiki:TracFastCgi FastCGI]: {{{ FastCgiConfig -initial-env TRAC_ENV_PARENT_DIR=/parent/dir/of/projects \ -initial-env TRAC_ENV_INDEX_TEMPLATE=/path/to/template }}} For [wiki:TracModPython mod_python]: {{{ PythonOption TracEnvIndexTemplate /path/to/template }}} For [wiki:TracCgi CGI]: {{{ SetEnv TRAC_ENV_INDEX_TEMPLATE /path/to/template }}} == Main Templates == It is also possible to use your own modified versions of the Trac [http://www.clearsilver.net/ ClearSilver] templates. Note though that this technique is not recommended because it makes upgrading Trac rather problematic: there are unfortunately several dependencies between the templates and the application code, such as the name of form fields and the structure of the template data, and these are likely to change between different versions of Trac. If you absolutely need to use modified templates, copy the template files from the default templates directory (usually in found in `$prefix/share/trac/templates`) into the `templates` directory of the project environment. Then modify those copies to get the desired results. == Adding Google Adsense Services To Your Trac == === Google Adsense For Content - Ads === It's actually pretty simple now that I know it, here it goes. On your trac environment directory, edit '''`site_css.cs`''' and put this inside: {{{ #!css /* For Mozilla and Safari */ *>#content { padding: 0; margin: 15px 140px 0 15px; text-align: left; min-height: 770px; } /* For IE */ * html #content { padding: 0; margin: 15px 140px 0 15px; text-align: left; height: 770px; } #ads { position: absolute; top: 170px; right: 10px; width: 140px; z-index: 1; text-align: right; } }}} Now a bit of explanation. Settings are of course, of topic, if you have doubts, there's a CSS link above in this page, click it, even so I'll explain parts. First we override '''`#content`''', trac's main content div id so we can have space for our ads. The most important part is that '''`140px`''', our right margin. We also set a minimun height(`min-height`) for Mozilla and Safary browsers and `height` for IE browser or else the ads would be on top of the footer in case the wiki page is small enough, which explains why there are two '''`#content`'''. Because IE doesn't respect `min-height`, so it's just work arround that. The '''`width`''' in '''`#ads`''' should only be set if you intend to have multiple ad spaces, for example, a Skyscraper Google Ad, and also a 'Use Firefox...' that google also makes available. If it wasn't set, both ads would show up side by side, wich is not good '''`;]`'''. If you only intend on using a single Skyscrapper Google Ad, you should ommit '''`width`''', why, because if a user has the firefox Ad-Block plugin, and he blocks all ad content from google he'll see the wiki pages with the full width. Neat right, this way we make everyone happy. Now we'll need to add the Google Ads code somewhere right? Edit '''`site_footer.cs`''', and next is an example: {{{ #!text/html
YOU WOULD PASTE IT HERE
}}} Another example is those ads moving up/down everytime you scroll: {{{ #!text/html
YOU WOULD PASTE IT HERE
}}} The most important line is this one: {{{ ftlObj = ml("ads"); }}} You must match your ads DIV name: {{{ ftlObj = ml(""); }}} === Google Adsense for Search - Search Boxes === As a follow up on the [http://projects.edgewall.com/trac/wiki/TracInterfaceCustomization#GoogleAdsenseForContentAds previous subject], I'll introduce one more way to add income to your Trac env, replacing trac's search box seen on the top right of trac's header for one that Google Adsense provides. First generate the code you need by logging into [http://google.com/adsense Google Adsense] and selecting "Google Adsense for Search", there you find enough info on how to generate it. Now we'll need to add an additional DIV to '''`site_css.cs`''', here it goes: {{{ #!css #GoogleSearch { position: absolute; top: 3px; right: 3px; z-index: 1; } }}} Now you'll need to add the previous generated search box HTML code somewhere. Edit '''`site_header.cs`''' to look something like: {{{ #!text/html
YOU WOULD PASTE IT HERE
}}} What happens is that the '''`#GoogleSearch`''' DIV is placed on top of Trac's search box, and by this, replacing it. Do NOTE that Trac's search will still be available, you'll just need to click the search button on the navbar. === In Action === Want to see it in action, drop an eye on [http://dev.ufsoft.org/TracWikiTemplates Trac WikiTemplates Plugin] site. '''IMPORTANT: Do read Google's [https://www.google.com/adsense/localized-terms Terms & Conditions], your account will be frozen/deleted and you WON'T GET any amount you had previously earned if you don't FOLLOW THEM.''' ---- See also TracGuide, TracIni