##// END OF EJS Templates
util: extract all date-related utils in utils/dateutil module...
util: extract all date-related utils in utils/dateutil module With this commit, util.py lose 262 lines Note for extensions author, if this commit breaks your extension, you can pull the step-by-step split here to help you more easily pinpoint the renaming that broke your extension: hg pull https://bitbucket.org/octobus/mercurial-devel/ -r ac1f6453010d Differential Revision: https://phab.mercurial-scm.org/D2282

File last commit:

r36463:e8d37838 default
r36625:c6061cad default
Show More
test-template-engine.t
71 lines | 2.1 KiB | text/troff | Tads3Lexer
/ tests / test-template-engine.t
Matt Mackall
tests: unify test-template-engine
r12493
$ cat > engine.py << EOF
>
> from mercurial import templater
>
> class mytemplater(object):
Yuya Nishihara
templater: keep default resources per template engine (API)...
r35484 > def __init__(self, loader, filters, defaults, resources, aliases):
Matt Mackall
tests: unify test-template-engine
r12493 > self.loader = loader
Yuya Nishihara
templater: register keywords to defaults table...
r35499 > self._defaults = defaults
Yuya Nishihara
templater: keep default resources per template engine (API)...
r35484 > self._resources = resources
Matt Mackall
tests: unify test-template-engine
r12493 >
Yuya Nishihara
templatekw: add 'requires' flag to switch to exception-safe interface...
r36463 > def symbol(self, mapping, key):
> return mapping[key]
>
> def resource(self, mapping, key):
> v = self._resources[key]
> if v is None:
> v = mapping[key]
> return v
>
Matt Mackall
tests: unify test-template-engine
r12493 > def process(self, t, map):
> tmpl = self.loader(t)
Yuya Nishihara
templater: register keywords to defaults table...
r35499 > props = self._defaults.copy()
> props.update(map)
Pulkit Goyal
py3: use dict.items() instead of dict.iteritems() in tests...
r36345 > for k, v in props.items():
Boris Feld
template: rename troubles templatekw into instabilities...
r33675 > if k in ('templ', 'ctx', 'repo', 'revcache', 'cache', 'troubles'):
Matt Mackall
tests: unify test-template-engine
r12493 > continue
Yuya Nishihara
templatekw: add 'requires' flag to switch to exception-safe interface...
r36463 > if callable(v) and getattr(v, '_requires', None) is None:
Yuya Nishihara
templater: keep default resources per template engine (API)...
r35484 > props = self._resources.copy()
> props.update(map)
> v = v(**props)
Yuya Nishihara
templatekw: add 'requires' flag to switch to exception-safe interface...
r36463 > elif callable(v):
> v = v(self, props)
Matt Mackall
tests: unify test-template-engine
r12493 > v = templater.stringify(v)
> tmpl = tmpl.replace('{{%s}}' % k, v)
> yield tmpl
>
> templater.engines['my'] = mytemplater
> EOF
$ hg init test
$ echo '[extensions]' > test/.hg/hgrc
$ echo "engine = `pwd`/engine.py" >> test/.hg/hgrc
$ cd test
$ cat > mymap << EOF
> changeset = my:changeset.txt
> EOF
$ cat > changeset.txt << EOF
> {{rev}} {{node}} {{author}}
> EOF
$ hg ci -Ama
adding changeset.txt
adding mymap
$ hg log --style=./mymap
0 97e5f848f0936960273bbf75be6388cd0350a32b test
Mads Kiilerich
tests: add missing trailing 'cd ..'...
r16913
epriestley
templatekw: add parent1, parent1node, parent2, parent2node keywords...
r17355 $ cat > changeset.txt << EOF
Bryan O'Sullivan
templatekw: merge, preferring the second implementation
r17358 > {{p1rev}} {{p1node}} {{p2rev}} {{p2node}}
epriestley
templatekw: add parent1, parent1node, parent2, parent2node keywords...
r17355 > EOF
$ hg ci -Ama
$ hg log --style=./mymap
0 97e5f848f0936960273bbf75be6388cd0350a32b -1 0000000000000000000000000000000000000000
-1 0000000000000000000000000000000000000000 -1 0000000000000000000000000000000000000000
Yuya Nishihara
templater: give better error message for invalid engine type...
r28831 invalid engine type:
$ echo 'changeset = unknown:changeset.txt' > unknownenginemap
$ hg log --style=./unknownenginemap
abort: invalid template engine: unknown
[255]
Mads Kiilerich
tests: add missing trailing 'cd ..'...
r16913 $ cd ..