##// END OF EJS Templates
wireproto: support /api/* URL space for exposing APIs...
wireproto: support /api/* URL space for exposing APIs I will soon be introducing a new version of the HTTP wire protocol. One of the things I want to change with it is the URL routing. I want to rely on URL paths to define endpoints rather than the "cmd" query string argument. That should be pretty straightforward. I was thinking about what URL space to reserve for the new protocol. We /could/ put everything at a top-level path. e.g. /wireproto/* or /http-v2-wireproto/*. However, these constrain us a bit because they assume there will only be 1 API: version 2 of the HTTP wire protocol. I think there is room to grow multiple APIs. For example, there may someday be a proper JSON API to query or even manipulate the repository. And I don't think we should have to create a new top-level URL space for each API nor should we attempt to shoehorn each future API into the same shared URL space: that would just be too chaotic. This commits reserves the /api/* URL space for all our future API needs. Essentially, all requests to /api/* get routed to a new WSGI handler. By default, it 404's the entire URL space unless the "api server" feature is enabled. When enabled, requests to "/api" list available APIs. URLs of the form /api/<name>/* are reserved for a particular named API. Behavior within each API is left up to that API. So, we can grow new APIs easily without worrying about URL space conflicts. APIs can be registered by adding entries to a global dict. This allows extensions to provide their own APIs should they choose to do so. This is probably a premature feature. But IMO the code is easier to read if we're not dealing with API-specific behavior like config option querying inline. To prove it works, we implement a very basic API for version 2 of the HTTP wire protocol. It does nothing of value except facilitate testing of the /api/* URL space. We currently emit plain text responses for all /api/* endpoints. There's definitely room to look at Accept and other request headers to vary the response format. But we have to start somewhere. Differential Revision: https://phab.mercurial-scm.org/D2834

File last commit:

r34659:dbe1f511 default
r37064:1cfef569 default
Show More
templates.txt
215 lines | 5.8 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
Yuya Nishihara
help: use --template to specify existing style...
r21943 templates. You can either pass in a template or select an existing
template-style from the command line, via the --template option.
Dan Villiom Podlaski Christiansen
setup: install translation files as package data...
r9999
You can customize output for any "log-like" command: log,
Matt Mackall
help: drop reference to glog in templates topic
r21945 outgoing, incoming, tip, parents, and heads.
Dan Villiom Podlaski Christiansen
setup: install translation files as package data...
r9999
Matt Mackall
help: mention '-T list' in templater topic
r21946 Some built-in styles are packaged with Mercurial. These can be listed
with :hg:`log --template list`. Example usage::
Dan Villiom Podlaski Christiansen
setup: install translation files as package data...
r9999
Matt Mackall
help: mention '-T list' in templater topic
r21946 $ hg log -r1.0::1.1 --template changelog
Dan Villiom Podlaski Christiansen
setup: install translation files as package data...
r9999
A template is a piece of text, with markup to invoke variable
expansion::
$ hg log -r1 --template "{node}\n"
b56ce7b07c52de7d5fd79fb89701ea538af65746
Matt Harbison
help: apply the section headings from revsets to templates...
r30730 Keywords
========
Dan Villiom Podlaski Christiansen
setup: install translation files as package data...
r9999 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
Matt Harbison
help: apply the section headings from revsets to templates...
r30730 Filters
=======
Dan Villiom Podlaski Christiansen
setup: install translation files as package data...
r9999 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)``.
Matt Harbison
help: apply the section headings from revsets to templates...
r30730 Functions
=========
Sean Farley
help: add documentation for new template functions
r18465 In addition to filters, there are some basic built-in functions:
Gregory Szorc
help: populate template functions via docstrings...
r24587 .. functionsmarker
Ryan McElroy
templater: introduce word function...
r21846
Matt Harbison
help: merge the various operator sections of revsets, filesets and templates...
r30731 Operators
=========
Matt Harbison
help: apply the section headings from revsets to templates...
r30730
Simon Farnsworth
templater: provide arithmetic operations on integers...
r30115 We provide a limited set of infix arithmetic operations on integers::
+ for addition
- for subtraction
* for multiplication
/ for floor division (division rounded to integer nearest -infinity)
Matt Harbison
help: spelling fixes
r32139 Division fulfills the law x = x / y + mod(x, y).
Simon Farnsworth
templater: provide arithmetic operations on integers...
r30115
Yuya Nishihara
help: update template examples to use reST literal syntax...
r28040 Also, for any expression that returns a list, there is a list operator::
Sean Farley
help: add documentation for new template functions
r18465
Yuya Nishihara
help: update template examples to use reST literal syntax...
r28040 expr % "{template}"
Sean Farley
help: add documentation for new template functions
r18465
Yuya Nishihara
help: update template examples to use reST literal syntax...
r28040 As seen in the above example, ``{template}`` is interpreted as a template.
To prevent it from being interpreted, you can use an escape character ``\{``
or a raw string prefix, ``r'...'``.
Yuya Nishihara
templater: take any string literals as template, but not for rawstring (BC)...
r25596
Yuya Nishihara
templater: add dot operator to easily access a sub item...
r34536 The dot operator can be used as a shorthand for accessing a sub item:
Yuya Nishihara
help: use single quotes in ``template example``...
r34659 - ``expr.member`` is roughly equivalent to ``expr % '{member}'`` if ``expr``
Yuya Nishihara
templater: add dot operator to easily access a sub item...
r34536 returns a non-list/dict. The returned value is not stringified.
Yuya Nishihara
help: use single quotes in ``template example``...
r34659 - ``dict.key`` is identical to ``get(dict, 'key')``.
Yuya Nishihara
templater: add dot operator to easily access a sub item...
r34536
Matt Harbison
help: apply the section headings from revsets to templates...
r30730 Aliases
=======
Yuya Nishihara
templater: load and expand aliases by template engine (API) (issue4842)...
r28957 New keywords and functions can be defined in the ``templatealias`` section of
a Mercurial configuration file::
<alias> = <definition>
Arguments of the form `a1`, `a2`, etc. are substituted from the alias into
the definition.
For example,
::
[templatealias]
r = rev
rn = "{r}:{node|short}"
leftpad(s, w) = pad(s, w, ' ', True)
defines two symbol aliases, ``r`` and ``rn``, and a function alias
``leftpad()``.
Mathias De Maré
help: add example of '[templates]' usage...
r29717 It's also possible to specify complete template strings, using the
``templates`` section. The syntax used is the general template string syntax.
For example,
::
[templates]
nodedate = "{node|short}: {date(date, "%Y-%m-%d")}\n"
defines a template, ``nodedate``, which can be called like::
$ hg log -r . -Tnodedate
Yuya Nishihara
formatter: load templates section like a map file...
r32875 A template defined in ``templates`` section can also be referenced from
another template::
$ hg log -r . -T "{rev} {nodedate}"
but be aware that the keywords cannot be overridden by templates. For example,
a template defined as ``templates.rev`` cannot be referenced as ``{rev}``.
Yuya Nishihara
formatter: add support for parts map of [templates] section...
r32952 A template defined in ``templates`` section may have sub templates which
are inserted before/after/between items::
[templates]
myjson = ' {dict(rev, node|short)|json}'
myjson:docheader = '\{\n'
myjson:docfooter = '\n}\n'
myjson:separator = ',\n'
Matt Harbison
help: apply the section headings from revsets to templates...
r30730 Examples
========
Sean Farley
help: add documentation for new template functions
r18465 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"
Hannes Oldenburg
templates: add built-in files() function...
r30008 - Join the list of files ending with ".py" with a ", "::
$ hg log -r 0 --template "pythonfiles: {join(files('**.py'), ', ')}\n"
Martin von Zweigbergk
templater: add separate() template function...
r29085 - Separate non-empty arguments by a " "::
$ hg log -r 0 --template "{separate(' ', node, bookmarks, tags}\n"
Ryan McElroy
templatefilter: add splitlines function...
r21820 - Modify each line of a commit description::
$ hg log --template "{splitlines(desc) % '**** {line}\n'}"
Sean Farley
help: add documentation for new template functions
r18465 - Format date::
$ hg log -r 0 --template "{date(date, '%Y')}\n"
Yuya Nishihara
templater: add optional timezone argument to localdate()...
r26128 - Display date in UTC::
$ hg log -r 0 --template "{localdate(date, 'UTC')|date}\n"
Sean Farley
help: add documentation for new template functions
r18465 - Output the description set to a fill-width of 30::
Yuya Nishihara
help: rewrite template examples to use integer literals where appropriate
r25004 $ hg log -r 0 --template "{fill(desc, 30)}"
Sean Farley
help: add documentation for new template functions
r18465
- 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
Ryan McElroy
templatekw: introduce active subkeyword from bookmarks keyword...
r25348 - Mark the active bookmark with '*'::
Durham Goode
help: add ifcontains, revset, and shortest to template help...
r20531
Yuya Nishihara
help: rewrite template examples to not use shell escaping...
r25786 $ hg log --template "{bookmarks % '{bookmark}{ifeq(bookmark, active, '*')} '}\n"
Durham Goode
help: add ifcontains, revset, and shortest to template help...
r20531
Matt Harbison
templater: introduce {latesttag()} function to match a pattern (issue4184)...
r26485 - Find the previous release candidate tag, the distance and changes since the tag::
$ hg log -r . --template "{latesttag('re:^.*-rc$') % '{tag}, {changes}, {distance}'}\n"
Durham Goode
help: add ifcontains, revset, and shortest to template help...
r20531 - Mark the working copy parent with '@'::
$ hg log --template "{ifcontains(rev, revset('.'), '@')}\n"
Ryan McElroy
templater: introduce startswith function...
r21821
Yuya Nishihara
templater: switch ctx of list expression to rev of revset() (BC)...
r26234 - Show details of parent revisions::
$ hg log --template "{revset('parents(%d)', rev) % '{desc|firstline}\n'}"
Ryan McElroy
templater: introduce startswith function...
r21821 - Show only commit descriptions that start with "template"::
Yuya Nishihara
help: rewrite template examples to not use shell escaping...
r25786 $ hg log --template "{startswith('template', firstline(desc))}\n"
Ryan McElroy
templater: introduce word function...
r21846
- Print the first word of each line of a commit message::
Yuya Nishihara
help: rewrite template examples to use integer literals where appropriate
r25004 $ hg log --template "{word(0, desc)}\n"