# HG changeset patch # User Bernhard Herzog # Date 1213091510 0 # Node ID a30351c91a68d4150b7b729f62d63f0d0687d52f # Parent e5f3f61c062082893af7ae304f21257b3620a7a0 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. diff -r e5f3f61c0620 -r a30351c91a68 bin/createstaticweb.py --- 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" diff -r e5f3f61c0620 -r a30351c91a68 bin/starttreepkgweb.py --- 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"))