= Theme Plugins = '''Do not edit this page until this notice was removed''' This proposal describes a way trac could get a working theme support. The main idea is that every project which uses trac should have it's own theme. Or at least each major trac installation. The current way is overriding `htdocs_location` in the trac config to bypass the shipped css and js files and inject new ones. Using the `site.html` file (talking of trac 0.11) you can then override the way the template is rendered. Because of the great Genshi API with XPATH support nearly everything is overrideable. But trac upgrades are a pain in the ass and distributing themes does not work. == Generic CSS Classes == One of the first things which should be done is cleaning up the shipped css files. They should use more generic classes and documented classes. Each plugin developer should be able to use them too in his plugins. Also the trac core would only ship layout css files without color definitions. The default theme would then add the color definitions for the elements (links, browser etc). Currently the only way to change the trac colors is copying the default css files and replace all the color hex values with own ones. To create a list of generic classes an analysis of the current css files and genshi templates would be required. == Theme Provider == {{{ #!python class MyTheme(Component): implements(IThemeProvider, ITemplateProvider) # IThemeProvider def get_theme_htdocs_id(self): return 'mytheme' def get_theme_site_template(self): return 'mytheme/site.html' # ITemplateProvider methods def get_templates_dirs(self): from pkg_resources import resource_filename return [resource_filename(__name__, 'templates')] def get_htdocs_dirs(self): from pkg_resources import resource_filename return [('mytheme', resource_filename(__name__, 'htdocs'))] }}} There will also be a `UserTheme` component class which uses the `site.html` from the trac instance folder and the template/htdocs folder in the instance. It's one of the both default themes: * `trac` - the trac default theme * `custom` - a special theme that forwards the htdocs/template lookups to the instance folders and uses the normal `site.html` as template. == Themes == A theme looks like the theme defined above. So this could be the `mytheme/site.html`: {{{ #!text/html ${select('*')}
${select('div[@id="main"]/*')}
}}} As you can see the idea is that the default layout.html does not include *any* style elements. It just wraps the content elements in divs and uls. (navigation bars, content etc). The default css files have all their rules prefixed with `#x-trac` in order to avoid clashes with included css files from project webpages. The idea is that you just have to add a div with the idea `#x-trac` where the trac should appear, select everything there and there you go. Additionally you can of course as shown above, move the navigation bars around thanks to the ass-kicking genshi xpath support. `theme.get_chrome_url()` creates an url to the chrome folder of the current theme.