Mercurial > treepkg
changeset 154:a30351c91a68
Make status-by-startdate.html the default template. Sorting by date is
generally more useful than sorting by revision because different tracks
usually come from different repositories.
author | Bernhard Herzog <bh@intevation.de> |
---|---|
date | Tue, 10 Jun 2008 09:51:50 +0000 |
parents | e5f3f61c0620 |
children | 236e91be522c |
files | bin/createstaticweb.py bin/starttreepkgweb.py |
diffstat | 2 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/bin/createstaticweb.py Mon Jun 09 16:34:23 2008 +0000 +++ b/bin/createstaticweb.py Tue Jun 10 09:51:50 2008 +0000 @@ -17,7 +17,7 @@ def parse_commandline(): parser = create_parser() - parser.set_defaults(status_template="status-by-revision.html") + parser.set_defaults(status_template="status-by-startdate.html") parser.add_option("--status-template", help=("The template file to use for the status page." " Relative filenames are interpreted"
--- a/bin/starttreepkgweb.py Mon Jun 09 16:34:23 2008 +0000 +++ b/bin/starttreepkgweb.py Tue Jun 10 09:51:50 2008 +0000 @@ -20,7 +20,7 @@ parser = create_parser() parser.set_defaults(cherrypy_config=os.path.join(treepkgcmd.topdir, "cherrypy.cfg"), - status_template="status-by-revision.html") + status_template="status-by-startdate.html") parser.add_option("--cherrypy-config", help=("The cherrypy config file for the web interface." " Default cherrypy.cfg"))