view templates/changeset.tmpl @ 1076:01db658cc78a

tarball support v0.3 Hello, I'm slowly improving support for tarballs in Mercurial. Attached patch is made against current tip in Matt's repository - f859e9cba1b9, and contains everything done so far. Changes: - gzip and bzip2 tarballs are sent immediately without writing to temporary files (I was wrong Matt, it can be done very easy) - hgrc customization, you can choose which type (if any) you will support There's no easy way to support compression levels, since TarFile open() assume that it is 9. I tried to use gzopen(), and bz2open() methods instead, but it seems that headers of generated archives, are missing or wrong. We could eventually try to rewrite tarfile.py and include our own version into Mercurial, but I don't know if it's good idea... Wojtek
author Wojciech Milkowski <wmilkowski@interia.pl>
date Fri, 26 Aug 2005 20:51:34 -0700
parents dbe0ce2ae196
children b87aeccf73d9
line wrap: on
line source

#header#
<title>#repo|escape#: changeset #node|short#</title>
</head>
<body>

<div class="buttons">
<a href="?cmd=changelog;rev=#rev#">changelog</a>
<a href="?cmd=tags">tags</a>
<a href="?cmd=manifest;manifest=#manifest#;path=/">manifest</a>
<a href="?cmd=changeset;node=#node#;style=raw">raw</a>
#tarballbuttons#
</div>

<h2>changeset: #desc|escape|firstline#</h2>

<table id="changesetEntry">
<tr>
 <th class="changeset">changeset #rev#:</th>
 <td class="changeset"><a href="?cmd=changeset;node=#node#">#node|short#</a></td>
</tr>
#parent#
#changesettag#
<tr>
 <th class="manifest">manifest:</th>
 <td class="manifest"><a href="?cmd=manifest;manifest=#manifest#;path=/">#manifest|short#</a></td>
</tr>
<tr>
 <th class="author">author:</th>
 <td class="author">#author|obfuscate#</td>
</tr>
<tr>
 <th class="date">date:</th>
 <td class="date">#date|date# (#date|age# ago)</td></tr>
<tr>
 <th class="files">files:</th>
 <td class="files">#files#</td></tr>
<tr>
 <th class="description">description:</th>
 <td class="description">#desc|escape|addbreaks#</td>
</tr>
</table>

<div id="changesetDiff">
#diff#
</div>

</body>
</html>