##// END OF EJS Templates
hgweb: centralize permission checks for protocol commands...
hgweb: centralize permission checks for protocol commands Consistently enforces authorization checks set up in hgrc up front, so that the actual commands don't have to worry about them and implementers of hgweb alternatives can easily implement their own permission checks.

File last commit:

r6693:7f58dec6 default
r6779:d3147b4e default
Show More
tags.tmpl
25 lines | 765 B | application/x-cheetah | CheetahLexer
mpm@selenic.com
hgweb: actually commit the tags template
r169 #header#
Thomas Arendsen Hein
Always escape repository name in hgweb, very important in notfound.tmpl.
r1549 <title>#repo|escape#: tags</title>
Robert Bachmann
Added support for the Atom syndication format
r5269 <link rel="alternate" type="application/atom+xml"
href="#url#atom-tags" title="Atom feed for #repo|escape#: tags">
Peter van Dijk
add rss link to tags page
r1768 <link rel="alternate" type="application/rss+xml"
Brendan Cully
Update templates to use NewWebInterface
r3265 href="#url#rss-tags" title="RSS feed for #repo|escape#: tags">
mpm@selenic.com
hgweb: actually commit the tags template
r169 </head>
<body>
<div class="buttons">
Thomas Arendsen Hein
hgweb: Apply the new method of passing session variables to links.
r3363 <a href="#url#log{sessionvars%urlparameter}">changelog</a>
<a href="#url#shortlog{sessionvars%urlparameter}">shortlog</a>
Augie Fackler
hgweb: Fix up non-coal styles to support graph.
r6693 <a href="#url#graph{sessionvars%urlparameter}">graph</a>
Thomas Arendsen Hein
Renamed "manifest" to "files" in web templates....
r6177 <a href="#url#file/#node|short#/{sessionvars%urlparameter}">files</a>
Brendan Cully
Update templates to use NewWebInterface
r3265 <a type="application/rss+xml" href="#url#rss-tags">rss</a>
Robert Bachmann
Added support for the Atom syndication format
r5269 <a type="application/atom+xml" href="#url#atom-tags">atom</a>
mpm@selenic.com
hgweb: actually commit the tags template
r169 </div>
<h2>tags:</h2>
mpm@selenic.com
[PATCH] Tags template cleanup...
r586 <ul id="tagEntries">
Josef "Jeff" Sipek
Added support for #foo%bar# syntax...
r974 #entries%tagentry#
mpm@selenic.com
[PATCH] Tags template cleanup...
r586 </ul>
mpm@selenic.com
hgweb: actually commit the tags template
r169
#footer#