--- a/mercurial/hgweb/hgwebdir_mod.py Thu Oct 12 16:37:03 2006 +0200
+++ b/mercurial/hgweb/hgwebdir_mod.py Thu Oct 12 17:06:51 2006 +0200
@@ -90,6 +90,18 @@
"node": nodeid, "url": url}
def entries(sortcolumn="", descending=False, **map):
+ def sessionvars(**map):
+ fields = []
+ if req.form.has_key('style'):
+ style = req.form['style'][0]
+ if style != get('web', 'style', ''):
+ fields.append(('style', style))
+
+ separator = url[-1] == '?' and ';' or '?'
+ for name, value in fields:
+ yield dict(name=name, value=value, separator=separator)
+ separator = ';'
+
rows = []
parity = 0
for name, path in self.repos:
@@ -123,6 +135,7 @@
description_sort=description.upper() or "unknown",
lastchange=d,
lastchange_sort=d[1]-d[0],
+ sessionvars=sessionvars,
archives=archivelist(u, "tip", url))
if (not sortcolumn
or (sortcolumn, descending) == self.repos_sorted):