Mercurial > hg
changeset 8430:8b47efdf40ee
monoblue: use newer template syntax everywhere
author | Dirkjan Ochtman <dirkjan@ochtman.nl> |
---|---|
date | Fri, 15 May 2009 10:47:05 +0200 |
parents | 4bf90ee588b9 |
children | 5c1aabc58004 |
files | templates/monoblue/branches.tmpl templates/monoblue/changelog.tmpl templates/monoblue/changelogentry.tmpl templates/monoblue/changeset.tmpl templates/monoblue/error.tmpl templates/monoblue/fileannotate.tmpl templates/monoblue/filediff.tmpl templates/monoblue/filelog.tmpl templates/monoblue/filerevision.tmpl templates/monoblue/footer.tmpl templates/monoblue/graph.tmpl templates/monoblue/index.tmpl templates/monoblue/manifest.tmpl templates/monoblue/map templates/monoblue/notfound.tmpl templates/monoblue/search.tmpl templates/monoblue/shortlog.tmpl templates/monoblue/summary.tmpl templates/monoblue/tags.tmpl |
diffstat | 19 files changed, 229 insertions(+), 229 deletions(-) [+] |
line wrap: on
line diff
--- a/templates/monoblue/branches.tmpl Fri May 15 10:46:59 2009 +0200 +++ b/templates/monoblue/branches.tmpl Fri May 15 10:47:05 2009 +0200 @@ -1,13 +1,13 @@ -#header# - <title>#repo|escape#: Branches</title> - <link rel="alternate" type="application/atom+xml" href="{url}atom-log" title="Atom feed for #repo|escape#"/> - <link rel="alternate" type="application/rss+xml" href="{url}rss-log" title="RSS feed for #repo|escape#"/> +{header} + <title>{repo|escape}: Branches</title> + <link rel="alternate" type="application/atom+xml" href="{url}atom-log" title="Atom feed for {repo|escape}"/> + <link rel="alternate" type="application/rss+xml" href="{url}rss-log" title="RSS feed for {repo|escape}"/> </head> <body> <div id="container"> <div class="page-header"> - <h1><a href="{url}summary{sessionvars%urlparameter}">#repo|escape#</a> / Branches</h1> + <h1><a href="{url}summary{sessionvars%urlparameter}">{repo|escape}</a> / Branches</h1> <form action="{url}log"> {sessionvars%hiddenformentry} @@ -24,13 +24,13 @@ <li><a href="{url}graph/{node|short}{sessionvars%urlparameter}">graph</a></li> <li><a href="{url}tags{sessionvars%urlparameter}">tags</a></li> <li class="current">branches</li> - <li><a href="{url}file/#node|short#{sessionvars%urlparameter}">files</a></li> + <li><a href="{url}file/{node|short}{sessionvars%urlparameter}">files</a></li> </ul> </div> <h2 class="no-link no-border">tags</h2> <table cellspacing="0"> -#entries%branchentry# +{entries%branchentry} </table> -#footer# +{footer}
--- a/templates/monoblue/changelog.tmpl Fri May 15 10:46:59 2009 +0200 +++ b/templates/monoblue/changelog.tmpl Fri May 15 10:47:05 2009 +0200 @@ -1,13 +1,13 @@ -#header# - <title>#repo|escape#: changelog</title> - <link rel="alternate" type="application/atom+xml" href="{url}atom-log" title="Atom feed for #repo|escape#"/> - <link rel="alternate" type="application/rss+xml" href="{url}rss-log" title="RSS feed for #repo|escape#"/> +{header} + <title>{repo|escape}: changelog</title> + <link rel="alternate" type="application/atom+xml" href="{url}atom-log" title="Atom feed for {repo|escape}"/> + <link rel="alternate" type="application/rss+xml" href="{url}rss-log" title="RSS feed for {repo|escape}"/> </head> <body> <div id="container"> <div class="page-header"> - <h1><a href="{url}summary{sessionvars%urlparameter}">#repo|escape#</a> / changelog</h1> + <h1><a href="{url}summary{sessionvars%urlparameter}">{repo|escape}</a> / changelog</h1> <form action="{url}log"> {sessionvars%hiddenformentry} @@ -24,17 +24,17 @@ <li><a href="{url}graph/{node|short}{sessionvars%urlparameter}">graph</a></li> <li><a href="{url}tags{sessionvars%urlparameter}">tags</a></li> <li><a href="{url}branches{sessionvars%urlparameter}">branches</a></li> - <li><a href="{url}file/#node|short#{sessionvars%urlparameter}">files</a>#archives%archiveentry#</li> + <li><a href="{url}file/{node|short}{sessionvars%urlparameter}">files</a>{archives%archiveentry}</li> </ul> </div> <h2 class="no-link no-border">changelog</h2> <div> - #entries%changelogentry# + {entries%changelogentry} </div> <div class="page-path"> -#changenav%naventry# +{changenav%naventry} </div> -#footer# +{footer}
--- a/templates/monoblue/changelogentry.tmpl Fri May 15 10:46:59 2009 +0200 +++ b/templates/monoblue/changelogentry.tmpl Fri May 15 10:47:05 2009 +0200 @@ -1,6 +1,6 @@ -<h3 class="changelog"><a class="title" href="{url}rev/#node|short#{sessionvars%urlparameter}">#desc|strip|firstline|escape|nonempty#<span class="logtags"> {inbranch%inbranchtag}{branches%branchtag}{tags%tagtag}</span></a></h3> +<h3 class="changelog"><a class="title" href="{url}rev/{node|short}{sessionvars%urlparameter}">{desc|strip|firstline|escape|nonempty}<span class="logtags"> {inbranch%inbranchtag}{branches%branchtag}{tags%tagtag}</span></a></h3> <ul class="changelog-entry"> - <li class="age">#date|age# ago</li> - <li>by <span class="name">#author|obfuscate#</span> <span class="revdate">[#date|rfc822date#] rev #rev#</span></li> - <li class="description">#desc|strip|escape|addbreaks|nonempty#</li> + <li class="age">{date|age} ago</li> + <li>by <span class="name">{author|obfuscate}</span> <span class="revdate">[{date|rfc822date}] rev {rev}</span></li> + <li class="description">{desc|strip|escape|addbreaks|nonempty}</li> </ul>
--- a/templates/monoblue/changeset.tmpl Fri May 15 10:46:59 2009 +0200 +++ b/templates/monoblue/changeset.tmpl Fri May 15 10:47:05 2009 +0200 @@ -1,13 +1,13 @@ -#header# +{header} <title>{repo|escape}: changeset {rev}:{node|short}</title> - <link rel="alternate" type="application/atom+xml" href="{url}atom-log" title="Atom feed for #repo|escape#"/> - <link rel="alternate" type="application/rss+xml" href="{url}rss-log" title="RSS feed for #repo|escape#"/> + <link rel="alternate" type="application/atom+xml" href="{url}atom-log" title="Atom feed for {repo|escape}"/> + <link rel="alternate" type="application/rss+xml" href="{url}rss-log" title="RSS feed for {repo|escape}"/> </head> <body> <div id="container"> <div class="page-header"> - <h1><a href="{url}summary{sessionvars%urlparameter}">#repo|escape#</a> / files</h1> + <h1><a href="{url}summary{sessionvars%urlparameter}">{repo|escape}</a> / files</h1> <form action="{url}log"> {sessionvars%hiddenformentry} @@ -24,40 +24,40 @@ <li><a href="{url}graph/{node|short}{sessionvars%urlparameter}">graph</a></li> <li><a href="{url}tags{sessionvars%urlparameter}">tags</a></li> <li><a href="{url}branches{sessionvars%urlparameter}">branches</a></li> - <li><a href="{url}file/#node|short#{sessionvars%urlparameter}">files</a></li> + <li><a href="{url}file/{node|short}{sessionvars%urlparameter}">files</a></li> </ul> </div> <ul class="submenu"> <li class="current">changeset</li> - <li><a href="{url}raw-rev/#node|short#">raw</a> #archives%archiveentry#</li> + <li><a href="{url}raw-rev/{node|short}">raw</a> {archives%archiveentry}</li> </ul> <h2 class="no-link no-border">changeset</h2> - <h3 class="changeset"><a href="{url}raw-rev/#node|short#">#desc|strip|escape|firstline|nonempty# <span class="logtags">{inbranch%inbranchtag}{branches%branchtag}{tags%tagtag}</span></a></h3> - <p class="changeset-age"><span>#date|age# ago</span></p> + <h3 class="changeset"><a href="{url}raw-rev/{node|short}">{desc|strip|escape|firstline|nonempty} <span class="logtags">{inbranch%inbranchtag}{branches%branchtag}{tags%tagtag}</span></a></h3> + <p class="changeset-age"><span>{date|age} ago</span></p> <dl class="overview"> <dt>author</dt> - <dd>#author|obfuscate#</dd> + <dd>{author|obfuscate}</dd> <dt>date</dt> - <dd>#date|date#</dd> - #branch%changesetbranch# + <dd>{date|date}</dd> + {branch%changesetbranch} <dt>changeset {rev}</dt> <dd>{node|short}</dd> - #parent%changesetparent# - #child%changesetchild# + {parent%changesetparent} + {child%changesetchild} </dl> - <p class="description">#desc|strip|escape|addbreaks|nonempty#</p> + <p class="description">{desc|strip|escape|addbreaks|nonempty}</p> <table> - #files# + {files} </table> <div class="diff"> - #diff# + {diff} </div> -#footer# +{footer}
--- a/templates/monoblue/error.tmpl Fri May 15 10:46:59 2009 +0200 +++ b/templates/monoblue/error.tmpl Fri May 15 10:47:05 2009 +0200 @@ -1,13 +1,13 @@ {header} - <title>#repo|escape#: Error</title> - <link rel="alternate" type="application/atom+xml" href="{url}atom-log" title="Atom feed for #repo|escape#"/> - <link rel="alternate" type="application/rss+xml" href="{url}rss-log" title="RSS feed for #repo|escape#"/> + <title>{repo|escape}: Error</title> + <link rel="alternate" type="application/atom+xml" href="{url}atom-log" title="Atom feed for {repo|escape}"/> + <link rel="alternate" type="application/rss+xml" href="{url}rss-log" title="RSS feed for {repo|escape}"/> </head> <body> <div id="container"> <div class="page-header"> - <h1><a href="{url}summary{sessionvars%urlparameter}">#repo|escape#</a> / Not found: {repo|escape}</h1> + <h1><a href="{url}summary{sessionvars%urlparameter}">{repo|escape}</a> / Not found: {repo|escape}</h1> <form action="{url}log"> {sessionvars%hiddenformentry} @@ -24,7 +24,7 @@ <li><a href="{url}graph/{node|short}{sessionvars%urlparameter}">graph</a></li> <li><a href="{url}tags{sessionvars%urlparameter}">tags</a></li> <li><a href="{url}branches{sessionvars%urlparameter}">branches</a></li> - <li><a href="{url}file/#node|short#{sessionvars%urlparameter}">files</a></li> + <li><a href="{url}file/{node|short}{sessionvars%urlparameter}">files</a></li> </ul> </div>
--- a/templates/monoblue/fileannotate.tmpl Fri May 15 10:46:59 2009 +0200 +++ b/templates/monoblue/fileannotate.tmpl Fri May 15 10:47:05 2009 +0200 @@ -1,13 +1,13 @@ -#header# +{header} <title>{repo|escape}: {file|escape}@{node|short} (annotated)</title> - <link rel="alternate" type="application/atom+xml" href="{url}atom-log" title="Atom feed for #repo|escape#"/> - <link rel="alternate" type="application/rss+xml" href="{url}rss-log" title="RSS feed for #repo|escape#"/> + <link rel="alternate" type="application/atom+xml" href="{url}atom-log" title="Atom feed for {repo|escape}"/> + <link rel="alternate" type="application/rss+xml" href="{url}rss-log" title="RSS feed for {repo|escape}"/> </head> <body> <div id="container"> <div class="page-header"> - <h1><a href="{url}summary{sessionvars%urlparameter}">#repo|escape#</a> / annotate</h1> + <h1><a href="{url}summary{sessionvars%urlparameter}">{repo|escape}</a> / annotate</h1> <form action="{url}log"> {sessionvars%hiddenformentry} @@ -24,34 +24,34 @@ <li><a href="{url}graph/{node|short}{sessionvars%urlparameter}">graph</a></li> <li><a href="{url}tags{sessionvars%urlparameter}">tags</a></li> <li><a href="{url}branches{sessionvars%urlparameter}">branches</a></li> - <li><a href="{url}file/#node|short##path|urlescape#{sessionvars%urlparameter}">files</a></li> + <li><a href="{url}file/{node|short}{path|urlescape}{sessionvars%urlparameter}">files</a></li> </ul> </div> <ul class="submenu"> - <li><a href="{url}file/{node|short}/#file|urlescape#{sessionvars%urlparameter}">file</a></li> - <li><a href="{url}log/{node|short}/#file|urlescape#{sessionvars%urlparameter}">revisions</a></li> + <li><a href="{url}file/{node|short}/{file|urlescape}{sessionvars%urlparameter}">file</a></li> + <li><a href="{url}log/{node|short}/{file|urlescape}{sessionvars%urlparameter}">revisions</a></li> <li class="current">annotate</li> <li><a href="{url}diff/{node|short}/{file|urlescape}{sessionvars%urlparameter}">diff</a></li> - <li><a href="{url}raw-annotate/{node|short}/#file|urlescape#">raw</a></li> + <li><a href="{url}raw-annotate/{node|short}/{file|urlescape}">raw</a></li> </ul> <h2 class="no-link no-border">{file|escape}@{node|short} (annotated)</h2> - <h3 class="changeset">#file|escape#</h3> - <p class="changeset-age"><span>#date|age# ago</span></p> + <h3 class="changeset">{file|escape}</h3> + <p class="changeset-age"><span>{date|age} ago</span></p> <dl class="overview"> <dt>author</dt> - <dd>#author|obfuscate#</dd> + <dd>{author|obfuscate}</dd> <dt>date</dt> - <dd>#date|date#</dd> - #branch%filerevbranch# + <dd>{date|date}</dd> + {branch%filerevbranch} <dt>changeset {rev}</dt> - <dd><a href="{url}rev/#node|short#{sessionvars%urlparameter}">#node|short#</a></dd> - #parent%fileannotateparent# - #child%fileannotatechild# + <dd><a href="{url}rev/{node|short}{sessionvars%urlparameter}">{node|short}</a></dd> + {parent%fileannotateparent} + {child%fileannotatechild} <dt>permissions</dt> - <dd>#permissions|permissions#</dd> + <dd>{permissions|permissions}</dd> </dl> <p class="description">{desc|strip|escape|addbreaks|nonempty}</p> @@ -60,4 +60,4 @@ {annotate%annotateline} </table> -#footer# +{footer}
--- a/templates/monoblue/filediff.tmpl Fri May 15 10:46:59 2009 +0200 +++ b/templates/monoblue/filediff.tmpl Fri May 15 10:47:05 2009 +0200 @@ -1,13 +1,13 @@ {header} <title>{repo|escape}: diff {file|escape}</title> - <link rel="alternate" type="application/atom+xml" href="{url}atom-log" title="Atom feed for #repo|escape#"/> - <link rel="alternate" type="application/rss+xml" href="{url}rss-log" title="RSS feed for #repo|escape#"/> + <link rel="alternate" type="application/atom+xml" href="{url}atom-log" title="Atom feed for {repo|escape}"/> + <link rel="alternate" type="application/rss+xml" href="{url}rss-log" title="RSS feed for {repo|escape}"/> </head> <body> <div id="container"> <div class="page-header"> - <h1><a href="{url}summary{sessionvars%urlparameter}">#repo|escape#</a> / file diff</h1> + <h1><a href="{url}summary{sessionvars%urlparameter}">{repo|escape}</a> / file diff</h1> <form action="{url}log"> {sessionvars%hiddenformentry}
--- a/templates/monoblue/filelog.tmpl Fri May 15 10:46:59 2009 +0200 +++ b/templates/monoblue/filelog.tmpl Fri May 15 10:47:05 2009 +0200 @@ -1,13 +1,13 @@ -#header# -<title>#repo|escape#: File revisions</title> - <link rel="alternate" type="application/atom+xml" href="{url}atom-log" title="Atom feed for #repo|escape#"/> - <link rel="alternate" type="application/rss+xml" href="{url}rss-log" title="RSS feed for #repo|escape#"/> +{header} +<title>{repo|escape}: File revisions</title> + <link rel="alternate" type="application/atom+xml" href="{url}atom-log" title="Atom feed for {repo|escape}"/> + <link rel="alternate" type="application/rss+xml" href="{url}rss-log" title="RSS feed for {repo|escape}"/> </head> <body> <div id="container"> <div class="page-header"> - <h1><a href="{url}summary{sessionvars%urlparameter}">#repo|escape#</a> / file revisions</h1> + <h1><a href="{url}summary{sessionvars%urlparameter}">{repo|escape}</a> / file revisions</h1> <form action="{url}log"> {sessionvars%hiddenformentry} @@ -24,26 +24,26 @@ <li><a href="{url}graph/{node|short}{sessionvars%urlparameter}">graph</a></li> <li><a href="{url}tags{sessionvars%urlparameter}">tags</a></li> <li><a href="{url}branches{sessionvars%urlparameter}">branches</a></li> - <li><a href="{url}file/#node|short##path|urlescape#{sessionvars%urlparameter}">files</a></li> + <li><a href="{url}file/{node|short}{path|urlescape}{sessionvars%urlparameter}">files</a></li> </ul> </div> <ul class="submenu"> - <li><a href="{url}file/{node|short}/#file|urlescape#{sessionvars%urlparameter}">file</a></li> + <li><a href="{url}file/{node|short}/{file|urlescape}{sessionvars%urlparameter}">file</a></li> <li class="current">revisions</li> - <li><a href="{url}annotate/{node|short}/#file|urlescape#{sessionvars%urlparameter}">annotate</a></li> + <li><a href="{url}annotate/{node|short}/{file|urlescape}{sessionvars%urlparameter}">annotate</a></li> <li><a href="{url}diff/{node|short}/{file|urlescape}{sessionvars%urlparameter}">diff</a></li> - <li><a href="{url}rss-log/#node|short#/#file|urlescape#">rss</a></li> + <li><a href="{url}rss-log/{node|short}/{file|urlescape}">rss</a></li> </ul> - <h2 class="no-link no-border">#file|urlescape#</h2> + <h2 class="no-link no-border">{file|urlescape}</h2> <table> - #entries%filelogentry# + {entries%filelogentry} </table> <div class="page-path"> {nav%filenaventry} </div> -#footer# +{footer}
--- a/templates/monoblue/filerevision.tmpl Fri May 15 10:46:59 2009 +0200 +++ b/templates/monoblue/filerevision.tmpl Fri May 15 10:47:05 2009 +0200 @@ -1,13 +1,13 @@ -#header# +{header} <title>{repo|escape}: {file|escape}@{node|short}</title> - <link rel="alternate" type="application/atom+xml" href="{url}atom-log" title="Atom feed for #repo|escape#"/> - <link rel="alternate" type="application/rss+xml" href="{url}rss-log" title="RSS feed for #repo|escape#"/> + <link rel="alternate" type="application/atom+xml" href="{url}atom-log" title="Atom feed for {repo|escape}"/> + <link rel="alternate" type="application/rss+xml" href="{url}rss-log" title="RSS feed for {repo|escape}"/> </head> <body> <div id="container"> <div class="page-header"> - <h1><a href="{url}summary{sessionvars%urlparameter}">#repo|escape#</a> / file revision</h1> + <h1><a href="{url}summary{sessionvars%urlparameter}">{repo|escape}</a> / file revision</h1> <form action="{url}log"> {sessionvars%hiddenformentry} @@ -24,40 +24,40 @@ <li><a href="{url}graph/{node|short}{sessionvars%urlparameter}">graph</a></li> <li><a href="{url}tags{sessionvars%urlparameter}">tags</a></li> <li><a href="{url}branches{sessionvars%urlparameter}">branches</a></li> - <li><a href="{url}file/#node|short##path|urlescape#{sessionvars%urlparameter}">files</a></li> + <li><a href="{url}file/{node|short}{path|urlescape}{sessionvars%urlparameter}">files</a></li> </ul> </div> <ul class="submenu"> <li class="current">file</li> - <li><a href="{url}log/{node|short}/#file|urlescape#{sessionvars%urlparameter}">revisions</a></li> - <li><a href="{url}annotate/{node|short}/#file|urlescape#{sessionvars%urlparameter}">annotate</a></li> + <li><a href="{url}log/{node|short}/{file|urlescape}{sessionvars%urlparameter}">revisions</a></li> + <li><a href="{url}annotate/{node|short}/{file|urlescape}{sessionvars%urlparameter}">annotate</a></li> <li><a href="{url}diff/{node|short}/{file|urlescape}{sessionvars%urlparameter}">diff</a></li> - <li><a href="{url}raw-file/{node|short}/#file|urlescape#">raw</a></li> + <li><a href="{url}raw-file/{node|short}/{file|urlescape}">raw</a></li> </ul> <h2 class="no-link no-border">{file|escape}@{node|short}</h2> - <h3 class="changeset">#file|escape#</h3> - <p class="changeset-age"><span>#date|age# ago</span></p> + <h3 class="changeset">{file|escape}</h3> + <p class="changeset-age"><span>{date|age} ago</span></p> <dl class="overview"> <dt>author</dt> - <dd>#author|obfuscate#</dd> + <dd>{author|obfuscate}</dd> <dt>date</dt> - <dd>#date|date#</dd> - #branch%filerevbranch# + <dd>{date|date}</dd> + {branch%filerevbranch} <dt>changeset {rev}</dt> - <dd><a class="list" href="{url}rev/#node|short#{sessionvars%urlparameter}">#node|short#</a></dd> - #parent%filerevparent# - #child%filerevchild# + <dd><a class="list" href="{url}rev/{node|short}{sessionvars%urlparameter}">{node|short}</a></dd> + {parent%filerevparent} + {child%filerevchild} <dt>permissions</dt> - <dd>#permissions|permissions#</dd> + <dd>{permissions|permissions}</dd> </dl> <p class="description">{desc|strip|escape|addbreaks|nonempty}</p> <div class="source"> - #text%fileline# + {text%fileline} </div> -#footer# +{footer}
--- a/templates/monoblue/footer.tmpl Fri May 15 10:46:59 2009 +0200 +++ b/templates/monoblue/footer.tmpl Fri May 15 10:47:05 2009 +0200 @@ -8,7 +8,7 @@ </div> <div id="powered-by"> - <p><a href="http://www.selenic.com/mercurial/" title="Mercurial"><img src="#staticurl#hglogo.png" width=75 height=90 border=0 alt="mercurial"></a></p> + <p><a href="http://www.selenic.com/mercurial/" title="Mercurial"><img src="{staticurl}hglogo.png" width=75 height=90 border=0 alt="mercurial"></a></p> </div> <div id="corner-top-left"></div>
--- a/templates/monoblue/graph.tmpl Fri May 15 10:46:59 2009 +0200 +++ b/templates/monoblue/graph.tmpl Fri May 15 10:47:05 2009 +0200 @@ -1,14 +1,14 @@ -#header# - <title>#repo|escape#: graph</title> - <link rel="alternate" type="application/atom+xml" href="{url}atom-log" title="Atom feed for #repo|escape#"/> - <link rel="alternate" type="application/rss+xml" href="{url}rss-log" title="RSS feed for #repo|escape#"/> - <!--[if IE]><script type="text/javascript" src="#staticurl#excanvas.js"></script><![endif]--> +{header} + <title>{repo|escape}: graph</title> + <link rel="alternate" type="application/atom+xml" href="{url}atom-log" title="Atom feed for {repo|escape}"/> + <link rel="alternate" type="application/rss+xml" href="{url}rss-log" title="RSS feed for {repo|escape}"/> + <!--[if IE]><script type="text/javascript" src="{staticurl}excanvas.js"></script><![endif]--> </head> <body> <div id="container"> <div class="page-header"> - <h1><a href="{url}summary{sessionvars%urlparameter}">#repo|escape#</a> / graph</h1> + <h1><a href="{url}summary{sessionvars%urlparameter}">{repo|escape}</a> / graph</h1> <form action="{url}log"> {sessionvars%hiddenformentry} @@ -25,7 +25,7 @@ <li class="current">graph</li> <li><a href="{url}tags{sessionvars%urlparameter}">tags</a></li> <li><a href="{url}branches{sessionvars%urlparameter}">branches</a></li> - <li><a href="{url}file/#node|short#{sessionvars%urlparameter}">files</a></li> + <li><a href="{url}file/{node|short}{sessionvars%urlparameter}">files</a></li> </ul> </div> @@ -34,11 +34,11 @@ <div id="noscript">The revision graph only works with JavaScript-enabled browsers.</div> <div id="wrapper"> <ul id="nodebgs"></ul> - <canvas id="graph" width="224" height="#canvasheight#"></canvas> + <canvas id="graph" width="224" height="{canvasheight}"></canvas> <ul id="graphnodes"></ul> </div> - <script type="text/javascript" src="#staticurl#graph.js"></script> + <script type="text/javascript" src="{staticurl}graph.js"></script> <script> <!-- hide script content @@ -115,4 +115,4 @@ | {changenav%navgraphentry} </div> -#footer# +{footer}
--- a/templates/monoblue/index.tmpl Fri May 15 10:46:59 2009 +0200 +++ b/templates/monoblue/index.tmpl Fri May 15 10:47:05 2009 +0200 @@ -1,5 +1,5 @@ -#header# - <title>#repo|escape#: Mercurial repositories index</title> +{header} + <title>{repo|escape}: Mercurial repositories index</title> </head> <body> @@ -12,21 +12,21 @@ <table cellspacing="0"> <tr> - <td><a href="?sort=#sort_name#">Name</a></td> - <td><a href="?sort=#sort_description#">Description</a></td> - <td><a href="?sort=#sort_contact#">Contact</a></td> - <td><a href="?sort=#sort_lastchange#">Last change</a></td> + <td><a href="?sort={sort_name}">Name</a></td> + <td><a href="?sort={sort_description}">Description</a></td> + <td><a href="?sort={sort_contact}">Contact</a></td> + <td><a href="?sort={sort_lastchange}">Last change</a></td> <td> </td> <td> </td> </tr> - #entries%indexentry# + {entries%indexentry} </table> <div class="page-footer"> {motd} </div> <div id="powered-by"> - <p><a href="http://www.selenic.com/mercurial/" title="Mercurial"><img src="#staticurl#hglogo.png" width=75 height=90 border=0 alt="mercurial"></a></p> + <p><a href="http://www.selenic.com/mercurial/" title="Mercurial"><img src="{staticurl}hglogo.png" width=75 height=90 border=0 alt="mercurial"></a></p> </div> <div id="corner-top-left"></div>
--- a/templates/monoblue/manifest.tmpl Fri May 15 10:46:59 2009 +0200 +++ b/templates/monoblue/manifest.tmpl Fri May 15 10:47:05 2009 +0200 @@ -1,13 +1,13 @@ -#header# -<title>#repo|escape#: files</title> - <link rel="alternate" type="application/atom+xml" href="{url}atom-log" title="Atom feed for #repo|escape#"/> - <link rel="alternate" type="application/rss+xml" href="{url}rss-log" title="RSS feed for #repo|escape#"/> +{header} +<title>{repo|escape}: files</title> + <link rel="alternate" type="application/atom+xml" href="{url}atom-log" title="Atom feed for {repo|escape}"/> + <link rel="alternate" type="application/rss+xml" href="{url}rss-log" title="RSS feed for {repo|escape}"/> </head> <body> <div id="container"> <div class="page-header"> - <h1><a href="{url}summary{sessionvars%urlparameter}">#repo|escape#</a> / files</h1> + <h1><a href="{url}summary{sessionvars%urlparameter}">{repo|escape}</a> / files</h1> <form action="{url}log"> {sessionvars%hiddenformentry} @@ -29,23 +29,23 @@ </div> <ul class="submenu"> - <li><a href="{url}rev/#node|short#{sessionvars%urlparameter}">changeset</a> #archives%archiveentry#</li> + <li><a href="{url}rev/{node|short}{sessionvars%urlparameter}">changeset</a> {archives%archiveentry}</li> {archives%archiveentry} </ul> <h2 class="no-link no-border">files</h2> - <p class="files">#path|escape# <span class="logtags">{inbranch%inbranchtag}{branches%branchtag}{tags%tagtag}</span></p> + <p class="files">{path|escape} <span class="logtags">{inbranch%inbranchtag}{branches%branchtag}{tags%tagtag}</span></p> <table> - <tr class="parity#upparity#"> + <tr class="parity{upparity}"> <td>drwxr-xr-x</td> <td></td> <td></td> - <td><a href="{url}file/#node|short##up|urlescape#{sessionvars%urlparameter}">[up]</a></td> + <td><a href="{url}file/{node|short}{up|urlescape}{sessionvars%urlparameter}">[up]</a></td> <td class="link"> </td> </tr> - #dentries%direntry# - #fentries%fileentry# + {dentries%direntry} + {fentries%fileentry} </table> -#footer# +{footer}
--- a/templates/monoblue/map Fri May 15 10:46:59 2009 +0200 +++ b/templates/monoblue/map Fri May 15 10:47:05 2009 +0200 @@ -11,25 +11,25 @@ navshortentry = '<a href="{url}shortlog/{node|short}{sessionvars%urlparameter}">{label|escape}</a> ' navgraphentry = '<a href="{url}graph/{node|short}{sessionvars%urlparameter}">{label|escape}</a> ' filenaventry = '<a href="{url}log/{node|short}/{file|urlescape}{sessionvars%urlparameter}">{label|escape}</a>' -filedifflink = '<a href="#url#diff/#node|short#/#file|urlescape#{sessionvars%urlparameter}">#file|escape#</a> ' +filedifflink = '<a href="{url}diff/{node|short}/{file|urlescape}{sessionvars%urlparameter}">{file|escape}</a> ' filenodelink = ' - <tr class="parity#parity#"> - <td><a href="{url}diff/{node|short}/{file|urlescape}{sessionvars%urlparameter}">#file|escape#</a></td> + <tr class="parity{parity}"> + <td><a href="{url}diff/{node|short}/{file|urlescape}{sessionvars%urlparameter}">{file|escape}</a></td> <td></td> <td> - <a href="#url#file/#node|short#/#file|urlescape#{sessionvars%urlparameter}">file</a> | - <a href="#url#annotate/#node|short#/#file|urlescape#{sessionvars%urlparameter}">annotate</a> | - <a href="#url#diff/#node|short#/#file|urlescape#{sessionvars%urlparameter}">diff</a> | - <a href="#url#log/#node|short#/#file|urlescape#{sessionvars%urlparameter}">revisions</a> + <a href="{url}file/{node|short}/{file|urlescape}{sessionvars%urlparameter}">file</a> | + <a href="{url}annotate/{node|short}/{file|urlescape}{sessionvars%urlparameter}">annotate</a> | + <a href="{url}diff/{node|short}/{file|urlescape}{sessionvars%urlparameter}">diff</a> | + <a href="{url}log/{node|short}/{file|urlescape}{sessionvars%urlparameter}">revisions</a> </td> </tr>' filenolink = ' - <tr class="parity#parity#"> + <tr class="parity{parity}"> <td> - <a href="{url}diff/{node|short}/{file|urlescape}{sessionvars%urlparameter}">#file|escape#</a></td><td></td><td>file | + <a href="{url}diff/{node|short}/{file|urlescape}{sessionvars%urlparameter}">{file|escape}</a></td><td></td><td>file | annotate | - <a href="#url#diff/#node|short#/#file|urlescape#{sessionvars%urlparameter}">diff</a> | - <a href="#url#log/#node|short#/#file|urlescape#{sessionvars%urlparameter}">revisions</a> + <a href="{url}diff/{node|short}/{file|urlescape}{sessionvars%urlparameter}">diff</a> | + <a href="{url}log/{node|short}/{file|urlescape}{sessionvars%urlparameter}">revisions</a> </td> </tr>' fileellipses = '...' @@ -38,30 +38,30 @@ changeset = changeset.tmpl manifest = manifest.tmpl direntry = ' - <tr class="parity#parity#"> + <tr class="parity{parity}"> <td>drwxr-xr-x</td> <td></td> <td></td> - <td><a href="#url#file/#node|short##path|urlescape#{sessionvars%urlparameter}">#basename|escape#</a></td> - <td><a href="#url#file/#node|short##path|urlescape#{sessionvars%urlparameter}">files</a></td> + <td><a href="{url}file/{node|short}{path|urlescape}{sessionvars%urlparameter}">{basename|escape}</a></td> + <td><a href="{url}file/{node|short}{path|urlescape}{sessionvars%urlparameter}">files</a></td> </tr>' fileentry = ' - <tr class="parity#parity#"> - <td>#permissions|permissions#</td> - <td>#date|isodate#</td> - <td>#size#</td> - <td><a href="#url#file/#node|short#/#file|urlescape#{sessionvars%urlparameter}">#basename|escape#</a></td> + <tr class="parity{parity}"> + <td>{permissions|permissions}</td> + <td>{date|isodate}</td> + <td>{size}</td> + <td><a href="{url}file/{node|short}/{file|urlescape}{sessionvars%urlparameter}">{basename|escape}</a></td> <td> - <a href="#url#file/#node|short#/#file|urlescape#{sessionvars%urlparameter}">file</a> | - <a href="#url#log/#node|short#/#file|urlescape#{sessionvars%urlparameter}">revisions</a> | - <a href="#url#annotate/#node|short#/#file|urlescape#{sessionvars%urlparameter}">annotate</a> + <a href="{url}file/{node|short}/{file|urlescape}{sessionvars%urlparameter}">file</a> | + <a href="{url}log/{node|short}/{file|urlescape}{sessionvars%urlparameter}">revisions</a> | + <a href="{url}annotate/{node|short}/{file|urlescape}{sessionvars%urlparameter}">annotate</a> </td> </tr>' filerevision = filerevision.tmpl fileannotate = fileannotate.tmpl filediff = filediff.tmpl filelog = filelog.tmpl -fileline = '<div style="font-family:monospace" class="parity#parity#"><pre><a class="linenr" href="##lineid#" id="#lineid#">#linenumber#</a> #line|escape#</pre></div>' +fileline = '<div style="font-family:monospace" class="parity{parity}"><pre><a class="linenr" href="#{lineid}" id="{lineid}">{linenumber}</a> {line|escape}</pre></div>' annotateline = ' <tr class="parity{parity}"> <td class="linenr"> @@ -73,15 +73,15 @@ </td> <td class="source">{line|escape}</td> </tr>' -difflineplus = '<span style="color:#008800;"><a class="linenr" href="##lineid#" id="#lineid#">#linenumber#</a> #line|escape#</span>' -difflineminus = '<span style="color:#cc0000;"><a class="linenr" href="##lineid#" id="#lineid#">#linenumber#</a> #line|escape#</span>' -difflineat = '<span style="color:#990099;"><a class="linenr" href="##lineid#" id="#lineid#">#linenumber#</a> #line|escape#</span>' -diffline = '<span><a class="linenr" href="##lineid#" id="#lineid#">#linenumber#</a> #line|escape#</span>' +difflineplus = '<span style="color:#008800;"><a class="linenr" href="#{lineid}" id="{lineid}">{linenumber}</a> {line|escape}</span>' +difflineminus = '<span style="color:#cc0000;"><a class="linenr" href="#{lineid}" id="{lineid}">{linenumber}</a> {line|escape}</span>' +difflineat = '<span style="color:#990099;"><a class="linenr" href="#{lineid}" id="{lineid}">{linenumber}</a> {line|escape}</span>' +diffline = '<span><a class="linenr" href="#{lineid}" id="{lineid}">{linenumber}</a> {line|escape}</span>' changelogparent = ' <tr> - <th class="parent">parent #rev#:</th> + <th class="parent">parent {rev}:</th> <td class="parent"> - <a href="#url#rev/#node|short#{sessionvars%urlparameter}">#node|short#</a> + <a href="{url}rev/{node|short}{sessionvars%urlparameter}">{node|short}</a> </td> </tr>' changesetbranch = '<dt>branch</dt><dd>{name}</dd>' @@ -97,7 +97,7 @@ </a> </dd>' filerename = '{file|escape}@' -filelogrename = '| <a href="{url}file/#node|short#/#file|urlescape#{sessionvars%urlparameter}">base</a>' +filelogrename = '| <a href="{url}file/{node|short}/{file|urlescape}{sessionvars%urlparameter}">base</a>' fileannotateparent = ' <dt>parent {rev}</dt> <dd> @@ -106,8 +106,8 @@ </a> </dd>' changelogchild = ' - <dt>child #rev#:</dt> - <dd><a href="{url}rev/#node|short#{sessionvars%urlparameter}">#node|short#</a></dd>' + <dt>child {rev}:</dt> + <dd><a href="{url}rev/{node|short}{sessionvars%urlparameter}">{node|short}</a></dd>' changesetchild = ' <dt>child {rev}</dt> <dd><a href="{url}rev/{node|short}{sessionvars%urlparameter}">{node|short}</a></dd>' @@ -123,13 +123,13 @@ </dd>' tags = tags.tmpl tagentry = ' - <tr class="parity#parity#"> - <td class="nowrap">#date|age# ago</td> - <td><a href="{url}rev/{node|short}{sessionvars%urlparameter}">#tag|escape#</a></td> + <tr class="parity{parity}"> + <td class="nowrap">{date|age} ago</td> + <td><a href="{url}rev/{node|short}{sessionvars%urlparameter}">{tag|escape}</a></td> <td class="nowrap"> - <a href="{url}rev/#node|short#{sessionvars%urlparameter}">changeset</a> | - <a href="{url}log/#node|short#{sessionvars%urlparameter}">changelog</a> | - <a href="{url}file/#node|short#{sessionvars%urlparameter}">files</a> + <a href="{url}rev/{node|short}{sessionvars%urlparameter}">changeset</a> | + <a href="{url}log/{node|short}{sessionvars%urlparameter}">changelog</a> | + <a href="{url}file/{node|short}{sessionvars%urlparameter}">files</a> </td> </tr>' branches = branches.tmpl @@ -144,52 +144,52 @@ <a href="{url}file/{node|short}{sessionvars%urlparameter}">files</a> </td> </tr>' -diffblock = '<pre>#lines#</pre>' +diffblock = '<pre>{lines}</pre>' filediffparent = ' <dt>parent {rev}</dt> <dd><a href="{url}diff/{node|short}/{file|urlescape}{sessionvars%urlparameter}">{node|short}</a></dd>' filelogparent = ' <tr> - <td align="right">parent #rev#: </td> - <td><a href="{url}file/{node|short}/#file|urlescape#{sessionvars%urlparameter}">#node|short#</a></td> + <td align="right">parent {rev}: </td> + <td><a href="{url}file/{node|short}/{file|urlescape}{sessionvars%urlparameter}">{node|short}</a></td> </tr>' filediffchild = ' <dt>child {rev}</dt> <dd><a href="{url}diff/{node|short}/{file|urlescape}{sessionvars%urlparameter}">{node|short}</a></dd>' filelogchild = ' <tr> - <td align="right">child #rev#: </td> - <td><a href="{url}file{node|short}/#file|urlescape#{sessionvars%urlparameter}">#node|short#</a></td> + <td align="right">child {rev}: </td> + <td><a href="{url}file{node|short}/{file|urlescape}{sessionvars%urlparameter}">{node|short}</a></td> </tr>' shortlog = shortlog.tmpl tagtag = '<span class="tagtag" title="{name}">{name}</span> ' branchtag = '<span class="branchtag" title="{name}">{name}</span> ' inbranchtag = '<span class="inbranchtag" title="{name}">{name}</span> ' shortlogentry = ' - <tr class="parity#parity#"> - <td class="nowrap">#date|age# ago</td> - <td>#author|person#</td> + <tr class="parity{parity}"> + <td class="nowrap">{date|age} ago</td> + <td>{author|person}</td> <td> - <a href="{url}rev/#node|short#{sessionvars%urlparameter}"> - #desc|strip|firstline|escape|nonempty# + <a href="{url}rev/{node|short}{sessionvars%urlparameter}"> + {desc|strip|firstline|escape|nonempty} <span class="logtags">{inbranch%inbranchtag}{branches%branchtag}{tags%tagtag}</span> </a> </td> <td class="nowrap"> - <a href="{url}rev/#node|short#{sessionvars%urlparameter}">changeset</a> | - <a href="{url}file/#node|short#{sessionvars%urlparameter}">files</a> + <a href="{url}rev/{node|short}{sessionvars%urlparameter}">changeset</a> | + <a href="{url}file/{node|short}{sessionvars%urlparameter}">files</a> </td> </tr>' filelogentry = ' - <tr class="parity#parity#"> - <td class="nowrap">#date|age# ago</td> - <td><a href="{url}rev/#node|short#{sessionvars%urlparameter}">#desc|strip|firstline|escape|nonempty#</a></td> + <tr class="parity{parity}"> + <td class="nowrap">{date|age} ago</td> + <td><a href="{url}rev/{node|short}{sessionvars%urlparameter}">{desc|strip|firstline|escape|nonempty}</a></td> <td class="nowrap"> - <a href="{url}file/#node|short#/#file|urlescape#{sessionvars%urlparameter}">file</a> | <a href="{url}diff/#node|short#/#file|urlescape#{sessionvars%urlparameter}">diff</a> | <a href="{url}annotate/#node|short#/#file|urlescape#{sessionvars%urlparameter}">annotate</a> - #rename%filelogrename# + <a href="{url}file/{node|short}/{file|urlescape}{sessionvars%urlparameter}">file</a> | <a href="{url}diff/{node|short}/{file|urlescape}{sessionvars%urlparameter}">diff</a> | <a href="{url}annotate/{node|short}/{file|urlescape}{sessionvars%urlparameter}">annotate</a> + {rename%filelogrename} </td> </tr>' -archiveentry = '<li><a href="{url}archive/{node|short}{extension}">#type|escape#</a></li>' +archiveentry = '<li><a href="{url}archive/{node|short}{extension}">{type|escape}</a></li>' indexentry = ' <tr class="parity{parity}"> <td><a href="{url}{sessionvars%urlparameter}">{name|escape}</a></td> @@ -206,6 +206,6 @@ </tr>\n' indexarchiveentry = '<a href="{url}archive/{node|short}{extension}">{type|escape}</a> ' index = index.tmpl -urlparameter = '#separator##name#=#value|urlescape#' -hiddenformentry = '<input type="hidden" name="#name#" value="#value|escape#" />' +urlparameter = '{separator}{name}={value|urlescape}' +hiddenformentry = '<input type="hidden" name="{name}" value="{value|escape}" />' graph = graph.tmpl
--- a/templates/monoblue/notfound.tmpl Fri May 15 10:46:59 2009 +0200 +++ b/templates/monoblue/notfound.tmpl Fri May 15 10:47:05 2009 +0200 @@ -1,13 +1,13 @@ {header} - <title>#repo|escape#: Mercurial repository not found</title> - <link rel="alternate" type="application/atom+xml" href="{url}atom-log" title="Atom feed for #repo|escape#"/> - <link rel="alternate" type="application/rss+xml" href="{url}rss-log" title="RSS feed for #repo|escape#"/> + <title>{repo|escape}: Mercurial repository not found</title> + <link rel="alternate" type="application/atom+xml" href="{url}atom-log" title="Atom feed for {repo|escape}"/> + <link rel="alternate" type="application/rss+xml" href="{url}rss-log" title="RSS feed for {repo|escape}"/> </head> <body> <div id="container"> <div class="page-header"> - <h1><a href="{url}summary{sessionvars%urlparameter}">#repo|escape#</a> / Not found: {repo|escape}</h1> + <h1><a href="{url}summary{sessionvars%urlparameter}">{repo|escape}</a> / Not found: {repo|escape}</h1> <form action="{url}log"> {sessionvars%hiddenformentry} @@ -24,7 +24,7 @@ <li><a href="{url}graph/{node|short}{sessionvars%urlparameter}">graph</a></li> <li><a href="{url}tags{sessionvars%urlparameter}">tags</a></li> <li><a href="{url}branches{sessionvars%urlparameter}">branches</a></li> - <li><a href="{url}file/#node|short#{sessionvars%urlparameter}">files</a>#archives%archiveentry#</li> + <li><a href="{url}file/{node|short}{sessionvars%urlparameter}">files</a>{archives%archiveentry}</li> </ul> </div>
--- a/templates/monoblue/search.tmpl Fri May 15 10:46:59 2009 +0200 +++ b/templates/monoblue/search.tmpl Fri May 15 10:47:05 2009 +0200 @@ -1,19 +1,19 @@ -#header# - <title>#repo|escape#: Search</title> - <link rel="alternate" type="application/atom+xml" href="{url}atom-log" title="Atom feed for #repo|escape#"/> - <link rel="alternate" type="application/rss+xml" href="{url}rss-log" title="RSS feed for #repo|escape#"/> +{header} + <title>{repo|escape}: Search</title> + <link rel="alternate" type="application/atom+xml" href="{url}atom-log" title="Atom feed for {repo|escape}"/> + <link rel="alternate" type="application/rss+xml" href="{url}rss-log" title="RSS feed for {repo|escape}"/> </head> <body> <div id="container"> <div class="page-header"> - <h1><a href="{url}summary{sessionvars%urlparameter}">#repo|escape#</a> / search</h1> + <h1><a href="{url}summary{sessionvars%urlparameter}">{repo|escape}</a> / search</h1> <form action="{url}log"> {sessionvars%hiddenformentry} <dl class="search"> <dt><label>Search: </label></dt> - <dd><input type="text" name="rev" value="#query|escape#" /></dd> + <dd><input type="text" name="rev" value="{query|escape}" /></dd> </dl> </form> @@ -24,11 +24,11 @@ <li><a href="{url}graph/{node|short}{sessionvars%urlparameter}">graph</a></li> <li><a href="{url}tags{sessionvars%urlparameter}">tags</a></li> <li><a href="{url}branches{sessionvars%urlparameter}">branches</a></li> - <li><a href="{url}file/#node|short#{sessionvars%urlparameter}">files</a>#archives%archiveentry# + <li><a href="{url}file/{node|short}{sessionvars%urlparameter}">files</a>{archives%archiveentry} </ul> </div> - <h2 class="no-link no-border">searching for #query|escape#</h2> - #entries# + <h2 class="no-link no-border">searching for {query|escape}</h2> + {entries} -#footer# +{footer}
--- a/templates/monoblue/shortlog.tmpl Fri May 15 10:46:59 2009 +0200 +++ b/templates/monoblue/shortlog.tmpl Fri May 15 10:47:05 2009 +0200 @@ -1,13 +1,13 @@ -#header# - <title>#repo|escape#: shortlog</title> - <link rel="alternate" type="application/atom+xml" href="{url}atom-log" title="Atom feed for #repo|escape#"/> - <link rel="alternate" type="application/rss+xml" href="{url}rss-log" title="RSS feed for #repo|escape#"/> +{header} + <title>{repo|escape}: shortlog</title> + <link rel="alternate" type="application/atom+xml" href="{url}atom-log" title="Atom feed for {repo|escape}"/> + <link rel="alternate" type="application/rss+xml" href="{url}rss-log" title="RSS feed for {repo|escape}"/> </head> <body> <div id="container"> <div class="page-header"> - <h1><a href="{url}summary{sessionvars%urlparameter}">#repo|escape#</a> / shortlog</h1> + <h1><a href="{url}summary{sessionvars%urlparameter}">{repo|escape}</a> / shortlog</h1> <form action="{url}log"> {sessionvars%hiddenformentry} @@ -24,18 +24,18 @@ <li><a href="{url}graph/{node|short}{sessionvars%urlparameter}">graph</a></li> <li><a href="{url}tags{sessionvars%urlparameter}">tags</a></li> <li><a href="{url}branches{sessionvars%urlparameter}">branches</a></li> - <li><a href="{url}file/#node|short#{sessionvars%urlparameter}">files</a>#archives%archiveentry#</li> + <li><a href="{url}file/{node|short}{sessionvars%urlparameter}">files</a>{archives%archiveentry}</li> </ul> </div> <h2 class="no-link no-border">shortlog</h2> <table> -#entries%shortlogentry# +{entries%shortlogentry} </table> <div class="page-path"> -#changenav%navshortentry# +{changenav%navshortentry} </div> -#footer# +{footer}
--- a/templates/monoblue/summary.tmpl Fri May 15 10:46:59 2009 +0200 +++ b/templates/monoblue/summary.tmpl Fri May 15 10:47:05 2009 +0200 @@ -1,13 +1,13 @@ -#header# - <title>#repo|escape#: Summary</title> - <link rel="alternate" type="application/atom+xml" href="{url}atom-log" title="Atom feed for #repo|escape#"/> - <link rel="alternate" type="application/rss+xml" href="{url}rss-log" title="RSS feed for #repo|escape#"/> +{header} + <title>{repo|escape}: Summary</title> + <link rel="alternate" type="application/atom+xml" href="{url}atom-log" title="Atom feed for {repo|escape}"/> + <link rel="alternate" type="application/rss+xml" href="{url}rss-log" title="RSS feed for {repo|escape}"/> </head> <body> <div id="container"> <div class="page-header"> - <h1><a href="{url}summary{sessionvars%urlparameter}">#repo|escape#</a> / summary</h1> + <h1><a href="{url}summary{sessionvars%urlparameter}">{repo|escape}</a> / summary</h1> <form action="{url}log"> {sessionvars%hiddenformentry} @@ -24,25 +24,25 @@ <li><a href="{url}graph/{node|short}{sessionvars%urlparameter}">graph</a></li> <li><a href="{url}tags{sessionvars%urlparameter}">tags</a></li> <li><a href="{url}branches{sessionvars%urlparameter}">branches</a></li> - <li><a href="{url}file/#node|short#{sessionvars%urlparameter}">files</a></li> + <li><a href="{url}file/{node|short}{sessionvars%urlparameter}">files</a></li> </ul> </div> <h2 class="no-link no-border">Mercurial Repository Overview</h2> <dl class="overview"> <dt>name</dt> - <dd>#repo|escape#</dd> + <dd>{repo|escape}</dd> <dt>description</dt> - <dd>#desc#</dd> + <dd>{desc}</dd> <dt>owner</dt> - <dd>#owner|obfuscate#</dd> + <dd>{owner|obfuscate}</dd> <dt>last change</dt> - <dd>#lastchange|rfc822date#</dd> + <dd>{lastchange|rfc822date}</dd> </dl> <h2><a href="{url}shortlog{sessionvars%urlparameter}">Changes</a></h2> <table> -#shortlog# +{shortlog} <tr class="light"> <td colspan="4"><a class="list" href="{url}shortlog{sessionvars%urlparameter}">...</a></td> </tr> @@ -50,7 +50,7 @@ <h2><a href="{url}tags{sessionvars%urlparameter}">Tags</a></h2> <table> -#tags# +{tags} <tr class="light"> <td colspan="3"><a class="list" href="{url}tags{sessionvars%urlparameter}">...</a></td> </tr> @@ -63,4 +63,4 @@ <td colspan="4"><a class="list" href="#">...</a></td> </tr> </table> -#footer# +{footer}
--- a/templates/monoblue/tags.tmpl Fri May 15 10:46:59 2009 +0200 +++ b/templates/monoblue/tags.tmpl Fri May 15 10:47:05 2009 +0200 @@ -1,13 +1,13 @@ -#header# - <title>#repo|escape#: Tags</title> - <link rel="alternate" type="application/atom+xml" href="{url}atom-log" title="Atom feed for #repo|escape#"/> - <link rel="alternate" type="application/rss+xml" href="{url}rss-log" title="RSS feed for #repo|escape#"/> +{header} + <title>{repo|escape}: Tags</title> + <link rel="alternate" type="application/atom+xml" href="{url}atom-log" title="Atom feed for {repo|escape}"/> + <link rel="alternate" type="application/rss+xml" href="{url}rss-log" title="RSS feed for {repo|escape}"/> </head> <body> <div id="container"> <div class="page-header"> - <h1><a href="{url}summary{sessionvars%urlparameter}">#repo|escape#</a> / Tags</h1> + <h1><a href="{url}summary{sessionvars%urlparameter}">{repo|escape}</a> / Tags</h1> <form action="{url}log"> {sessionvars%hiddenformentry} @@ -24,13 +24,13 @@ <li><a href="{url}graph/{node|short}{sessionvars%urlparameter}">graph</a></li> <li class="current">tags</li> <li><a href="{url}branches{sessionvars%urlparameter}">branches</a></li> - <li><a href="{url}file/#node|short#{sessionvars%urlparameter}">files</a></li> + <li><a href="{url}file/{node|short}{sessionvars%urlparameter}">files</a></li> </ul> </div> <h2 class="no-link no-border">tags</h2> <table cellspacing="0"> -#entries%tagentry# +{entries%tagentry} </table> -#footer# +{footer}