Mercurial > public > mercurial-scm > hg-stable
diff mercurial/cmdutil.py @ 25511:c2a4dfe2a336
formatter: move most of template option helper to formatter
We want to share this function between formatter and cmdutils. It
doesn't belong in templater because it imports knowledge of ui layers
that shouldn't be there. We'd prefer cmdutil to layer on the formatter
rather than vice-versa. Since the formatter is the handler for -T
options for all non-log commands, let's move the helper there. We
leave the bits specific to the old --style option behind.
author | Matt Mackall <mpm@selenic.com> |
---|---|
date | Wed, 10 Jun 2015 14:29:13 -0500 |
parents | aaede04c0ba6 |
children | dcc56e10c23b |
line wrap: on
line diff
--- a/mercurial/cmdutil.py Wed Jun 10 22:08:15 2015 +0900 +++ b/mercurial/cmdutil.py Wed Jun 10 14:29:13 2015 -0500 @@ -14,6 +14,7 @@ import changelog import bookmarks import encoding +import formatter import crecord as crecordmod import lock as lockmod @@ -1493,40 +1494,7 @@ if not tmpl: return None, None - # looks like a literal template? - if '{' in tmpl: - return tmpl, None - - # perhaps a stock style? - if not os.path.split(tmpl)[0]: - mapname = (templater.templatepath('map-cmdline.' + tmpl) - or templater.templatepath(tmpl)) - if mapname and os.path.isfile(mapname): - return None, mapname - - # perhaps it's a reference to [templates] - t = ui.config('templates', tmpl) - if t: - try: - tmpl = templater.unquotestring(t) - except SyntaxError: - tmpl = t - return tmpl, None - - if tmpl == 'list': - ui.write(_("available styles: %s\n") % templater.stylelist()) - raise util.Abort(_("specify a template")) - - # perhaps it's a path to a map or a template - if ('/' in tmpl or '\\' in tmpl) and os.path.isfile(tmpl): - # is it a mapfile for a style? - if os.path.basename(tmpl).startswith("map-"): - return None, os.path.realpath(tmpl) - tmpl = open(tmpl).read() - return tmpl, None - - # constant string? - return tmpl, None + return formatter.lookuptemplate(ui, 'changeset', tmpl) def show_changeset(ui, repo, opts, buffered=False): """show one changeset using template or regular display.