# HG changeset patch # User Matt Mackall # Date 1129701930 25200 # Node ID 964baa35faf8218650d412581f0567eb41ae1ee9 # Parent 5010207c35273ac1331cae44c253dd41fa07cb7f hgweb: add shortcuts for all the web commands / fix empty arg bug diff -r 5010207c3527 -r 964baa35faf8 mercurial/hgweb.py --- a/mercurial/hgweb.py Tue Oct 18 21:32:51 2005 -0700 +++ b/mercurial/hgweb.py Tue Oct 18 23:05:30 2005 -0700 @@ -291,7 +291,7 @@ for label, rev in l: yield {"label": label, "rev": rev} - yield {"label": "tip", "rev": ""} + yield {"label": "tip", "rev": "tip"} def changelist(**map): parity = (start - end) & 1 @@ -704,11 +704,21 @@ def footer(**map): yield self.t("footer", **map) - + def expand_form(form): shortcuts = { + 'cl': [('cmd', ['changelog']), ('rev', None)], 'cs': [('cmd', ['changeset']), ('node', None)], + 'f': [('cmd', ['file']), ('filenode', None)], + 'fl': [('cmd', ['filelog']), ('filenode', None)], + 'fd': [('cmd', ['filediff']), ('node', None)], + 'fa': [('cmd', ['annotate']), ('filenode', None)], + 'mf': [('cmd', ['manifest']), ('manifest', None)], + 'ca': [('cmd', ['archive']), ('node', None)], + 'tags': [('cmd', ['tags'])], + 'tip': [('cmd', ['changeset']), ('node', ['tip'])], } + for k in shortcuts.iterkeys(): if form.has_key(k): for name, value in shortcuts[k]: