
yoheeb at gmail
Sep 3, 2009, 2:48 PM
Post #3 of 5
(512 views)
Permalink
|
|
Re: Changing the look of the projects page
[In reply to]
|
|
On Sep 3, 6:02 pm, Olemis Lang <ole...@gmail.com> wrote: > On Thu, Sep 3, 2009 at 11:42 AM, Peter > > O'Connell<Peter.OConn...@solutionspt.com> wrote: > > > I’ve been looking through the documentation to see where I can place a > > stylesheet for this page to be made a little more easy on the eye, all my > > attempts have resulted in a 404 on the style sheet – does anyone have any > > advice on where my stylesheet can be placed? > > - Use the HTTP server directly (varies according to the server) > - Including it as a resource in a particular project > > -- > Regards, > > Olemis. > > Blog ES:http://simelo-es.blogspot.com/ > Blog EN:http://simelo-en.blogspot.com/ > > Featured article: I am going to assume you read http://trac.edgewall.org/wiki/TracInterfaceCustomization#ProjectList [1] here is a sample genshi template someone posted somewhere, sometime...sorry, I can't remember, which I use configured per my setup as instructed in [1]: it puts each project in a box I have no idea how it really works, as i would rather eat paste than learn to truly understand .css (sorry, firmware guy, mouseless browsing and all) [code] <!DOCTYPE HTML PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http:// www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xmlns:py="http://genshi.edgewall.org/" xmlns:xi="http://www.w3.org/2001/XInclude"> <head> <meta http-equiv="content-type" content="text/html; charset=UTF-8"></ meta> <title>WINDOW TITLE OF CHOICE</title> <link rel="shortcut icon" href="favicon.ico" type="image/x-icon"></ link> <link rel="icon" href="favicon.ico" type="image/x-icon"></link> </head> <body> <div id="banner"> <div id="header"> </div> <div id="search"> </div> </div> <div id="main"> <div id="content"> <div id="ctxtnav" class="nav"> <hr></hr> </div> <center><h1>PAGE HEADING OF CHOICE</h1></center> <ul> <li py:for="project in projects" py:choose="" style="float:left; border:1px solid black; padding:2em; margin:1em; list-style-type:none"> <a py:when="project.href" href="$project.href" title="$project.description">$project.name</a>: <ul> <li> <a href="$project.href/timeline" title="Timeline">Timeline</a> </li> <li> <a href="$project.href/report" title="Timeline">Tickets</a> </li> <li> <a href="$project.href/roadmap" title="Timeline">Roadmap</a> </li> <li> <a href="$project.href/browser" title="Timeline">Source Code</a> </li> <li> <a href="$project.href/search" title="Timeline">Search</a> </li> <li> <a href="$project.href/admin" title="Timeline">Administration</a><br></br> </li> </ul> </li> </ul> </div> </div> <div id="footer"/> </body> </html> [/code] --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Trac Users" group. To post to this group, send email to trac-users [at] googlegroups To unsubscribe from this group, send email to trac-users+unsubscribe [at] googlegroups For more options, visit this group at http://groups.google.com/group/trac-users?hl=en -~----------~----~----~----~------~----~------~--~---
|