Wed Nov 9 00:30:02 UTC 2005 Alberto Bertogli * Don't show the owner if there is none diff -rN -u old-darcsweb/darcsweb.cgi new-darcsweb/darcsweb.cgi --- old-darcsweb/darcsweb.cgi 2015-12-17 12:41:56.000000000 +0000 +++ new-darcsweb/darcsweb.cgi 2015-12-17 12:41:56.000000000 +0000 @@ -389,7 +389,7 @@ fd = open(config.repodir + '/_darcs/prefs/author') author = fd.readlines()[0].strip() except: - author = "Unknown owner " + author = None return author def run_darcs(params): @@ -1116,7 +1116,8 @@ print '
 
' print '' print ' ' % config.repodesc - print ' ' % escape(owner) + if owner: + print ' ' % escape(owner) if len(ps) > 0: print ' ' % \ ps[0].local_date_str
description%s
owner%s
owner%s
last change%s