mercurial/templates/spartan/branches.tmpl
author Pierre-Yves David <pierre-yves.david@octobus.net>
Sat, 28 Nov 2020 14:29:50 +0100
changeset 45971 40f79997e81f
parent 25526 32f76eccbced
permissions -rw-r--r--
rust: fix non-utf8 char in requirements.rs Apparently Phabricator detect `rust/hg-core/src/requirements.rs` file as non utf8 ‽, and mark it as binary. During application it ended up being non-utf8 and this made Rust (and as a result heptapod) very angry:: error: couldn't read hg-core/src/requirements.rs: stream did not contain valid UTF-8 --> hg-core/src/lib.rs:11:9 | 11 | pub mod requirements; | ^^^^^^^^^^^^ error: aborting due to previous error error: could not compile `hg-core`. The after "fixing", the file content has no character matching the following regexp: [^0-9-a-zA-Z /(|).,{}!\[\]:"&=>?_*-;<`'#] So we should be fine, unless Phabricator does something funny again. Differential Revision: https://phab.mercurial-scm.org/D9444
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
8431
5c1aabc58004 spartan: use newer template syntax everywhere
Dirkjan Ochtman <dirkjan@ochtman.nl>
parents: 8357
diff changeset
     1
{header}
5c1aabc58004 spartan: use newer template syntax everywhere
Dirkjan Ochtman <dirkjan@ochtman.nl>
parents: 8357
diff changeset
     2
<title>{repo|escape}: branches</title>
8357
d974a32b59dc spartan: add branches page
Sune Foldager <cryo@cyanite.org>
parents:
diff changeset
     3
<link rel="alternate" type="application/atom+xml"
18526
9409aeaafdc1 hgweb: urlescape all urls, HTML escape repo/tag/branch/... names
Thomas Arendsen Hein <thomas@intevation.de>
parents: 18259
diff changeset
     4
   href="{url|urlescape}atom-branches" title="Atom feed for {repo|escape}: branches">
8357
d974a32b59dc spartan: add branches page
Sune Foldager <cryo@cyanite.org>
parents:
diff changeset
     5
<link rel="alternate" type="application/rss+xml"
18526
9409aeaafdc1 hgweb: urlescape all urls, HTML escape repo/tag/branch/... names
Thomas Arendsen Hein <thomas@intevation.de>
parents: 18259
diff changeset
     6
   href="{url|urlescape}rss-branches" title="RSS feed for {repo|escape}: branches">
8357
d974a32b59dc spartan: add branches page
Sune Foldager <cryo@cyanite.org>
parents:
diff changeset
     7
</head>
d974a32b59dc spartan: add branches page
Sune Foldager <cryo@cyanite.org>
parents:
diff changeset
     8
<body>
d974a32b59dc spartan: add branches page
Sune Foldager <cryo@cyanite.org>
parents:
diff changeset
     9
d974a32b59dc spartan: add branches page
Sune Foldager <cryo@cyanite.org>
parents:
diff changeset
    10
<div class="buttons">
18526
9409aeaafdc1 hgweb: urlescape all urls, HTML escape repo/tag/branch/... names
Thomas Arendsen Hein <thomas@intevation.de>
parents: 18259
diff changeset
    11
<a href="{url|urlescape}log{sessionvars%urlparameter}">changelog</a>
9409aeaafdc1 hgweb: urlescape all urls, HTML escape repo/tag/branch/... names
Thomas Arendsen Hein <thomas@intevation.de>
parents: 18259
diff changeset
    12
<a href="{url|urlescape}shortlog{sessionvars%urlparameter}">shortlog</a>
9409aeaafdc1 hgweb: urlescape all urls, HTML escape repo/tag/branch/... names
Thomas Arendsen Hein <thomas@intevation.de>
parents: 18259
diff changeset
    13
<a href="{url|urlescape}graph{sessionvars%urlparameter}">graph</a>
9409aeaafdc1 hgweb: urlescape all urls, HTML escape repo/tag/branch/... names
Thomas Arendsen Hein <thomas@intevation.de>
parents: 18259
diff changeset
    14
<a href="{url|urlescape}tags{sessionvars%urlparameter}">tags</a>
25526
32f76eccbced hgweb: don't point file links at tip hash where it doesn't make sense
Anton Shestakov <av6@dwimlabs.net>
parents: 18526
diff changeset
    15
<a href="{url|urlescape}file{sessionvars%urlparameter}">files</a>
18526
9409aeaafdc1 hgweb: urlescape all urls, HTML escape repo/tag/branch/... names
Thomas Arendsen Hein <thomas@intevation.de>
parents: 18259
diff changeset
    16
<a href="{url|urlescape}help{sessionvars%urlparameter}">help</a>
9409aeaafdc1 hgweb: urlescape all urls, HTML escape repo/tag/branch/... names
Thomas Arendsen Hein <thomas@intevation.de>
parents: 18259
diff changeset
    17
<a type="application/rss+xml" href="{url|urlescape}rss-branches">rss</a>
9409aeaafdc1 hgweb: urlescape all urls, HTML escape repo/tag/branch/... names
Thomas Arendsen Hein <thomas@intevation.de>
parents: 18259
diff changeset
    18
<a type="application/atom+xml" href="{url|urlescape}atom-branches">atom</a>
8357
d974a32b59dc spartan: add branches page
Sune Foldager <cryo@cyanite.org>
parents:
diff changeset
    19
</div>
d974a32b59dc spartan: add branches page
Sune Foldager <cryo@cyanite.org>
parents:
diff changeset
    20
18259
7bf412b767fe hgweb, spartan: add "URL breadcrumbs"
Angel Ezquerra <angel.ezquerra at gmail.com>
parents: 12846
diff changeset
    21
<h2><a href="/">Mercurial</a> {pathdef%breadcrumb} / branches</h2>
8357
d974a32b59dc spartan: add branches page
Sune Foldager <cryo@cyanite.org>
parents:
diff changeset
    22
d974a32b59dc spartan: add branches page
Sune Foldager <cryo@cyanite.org>
parents:
diff changeset
    23
<ul id="tagEntries">
8431
5c1aabc58004 spartan: use newer template syntax everywhere
Dirkjan Ochtman <dirkjan@ochtman.nl>
parents: 8357
diff changeset
    24
{entries%branchentry}
8357
d974a32b59dc spartan: add branches page
Sune Foldager <cryo@cyanite.org>
parents:
diff changeset
    25
</ul>
d974a32b59dc spartan: add branches page
Sune Foldager <cryo@cyanite.org>
parents:
diff changeset
    26
8431
5c1aabc58004 spartan: use newer template syntax everywhere
Dirkjan Ochtman <dirkjan@ochtman.nl>
parents: 8357
diff changeset
    27
{footer}