changelog shortlog graph tags branches changeset files revisions annotate raw help

Mercurial > infra > home / templates/spartan/changeset.tmpl

changeset 53: d25f982fb8a6
author: Richard Westhaver <ellis@rwest.io>
date: Sat, 20 Jul 2024 22:31:54 -0400
permissions: -rw-r--r--
description: init vc
1 {header}
2 <title>{repo|escape}: changeset {node|short}</title>
3 </head>
4 <body>
5 
6 <div class="buttons">
7 <a href="{url|urlescape}log/{symrev}{sessionvars%urlparameter}">changelog</a>
8 <a href="{url|urlescape}shortlog/{symrev}{sessionvars%urlparameter}">shortlog</a>
9 <a href="{url|urlescape}graph/{symrev}{sessionvars%urlparameter}">graph</a>
10 <a href="{url|urlescape}tags{sessionvars%urlparameter}">tags</a>
11 <a href="{url|urlescape}branches{sessionvars%urlparameter}">branches</a>
12 <a href="{url|urlescape}file/{symrev}{sessionvars%urlparameter}">files</a>
13 <a href="{url|urlescape}raw-rev/{symrev}">raw</a>
14 {archives%archiveentry}
15 <a href="{url|urlescape}help{sessionvars%urlparameter}">help</a>
16 </div>
17 
18 <h2><a href="/">Mercurial</a> {pathdef%breadcrumb} / changeset: {desc|strip|escape|firstline|nonempty}</h2>
19 
20 <table id="changesetEntry">
21 <tr>
22  <th class="changeset">changeset {rev}:</th>
23  <td class="changeset"><a href="{url|urlescape}rev/{node|short}{sessionvars%urlparameter}">{node|short}</a></td>
24 </tr>
25 {ifeq(count(parent), '2', parent%changesetparentdiff, parent%changesetparent)}
26 {child%changesetchild}
27 {changesettag}
28 <tr>
29  <th class="author">author:</th>
30  <td class="author">{author|obfuscate}</td>
31 </tr>
32 <tr>
33  <th class="date">date:</th>
34  <td class="date age">{date|rfc822date}</td>
35 </tr>
36 {ifeq(phase, 'public', '', '<tr>
37  <th class="phase">phase:</th>
38  <td class="phase">{phase|escape}</td>
39 </tr>')}
40 {if(obsolete, succsandmarkers%obsfateentry)}
41 {if(instabilities, whyunstable%whyunstableentry)}
42 <tr>
43  <th class="files">files:</th>
44  <td class="files">{files}</td>
45 </tr>
46 <tr>
47  <th class="description">description:</th>
48  <td class="description">{desc|strip|escape|websub|addbreaks|nonempty}</td>
49 </tr>
50 </table>
51 
52 <div id="changesetDiff">
53 {diff}
54 </div>
55 
56 {footer}
57 
58