hg site extension
 
(Arne Babenhauserheide)
2011-10-20: fix: summary changelog hat .html instead of /

fix: summary changelog hat <hex>.html instead of <hex>/

diff --git a/static.py b/static.py
--- a/static.py
+++ b/static.py
@@ -132,7 +132,7 @@ def writelog(ui, repo, target, name):
 
     # create the log files
     t = cmdutil.changeset_templater(ui, repo, patch=False, diffopts=None, mapfile=None, buffered=False)
-    t.use_template("""<div style='float: right; padding-left: 0.5em'><em>({author|person})</em></div><strong> {date|shortdate}: <a href='../commit/{node}.html'>{desc|strip|fill68|firstline}</a> <span style='font-size: xx-small'>{branches} {tags}</span><p>{desc|escape}</p>""")
+    t.use_template("""<div style='float: right; padding-left: 0.5em'><em>({author|person})</em></div><strong> {date|shortdate}: <a href='../commit/{node}/'>{desc|strip|fill68|firstline}</a> <span style='font-size: xx-small'>{branches} {tags}</span><p>{desc|escape}</p>""")
     logs = []
     for ck in range(0, len(repo.changelog)/100+1):
         ui.pushbuffer()