templates/index.tmpl
author Alexis S. L. Carvalho <alexis@cecm.usp.br>
Thu, 04 Oct 2007 23:21:37 -0300
changeset 5378 8a2915f57dfc
parent 2173 d1943df604c4
permissions -rw-r--r--
convert: add a mode where mercurial_sink skips empty revisions. The getchanges function of some converter_source classes can return some false positives. I.e. they sometimes claim that a file "foo" was changed in some revision, even though its contents are still the same. convert_svn is particularly bad, but I think this can also happen with convert_cvs and, at least in theory, with mercurial_source. For regular conversions this is not really a problem - as long as getfile returns the right contents, we'll get a converted revision with the right contents. But when we use --filemap, this could lead to superfluous revisions being converted. Instead of fixing every converter_source, I decided to change mercurial_sink to work around this problem. When --filemap is used, we're interested only in revisions that touch some specific files. If a revision doesn't change any of these files, then we're not interested in it (at least for revisions with a single parent; merges are special). For mercurial_sink, we abuse this property and rollback a commit if the manifest text hasn't changed. This avoids duplicating the logic from localrepo.filecommit to detect unchanged files.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
941
4cf418c2a013 Add a multi-repository server
mpm@selenic.com
parents:
diff changeset
     1
#header#
4cf418c2a013 Add a multi-repository server
mpm@selenic.com
parents:
diff changeset
     2
<title>Mercurial repositories index</title>
4cf418c2a013 Add a multi-repository server
mpm@selenic.com
parents:
diff changeset
     3
</head>
4cf418c2a013 Add a multi-repository server
mpm@selenic.com
parents:
diff changeset
     4
<body>
4cf418c2a013 Add a multi-repository server
mpm@selenic.com
parents:
diff changeset
     5
4cf418c2a013 Add a multi-repository server
mpm@selenic.com
parents:
diff changeset
     6
<h2>Mercurial Repositories</h2>
4cf418c2a013 Add a multi-repository server
mpm@selenic.com
parents:
diff changeset
     7
4cf418c2a013 Add a multi-repository server
mpm@selenic.com
parents:
diff changeset
     8
<table>
4cf418c2a013 Add a multi-repository server
mpm@selenic.com
parents:
diff changeset
     9
    <tr>
2173
d1943df604c4 Make hgwebdir columns sortable.
Thomas Arendsen Hein <thomas@intevation.de>
parents: 1125
diff changeset
    10
        <td><a href="?sort=#sort_name#">Name</a></td>
d1943df604c4 Make hgwebdir columns sortable.
Thomas Arendsen Hein <thomas@intevation.de>
parents: 1125
diff changeset
    11
        <td><a href="?sort=#sort_description#">Description</a></td>
d1943df604c4 Make hgwebdir columns sortable.
Thomas Arendsen Hein <thomas@intevation.de>
parents: 1125
diff changeset
    12
        <td><a href="?sort=#sort_contact#">Contact</a></td>
d1943df604c4 Make hgwebdir columns sortable.
Thomas Arendsen Hein <thomas@intevation.de>
parents: 1125
diff changeset
    13
        <td><a href="?sort=#sort_lastchange#">Last change</a></td>
1125
a33a7a543803 Add RSS link to the repository index.
Ollivier Robert <roberto@keltia.freenix.fr>
parents: 1070
diff changeset
    14
        <td>&nbsp;</td>
941
4cf418c2a013 Add a multi-repository server
mpm@selenic.com
parents:
diff changeset
    15
    <tr>
982
8d2e24bae760 hgweb: convert index entries to list expansion style
mpm@selenic.com
parents: 941
diff changeset
    16
    #entries%indexentry#
941
4cf418c2a013 Add a multi-repository server
mpm@selenic.com
parents:
diff changeset
    17
</table>
4cf418c2a013 Add a multi-repository server
mpm@selenic.com
parents:
diff changeset
    18
4cf418c2a013 Add a multi-repository server
mpm@selenic.com
parents:
diff changeset
    19
#footer#