##// END OF EJS Templates
patch: better handling of sequence of offset patch hunks (issue1941)...
patch: better handling of sequence of offset patch hunks (issue1941) The built-in patch implementation applied the hunks to the wrong lines of the file if the file in the repo has been modified to skew the patch line numbers and the file contains repetitive sequences of lines.

File last commit:

r8713:de6bb29e default
r10135:9a4034b6 stable
Show More
map
191 lines | 6.7 KiB | text/plain | TextLexer
Matt Mackall
templates: add coal web theme
r6436 default = 'shortlog'
mimetype = 'text/html; charset={encoding}'
header = header.tmpl
Dirkjan Ochtman
coal/paper: move actual templates from coal to paper
r7411 footer = ../paper/footer.tmpl
search = ../paper/search.tmpl
Matt Mackall
templates: add coal web theme
r6436
Dirkjan Ochtman
coal/paper: move actual templates from coal to paper
r7411 changelog = ../paper/shortlog.tmpl
shortlog = ../paper/shortlog.tmpl
shortlogentry = ../paper/shortlogentry.tmpl
graph = ../paper/graph.tmpl
Matt Mackall
templates: add coal web theme
r6436
naventry = '<a href="{url}log/{node|short}{sessionvars%urlparameter}">{label|escape}</a> '
navshortentry = '<a href="{url}shortlog/{node|short}{sessionvars%urlparameter}">{label|escape}</a> '
Dirkjan Ochtman
templates: fix navigation links for graph entries
r6701 navgraphentry = '<a href="{url}graph/{node|short}{sessionvars%urlparameter}">{label|escape}</a> '
Matt Mackall
templates: add coal web theme
r6436 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> '
filenodelink = '<a href="{url}file/{node|short}/{file|urlescape}{sessionvars%urlparameter}">{file|escape}</a> '
Dirkjan Ochtman
hgweb: remove links to non-existent file versions
r7182 filenolink = '{file|escape} '
Matt Mackall
templates: add coal web theme
r6436 fileellipses = '...'
Dirkjan Ochtman
coal/paper: move actual templates from coal to paper
r7411 changelogentry = ../paper/shortlogentry.tmpl
searchentry = ../paper/shortlogentry.tmpl
changeset = ../paper/changeset.tmpl
manifest = ../paper/manifest.tmpl
Matt Mackall
templates: add coal web theme
r6436
Martin Geisler
coal: break long lines in map file
r8373 direntry = '
<tr class="fileline parity{parity}">
<td class="name">
<a href="{url}file/{node|short}{path|urlescape}{sessionvars%urlparameter}">
<img src="{staticurl}coal-folder.png" alt="dir."/> {basename|escape}/
</a>
<a href="{url}file/{node|short}{path|urlescape}/{emptydirs|urlescape}{sessionvars%urlparameter}">
{emptydirs|escape}
</a>
</td>
<td class="size"></td>
<td class="permissions">drwxr-xr-x</td>
</tr>'
fileentry = '
<tr class="fileline parity{parity}">
<td class="filename">
<a href="{url}file/{node|short}/{file|urlescape}{sessionvars%urlparameter}">
<img src="{staticurl}coal-file.png" alt="file"/> {basename|escape}
</a>
</td>
<td class="size">{size}</td>
<td class="permissions">{permissions|permissions}</td>
</tr>'
Matt Mackall
templates: add coal web theme
r6436
Dirkjan Ochtman
coal/paper: move actual templates from coal to paper
r7411 filerevision = ../paper/filerevision.tmpl
fileannotate = ../paper/fileannotate.tmpl
filediff = ../paper/filediff.tmpl
filelog = ../paper/filelog.tmpl
Martin Geisler
coal, paper: add newlines when displaying a file in hgweb...
r8486 fileline = '
<div class="parity{parity} source"><a href="#{lineid}" id="{lineid}">{linenumber}</a> {line|escape}</div>'
Dirkjan Ochtman
coal/paper: move actual templates from coal to paper
r7411 filelogentry = ../paper/filelogentry.tmpl
Matt Mackall
templates: add coal web theme
r6436
Martin Geisler
coal: break long lines in map file
r8373 annotateline = '
<tr class="parity{parity}">
<td class="annotate">
<a href="{url}annotate/{node|short}/{file|urlescape}{sessionvars%urlparameter}#{targetline}"
title="{node|short}: {desc|escape|firstline}">{author|user}@{rev}</a>
</td>
<td class="source"><a href="#{lineid}" id="{lineid}">{linenumber}</a> {line|escape}</td>
</tr>'
Matt Mackall
templates: add coal web theme
r6436
Rocco Rutte
coal/paper: Wrap diff in <pre/>...
r8369 diffblock = '<div class="source bottomline parity{parity}"><pre>{lines}</pre></div>'
Brendan Cully
hgweb (coal/paper): make file, diff and annotate easier to render...
r7394 difflineplus = '<a href="#{lineid}" id="{lineid}">{linenumber}</a> <span class="plusline">{line|escape}</span>'
difflineminus = '<a href="#{lineid}" id="{lineid}">{linenumber}</a> <span class="minusline">{line|escape}</span>'
difflineat = '<a href="#{lineid}" id="{lineid}">{linenumber}</a> <span class="atline">{line|escape}</span>'
diffline = '<a href="#{lineid}" id="{lineid}">{linenumber}</a> {line|escape}'
Matt Mackall
templates: add coal web theme
r6436
Martin Geisler
coal: break long lines in map file
r8373 changelogparent = '
<tr>
<th class="parent">parent {rev}:</th>
<td class="parent"><a href="{url}rev/{node|short}{sessionvars%urlparameter}">{node|short}</a></td>
</tr>'
Matt Mackall
templates: add coal web theme
r6436
changesetparent = '<a href="{url}rev/{node|short}{sessionvars%urlparameter}">{node|short}</a> '
filerevparent = '<a href="{url}file/{node|short}/{file|urlescape}{sessionvars%urlparameter}">{rename%filerename}{node|short}</a> '
filerevchild = '<a href="{url}file/{node|short}/{file|urlescape}{sessionvars%urlparameter}">{node|short}</a> '
filerename = '{file|escape}@'
Martin Geisler
coal: break long lines in map file
r8373 filelogrename = '
<tr>
<th>base:</th>
<td>
<a href="{url}file/{node|short}/{file|urlescape}{sessionvars%urlparameter}">
{file|escape}@{node|short}
</a>
</td>
</tr>'
fileannotateparent = '
<tr>
<td class="metatag">parent:</td>
<td>
<a href="{url}annotate/{node|short}/{file|urlescape}{sessionvars%urlparameter}">
{rename%filerename}{node|short}
</a>
</td>
</tr>'
Stepan Koltsov
coal/paper: add missing spaces in changeset child formatting
r7668 changesetchild = ' <a href="{url}rev/{node|short}{sessionvars%urlparameter}">{node|short}</a>'
Martin Geisler
coal: break long lines in map file
r8373 changelogchild = '
<tr>
<th class="child">child</th>
<td class="child">
<a href="{url}rev/{node|short}{sessionvars%urlparameter}">
{node|short}
</a>
</td>
</tr>'
fileannotatechild = '
<tr>
<td class="metatag">child:</td>
<td>
<a href="{url}annotate/{node|short}/{file|urlescape}{sessionvars%urlparameter}">
{node|short}
</a>
</td>
</tr>'
Dirkjan Ochtman
coal/paper: move actual templates from coal to paper
r7411 tags = ../paper/tags.tmpl
Martin Geisler
coal: break long lines in map file
r8373 tagentry = '
<tr class="tagEntry parity{parity}">
<td>
<a href="{url}rev/{node|short}{sessionvars%urlparameter}">
{tag|escape}
</a>
</td>
<td class="node">
{node|short}
</td>
</tr>'
Sune Foldager
paper/coal: add branches page
r8353 branches = ../paper/branches.tmpl
Martin Geisler
coal: break long lines in map file
r8373 branchentry = '
<tr class="tagEntry parity{parity}">
<td>
Dirkjan Ochtman
hgweb: allow distinction between open/closed branches on branches page
r8713 <a href="{url}shortlog/{node|short}{sessionvars%urlparameter}" class="{status}">
Martin Geisler
coal: break long lines in map file
r8373 {branch|escape}
</a>
</td>
<td class="node">
{node|short}
</td>
</tr>'
Matt Mackall
templates: add coal web theme
r6436 changelogtag = '<span class="tag">{name|escape}</span> '
changesettag = '<span class="tag">{tag|escape}</span> '
Benoit Allard
coal/paper: display branch names in log
r7407 changelogbranchhead = '<span class="branchhead">{name|escape}</span> '
changelogbranchname = '<span class="branchname">{name|escape}</span> '
Martin Geisler
coal: break long lines in map file
r8373
filediffparent = '
<tr>
<th class="parent">parent {rev}:</th>
<td class="parent"><a href="{url}rev/{node|short}{sessionvars%urlparameter}">{node|short}</a></td>
</tr>'
filelogparent = '
<tr>
<th>parent {rev}:</th>
<td><a href="{url}file/{node|short}/{file|urlescape}{sessionvars%urlparameter}">{node|short}</a></td>
</tr>'
filediffchild = '
<tr>
<th class="child">child {rev}:</th>
<td class="child"><a href="{url}rev/{node|short}{sessionvars%urlparameter}">{node|short}</a>
</td>
</tr>'
filelogchild = '
<tr>
<th>child {rev}:</th>
<td><a href="{url}file/{node|short}/{file|urlescape}{sessionvars%urlparameter}">{node|short}</a></td>
</tr>'
indexentry = '
<tr class="parity{parity}">
<td><a href="{url}{sessionvars%urlparameter}">{name|escape}</a></td>
<td>{description}</td>
<td>{contact|obfuscate}</td>
<td class="age">{lastchange|age} ago</td>
<td class="indexlinks">{archives%indexarchiveentry}</td>
</tr>\n'
Brendan Cully
Improve archive links in coal/paper index
r6734 indexarchiveentry = '<a href="{url}archive/{node|short}{extension|urlescape}">&nbsp;&darr;{type|escape}</a>'
Dirkjan Ochtman
coal/paper: move actual templates from coal to paper
r7411 index = ../paper/index.tmpl
Martin Geisler
coal: break long lines in map file
r8373 archiveentry = '
<li>
<a href="{url}archive/{node|short}{extension|urlescape}">{type|escape}</a>
</li>'
Dirkjan Ochtman
coal/paper: move actual templates from coal to paper
r7411 notfound = ../paper/notfound.tmpl
error = ../paper/error.tmpl
Matt Mackall
templates: add coal web theme
r6436 urlparameter = '{separator}{name}={value|urlescape}'
hiddenformentry = '<input type="hidden" name="{name}" value="{value|escape}" />'