MercurialWebTheme

themes/mercurialweb/changelog.tmpl

35:e2c1f5d87583
2011-04-01 Paul Boddie Fixed the output encoding of many types of textual data. Added CSS class usage for table cells containing dates, authors, navigation, branches and tags. Tidied up table column widths, attempting to make the branches, tags and summary views cleaner. Removed explicit widths from various templates. Fixed the changeset navigation vertical alignment. Added links to the branches view.
     1 {header}     2 <title>{repo|escape} (changelog)</title>     3 </head>     4      5 <body>     6      7 <div id="header">     8   <div id="logo"><a href="{url}..{sessionvars%urlparameter}"><img src="{staticurl}mercurial-logo.png" alt="Mercurial logo" /></a></div>     9   <div class="controls">    10     <ul id="navibar">    11     <li><a href="{url}summary{sessionvars%urlparameter}">Summary</a></li    12     ><li><a href="{url}shortlog{sessionvars%urlparameter}">Shortlog</a></li    13     ><li class="current"><span>Changelog</span></li    14     ><li><a href="{url}graph{sessionvars%urlparameter}">Graph</a></li    15     ><li><a href="{url}tags{sessionvars%urlparameter}">Tags</a></li    16     ><li><a href="{url}branches{sessionvars%urlparameter}">Branches</a></li    17     ><li><a href="{url}file{sessionvars%urlparameter}">Files</a></li    18     ><li><form id="searchform" action="{url}log"><span class="container">    19         <span class="hint">Search</span>&#160;<input name="rev" id="searchinput" type="text" size="20" />    20       </span>    21       {sessionvars%hiddenformentry}    22       </form>    23     </li>    24     </ul>    25   </div>    26   <div id="pageline"></div>    27 </div>    28     29 <h2>{repo|escape}</h2>    30     31 <h3>Changelog</h3>    32     33 <div class="pager">{changenav%changelogpagerentry}</div>    34     35 <table>    36   <tbody>    37 {entries%changelogentry}    38   </tbody>    39 </table>    40     41 <div class="pager">{changenav%changelogpagerentry}</div>    42     43 {footer}