templates/changelogentry.tmpl
author Matt Mackall <mpm@selenic.com>
Tue, 18 Oct 2005 23:08:35 -0700
changeset 1410 17703aa4491e
parent 1334 0843e1bf2b97
child 1416 19d2776f1725
permissions -rw-r--r--
hgweb: shorten all the URLs in the standard templates A URL like this: http://www.selenic.com/hg/?cmd=changeset;node=5010207c35273ac1331cae44c253dd41fa07cb7f is now presented as: http://www.selenic.com/hg/?cs=5010207c352 (though the old style still works, of course)
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
585
51626d888526 [PATCH] Changelogentry template cleanup
mpm@selenic.com
parents: 570
diff changeset
     1
<table class="changelogEntry parity#parity#">
51626d888526 [PATCH] Changelogentry template cleanup
mpm@selenic.com
parents: 570
diff changeset
     2
 <tr>
1334
0843e1bf2b97 hgweb: fixed IE display problem on changelog page
TK Soh <teekaysoh@yahoo.com>
parents: 585
diff changeset
     3
  <th class="age" width="15%">#date|age# ago:</th>
585
51626d888526 [PATCH] Changelogentry template cleanup
mpm@selenic.com
parents: 570
diff changeset
     4
  <th class="firstline">#desc|firstline|escape#</th>
51626d888526 [PATCH] Changelogentry template cleanup
mpm@selenic.com
parents: 570
diff changeset
     5
 </tr>
51626d888526 [PATCH] Changelogentry template cleanup
mpm@selenic.com
parents: 570
diff changeset
     6
 <tr>
51626d888526 [PATCH] Changelogentry template cleanup
mpm@selenic.com
parents: 570
diff changeset
     7
  <th class="changesetRev">changeset #rev#:</th>
1410
17703aa4491e hgweb: shorten all the URLs in the standard templates
Matt Mackall <mpm@selenic.com>
parents: 1334
diff changeset
     8
  <td class="changesetNode"><a href="?cs=#node|short#">#node|short#</a></td>
585
51626d888526 [PATCH] Changelogentry template cleanup
mpm@selenic.com
parents: 570
diff changeset
     9
 </tr>
51626d888526 [PATCH] Changelogentry template cleanup
mpm@selenic.com
parents: 570
diff changeset
    10
 #parent#
51626d888526 [PATCH] Changelogentry template cleanup
mpm@selenic.com
parents: 570
diff changeset
    11
 #changelogtag#
51626d888526 [PATCH] Changelogentry template cleanup
mpm@selenic.com
parents: 570
diff changeset
    12
 <tr>
51626d888526 [PATCH] Changelogentry template cleanup
mpm@selenic.com
parents: 570
diff changeset
    13
  <th class="author">author:</th>
51626d888526 [PATCH] Changelogentry template cleanup
mpm@selenic.com
parents: 570
diff changeset
    14
  <td class="author">#author|obfuscate#</td>
51626d888526 [PATCH] Changelogentry template cleanup
mpm@selenic.com
parents: 570
diff changeset
    15
 </tr>
51626d888526 [PATCH] Changelogentry template cleanup
mpm@selenic.com
parents: 570
diff changeset
    16
 <tr>
51626d888526 [PATCH] Changelogentry template cleanup
mpm@selenic.com
parents: 570
diff changeset
    17
  <th class="date">date:</th>
51626d888526 [PATCH] Changelogentry template cleanup
mpm@selenic.com
parents: 570
diff changeset
    18
  <td class="date">#date|date#</td>
51626d888526 [PATCH] Changelogentry template cleanup
mpm@selenic.com
parents: 570
diff changeset
    19
 </tr>
51626d888526 [PATCH] Changelogentry template cleanup
mpm@selenic.com
parents: 570
diff changeset
    20
 <tr>
1410
17703aa4491e hgweb: shorten all the URLs in the standard templates
Matt Mackall <mpm@selenic.com>
parents: 1334
diff changeset
    21
  <th class="files"><a href="?mf=#manifest|short#;path=/">files</a>:</th>
585
51626d888526 [PATCH] Changelogentry template cleanup
mpm@selenic.com
parents: 570
diff changeset
    22
  <td class="files">#files#</td>
51626d888526 [PATCH] Changelogentry template cleanup
mpm@selenic.com
parents: 570
diff changeset
    23
 </tr>
1334
0843e1bf2b97 hgweb: fixed IE display problem on changelog page
TK Soh <teekaysoh@yahoo.com>
parents: 585
diff changeset
    24
</table>