##// END OF EJS Templates
revset: made generatorset a private class...
revset: made generatorset a private class This class are not supposed to be used outside revset.py since it only wraps content that is used by baseset typed classes. It only gets created by revset operations or private methods.

File last commit:

r20531:01a75c9d default
r20705:9cc2249a default
Show More
templates.txt
122 lines | 3.2 KiB | text/plain | TextLexer
Dan Villiom Podlaski Christiansen
setup: install translation files as package data...
r9999 Mercurial allows you to customize output of commands through
templates. You can either pass in a template from the command
line, via the --template option, or select an existing
template-style (--style).
You can customize output for any "log-like" command: log,
outgoing, incoming, tip, parents, heads and glog.
Iulian Stana
log-style: add a log style that is default+phase (issue3436)...
r19126 Five styles are packaged with Mercurial: default (the style used
when no explicit preference is passed), compact, changelog, phases
Dan Connolly <http://www.w3.org/People/Connolly/>
log: document the new xml style
r11034 and xml.
Dan Villiom Podlaski Christiansen
setup: install translation files as package data...
r9999 Usage::
$ hg log -r1 --style changelog
A template is a piece of text, with markup to invoke variable
expansion::
$ hg log -r1 --template "{node}\n"
b56ce7b07c52de7d5fd79fb89701ea538af65746
Strings in curly braces are called keywords. The availability of
keywords depends on the exact context of the templater. These
keywords are usually available for templating a log-like command:
Patrick Mezard
templates: generate keyword help dynamically
r13585 .. keywordsmarker
Dan Villiom Podlaski Christiansen
setup: install translation files as package data...
r9999
The "date" keyword does not produce human-readable output. If you
want to use a date in your output, you can use a filter to process
it. Filters are functions which return a string based on the input
Dirkjan Ochtman
help: point out need for stringification
r10759 variable. Be sure to use the stringify filter first when you're
applying a string-input filter to a list-like input variable.
You can also use a chain of filters to get the desired output::
Dan Villiom Podlaski Christiansen
setup: install translation files as package data...
r9999
$ hg tip --template "{date|isodate}\n"
2008-08-21 18:22 +0000
List of filters:
Patrick Mezard
templatefilters: move doc from templates.txt to docstrings
r13591 .. filtersmarker
Sean Farley
help: add documentation for new template functions
r18465
Note that a filter is nothing more than a function call, i.e.
``expr|filter`` is equivalent to ``filter(expr)``.
In addition to filters, there are some basic built-in functions:
Benoit Boissinot
templater: add get() function to access dict element (e.g. extra)
r18582 - date(date[, fmt])
- fill(text[, width])
- get(dict, key)
Sean Farley
help: add documentation for new template functions
r18465 - if(expr, then[, else])
Durham Goode
help: add ifcontains, revset, and shortest to template help...
r20531 - ifcontains(expr, expr, then[, else])
Sean Farley
help: add documentation for new template functions
r18465 - ifeq(expr, expr, then[, else])
- join(list, sep)
- label(label, expr)
Durham Goode
help: add ifcontains, revset, and shortest to template help...
r20531 - revset(query[, formatargs])
Dan Villiom Podlaski Christiansen
hgweb: generate HTML documentation...
r18747 - rstdoc(text, style)
Durham Goode
help: add ifcontains, revset, and shortest to template help...
r20531 - shortest(node)
Alexander Plavin
templater: sort functions alphabetically, as filters are
r19390 - strip(text[, chars])
- sub(pat, repl, expr)
Alexander Plavin
templater: add strip function with chars as an extra argument...
r19330
Sean Farley
help: add documentation for new template functions
r18465 Also, for any expression that returns a list, there is a list operator:
- expr % "{template}"
Some sample command line templates:
- Format lists, e.g. files::
$ hg log -r 0 --template "files:\n{files % ' {file}\n'}"
- Join the list of files with a ", "::
$ hg log -r 0 --template "files: {join(files, ', ')}\n"
- Format date::
$ hg log -r 0 --template "{date(date, '%Y')}\n"
- Output the description set to a fill-width of 30::
$ hg log -r 0 --template "{fill(desc, '30')}"
- Use a conditional to test for the default branch::
$ hg log -r 0 --template "{ifeq(branch, 'default', 'on the main branch',
'on branch {branch}')}\n"
- Append a newline if not empty::
$ hg tip --template "{if(author, '{author}\n')}"
- Label the output for use with the color extension::
$ hg log -r 0 --template "{label('changeset.{phase}', node|short)}\n"
- Invert the firstline filter, i.e. everything but the first line::
$ hg log -r 0 --template "{sub(r'^.*\n?\n?', '', desc)}\n"
Matthew Turk
help: adding example 'extras' printing to 'hg help templates'
r20016
- Display the contents of the 'extra' field, one per line::
Steve Hoelzer
help: fix formatting of template example
r20170 $ hg log -r 0 --template "{join(extras, '\n')}\n"
Durham Goode
help: add ifcontains, revset, and shortest to template help...
r20531
- Mark the current bookmark with '*'::
$ hg log --template "{bookmarks % '{bookmark}{ifeq(bookmark, current, \"*\")} '}\n"
- Mark the working copy parent with '@'::
$ hg log --template "{ifcontains(rev, revset('.'), '@')}\n"