##// END OF EJS Templates
Add a hint for revert --all when aborting
Add a hint for revert --all when aborting

File last commit:

r2686:d98eebc4 default
r3020:ea2a9c13 default
Show More
map
53 lines | 4.1 KiB | text/plain | TextLexer
Vadim Gelfer
use safer string parser for template engine.
r1901 default = 'changelog'
mpm@selenic.com
Prettify the web interface...
r142 header = header.tmpl
footer = footer.tmpl
mpm@selenic.com
Add multiple keyword search to hgweb...
r538 search = search.tmpl
mpm@selenic.com
Revamped templated hgweb
r138 changelog = changelog.tmpl
Josef "Jeff" Sipek
[hgweb] Shortlog template for default theme
r2686 shortlog = shortlog.tmpl
shortlogentry = shortlogentry.tmpl
Vadim Gelfer
use safer string parser for template engine.
r1901 naventry = '<a href="?cl=#rev#">#label|escape#</a> '
Josef "Jeff" Sipek
[hgweb] Shortlog template for default theme
r2686 navshortentry = '<a href="?sl=#rev#">#label|escape#</a> '
Vadim Gelfer
use safer string parser for template engine.
r1901 filedifflink = '<a href="?fd=#node|short#;file=#file|urlescape#">#file|escape#</a> '
filenodelink = '<a href="?f=#filenode|short#;file=#file|urlescape#">#file|escape#</a> '
fileellipses = '...'
mpm@selenic.com
Revamped templated hgweb
r138 changelogentry = changelogentry.tmpl
Thomas Arendsen Hein
Use changelogentry.tmpl for search results, too....
r708 searchentry = changelogentry.tmpl
mpm@selenic.com
Revamped templated hgweb
r138 changeset = changeset.tmpl
manifest = manifest.tmpl
Vadim Gelfer
use safer string parser for template engine.
r1901 manifestdirentry = '<tr class="parity#parity#"><td><tt>drwxr-xr-x</tt>&nbsp;<td><a href="?cmd=manifest;manifest=#manifest#;path=#path|urlescape#">#basename|escape#/</a>'
manifestfileentry = '<tr class="parity#parity#"><td><tt>#permissions|permissions#</tt>&nbsp;<td><a href="?f=#filenode|short#;file=#file|urlescape#">#basename|escape#</a>'
mpm@selenic.com
Revamped templated hgweb
r138 filerevision = filerevision.tmpl
fileannotate = fileannotate.tmpl
filediff = filediff.tmpl
filelog = filelog.tmpl
Vadim Gelfer
use safer string parser for template engine.
r1901 fileline = '<div class="parity#parity#"><span class="lineno">#linenumber#</span>#line|escape#</div>'
mpm@selenic.com
Revamped templated hgweb
r138 filelogentry = filelogentry.tmpl
Vadim Gelfer
use safer string parser for template engine.
r1901 annotateline = '<tr class="parity#parity#"><td class="annotate"><a href="?cs=#node|short#">#author|obfuscate#@#rev#</a></td><td><pre>#line|escape#</pre></td></tr>'
difflineplus = '<span class="plusline">#line|escape#</span>'
difflineminus = '<span class="minusline">#line|escape#</span>'
difflineat = '<span class="atline">#line|escape#</span>'
diffline = '#line|escape#'
changelogparent = '<tr><th class="parent">parent #rev#:</th><td class="parent"><a href="?cs=#node|short#">#node|short#</a></td></tr>'
changesetparent = '<tr><th class="parent">parent #rev#:</th><td class="parent"><a href="?cs=#node|short#">#node|short#</a></td></tr>'
filerevparent = '<tr><td class="metatag">parent:</td><td><a href="?f=#node|short#;file=#file|urlescape#">#node|short#</a></td></tr>'
filerename = '<tr><td class="metatag">parent:</td><td><a href="?f=#node|short#;file=#file|urlescape#">#file|escape#@#node|short#</a></td></tr>'
Thomas Arendsen Hein
hgweb: Synchronised filelogentry to changelogentry.
r2132 filelogrename = '<tr><th>base:</th><td><a href="?f=#node|short#;file=#file|urlescape#">#file|escape#@#node|short#</a></td></tr>'
Vadim Gelfer
use safer string parser for template engine.
r1901 fileannotateparent = '<tr><td class="metatag">parent:</td><td><a href="?fa=#filenode|short#;file=#file|urlescape#">#node|short#</a></td></tr>'
changesetchild = '<tr><th class="child">child #rev#:</th><td class="child"><a href="?cs=#node|short#">#node|short#</a></td></tr>'
changelogchild = '<tr><th class="child">child #rev#:</th><td class="child"><a href="?cs=#node|short#">#node|short#</a></td></tr>'
filerevchild = '<tr><td class="metatag">child:</td><td><a href="?f=#node|short#;file=#file|urlescape#">#node|short#</a></td></tr>'
fileannotatechild = '<tr><td class="metatag">child:</td><td><a href="?fa=#filenode|short#;file=#file|urlescape#">#node|short#</a></td></tr>'
mpm@selenic.com
hgweb: add tags links and manifest links...
r168 tags = tags.tmpl
Thomas Arendsen Hein
Try harder to display node hashes in tags view in monospaced font....
r2131 tagentry = '<li class="tagEntry parity#parity#"><tt class="node">#node#</tt> <a href="?cs=#node|short#">#tag|escape#</a></li>'
Vadim Gelfer
use safer string parser for template engine.
r1901 diffblock = '<pre class="parity#parity#">#lines#</pre>'
changelogtag = '<tr><th class="tag">tag:</th><td class="tag">#tag|escape#</td></tr>'
changesettag = '<tr><th class="tag">tag:</th><td class="tag">#tag|escape#</td></tr>'
filediffparent = '<tr><th class="parent">parent #rev#:</th><td class="parent"><a href="?cs=#node|short#">#node|short#</a></td></tr>'
Thomas Arendsen Hein
hgweb: Synchronised filelogentry to changelogentry.
r2132 filelogparent = '<tr><th>parent #rev#:</th><td><a href="?f=#node|short#;file=#file|urlescape#">#node|short#</a></td></tr>'
Vadim Gelfer
use safer string parser for template engine.
r1901 filediffchild = '<tr><th class="child">child #rev#:</th><td class="child"><a href="?cs=#node|short#">#node|short#</a></td></tr>'
Thomas Arendsen Hein
hgweb: Synchronised filelogentry to changelogentry.
r2132 filelogchild = '<tr><th>child #rev#:</th><td><a href="?f=#node|short#;file=#file|urlescape#">#node|short#</a></td></tr>'
Thomas Arendsen Hein
Make hgwebdir columns sortable.
r2173 indexentry = '<tr class="parity#parity#"><td><a href="#url#">#name|escape#</a></td><td>#description#</td><td>#contact|obfuscate#</td><td class="age">#lastchange|age# ago</td><td class="indexlinks"><a href="#url#?cl=tip;style=rss">RSS</a> #archives%archiveentry#</td></tr>'
mpm@selenic.com
Add a multi-repository server...
r941 index = index.tmpl
Thomas Arendsen Hein
Add download links to hgwebdir index page for allowed archive types....
r2171 archiveentry = '<a href="#url#?ca=#node|short#;type=#type|urlescape#">#type|escape#</a> '
Ollivier Robert
Use a template for the error message.
r1123 notfound = notfound.tmpl
Thomas Arendsen Hein
Catch IOErrors and RepoErrors when serving repositories via hgweb.
r1554 error = error.tmpl