File: /home/mmickelson/trac_theflexguy_com_trac/trac/templates/about.html
<!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">
<xi:include href="layout.html" />
<head>
<title>About Trac</title>
<link rel="stylesheet" type="text/css" href="${chrome.htdocs_location}css/about.css" />
<script type="text/javascript">
//<![CDATA[
jQuery(document).ready(function ($) {
$("#systeminfo table").append("<tr><th>jQuery:</th><td>"+$().jquery+"</td></tr>");
});
//]]>
</script>
</head>
<body>
<div id="content" class="about">
<a href="http://trac.edgewall.org/"
style="border: none; float: right; margin-left: 2em">
<img style="display: block" src="${chrome.htdocs_location}trac_banner.png"
alt="Trac: Integrated SCM & Project Management"/>
</a>
<h1>About Trac</h1>
<p>Trac is a web-based software project management and bug/issue
tracking system emphasizing ease of use and low ceremony.
It provides an integrated Wiki, an interface to version control
systems, and a number of convenient ways to stay on top of events
and changes within a project.
</p>
<p>Trac is distributed under the modified BSD License.<br />
The complete text of the license can be found
<a href="http://trac.edgewall.org/wiki/TracLicense">online</a>
as well as in the <tt>COPYING</tt> file included in the distribution.</p>
<a href="http://www.python.org/" style="border: none; float: right">
<img style="display: block" src="${chrome.htdocs_location}python.png"
alt="python powered" width="140" height="56" />
</a>
<p>Please visit the Trac open source project:
<a href="http://trac.edgewall.org/">http://trac.edgewall.org/</a></p>
<p class="copyright" xml:lang="en">Copyright © 2003-2009
<a href="http://www.edgewall.org/">Edgewall Software</a>
</p>
<py:if test="systeminfo or config">
<hr />
<div py:if="systeminfo" id="systeminfo">
<h2>System Information</h2>
<table class="listing">
<tr py:for="name, value in systeminfo">
<th>$name:</th>
<td>$value</td>
</tr>
</table>
</div>
<div py:if="config" id="config">
<h2>Configuration</h2>
<table class="listing">
<thead>
<tr>
<th class="section">Section</th>
<th class="name">Name</th>
<th class="value">Value</th>
</tr>
</thead>
<tbody>
<div py:for="section in config" py:strip="">
<tr py:for="idx,option in enumerate(section.options)"
class="${option.modified and 'modified' or None}">
<th py:if="idx == 0" class="section"
rowspan="${len(section.options)}">${section.name}</th>
<td class="name">${option.name}</td>
<td class="value">${option.value}</td>
</tr>
</div>
</tbody>
</table>
</div>
</py:if>
</div>
</body>
</html>