##// END OF EJS Templates
templater: abstract ifcontains() over wrapped types...
Yuya Nishihara -
r38286:fb874fc1 default
parent child Browse files
Show More
@@ -1,793 +1,797 b''
1 1 # hgweb/webutil.py - utility library for the web interface.
2 2 #
3 3 # Copyright 21 May 2005 - (c) 2005 Jake Edge <jake@edge2.net>
4 4 # Copyright 2005-2007 Matt Mackall <mpm@selenic.com>
5 5 #
6 6 # This software may be used and distributed according to the terms of the
7 7 # GNU General Public License version 2 or any later version.
8 8
9 9 from __future__ import absolute_import
10 10
11 11 import copy
12 12 import difflib
13 13 import os
14 14 import re
15 15
16 16 from ..i18n import _
17 17 from ..node import hex, nullid, short
18 18
19 19 from .common import (
20 20 ErrorResponse,
21 21 HTTP_BAD_REQUEST,
22 22 HTTP_NOT_FOUND,
23 23 paritygen,
24 24 )
25 25
26 26 from .. import (
27 27 context,
28 28 error,
29 29 match,
30 30 mdiff,
31 31 obsutil,
32 32 patch,
33 33 pathutil,
34 34 pycompat,
35 35 scmutil,
36 36 templatefilters,
37 37 templatekw,
38 38 templateutil,
39 39 ui as uimod,
40 40 util,
41 41 )
42 42
43 43 from ..utils import (
44 44 stringutil,
45 45 )
46 46
47 47 archivespecs = util.sortdict((
48 48 ('zip', ('application/zip', 'zip', '.zip', None)),
49 49 ('gz', ('application/x-gzip', 'tgz', '.tar.gz', None)),
50 50 ('bz2', ('application/x-bzip2', 'tbz2', '.tar.bz2', None)),
51 51 ))
52 52
53 53 def archivelist(ui, nodeid, url=None):
54 54 allowed = ui.configlist('web', 'allow-archive', untrusted=True)
55 55 archives = []
56 56
57 57 for typ, spec in archivespecs.iteritems():
58 58 if typ in allowed or ui.configbool('web', 'allow' + typ,
59 59 untrusted=True):
60 60 archives.append({
61 61 'type': typ,
62 62 'extension': spec[2],
63 63 'node': nodeid,
64 64 'url': url,
65 65 })
66 66
67 67 return templateutil.mappinglist(archives)
68 68
69 69 def up(p):
70 70 if p[0:1] != "/":
71 71 p = "/" + p
72 72 if p[-1:] == "/":
73 73 p = p[:-1]
74 74 up = os.path.dirname(p)
75 75 if up == "/":
76 76 return "/"
77 77 return up + "/"
78 78
79 79 def _navseq(step, firststep=None):
80 80 if firststep:
81 81 yield firststep
82 82 if firststep >= 20 and firststep <= 40:
83 83 firststep = 50
84 84 yield firststep
85 85 assert step > 0
86 86 assert firststep > 0
87 87 while step <= firststep:
88 88 step *= 10
89 89 while True:
90 90 yield 1 * step
91 91 yield 3 * step
92 92 step *= 10
93 93
94 94 class revnav(object):
95 95
96 96 def __init__(self, repo):
97 97 """Navigation generation object
98 98
99 99 :repo: repo object we generate nav for
100 100 """
101 101 # used for hex generation
102 102 self._revlog = repo.changelog
103 103
104 104 def __nonzero__(self):
105 105 """return True if any revision to navigate over"""
106 106 return self._first() is not None
107 107
108 108 __bool__ = __nonzero__
109 109
110 110 def _first(self):
111 111 """return the minimum non-filtered changeset or None"""
112 112 try:
113 113 return next(iter(self._revlog))
114 114 except StopIteration:
115 115 return None
116 116
117 117 def hex(self, rev):
118 118 return hex(self._revlog.node(rev))
119 119
120 120 def gen(self, pos, pagelen, limit):
121 121 """computes label and revision id for navigation link
122 122
123 123 :pos: is the revision relative to which we generate navigation.
124 124 :pagelen: the size of each navigation page
125 125 :limit: how far shall we link
126 126
127 127 The return is:
128 128 - a single element mappinglist
129 129 - containing a dictionary with a `before` and `after` key
130 130 - values are dictionaries with `label` and `node` keys
131 131 """
132 132 if not self:
133 133 # empty repo
134 134 return templateutil.mappinglist([
135 135 {'before': templateutil.mappinglist([]),
136 136 'after': templateutil.mappinglist([])},
137 137 ])
138 138
139 139 targets = []
140 140 for f in _navseq(1, pagelen):
141 141 if f > limit:
142 142 break
143 143 targets.append(pos + f)
144 144 targets.append(pos - f)
145 145 targets.sort()
146 146
147 147 first = self._first()
148 148 navbefore = [{'label': '(%i)' % first, 'node': self.hex(first)}]
149 149 navafter = []
150 150 for rev in targets:
151 151 if rev not in self._revlog:
152 152 continue
153 153 if pos < rev < limit:
154 154 navafter.append({'label': '+%d' % abs(rev - pos),
155 155 'node': self.hex(rev)})
156 156 if 0 < rev < pos:
157 157 navbefore.append({'label': '-%d' % abs(rev - pos),
158 158 'node': self.hex(rev)})
159 159
160 160 navafter.append({'label': 'tip', 'node': 'tip'})
161 161
162 162 # TODO: maybe this can be a scalar object supporting tomap()
163 163 return templateutil.mappinglist([
164 164 {'before': templateutil.mappinglist(navbefore),
165 165 'after': templateutil.mappinglist(navafter)},
166 166 ])
167 167
168 168 class filerevnav(revnav):
169 169
170 170 def __init__(self, repo, path):
171 171 """Navigation generation object
172 172
173 173 :repo: repo object we generate nav for
174 174 :path: path of the file we generate nav for
175 175 """
176 176 # used for iteration
177 177 self._changelog = repo.unfiltered().changelog
178 178 # used for hex generation
179 179 self._revlog = repo.file(path)
180 180
181 181 def hex(self, rev):
182 182 return hex(self._changelog.node(self._revlog.linkrev(rev)))
183 183
184 184 # TODO: maybe this can be a wrapper class for changectx/filectx list, which
185 185 # yields {'ctx': ctx}
186 186 def _ctxsgen(context, ctxs):
187 187 for s in ctxs:
188 188 d = {
189 189 'node': s.hex(),
190 190 'rev': s.rev(),
191 191 'user': s.user(),
192 192 'date': s.date(),
193 193 'description': s.description(),
194 194 'branch': s.branch(),
195 195 }
196 196 if util.safehasattr(s, 'path'):
197 197 d['file'] = s.path()
198 198 yield d
199 199
200 200 def _siblings(siblings=None, hiderev=None):
201 201 if siblings is None:
202 202 siblings = []
203 203 siblings = [s for s in siblings if s.node() != nullid]
204 204 if len(siblings) == 1 and siblings[0].rev() == hiderev:
205 205 siblings = []
206 206 return templateutil.mappinggenerator(_ctxsgen, args=(siblings,))
207 207
208 208 def difffeatureopts(req, ui, section):
209 209 diffopts = patch.difffeatureopts(ui, untrusted=True,
210 210 section=section, whitespace=True)
211 211
212 212 for k in ('ignorews', 'ignorewsamount', 'ignorewseol', 'ignoreblanklines'):
213 213 v = req.qsparams.get(k)
214 214 if v is not None:
215 215 v = stringutil.parsebool(v)
216 216 setattr(diffopts, k, v if v is not None else True)
217 217
218 218 return diffopts
219 219
220 220 def annotate(req, fctx, ui):
221 221 diffopts = difffeatureopts(req, ui, 'annotate')
222 222 return fctx.annotate(follow=True, diffopts=diffopts)
223 223
224 224 def parents(ctx, hide=None):
225 225 if isinstance(ctx, context.basefilectx):
226 226 introrev = ctx.introrev()
227 227 if ctx.changectx().rev() != introrev:
228 228 return _siblings([ctx.repo()[introrev]], hide)
229 229 return _siblings(ctx.parents(), hide)
230 230
231 231 def children(ctx, hide=None):
232 232 return _siblings(ctx.children(), hide)
233 233
234 234 def renamelink(fctx):
235 235 r = fctx.renamed()
236 236 if r:
237 237 return templateutil.mappinglist([{'file': r[0], 'node': hex(r[1])}])
238 238 return templateutil.mappinglist([])
239 239
240 240 def nodetagsdict(repo, node):
241 241 return templateutil.hybridlist(repo.nodetags(node), name='name')
242 242
243 243 def nodebookmarksdict(repo, node):
244 244 return templateutil.hybridlist(repo.nodebookmarks(node), name='name')
245 245
246 246 def nodebranchdict(repo, ctx):
247 247 branches = []
248 248 branch = ctx.branch()
249 249 # If this is an empty repo, ctx.node() == nullid,
250 250 # ctx.branch() == 'default'.
251 251 try:
252 252 branchnode = repo.branchtip(branch)
253 253 except error.RepoLookupError:
254 254 branchnode = None
255 255 if branchnode == ctx.node():
256 256 branches.append(branch)
257 257 return templateutil.hybridlist(branches, name='name')
258 258
259 259 def nodeinbranch(repo, ctx):
260 260 branches = []
261 261 branch = ctx.branch()
262 262 try:
263 263 branchnode = repo.branchtip(branch)
264 264 except error.RepoLookupError:
265 265 branchnode = None
266 266 if branch != 'default' and branchnode != ctx.node():
267 267 branches.append(branch)
268 268 return templateutil.hybridlist(branches, name='name')
269 269
270 270 def nodebranchnodefault(ctx):
271 271 branches = []
272 272 branch = ctx.branch()
273 273 if branch != 'default':
274 274 branches.append(branch)
275 275 return templateutil.hybridlist(branches, name='name')
276 276
277 277 def _nodenamesgen(context, f, node, name):
278 278 for t in f(node):
279 279 yield {name: t}
280 280
281 281 def showtag(repo, t1, node=nullid):
282 282 args = (repo.nodetags, node, 'tag')
283 283 return templateutil.mappinggenerator(_nodenamesgen, args=args, name=t1)
284 284
285 285 def showbookmark(repo, t1, node=nullid):
286 286 args = (repo.nodebookmarks, node, 'bookmark')
287 287 return templateutil.mappinggenerator(_nodenamesgen, args=args, name=t1)
288 288
289 289 def branchentries(repo, stripecount, limit=0):
290 290 tips = []
291 291 heads = repo.heads()
292 292 parity = paritygen(stripecount)
293 293 sortkey = lambda item: (not item[1], item[0].rev())
294 294
295 295 def entries(context):
296 296 count = 0
297 297 if not tips:
298 298 for tag, hs, tip, closed in repo.branchmap().iterbranches():
299 299 tips.append((repo[tip], closed))
300 300 for ctx, closed in sorted(tips, key=sortkey, reverse=True):
301 301 if limit > 0 and count >= limit:
302 302 return
303 303 count += 1
304 304 if closed:
305 305 status = 'closed'
306 306 elif ctx.node() not in heads:
307 307 status = 'inactive'
308 308 else:
309 309 status = 'open'
310 310 yield {
311 311 'parity': next(parity),
312 312 'branch': ctx.branch(),
313 313 'status': status,
314 314 'node': ctx.hex(),
315 315 'date': ctx.date()
316 316 }
317 317
318 318 return templateutil.mappinggenerator(entries)
319 319
320 320 def cleanpath(repo, path):
321 321 path = path.lstrip('/')
322 322 return pathutil.canonpath(repo.root, '', path)
323 323
324 324 def changectx(repo, req):
325 325 changeid = "tip"
326 326 if 'node' in req.qsparams:
327 327 changeid = req.qsparams['node']
328 328 ipos = changeid.find(':')
329 329 if ipos != -1:
330 330 changeid = changeid[(ipos + 1):]
331 331
332 332 return scmutil.revsymbol(repo, changeid)
333 333
334 334 def basechangectx(repo, req):
335 335 if 'node' in req.qsparams:
336 336 changeid = req.qsparams['node']
337 337 ipos = changeid.find(':')
338 338 if ipos != -1:
339 339 changeid = changeid[:ipos]
340 340 return scmutil.revsymbol(repo, changeid)
341 341
342 342 return None
343 343
344 344 def filectx(repo, req):
345 345 if 'file' not in req.qsparams:
346 346 raise ErrorResponse(HTTP_NOT_FOUND, 'file not given')
347 347 path = cleanpath(repo, req.qsparams['file'])
348 348 if 'node' in req.qsparams:
349 349 changeid = req.qsparams['node']
350 350 elif 'filenode' in req.qsparams:
351 351 changeid = req.qsparams['filenode']
352 352 else:
353 353 raise ErrorResponse(HTTP_NOT_FOUND, 'node or filenode not given')
354 354 try:
355 355 fctx = scmutil.revsymbol(repo, changeid)[path]
356 356 except error.RepoError:
357 357 fctx = repo.filectx(path, fileid=changeid)
358 358
359 359 return fctx
360 360
361 361 def linerange(req):
362 362 linerange = req.qsparams.getall('linerange')
363 363 if not linerange:
364 364 return None
365 365 if len(linerange) > 1:
366 366 raise ErrorResponse(HTTP_BAD_REQUEST,
367 367 'redundant linerange parameter')
368 368 try:
369 369 fromline, toline = map(int, linerange[0].split(':', 1))
370 370 except ValueError:
371 371 raise ErrorResponse(HTTP_BAD_REQUEST,
372 372 'invalid linerange parameter')
373 373 try:
374 374 return util.processlinerange(fromline, toline)
375 375 except error.ParseError as exc:
376 376 raise ErrorResponse(HTTP_BAD_REQUEST, pycompat.bytestr(exc))
377 377
378 378 def formatlinerange(fromline, toline):
379 379 return '%d:%d' % (fromline + 1, toline)
380 380
381 381 def _succsandmarkersgen(context, mapping):
382 382 repo = context.resource(mapping, 'repo')
383 383 itemmappings = templatekw.showsuccsandmarkers(context, mapping)
384 384 for item in itemmappings.tovalue(context, mapping):
385 385 item['successors'] = _siblings(repo[successor]
386 386 for successor in item['successors'])
387 387 yield item
388 388
389 389 def succsandmarkers(context, mapping):
390 390 return templateutil.mappinggenerator(_succsandmarkersgen, args=(mapping,))
391 391
392 392 # teach templater succsandmarkers is switched to (context, mapping) API
393 393 succsandmarkers._requires = {'repo', 'ctx'}
394 394
395 395 def _whyunstablegen(context, mapping):
396 396 repo = context.resource(mapping, 'repo')
397 397 ctx = context.resource(mapping, 'ctx')
398 398
399 399 entries = obsutil.whyunstable(repo, ctx)
400 400 for entry in entries:
401 401 if entry.get('divergentnodes'):
402 402 entry['divergentnodes'] = _siblings(entry['divergentnodes'])
403 403 yield entry
404 404
405 405 def whyunstable(context, mapping):
406 406 return templateutil.mappinggenerator(_whyunstablegen, args=(mapping,))
407 407
408 408 whyunstable._requires = {'repo', 'ctx'}
409 409
410 410 def commonentry(repo, ctx):
411 411 node = ctx.node()
412 412 return {
413 413 # TODO: perhaps ctx.changectx() should be assigned if ctx is a
414 414 # filectx, but I'm not pretty sure if that would always work because
415 415 # fctx.parents() != fctx.changectx.parents() for example.
416 416 'ctx': ctx,
417 417 'rev': ctx.rev(),
418 418 'node': hex(node),
419 419 'author': ctx.user(),
420 420 'desc': ctx.description(),
421 421 'date': ctx.date(),
422 422 'extra': ctx.extra(),
423 423 'phase': ctx.phasestr(),
424 424 'obsolete': ctx.obsolete(),
425 425 'succsandmarkers': succsandmarkers,
426 426 'instabilities': templateutil.hybridlist(ctx.instabilities(),
427 427 name='instability'),
428 428 'whyunstable': whyunstable,
429 429 'branch': nodebranchnodefault(ctx),
430 430 'inbranch': nodeinbranch(repo, ctx),
431 431 'branches': nodebranchdict(repo, ctx),
432 432 'tags': nodetagsdict(repo, node),
433 433 'bookmarks': nodebookmarksdict(repo, node),
434 434 'parent': lambda **x: parents(ctx),
435 435 'child': lambda **x: children(ctx),
436 436 }
437 437
438 438 def changelistentry(web, ctx):
439 439 '''Obtain a dictionary to be used for entries in a changelist.
440 440
441 441 This function is called when producing items for the "entries" list passed
442 442 to the "shortlog" and "changelog" templates.
443 443 '''
444 444 repo = web.repo
445 445 rev = ctx.rev()
446 446 n = ctx.node()
447 447 showtags = showtag(repo, 'changelogtag', n)
448 448 files = listfilediffs(ctx.files(), n, web.maxfiles)
449 449
450 450 entry = commonentry(repo, ctx)
451 451 entry.update(
452 452 allparents=lambda **x: parents(ctx),
453 453 parent=lambda **x: parents(ctx, rev - 1),
454 454 child=lambda **x: children(ctx, rev + 1),
455 455 changelogtag=showtags,
456 456 files=files,
457 457 )
458 458 return entry
459 459
460 460 def changelistentries(web, revs, maxcount, parityfn):
461 461 """Emit up to N records for an iterable of revisions."""
462 462 repo = web.repo
463 463
464 464 count = 0
465 465 for rev in revs:
466 466 if count >= maxcount:
467 467 break
468 468
469 469 count += 1
470 470
471 471 entry = changelistentry(web, repo[rev])
472 472 entry['parity'] = next(parityfn)
473 473
474 474 yield entry
475 475
476 476 def symrevorshortnode(req, ctx):
477 477 if 'node' in req.qsparams:
478 478 return templatefilters.revescape(req.qsparams['node'])
479 479 else:
480 480 return short(ctx.node())
481 481
482 482 def _listfilesgen(context, ctx, stripecount):
483 483 parity = paritygen(stripecount)
484 484 for blockno, f in enumerate(ctx.files()):
485 485 template = 'filenodelink' if f in ctx else 'filenolink'
486 486 yield context.process(template, {
487 487 'node': ctx.hex(),
488 488 'file': f,
489 489 'blockno': blockno + 1,
490 490 'parity': next(parity),
491 491 })
492 492
493 493 def changesetentry(web, ctx):
494 494 '''Obtain a dictionary to be used to render the "changeset" template.'''
495 495
496 496 showtags = showtag(web.repo, 'changesettag', ctx.node())
497 497 showbookmarks = showbookmark(web.repo, 'changesetbookmark', ctx.node())
498 498 showbranch = nodebranchnodefault(ctx)
499 499
500 500 basectx = basechangectx(web.repo, web.req)
501 501 if basectx is None:
502 502 basectx = ctx.p1()
503 503
504 504 style = web.config('web', 'style')
505 505 if 'style' in web.req.qsparams:
506 506 style = web.req.qsparams['style']
507 507
508 508 diff = diffs(web, ctx, basectx, None, style)
509 509
510 510 parity = paritygen(web.stripecount)
511 511 diffstatsgen = diffstatgen(ctx, basectx)
512 512 diffstats = diffstat(ctx, diffstatsgen, parity)
513 513
514 514 return dict(
515 515 diff=diff,
516 516 symrev=symrevorshortnode(web.req, ctx),
517 517 basenode=basectx.hex(),
518 518 changesettag=showtags,
519 519 changesetbookmark=showbookmarks,
520 520 changesetbranch=showbranch,
521 521 files=templateutil.mappedgenerator(_listfilesgen,
522 522 args=(ctx, web.stripecount)),
523 523 diffsummary=lambda **x: diffsummary(diffstatsgen),
524 524 diffstat=diffstats,
525 525 archives=web.archivelist(ctx.hex()),
526 526 **pycompat.strkwargs(commonentry(web.repo, ctx)))
527 527
528 528 def _listfilediffsgen(context, files, node, max):
529 529 for f in files[:max]:
530 530 yield context.process('filedifflink', {'node': hex(node), 'file': f})
531 531 if len(files) > max:
532 532 yield context.process('fileellipses', {})
533 533
534 534 def listfilediffs(files, node, max):
535 535 return templateutil.mappedgenerator(_listfilediffsgen,
536 536 args=(files, node, max))
537 537
538 538 def _prettyprintdifflines(context, lines, blockno, lineidprefix):
539 539 for lineno, l in enumerate(lines, 1):
540 540 difflineno = "%d.%d" % (blockno, lineno)
541 541 if l.startswith('+'):
542 542 ltype = "difflineplus"
543 543 elif l.startswith('-'):
544 544 ltype = "difflineminus"
545 545 elif l.startswith('@'):
546 546 ltype = "difflineat"
547 547 else:
548 548 ltype = "diffline"
549 549 yield context.process(ltype, {
550 550 'line': l,
551 551 'lineno': lineno,
552 552 'lineid': lineidprefix + "l%s" % difflineno,
553 553 'linenumber': "% 8s" % difflineno,
554 554 })
555 555
556 556 def _diffsgen(context, repo, ctx, basectx, files, style, stripecount,
557 557 linerange, lineidprefix):
558 558 if files:
559 559 m = match.exact(repo.root, repo.getcwd(), files)
560 560 else:
561 561 m = match.always(repo.root, repo.getcwd())
562 562
563 563 diffopts = patch.diffopts(repo.ui, untrusted=True)
564 564 node1 = basectx.node()
565 565 node2 = ctx.node()
566 566 parity = paritygen(stripecount)
567 567
568 568 diffhunks = patch.diffhunks(repo, node1, node2, m, opts=diffopts)
569 569 for blockno, (fctx1, fctx2, header, hunks) in enumerate(diffhunks, 1):
570 570 if style != 'raw':
571 571 header = header[1:]
572 572 lines = [h + '\n' for h in header]
573 573 for hunkrange, hunklines in hunks:
574 574 if linerange is not None and hunkrange is not None:
575 575 s1, l1, s2, l2 = hunkrange
576 576 if not mdiff.hunkinrange((s2, l2), linerange):
577 577 continue
578 578 lines.extend(hunklines)
579 579 if lines:
580 580 l = templateutil.mappedgenerator(_prettyprintdifflines,
581 581 args=(lines, blockno,
582 582 lineidprefix))
583 583 yield {
584 584 'parity': next(parity),
585 585 'blockno': blockno,
586 586 'lines': l,
587 587 }
588 588
589 589 def diffs(web, ctx, basectx, files, style, linerange=None, lineidprefix=''):
590 590 args = (web.repo, ctx, basectx, files, style, web.stripecount,
591 591 linerange, lineidprefix)
592 592 return templateutil.mappinggenerator(_diffsgen, args=args, name='diffblock')
593 593
594 594 def _compline(type, leftlineno, leftline, rightlineno, rightline):
595 595 lineid = leftlineno and ("l%d" % leftlineno) or ''
596 596 lineid += rightlineno and ("r%d" % rightlineno) or ''
597 597 llno = '%d' % leftlineno if leftlineno else ''
598 598 rlno = '%d' % rightlineno if rightlineno else ''
599 599 return {
600 600 'type': type,
601 601 'lineid': lineid,
602 602 'leftlineno': leftlineno,
603 603 'leftlinenumber': "% 6s" % llno,
604 604 'leftline': leftline or '',
605 605 'rightlineno': rightlineno,
606 606 'rightlinenumber': "% 6s" % rlno,
607 607 'rightline': rightline or '',
608 608 }
609 609
610 610 def _getcompblockgen(context, leftlines, rightlines, opcodes):
611 611 for type, llo, lhi, rlo, rhi in opcodes:
612 612 len1 = lhi - llo
613 613 len2 = rhi - rlo
614 614 count = min(len1, len2)
615 615 for i in xrange(count):
616 616 yield _compline(type=type,
617 617 leftlineno=llo + i + 1,
618 618 leftline=leftlines[llo + i],
619 619 rightlineno=rlo + i + 1,
620 620 rightline=rightlines[rlo + i])
621 621 if len1 > len2:
622 622 for i in xrange(llo + count, lhi):
623 623 yield _compline(type=type,
624 624 leftlineno=i + 1,
625 625 leftline=leftlines[i],
626 626 rightlineno=None,
627 627 rightline=None)
628 628 elif len2 > len1:
629 629 for i in xrange(rlo + count, rhi):
630 630 yield _compline(type=type,
631 631 leftlineno=None,
632 632 leftline=None,
633 633 rightlineno=i + 1,
634 634 rightline=rightlines[i])
635 635
636 636 def _getcompblock(leftlines, rightlines, opcodes):
637 637 args = (leftlines, rightlines, opcodes)
638 638 return templateutil.mappinggenerator(_getcompblockgen, args=args,
639 639 name='comparisonline')
640 640
641 641 def _comparegen(context, contextnum, leftlines, rightlines):
642 642 '''Generator function that provides side-by-side comparison data.'''
643 643 s = difflib.SequenceMatcher(None, leftlines, rightlines)
644 644 if contextnum < 0:
645 645 l = _getcompblock(leftlines, rightlines, s.get_opcodes())
646 646 yield {'lines': l}
647 647 else:
648 648 for oc in s.get_grouped_opcodes(n=contextnum):
649 649 l = _getcompblock(leftlines, rightlines, oc)
650 650 yield {'lines': l}
651 651
652 652 def compare(contextnum, leftlines, rightlines):
653 653 args = (contextnum, leftlines, rightlines)
654 654 return templateutil.mappinggenerator(_comparegen, args=args,
655 655 name='comparisonblock')
656 656
657 657 def diffstatgen(ctx, basectx):
658 658 '''Generator function that provides the diffstat data.'''
659 659
660 660 stats = patch.diffstatdata(
661 661 util.iterlines(ctx.diff(basectx, noprefix=False)))
662 662 maxname, maxtotal, addtotal, removetotal, binary = patch.diffstatsum(stats)
663 663 while True:
664 664 yield stats, maxname, maxtotal, addtotal, removetotal, binary
665 665
666 666 def diffsummary(statgen):
667 667 '''Return a short summary of the diff.'''
668 668
669 669 stats, maxname, maxtotal, addtotal, removetotal, binary = next(statgen)
670 670 return _(' %d files changed, %d insertions(+), %d deletions(-)\n') % (
671 671 len(stats), addtotal, removetotal)
672 672
673 673 def _diffstattmplgen(context, ctx, statgen, parity):
674 674 stats, maxname, maxtotal, addtotal, removetotal, binary = next(statgen)
675 675 files = ctx.files()
676 676
677 677 def pct(i):
678 678 if maxtotal == 0:
679 679 return 0
680 680 return (float(i) / maxtotal) * 100
681 681
682 682 fileno = 0
683 683 for filename, adds, removes, isbinary in stats:
684 684 template = 'diffstatlink' if filename in files else 'diffstatnolink'
685 685 total = adds + removes
686 686 fileno += 1
687 687 yield context.process(template, {
688 688 'node': ctx.hex(),
689 689 'file': filename,
690 690 'fileno': fileno,
691 691 'total': total,
692 692 'addpct': pct(adds),
693 693 'removepct': pct(removes),
694 694 'parity': next(parity),
695 695 })
696 696
697 697 def diffstat(ctx, statgen, parity):
698 698 '''Return a diffstat template for each file in the diff.'''
699 699 args = (ctx, statgen, parity)
700 700 return templateutil.mappedgenerator(_diffstattmplgen, args=args)
701 701
702 702 class sessionvars(templateutil.wrapped):
703 703 def __init__(self, vars, start='?'):
704 704 self._start = start
705 705 self._vars = vars
706 706
707 707 def __getitem__(self, key):
708 708 return self._vars[key]
709 709
710 710 def __setitem__(self, key, value):
711 711 self._vars[key] = value
712 712
713 713 def __copy__(self):
714 714 return sessionvars(copy.copy(self._vars), self._start)
715 715
716 def contains(self, context, mapping, item):
717 item = templateutil.unwrapvalue(context, mapping, item)
718 return item in self._vars
719
716 720 def getmember(self, context, mapping, key):
717 721 key = templateutil.unwrapvalue(context, mapping, key)
718 722 return self._vars.get(key)
719 723
720 724 def getmin(self, context, mapping):
721 725 raise error.ParseError(_('not comparable'))
722 726
723 727 def getmax(self, context, mapping):
724 728 raise error.ParseError(_('not comparable'))
725 729
726 730 def itermaps(self, context):
727 731 separator = self._start
728 732 for key, value in sorted(self._vars.iteritems()):
729 733 yield {'name': key,
730 734 'value': pycompat.bytestr(value),
731 735 'separator': separator,
732 736 }
733 737 separator = '&'
734 738
735 739 def join(self, context, mapping, sep):
736 740 # could be '{separator}{name}={value|urlescape}'
737 741 raise error.ParseError(_('not displayable without template'))
738 742
739 743 def show(self, context, mapping):
740 744 return self.join(context, '')
741 745
742 746 def tovalue(self, context, mapping):
743 747 return self._vars
744 748
745 749 class wsgiui(uimod.ui):
746 750 # default termwidth breaks under mod_wsgi
747 751 def termwidth(self):
748 752 return 80
749 753
750 754 def getwebsubs(repo):
751 755 websubtable = []
752 756 websubdefs = repo.ui.configitems('websub')
753 757 # we must maintain interhg backwards compatibility
754 758 websubdefs += repo.ui.configitems('interhg')
755 759 for key, pattern in websubdefs:
756 760 # grab the delimiter from the character after the "s"
757 761 unesc = pattern[1:2]
758 762 delim = re.escape(unesc)
759 763
760 764 # identify portions of the pattern, taking care to avoid escaped
761 765 # delimiters. the replace format and flags are optional, but
762 766 # delimiters are required.
763 767 match = re.match(
764 768 br'^s%s(.+)(?:(?<=\\\\)|(?<!\\))%s(.*)%s([ilmsux])*$'
765 769 % (delim, delim, delim), pattern)
766 770 if not match:
767 771 repo.ui.warn(_("websub: invalid pattern for %s: %s\n")
768 772 % (key, pattern))
769 773 continue
770 774
771 775 # we need to unescape the delimiter for regexp and format
772 776 delim_re = re.compile(br'(?<!\\)\\%s' % delim)
773 777 regexp = delim_re.sub(unesc, match.group(1))
774 778 format = delim_re.sub(unesc, match.group(2))
775 779
776 780 # the pattern allows for 6 regexp flags, so set them if necessary
777 781 flagin = match.group(3)
778 782 flags = 0
779 783 if flagin:
780 784 for flag in flagin.upper():
781 785 flags |= re.__dict__[flag]
782 786
783 787 try:
784 788 regexp = re.compile(regexp, flags)
785 789 websubtable.append((regexp, format))
786 790 except re.error:
787 791 repo.ui.warn(_("websub: invalid regexp for %s: %s\n")
788 792 % (key, regexp))
789 793 return websubtable
790 794
791 795 def getgraphnode(repo, ctx):
792 796 return (templatekw.getgraphnodecurrent(repo, ctx) +
793 797 templatekw.getgraphnodesymbol(ctx))
@@ -1,701 +1,698 b''
1 1 # templatefuncs.py - common template functions
2 2 #
3 3 # Copyright 2005, 2006 Matt Mackall <mpm@selenic.com>
4 4 #
5 5 # This software may be used and distributed according to the terms of the
6 6 # GNU General Public License version 2 or any later version.
7 7
8 8 from __future__ import absolute_import
9 9
10 10 import re
11 11
12 12 from .i18n import _
13 13 from .node import (
14 14 bin,
15 15 wdirid,
16 16 )
17 17 from . import (
18 18 color,
19 19 encoding,
20 20 error,
21 21 minirst,
22 22 obsutil,
23 23 registrar,
24 24 revset as revsetmod,
25 25 revsetlang,
26 26 scmutil,
27 27 templatefilters,
28 28 templatekw,
29 29 templateutil,
30 30 util,
31 31 )
32 32 from .utils import (
33 33 dateutil,
34 34 stringutil,
35 35 )
36 36
37 37 evalrawexp = templateutil.evalrawexp
38 38 evalwrapped = templateutil.evalwrapped
39 39 evalfuncarg = templateutil.evalfuncarg
40 40 evalboolean = templateutil.evalboolean
41 41 evaldate = templateutil.evaldate
42 42 evalinteger = templateutil.evalinteger
43 43 evalstring = templateutil.evalstring
44 44 evalstringliteral = templateutil.evalstringliteral
45 45
46 46 # dict of template built-in functions
47 47 funcs = {}
48 48 templatefunc = registrar.templatefunc(funcs)
49 49
50 50 @templatefunc('date(date[, fmt])')
51 51 def date(context, mapping, args):
52 52 """Format a date. See :hg:`help dates` for formatting
53 53 strings. The default is a Unix date format, including the timezone:
54 54 "Mon Sep 04 15:13:13 2006 0700"."""
55 55 if not (1 <= len(args) <= 2):
56 56 # i18n: "date" is a keyword
57 57 raise error.ParseError(_("date expects one or two arguments"))
58 58
59 59 date = evaldate(context, mapping, args[0],
60 60 # i18n: "date" is a keyword
61 61 _("date expects a date information"))
62 62 fmt = None
63 63 if len(args) == 2:
64 64 fmt = evalstring(context, mapping, args[1])
65 65 if fmt is None:
66 66 return dateutil.datestr(date)
67 67 else:
68 68 return dateutil.datestr(date, fmt)
69 69
70 70 @templatefunc('dict([[key=]value...])', argspec='*args **kwargs')
71 71 def dict_(context, mapping, args):
72 72 """Construct a dict from key-value pairs. A key may be omitted if
73 73 a value expression can provide an unambiguous name."""
74 74 data = util.sortdict()
75 75
76 76 for v in args['args']:
77 77 k = templateutil.findsymbolicname(v)
78 78 if not k:
79 79 raise error.ParseError(_('dict key cannot be inferred'))
80 80 if k in data or k in args['kwargs']:
81 81 raise error.ParseError(_("duplicated dict key '%s' inferred") % k)
82 82 data[k] = evalfuncarg(context, mapping, v)
83 83
84 84 data.update((k, evalfuncarg(context, mapping, v))
85 85 for k, v in args['kwargs'].iteritems())
86 86 return templateutil.hybriddict(data)
87 87
88 88 @templatefunc('diff([includepattern [, excludepattern]])')
89 89 def diff(context, mapping, args):
90 90 """Show a diff, optionally
91 91 specifying files to include or exclude."""
92 92 if len(args) > 2:
93 93 # i18n: "diff" is a keyword
94 94 raise error.ParseError(_("diff expects zero, one, or two arguments"))
95 95
96 96 def getpatterns(i):
97 97 if i < len(args):
98 98 s = evalstring(context, mapping, args[i]).strip()
99 99 if s:
100 100 return [s]
101 101 return []
102 102
103 103 ctx = context.resource(mapping, 'ctx')
104 104 chunks = ctx.diff(match=ctx.match([], getpatterns(0), getpatterns(1)))
105 105
106 106 return ''.join(chunks)
107 107
108 108 @templatefunc('extdata(source)', argspec='source')
109 109 def extdata(context, mapping, args):
110 110 """Show a text read from the specified extdata source. (EXPERIMENTAL)"""
111 111 if 'source' not in args:
112 112 # i18n: "extdata" is a keyword
113 113 raise error.ParseError(_('extdata expects one argument'))
114 114
115 115 source = evalstring(context, mapping, args['source'])
116 116 if not source:
117 117 sym = templateutil.findsymbolicname(args['source'])
118 118 if sym:
119 119 raise error.ParseError(_('empty data source specified'),
120 120 hint=_("did you mean extdata('%s')?") % sym)
121 121 else:
122 122 raise error.ParseError(_('empty data source specified'))
123 123 cache = context.resource(mapping, 'cache').setdefault('extdata', {})
124 124 ctx = context.resource(mapping, 'ctx')
125 125 if source in cache:
126 126 data = cache[source]
127 127 else:
128 128 data = cache[source] = scmutil.extdatasource(ctx.repo(), source)
129 129 return data.get(ctx.rev(), '')
130 130
131 131 @templatefunc('files(pattern)')
132 132 def files(context, mapping, args):
133 133 """All files of the current changeset matching the pattern. See
134 134 :hg:`help patterns`."""
135 135 if not len(args) == 1:
136 136 # i18n: "files" is a keyword
137 137 raise error.ParseError(_("files expects one argument"))
138 138
139 139 raw = evalstring(context, mapping, args[0])
140 140 ctx = context.resource(mapping, 'ctx')
141 141 m = ctx.match([raw])
142 142 files = list(ctx.matches(m))
143 143 return templateutil.compatlist(context, mapping, "file", files)
144 144
145 145 @templatefunc('fill(text[, width[, initialident[, hangindent]]])')
146 146 def fill(context, mapping, args):
147 147 """Fill many
148 148 paragraphs with optional indentation. See the "fill" filter."""
149 149 if not (1 <= len(args) <= 4):
150 150 # i18n: "fill" is a keyword
151 151 raise error.ParseError(_("fill expects one to four arguments"))
152 152
153 153 text = evalstring(context, mapping, args[0])
154 154 width = 76
155 155 initindent = ''
156 156 hangindent = ''
157 157 if 2 <= len(args) <= 4:
158 158 width = evalinteger(context, mapping, args[1],
159 159 # i18n: "fill" is a keyword
160 160 _("fill expects an integer width"))
161 161 try:
162 162 initindent = evalstring(context, mapping, args[2])
163 163 hangindent = evalstring(context, mapping, args[3])
164 164 except IndexError:
165 165 pass
166 166
167 167 return templatefilters.fill(text, width, initindent, hangindent)
168 168
169 169 @templatefunc('formatnode(node)')
170 170 def formatnode(context, mapping, args):
171 171 """Obtain the preferred form of a changeset hash. (DEPRECATED)"""
172 172 if len(args) != 1:
173 173 # i18n: "formatnode" is a keyword
174 174 raise error.ParseError(_("formatnode expects one argument"))
175 175
176 176 ui = context.resource(mapping, 'ui')
177 177 node = evalstring(context, mapping, args[0])
178 178 if ui.debugflag:
179 179 return node
180 180 return templatefilters.short(node)
181 181
182 182 @templatefunc('mailmap(author)')
183 183 def mailmap(context, mapping, args):
184 184 """Return the author, updated according to the value
185 185 set in the .mailmap file"""
186 186 if len(args) != 1:
187 187 raise error.ParseError(_("mailmap expects one argument"))
188 188
189 189 author = evalstring(context, mapping, args[0])
190 190
191 191 cache = context.resource(mapping, 'cache')
192 192 repo = context.resource(mapping, 'repo')
193 193
194 194 if 'mailmap' not in cache:
195 195 data = repo.wvfs.tryread('.mailmap')
196 196 cache['mailmap'] = stringutil.parsemailmap(data)
197 197
198 198 return stringutil.mapname(cache['mailmap'], author)
199 199
200 200 @templatefunc('pad(text, width[, fillchar=\' \'[, left=False]])',
201 201 argspec='text width fillchar left')
202 202 def pad(context, mapping, args):
203 203 """Pad text with a
204 204 fill character."""
205 205 if 'text' not in args or 'width' not in args:
206 206 # i18n: "pad" is a keyword
207 207 raise error.ParseError(_("pad() expects two to four arguments"))
208 208
209 209 width = evalinteger(context, mapping, args['width'],
210 210 # i18n: "pad" is a keyword
211 211 _("pad() expects an integer width"))
212 212
213 213 text = evalstring(context, mapping, args['text'])
214 214
215 215 left = False
216 216 fillchar = ' '
217 217 if 'fillchar' in args:
218 218 fillchar = evalstring(context, mapping, args['fillchar'])
219 219 if len(color.stripeffects(fillchar)) != 1:
220 220 # i18n: "pad" is a keyword
221 221 raise error.ParseError(_("pad() expects a single fill character"))
222 222 if 'left' in args:
223 223 left = evalboolean(context, mapping, args['left'])
224 224
225 225 fillwidth = width - encoding.colwidth(color.stripeffects(text))
226 226 if fillwidth <= 0:
227 227 return text
228 228 if left:
229 229 return fillchar * fillwidth + text
230 230 else:
231 231 return text + fillchar * fillwidth
232 232
233 233 @templatefunc('indent(text, indentchars[, firstline])')
234 234 def indent(context, mapping, args):
235 235 """Indents all non-empty lines
236 236 with the characters given in the indentchars string. An optional
237 237 third parameter will override the indent for the first line only
238 238 if present."""
239 239 if not (2 <= len(args) <= 3):
240 240 # i18n: "indent" is a keyword
241 241 raise error.ParseError(_("indent() expects two or three arguments"))
242 242
243 243 text = evalstring(context, mapping, args[0])
244 244 indent = evalstring(context, mapping, args[1])
245 245
246 246 if len(args) == 3:
247 247 firstline = evalstring(context, mapping, args[2])
248 248 else:
249 249 firstline = indent
250 250
251 251 # the indent function doesn't indent the first line, so we do it here
252 252 return templatefilters.indent(firstline + text, indent)
253 253
254 254 @templatefunc('get(dict, key)')
255 255 def get(context, mapping, args):
256 256 """Get an attribute/key from an object. Some keywords
257 257 are complex types. This function allows you to obtain the value of an
258 258 attribute on these types."""
259 259 if len(args) != 2:
260 260 # i18n: "get" is a keyword
261 261 raise error.ParseError(_("get() expects two arguments"))
262 262
263 263 dictarg = evalwrapped(context, mapping, args[0])
264 264 key = evalrawexp(context, mapping, args[1])
265 265 try:
266 266 return dictarg.getmember(context, mapping, key)
267 267 except error.ParseError as err:
268 268 # i18n: "get" is a keyword
269 269 hint = _("get() expects a dict as first argument")
270 270 raise error.ParseError(bytes(err), hint=hint)
271 271
272 272 @templatefunc('if(expr, then[, else])')
273 273 def if_(context, mapping, args):
274 274 """Conditionally execute based on the result of
275 275 an expression."""
276 276 if not (2 <= len(args) <= 3):
277 277 # i18n: "if" is a keyword
278 278 raise error.ParseError(_("if expects two or three arguments"))
279 279
280 280 test = evalboolean(context, mapping, args[0])
281 281 if test:
282 282 return evalrawexp(context, mapping, args[1])
283 283 elif len(args) == 3:
284 284 return evalrawexp(context, mapping, args[2])
285 285
286 286 @templatefunc('ifcontains(needle, haystack, then[, else])')
287 287 def ifcontains(context, mapping, args):
288 288 """Conditionally execute based
289 289 on whether the item "needle" is in "haystack"."""
290 290 if not (3 <= len(args) <= 4):
291 291 # i18n: "ifcontains" is a keyword
292 292 raise error.ParseError(_("ifcontains expects three or four arguments"))
293 293
294 haystack = evalfuncarg(context, mapping, args[1])
295 keytype = getattr(haystack, 'keytype', None)
294 haystack = evalwrapped(context, mapping, args[1])
296 295 try:
297 296 needle = evalrawexp(context, mapping, args[0])
298 needle = templateutil.unwrapastype(context, mapping, needle,
299 keytype or bytes)
300 found = (needle in haystack)
297 found = haystack.contains(context, mapping, needle)
301 298 except error.ParseError:
302 299 found = False
303 300
304 301 if found:
305 302 return evalrawexp(context, mapping, args[2])
306 303 elif len(args) == 4:
307 304 return evalrawexp(context, mapping, args[3])
308 305
309 306 @templatefunc('ifeq(expr1, expr2, then[, else])')
310 307 def ifeq(context, mapping, args):
311 308 """Conditionally execute based on
312 309 whether 2 items are equivalent."""
313 310 if not (3 <= len(args) <= 4):
314 311 # i18n: "ifeq" is a keyword
315 312 raise error.ParseError(_("ifeq expects three or four arguments"))
316 313
317 314 test = evalstring(context, mapping, args[0])
318 315 match = evalstring(context, mapping, args[1])
319 316 if test == match:
320 317 return evalrawexp(context, mapping, args[2])
321 318 elif len(args) == 4:
322 319 return evalrawexp(context, mapping, args[3])
323 320
324 321 @templatefunc('join(list, sep)')
325 322 def join(context, mapping, args):
326 323 """Join items in a list with a delimiter."""
327 324 if not (1 <= len(args) <= 2):
328 325 # i18n: "join" is a keyword
329 326 raise error.ParseError(_("join expects one or two arguments"))
330 327
331 328 joinset = evalwrapped(context, mapping, args[0])
332 329 joiner = " "
333 330 if len(args) > 1:
334 331 joiner = evalstring(context, mapping, args[1])
335 332 return joinset.join(context, mapping, joiner)
336 333
337 334 @templatefunc('label(label, expr)')
338 335 def label(context, mapping, args):
339 336 """Apply a label to generated content. Content with
340 337 a label applied can result in additional post-processing, such as
341 338 automatic colorization."""
342 339 if len(args) != 2:
343 340 # i18n: "label" is a keyword
344 341 raise error.ParseError(_("label expects two arguments"))
345 342
346 343 ui = context.resource(mapping, 'ui')
347 344 thing = evalstring(context, mapping, args[1])
348 345 # preserve unknown symbol as literal so effects like 'red', 'bold',
349 346 # etc. don't need to be quoted
350 347 label = evalstringliteral(context, mapping, args[0])
351 348
352 349 return ui.label(thing, label)
353 350
354 351 @templatefunc('latesttag([pattern])')
355 352 def latesttag(context, mapping, args):
356 353 """The global tags matching the given pattern on the
357 354 most recent globally tagged ancestor of this changeset.
358 355 If no such tags exist, the "{tag}" template resolves to
359 356 the string "null". See :hg:`help revisions.patterns` for the pattern
360 357 syntax.
361 358 """
362 359 if len(args) > 1:
363 360 # i18n: "latesttag" is a keyword
364 361 raise error.ParseError(_("latesttag expects at most one argument"))
365 362
366 363 pattern = None
367 364 if len(args) == 1:
368 365 pattern = evalstring(context, mapping, args[0])
369 366 return templatekw.showlatesttags(context, mapping, pattern)
370 367
371 368 @templatefunc('localdate(date[, tz])')
372 369 def localdate(context, mapping, args):
373 370 """Converts a date to the specified timezone.
374 371 The default is local date."""
375 372 if not (1 <= len(args) <= 2):
376 373 # i18n: "localdate" is a keyword
377 374 raise error.ParseError(_("localdate expects one or two arguments"))
378 375
379 376 date = evaldate(context, mapping, args[0],
380 377 # i18n: "localdate" is a keyword
381 378 _("localdate expects a date information"))
382 379 if len(args) >= 2:
383 380 tzoffset = None
384 381 tz = evalfuncarg(context, mapping, args[1])
385 382 if isinstance(tz, bytes):
386 383 tzoffset, remainder = dateutil.parsetimezone(tz)
387 384 if remainder:
388 385 tzoffset = None
389 386 if tzoffset is None:
390 387 try:
391 388 tzoffset = int(tz)
392 389 except (TypeError, ValueError):
393 390 # i18n: "localdate" is a keyword
394 391 raise error.ParseError(_("localdate expects a timezone"))
395 392 else:
396 393 tzoffset = dateutil.makedate()[1]
397 394 return (date[0], tzoffset)
398 395
399 396 @templatefunc('max(iterable)')
400 397 def max_(context, mapping, args, **kwargs):
401 398 """Return the max of an iterable"""
402 399 if len(args) != 1:
403 400 # i18n: "max" is a keyword
404 401 raise error.ParseError(_("max expects one argument"))
405 402
406 403 iterable = evalwrapped(context, mapping, args[0])
407 404 try:
408 405 return iterable.getmax(context, mapping)
409 406 except error.ParseError as err:
410 407 # i18n: "max" is a keyword
411 408 hint = _("max first argument should be an iterable")
412 409 raise error.ParseError(bytes(err), hint=hint)
413 410
414 411 @templatefunc('min(iterable)')
415 412 def min_(context, mapping, args, **kwargs):
416 413 """Return the min of an iterable"""
417 414 if len(args) != 1:
418 415 # i18n: "min" is a keyword
419 416 raise error.ParseError(_("min expects one argument"))
420 417
421 418 iterable = evalwrapped(context, mapping, args[0])
422 419 try:
423 420 return iterable.getmin(context, mapping)
424 421 except error.ParseError as err:
425 422 # i18n: "min" is a keyword
426 423 hint = _("min first argument should be an iterable")
427 424 raise error.ParseError(bytes(err), hint=hint)
428 425
429 426 @templatefunc('mod(a, b)')
430 427 def mod(context, mapping, args):
431 428 """Calculate a mod b such that a / b + a mod b == a"""
432 429 if not len(args) == 2:
433 430 # i18n: "mod" is a keyword
434 431 raise error.ParseError(_("mod expects two arguments"))
435 432
436 433 func = lambda a, b: a % b
437 434 return templateutil.runarithmetic(context, mapping,
438 435 (func, args[0], args[1]))
439 436
440 437 @templatefunc('obsfateoperations(markers)')
441 438 def obsfateoperations(context, mapping, args):
442 439 """Compute obsfate related information based on markers (EXPERIMENTAL)"""
443 440 if len(args) != 1:
444 441 # i18n: "obsfateoperations" is a keyword
445 442 raise error.ParseError(_("obsfateoperations expects one argument"))
446 443
447 444 markers = evalfuncarg(context, mapping, args[0])
448 445
449 446 try:
450 447 data = obsutil.markersoperations(markers)
451 448 return templateutil.hybridlist(data, name='operation')
452 449 except (TypeError, KeyError):
453 450 # i18n: "obsfateoperations" is a keyword
454 451 errmsg = _("obsfateoperations first argument should be an iterable")
455 452 raise error.ParseError(errmsg)
456 453
457 454 @templatefunc('obsfatedate(markers)')
458 455 def obsfatedate(context, mapping, args):
459 456 """Compute obsfate related information based on markers (EXPERIMENTAL)"""
460 457 if len(args) != 1:
461 458 # i18n: "obsfatedate" is a keyword
462 459 raise error.ParseError(_("obsfatedate expects one argument"))
463 460
464 461 markers = evalfuncarg(context, mapping, args[0])
465 462
466 463 try:
467 464 data = obsutil.markersdates(markers)
468 465 return templateutil.hybridlist(data, name='date', fmt='%d %d')
469 466 except (TypeError, KeyError):
470 467 # i18n: "obsfatedate" is a keyword
471 468 errmsg = _("obsfatedate first argument should be an iterable")
472 469 raise error.ParseError(errmsg)
473 470
474 471 @templatefunc('obsfateusers(markers)')
475 472 def obsfateusers(context, mapping, args):
476 473 """Compute obsfate related information based on markers (EXPERIMENTAL)"""
477 474 if len(args) != 1:
478 475 # i18n: "obsfateusers" is a keyword
479 476 raise error.ParseError(_("obsfateusers expects one argument"))
480 477
481 478 markers = evalfuncarg(context, mapping, args[0])
482 479
483 480 try:
484 481 data = obsutil.markersusers(markers)
485 482 return templateutil.hybridlist(data, name='user')
486 483 except (TypeError, KeyError, ValueError):
487 484 # i18n: "obsfateusers" is a keyword
488 485 msg = _("obsfateusers first argument should be an iterable of "
489 486 "obsmakers")
490 487 raise error.ParseError(msg)
491 488
492 489 @templatefunc('obsfateverb(successors, markers)')
493 490 def obsfateverb(context, mapping, args):
494 491 """Compute obsfate related information based on successors (EXPERIMENTAL)"""
495 492 if len(args) != 2:
496 493 # i18n: "obsfateverb" is a keyword
497 494 raise error.ParseError(_("obsfateverb expects two arguments"))
498 495
499 496 successors = evalfuncarg(context, mapping, args[0])
500 497 markers = evalfuncarg(context, mapping, args[1])
501 498
502 499 try:
503 500 return obsutil.obsfateverb(successors, markers)
504 501 except TypeError:
505 502 # i18n: "obsfateverb" is a keyword
506 503 errmsg = _("obsfateverb first argument should be countable")
507 504 raise error.ParseError(errmsg)
508 505
509 506 @templatefunc('relpath(path)')
510 507 def relpath(context, mapping, args):
511 508 """Convert a repository-absolute path into a filesystem path relative to
512 509 the current working directory."""
513 510 if len(args) != 1:
514 511 # i18n: "relpath" is a keyword
515 512 raise error.ParseError(_("relpath expects one argument"))
516 513
517 514 repo = context.resource(mapping, 'ctx').repo()
518 515 path = evalstring(context, mapping, args[0])
519 516 return repo.pathto(path)
520 517
521 518 @templatefunc('revset(query[, formatargs...])')
522 519 def revset(context, mapping, args):
523 520 """Execute a revision set query. See
524 521 :hg:`help revset`."""
525 522 if not len(args) > 0:
526 523 # i18n: "revset" is a keyword
527 524 raise error.ParseError(_("revset expects one or more arguments"))
528 525
529 526 raw = evalstring(context, mapping, args[0])
530 527 ctx = context.resource(mapping, 'ctx')
531 528 repo = ctx.repo()
532 529
533 530 def query(expr):
534 531 m = revsetmod.match(repo.ui, expr, lookup=revsetmod.lookupfn(repo))
535 532 return m(repo)
536 533
537 534 if len(args) > 1:
538 535 formatargs = [evalfuncarg(context, mapping, a) for a in args[1:]]
539 536 revs = query(revsetlang.formatspec(raw, *formatargs))
540 537 revs = list(revs)
541 538 else:
542 539 cache = context.resource(mapping, 'cache')
543 540 revsetcache = cache.setdefault("revsetcache", {})
544 541 if raw in revsetcache:
545 542 revs = revsetcache[raw]
546 543 else:
547 544 revs = query(raw)
548 545 revs = list(revs)
549 546 revsetcache[raw] = revs
550 547 return templatekw.showrevslist(context, mapping, "revision", revs)
551 548
552 549 @templatefunc('rstdoc(text, style)')
553 550 def rstdoc(context, mapping, args):
554 551 """Format reStructuredText."""
555 552 if len(args) != 2:
556 553 # i18n: "rstdoc" is a keyword
557 554 raise error.ParseError(_("rstdoc expects two arguments"))
558 555
559 556 text = evalstring(context, mapping, args[0])
560 557 style = evalstring(context, mapping, args[1])
561 558
562 559 return minirst.format(text, style=style, keep=['verbose'])[0]
563 560
564 561 @templatefunc('separate(sep, args...)', argspec='sep *args')
565 562 def separate(context, mapping, args):
566 563 """Add a separator between non-empty arguments."""
567 564 if 'sep' not in args:
568 565 # i18n: "separate" is a keyword
569 566 raise error.ParseError(_("separate expects at least one argument"))
570 567
571 568 sep = evalstring(context, mapping, args['sep'])
572 569 first = True
573 570 for arg in args['args']:
574 571 argstr = evalstring(context, mapping, arg)
575 572 if not argstr:
576 573 continue
577 574 if first:
578 575 first = False
579 576 else:
580 577 yield sep
581 578 yield argstr
582 579
583 580 @templatefunc('shortest(node, minlength=4)')
584 581 def shortest(context, mapping, args):
585 582 """Obtain the shortest representation of
586 583 a node."""
587 584 if not (1 <= len(args) <= 2):
588 585 # i18n: "shortest" is a keyword
589 586 raise error.ParseError(_("shortest() expects one or two arguments"))
590 587
591 588 hexnode = evalstring(context, mapping, args[0])
592 589
593 590 minlength = 4
594 591 if len(args) > 1:
595 592 minlength = evalinteger(context, mapping, args[1],
596 593 # i18n: "shortest" is a keyword
597 594 _("shortest() expects an integer minlength"))
598 595
599 596 repo = context.resource(mapping, 'ctx')._repo
600 597 if len(hexnode) > 40:
601 598 return hexnode
602 599 elif len(hexnode) == 40:
603 600 try:
604 601 node = bin(hexnode)
605 602 except TypeError:
606 603 return hexnode
607 604 else:
608 605 try:
609 606 node = scmutil.resolvehexnodeidprefix(repo, hexnode)
610 607 except error.WdirUnsupported:
611 608 node = wdirid
612 609 except error.LookupError:
613 610 return hexnode
614 611 if not node:
615 612 return hexnode
616 613 try:
617 614 return scmutil.shortesthexnodeidprefix(repo, node, minlength)
618 615 except error.RepoLookupError:
619 616 return hexnode
620 617
621 618 @templatefunc('strip(text[, chars])')
622 619 def strip(context, mapping, args):
623 620 """Strip characters from a string. By default,
624 621 strips all leading and trailing whitespace."""
625 622 if not (1 <= len(args) <= 2):
626 623 # i18n: "strip" is a keyword
627 624 raise error.ParseError(_("strip expects one or two arguments"))
628 625
629 626 text = evalstring(context, mapping, args[0])
630 627 if len(args) == 2:
631 628 chars = evalstring(context, mapping, args[1])
632 629 return text.strip(chars)
633 630 return text.strip()
634 631
635 632 @templatefunc('sub(pattern, replacement, expression)')
636 633 def sub(context, mapping, args):
637 634 """Perform text substitution
638 635 using regular expressions."""
639 636 if len(args) != 3:
640 637 # i18n: "sub" is a keyword
641 638 raise error.ParseError(_("sub expects three arguments"))
642 639
643 640 pat = evalstring(context, mapping, args[0])
644 641 rpl = evalstring(context, mapping, args[1])
645 642 src = evalstring(context, mapping, args[2])
646 643 try:
647 644 patre = re.compile(pat)
648 645 except re.error:
649 646 # i18n: "sub" is a keyword
650 647 raise error.ParseError(_("sub got an invalid pattern: %s") % pat)
651 648 try:
652 649 yield patre.sub(rpl, src)
653 650 except re.error:
654 651 # i18n: "sub" is a keyword
655 652 raise error.ParseError(_("sub got an invalid replacement: %s") % rpl)
656 653
657 654 @templatefunc('startswith(pattern, text)')
658 655 def startswith(context, mapping, args):
659 656 """Returns the value from the "text" argument
660 657 if it begins with the content from the "pattern" argument."""
661 658 if len(args) != 2:
662 659 # i18n: "startswith" is a keyword
663 660 raise error.ParseError(_("startswith expects two arguments"))
664 661
665 662 patn = evalstring(context, mapping, args[0])
666 663 text = evalstring(context, mapping, args[1])
667 664 if text.startswith(patn):
668 665 return text
669 666 return ''
670 667
671 668 @templatefunc('word(number, text[, separator])')
672 669 def word(context, mapping, args):
673 670 """Return the nth word from a string."""
674 671 if not (2 <= len(args) <= 3):
675 672 # i18n: "word" is a keyword
676 673 raise error.ParseError(_("word expects two or three arguments, got %d")
677 674 % len(args))
678 675
679 676 num = evalinteger(context, mapping, args[0],
680 677 # i18n: "word" is a keyword
681 678 _("word expects an integer index"))
682 679 text = evalstring(context, mapping, args[1])
683 680 if len(args) == 3:
684 681 splitter = evalstring(context, mapping, args[2])
685 682 else:
686 683 splitter = None
687 684
688 685 tokens = text.split(splitter)
689 686 if num >= len(tokens) or num < -len(tokens):
690 687 return ''
691 688 else:
692 689 return tokens[num]
693 690
694 691 def loadfunction(ui, extname, registrarobj):
695 692 """Load template function from specified registrarobj
696 693 """
697 694 for name, func in registrarobj._table.iteritems():
698 695 funcs[name] = func
699 696
700 697 # tell hggettext to extract docstrings from these functions:
701 698 i18nfunctions = funcs.values()
@@ -1,794 +1,823 b''
1 1 # templateutil.py - utility for template evaluation
2 2 #
3 3 # Copyright 2005, 2006 Matt Mackall <mpm@selenic.com>
4 4 #
5 5 # This software may be used and distributed according to the terms of the
6 6 # GNU General Public License version 2 or any later version.
7 7
8 8 from __future__ import absolute_import
9 9
10 10 import abc
11 11 import types
12 12
13 13 from .i18n import _
14 14 from . import (
15 15 error,
16 16 pycompat,
17 17 util,
18 18 )
19 19 from .utils import (
20 20 dateutil,
21 21 stringutil,
22 22 )
23 23
24 24 class ResourceUnavailable(error.Abort):
25 25 pass
26 26
27 27 class TemplateNotFound(error.Abort):
28 28 pass
29 29
30 30 class wrapped(object):
31 31 """Object requiring extra conversion prior to displaying or processing
32 32 as value
33 33
34 34 Use unwrapvalue(), unwrapastype(), or unwraphybrid() to obtain the inner
35 35 object.
36 36 """
37 37
38 38 __metaclass__ = abc.ABCMeta
39 39
40 40 @abc.abstractmethod
41 def contains(self, context, mapping, item):
42 """Test if the specified item is in self
43
44 The item argument may be a wrapped object.
45 """
46
47 @abc.abstractmethod
41 48 def getmember(self, context, mapping, key):
42 49 """Return a member item for the specified key
43 50
44 51 The key argument may be a wrapped object.
45 52 A returned object may be either a wrapped object or a pure value
46 53 depending on the self type.
47 54 """
48 55
49 56 @abc.abstractmethod
50 57 def getmin(self, context, mapping):
51 58 """Return the smallest item, which may be either a wrapped or a pure
52 59 value depending on the self type"""
53 60
54 61 @abc.abstractmethod
55 62 def getmax(self, context, mapping):
56 63 """Return the largest item, which may be either a wrapped or a pure
57 64 value depending on the self type"""
58 65
59 66 @abc.abstractmethod
60 67 def itermaps(self, context):
61 68 """Yield each template mapping"""
62 69
63 70 @abc.abstractmethod
64 71 def join(self, context, mapping, sep):
65 72 """Join items with the separator; Returns a bytes or (possibly nested)
66 73 generator of bytes
67 74
68 75 A pre-configured template may be rendered per item if this container
69 76 holds unprintable items.
70 77 """
71 78
72 79 @abc.abstractmethod
73 80 def show(self, context, mapping):
74 81 """Return a bytes or (possibly nested) generator of bytes representing
75 82 the underlying object
76 83
77 84 A pre-configured template may be rendered if the underlying object is
78 85 not printable.
79 86 """
80 87
81 88 @abc.abstractmethod
82 89 def tovalue(self, context, mapping):
83 90 """Move the inner value object out or create a value representation
84 91
85 92 A returned value must be serializable by templaterfilters.json().
86 93 """
87 94
88 95 class wrappedbytes(wrapped):
89 96 """Wrapper for byte string"""
90 97
91 98 def __init__(self, value):
92 99 self._value = value
93 100
101 def contains(self, context, mapping, item):
102 item = stringify(context, mapping, item)
103 return item in self._value
104
94 105 def getmember(self, context, mapping, key):
95 106 raise error.ParseError(_('%r is not a dictionary')
96 107 % pycompat.bytestr(self._value))
97 108
98 109 def getmin(self, context, mapping):
99 110 return self._getby(context, mapping, min)
100 111
101 112 def getmax(self, context, mapping):
102 113 return self._getby(context, mapping, max)
103 114
104 115 def _getby(self, context, mapping, func):
105 116 if not self._value:
106 117 raise error.ParseError(_('empty string'))
107 118 return func(pycompat.iterbytestr(self._value))
108 119
109 120 def itermaps(self, context):
110 121 raise error.ParseError(_('%r is not iterable of mappings')
111 122 % pycompat.bytestr(self._value))
112 123
113 124 def join(self, context, mapping, sep):
114 125 return joinitems(pycompat.iterbytestr(self._value), sep)
115 126
116 127 def show(self, context, mapping):
117 128 return self._value
118 129
119 130 def tovalue(self, context, mapping):
120 131 return self._value
121 132
122 133 class wrappedvalue(wrapped):
123 134 """Generic wrapper for pure non-list/dict/bytes value"""
124 135
125 136 def __init__(self, value):
126 137 self._value = value
127 138
139 def contains(self, context, mapping, item):
140 raise error.ParseError(_("%r is not iterable") % self._value)
141
128 142 def getmember(self, context, mapping, key):
129 143 raise error.ParseError(_('%r is not a dictionary') % self._value)
130 144
131 145 def getmin(self, context, mapping):
132 146 raise error.ParseError(_("%r is not iterable") % self._value)
133 147
134 148 def getmax(self, context, mapping):
135 149 raise error.ParseError(_("%r is not iterable") % self._value)
136 150
137 151 def itermaps(self, context):
138 152 raise error.ParseError(_('%r is not iterable of mappings')
139 153 % self._value)
140 154
141 155 def join(self, context, mapping, sep):
142 156 raise error.ParseError(_('%r is not iterable') % self._value)
143 157
144 158 def show(self, context, mapping):
145 159 return pycompat.bytestr(self._value)
146 160
147 161 def tovalue(self, context, mapping):
148 162 return self._value
149 163
150 164 # stub for representing a date type; may be a real date type that can
151 165 # provide a readable string value
152 166 class date(object):
153 167 pass
154 168
155 169 class hybrid(wrapped):
156 170 """Wrapper for list or dict to support legacy template
157 171
158 172 This class allows us to handle both:
159 173 - "{files}" (legacy command-line-specific list hack) and
160 174 - "{files % '{file}\n'}" (hgweb-style with inlining and function support)
161 175 and to access raw values:
162 176 - "{ifcontains(file, files, ...)}", "{ifcontains(key, extras, ...)}"
163 177 - "{get(extras, key)}"
164 178 - "{files|json}"
165 179 """
166 180
167 181 def __init__(self, gen, values, makemap, joinfmt, keytype=None):
168 182 self._gen = gen # generator or function returning generator
169 183 self._values = values
170 184 self._makemap = makemap
171 185 self._joinfmt = joinfmt
172 186 self.keytype = keytype # hint for 'x in y' where type(x) is unresolved
173 187
188 def contains(self, context, mapping, item):
189 item = unwrapastype(context, mapping, item, self.keytype)
190 return item in self._values
191
174 192 def getmember(self, context, mapping, key):
175 193 # TODO: maybe split hybrid list/dict types?
176 194 if not util.safehasattr(self._values, 'get'):
177 195 raise error.ParseError(_('not a dictionary'))
178 196 key = unwrapastype(context, mapping, key, self.keytype)
179 197 return self._wrapvalue(key, self._values.get(key))
180 198
181 199 def getmin(self, context, mapping):
182 200 return self._getby(context, mapping, min)
183 201
184 202 def getmax(self, context, mapping):
185 203 return self._getby(context, mapping, max)
186 204
187 205 def _getby(self, context, mapping, func):
188 206 if not self._values:
189 207 raise error.ParseError(_('empty sequence'))
190 208 val = func(self._values)
191 209 return self._wrapvalue(val, val)
192 210
193 211 def _wrapvalue(self, key, val):
194 212 if val is None:
195 213 return
196 214 if util.safehasattr(val, '_makemap'):
197 215 # a nested hybrid list/dict, which has its own way of map operation
198 216 return val
199 217 return mappable(None, key, val, self._makemap)
200 218
201 219 def itermaps(self, context):
202 220 makemap = self._makemap
203 221 for x in self._values:
204 222 yield makemap(x)
205 223
206 224 def join(self, context, mapping, sep):
207 225 # TODO: switch gen to (context, mapping) API?
208 226 return joinitems((self._joinfmt(x) for x in self._values), sep)
209 227
210 228 def show(self, context, mapping):
211 229 # TODO: switch gen to (context, mapping) API?
212 230 gen = self._gen
213 231 if gen is None:
214 232 return self.join(context, mapping, ' ')
215 233 if callable(gen):
216 234 return gen()
217 235 return gen
218 236
219 237 def tovalue(self, context, mapping):
220 238 # TODO: return self._values and get rid of proxy methods
221 239 return self
222 240
223 241 def __contains__(self, x):
224 242 return x in self._values
225 243 def __getitem__(self, key):
226 244 return self._values[key]
227 245 def __len__(self):
228 246 return len(self._values)
229 247 def __iter__(self):
230 248 return iter(self._values)
231 249 def __getattr__(self, name):
232 250 if name not in (r'get', r'items', r'iteritems', r'iterkeys',
233 251 r'itervalues', r'keys', r'values'):
234 252 raise AttributeError(name)
235 253 return getattr(self._values, name)
236 254
237 255 class mappable(wrapped):
238 256 """Wrapper for non-list/dict object to support map operation
239 257
240 258 This class allows us to handle both:
241 259 - "{manifest}"
242 260 - "{manifest % '{rev}:{node}'}"
243 261 - "{manifest.rev}"
244 262
245 263 Unlike a hybrid, this does not simulate the behavior of the underling
246 264 value.
247 265 """
248 266
249 267 def __init__(self, gen, key, value, makemap):
250 268 self._gen = gen # generator or function returning generator
251 269 self._key = key
252 270 self._value = value # may be generator of strings
253 271 self._makemap = makemap
254 272
255 273 def tomap(self):
256 274 return self._makemap(self._key)
257 275
276 def contains(self, context, mapping, item):
277 w = makewrapped(context, mapping, self._value)
278 return w.contains(context, mapping, item)
279
258 280 def getmember(self, context, mapping, key):
259 281 w = makewrapped(context, mapping, self._value)
260 282 return w.getmember(context, mapping, key)
261 283
262 284 def getmin(self, context, mapping):
263 285 w = makewrapped(context, mapping, self._value)
264 286 return w.getmin(context, mapping)
265 287
266 288 def getmax(self, context, mapping):
267 289 w = makewrapped(context, mapping, self._value)
268 290 return w.getmax(context, mapping)
269 291
270 292 def itermaps(self, context):
271 293 yield self.tomap()
272 294
273 295 def join(self, context, mapping, sep):
274 296 w = makewrapped(context, mapping, self._value)
275 297 return w.join(context, mapping, sep)
276 298
277 299 def show(self, context, mapping):
278 300 # TODO: switch gen to (context, mapping) API?
279 301 gen = self._gen
280 302 if gen is None:
281 303 return pycompat.bytestr(self._value)
282 304 if callable(gen):
283 305 return gen()
284 306 return gen
285 307
286 308 def tovalue(self, context, mapping):
287 309 return _unthunk(context, mapping, self._value)
288 310
289 311 class _mappingsequence(wrapped):
290 312 """Wrapper for sequence of template mappings
291 313
292 314 This represents an inner template structure (i.e. a list of dicts),
293 315 which can also be rendered by the specified named/literal template.
294 316
295 317 Template mappings may be nested.
296 318 """
297 319
298 320 def __init__(self, name=None, tmpl=None, sep=''):
299 321 if name is not None and tmpl is not None:
300 322 raise error.ProgrammingError('name and tmpl are mutually exclusive')
301 323 self._name = name
302 324 self._tmpl = tmpl
303 325 self._defaultsep = sep
304 326
327 def contains(self, context, mapping, item):
328 raise error.ParseError(_('not comparable'))
329
305 330 def getmember(self, context, mapping, key):
306 331 raise error.ParseError(_('not a dictionary'))
307 332
308 333 def getmin(self, context, mapping):
309 334 raise error.ParseError(_('not comparable'))
310 335
311 336 def getmax(self, context, mapping):
312 337 raise error.ParseError(_('not comparable'))
313 338
314 339 def join(self, context, mapping, sep):
315 340 mapsiter = _iteroverlaymaps(context, mapping, self.itermaps(context))
316 341 if self._name:
317 342 itemiter = (context.process(self._name, m) for m in mapsiter)
318 343 elif self._tmpl:
319 344 itemiter = (context.expand(self._tmpl, m) for m in mapsiter)
320 345 else:
321 346 raise error.ParseError(_('not displayable without template'))
322 347 return joinitems(itemiter, sep)
323 348
324 349 def show(self, context, mapping):
325 350 return self.join(context, mapping, self._defaultsep)
326 351
327 352 def tovalue(self, context, mapping):
328 353 knownres = context.knownresourcekeys()
329 354 items = []
330 355 for nm in self.itermaps(context):
331 356 # drop internal resources (recursively) which shouldn't be displayed
332 357 lm = context.overlaymap(mapping, nm)
333 358 items.append({k: unwrapvalue(context, lm, v)
334 359 for k, v in nm.iteritems() if k not in knownres})
335 360 return items
336 361
337 362 class mappinggenerator(_mappingsequence):
338 363 """Wrapper for generator of template mappings
339 364
340 365 The function ``make(context, *args)`` should return a generator of
341 366 mapping dicts.
342 367 """
343 368
344 369 def __init__(self, make, args=(), name=None, tmpl=None, sep=''):
345 370 super(mappinggenerator, self).__init__(name, tmpl, sep)
346 371 self._make = make
347 372 self._args = args
348 373
349 374 def itermaps(self, context):
350 375 return self._make(context, *self._args)
351 376
352 377 class mappinglist(_mappingsequence):
353 378 """Wrapper for list of template mappings"""
354 379
355 380 def __init__(self, mappings, name=None, tmpl=None, sep=''):
356 381 super(mappinglist, self).__init__(name, tmpl, sep)
357 382 self._mappings = mappings
358 383
359 384 def itermaps(self, context):
360 385 return iter(self._mappings)
361 386
362 387 class mappedgenerator(wrapped):
363 388 """Wrapper for generator of strings which acts as a list
364 389
365 390 The function ``make(context, *args)`` should return a generator of
366 391 byte strings, or a generator of (possibly nested) generators of byte
367 392 strings (i.e. a generator for a list of byte strings.)
368 393 """
369 394
370 395 def __init__(self, make, args=()):
371 396 self._make = make
372 397 self._args = args
373 398
399 def contains(self, context, mapping, item):
400 item = stringify(context, mapping, item)
401 return item in self.tovalue(context, mapping)
402
374 403 def _gen(self, context):
375 404 return self._make(context, *self._args)
376 405
377 406 def getmember(self, context, mapping, key):
378 407 raise error.ParseError(_('not a dictionary'))
379 408
380 409 def getmin(self, context, mapping):
381 410 return self._getby(context, mapping, min)
382 411
383 412 def getmax(self, context, mapping):
384 413 return self._getby(context, mapping, max)
385 414
386 415 def _getby(self, context, mapping, func):
387 416 xs = self.tovalue(context, mapping)
388 417 if not xs:
389 418 raise error.ParseError(_('empty sequence'))
390 419 return func(xs)
391 420
392 421 def itermaps(self, context):
393 422 raise error.ParseError(_('list of strings is not mappable'))
394 423
395 424 def join(self, context, mapping, sep):
396 425 return joinitems(self._gen(context), sep)
397 426
398 427 def show(self, context, mapping):
399 428 return self.join(context, mapping, '')
400 429
401 430 def tovalue(self, context, mapping):
402 431 return [stringify(context, mapping, x) for x in self._gen(context)]
403 432
404 433 def hybriddict(data, key='key', value='value', fmt=None, gen=None):
405 434 """Wrap data to support both dict-like and string-like operations"""
406 435 prefmt = pycompat.identity
407 436 if fmt is None:
408 437 fmt = '%s=%s'
409 438 prefmt = pycompat.bytestr
410 439 return hybrid(gen, data, lambda k: {key: k, value: data[k]},
411 440 lambda k: fmt % (prefmt(k), prefmt(data[k])))
412 441
413 442 def hybridlist(data, name, fmt=None, gen=None):
414 443 """Wrap data to support both list-like and string-like operations"""
415 444 prefmt = pycompat.identity
416 445 if fmt is None:
417 446 fmt = '%s'
418 447 prefmt = pycompat.bytestr
419 448 return hybrid(gen, data, lambda x: {name: x}, lambda x: fmt % prefmt(x))
420 449
421 450 def unwraphybrid(context, mapping, thing):
422 451 """Return an object which can be stringified possibly by using a legacy
423 452 template"""
424 453 if not isinstance(thing, wrapped):
425 454 return thing
426 455 return thing.show(context, mapping)
427 456
428 457 def compatdict(context, mapping, name, data, key='key', value='value',
429 458 fmt=None, plural=None, separator=' '):
430 459 """Wrap data like hybriddict(), but also supports old-style list template
431 460
432 461 This exists for backward compatibility with the old-style template. Use
433 462 hybriddict() for new template keywords.
434 463 """
435 464 c = [{key: k, value: v} for k, v in data.iteritems()]
436 465 f = _showcompatlist(context, mapping, name, c, plural, separator)
437 466 return hybriddict(data, key=key, value=value, fmt=fmt, gen=f)
438 467
439 468 def compatlist(context, mapping, name, data, element=None, fmt=None,
440 469 plural=None, separator=' '):
441 470 """Wrap data like hybridlist(), but also supports old-style list template
442 471
443 472 This exists for backward compatibility with the old-style template. Use
444 473 hybridlist() for new template keywords.
445 474 """
446 475 f = _showcompatlist(context, mapping, name, data, plural, separator)
447 476 return hybridlist(data, name=element or name, fmt=fmt, gen=f)
448 477
449 478 def _showcompatlist(context, mapping, name, values, plural=None, separator=' '):
450 479 """Return a generator that renders old-style list template
451 480
452 481 name is name of key in template map.
453 482 values is list of strings or dicts.
454 483 plural is plural of name, if not simply name + 's'.
455 484 separator is used to join values as a string
456 485
457 486 expansion works like this, given name 'foo'.
458 487
459 488 if values is empty, expand 'no_foos'.
460 489
461 490 if 'foo' not in template map, return values as a string,
462 491 joined by 'separator'.
463 492
464 493 expand 'start_foos'.
465 494
466 495 for each value, expand 'foo'. if 'last_foo' in template
467 496 map, expand it instead of 'foo' for last key.
468 497
469 498 expand 'end_foos'.
470 499 """
471 500 if not plural:
472 501 plural = name + 's'
473 502 if not values:
474 503 noname = 'no_' + plural
475 504 if context.preload(noname):
476 505 yield context.process(noname, mapping)
477 506 return
478 507 if not context.preload(name):
479 508 if isinstance(values[0], bytes):
480 509 yield separator.join(values)
481 510 else:
482 511 for v in values:
483 512 r = dict(v)
484 513 r.update(mapping)
485 514 yield r
486 515 return
487 516 startname = 'start_' + plural
488 517 if context.preload(startname):
489 518 yield context.process(startname, mapping)
490 519 def one(v, tag=name):
491 520 vmapping = {}
492 521 try:
493 522 vmapping.update(v)
494 523 # Python 2 raises ValueError if the type of v is wrong. Python
495 524 # 3 raises TypeError.
496 525 except (AttributeError, TypeError, ValueError):
497 526 try:
498 527 # Python 2 raises ValueError trying to destructure an e.g.
499 528 # bytes. Python 3 raises TypeError.
500 529 for a, b in v:
501 530 vmapping[a] = b
502 531 except (TypeError, ValueError):
503 532 vmapping[name] = v
504 533 vmapping = context.overlaymap(mapping, vmapping)
505 534 return context.process(tag, vmapping)
506 535 lastname = 'last_' + name
507 536 if context.preload(lastname):
508 537 last = values.pop()
509 538 else:
510 539 last = None
511 540 for v in values:
512 541 yield one(v)
513 542 if last is not None:
514 543 yield one(last, tag=lastname)
515 544 endname = 'end_' + plural
516 545 if context.preload(endname):
517 546 yield context.process(endname, mapping)
518 547
519 548 def flatten(context, mapping, thing):
520 549 """Yield a single stream from a possibly nested set of iterators"""
521 550 thing = unwraphybrid(context, mapping, thing)
522 551 if isinstance(thing, bytes):
523 552 yield thing
524 553 elif isinstance(thing, str):
525 554 # We can only hit this on Python 3, and it's here to guard
526 555 # against infinite recursion.
527 556 raise error.ProgrammingError('Mercurial IO including templates is done'
528 557 ' with bytes, not strings, got %r' % thing)
529 558 elif thing is None:
530 559 pass
531 560 elif not util.safehasattr(thing, '__iter__'):
532 561 yield pycompat.bytestr(thing)
533 562 else:
534 563 for i in thing:
535 564 i = unwraphybrid(context, mapping, i)
536 565 if isinstance(i, bytes):
537 566 yield i
538 567 elif i is None:
539 568 pass
540 569 elif not util.safehasattr(i, '__iter__'):
541 570 yield pycompat.bytestr(i)
542 571 else:
543 572 for j in flatten(context, mapping, i):
544 573 yield j
545 574
546 575 def stringify(context, mapping, thing):
547 576 """Turn values into bytes by converting into text and concatenating them"""
548 577 if isinstance(thing, bytes):
549 578 return thing # retain localstr to be round-tripped
550 579 return b''.join(flatten(context, mapping, thing))
551 580
552 581 def findsymbolicname(arg):
553 582 """Find symbolic name for the given compiled expression; returns None
554 583 if nothing found reliably"""
555 584 while True:
556 585 func, data = arg
557 586 if func is runsymbol:
558 587 return data
559 588 elif func is runfilter:
560 589 arg = data[0]
561 590 else:
562 591 return None
563 592
564 593 def _unthunk(context, mapping, thing):
565 594 """Evaluate a lazy byte string into value"""
566 595 if not isinstance(thing, types.GeneratorType):
567 596 return thing
568 597 return stringify(context, mapping, thing)
569 598
570 599 def evalrawexp(context, mapping, arg):
571 600 """Evaluate given argument as a bare template object which may require
572 601 further processing (such as folding generator of strings)"""
573 602 func, data = arg
574 603 return func(context, mapping, data)
575 604
576 605 def evalwrapped(context, mapping, arg):
577 606 """Evaluate given argument to wrapped object"""
578 607 thing = evalrawexp(context, mapping, arg)
579 608 return makewrapped(context, mapping, thing)
580 609
581 610 def makewrapped(context, mapping, thing):
582 611 """Lift object to a wrapped type"""
583 612 if isinstance(thing, wrapped):
584 613 return thing
585 614 thing = _unthunk(context, mapping, thing)
586 615 if isinstance(thing, bytes):
587 616 return wrappedbytes(thing)
588 617 return wrappedvalue(thing)
589 618
590 619 def evalfuncarg(context, mapping, arg):
591 620 """Evaluate given argument as value type"""
592 621 return unwrapvalue(context, mapping, evalrawexp(context, mapping, arg))
593 622
594 623 def unwrapvalue(context, mapping, thing):
595 624 """Move the inner value object out of the wrapper"""
596 625 if isinstance(thing, wrapped):
597 626 return thing.tovalue(context, mapping)
598 627 # evalrawexp() may return string, generator of strings or arbitrary object
599 628 # such as date tuple, but filter does not want generator.
600 629 return _unthunk(context, mapping, thing)
601 630
602 631 def evalboolean(context, mapping, arg):
603 632 """Evaluate given argument as boolean, but also takes boolean literals"""
604 633 func, data = arg
605 634 if func is runsymbol:
606 635 thing = func(context, mapping, data, default=None)
607 636 if thing is None:
608 637 # not a template keyword, takes as a boolean literal
609 638 thing = stringutil.parsebool(data)
610 639 else:
611 640 thing = func(context, mapping, data)
612 641 if isinstance(thing, wrapped):
613 642 thing = thing.tovalue(context, mapping)
614 643 if isinstance(thing, bool):
615 644 return thing
616 645 # other objects are evaluated as strings, which means 0 is True, but
617 646 # empty dict/list should be False as they are expected to be ''
618 647 return bool(stringify(context, mapping, thing))
619 648
620 649 def evaldate(context, mapping, arg, err=None):
621 650 """Evaluate given argument as a date tuple or a date string; returns
622 651 a (unixtime, offset) tuple"""
623 652 thing = evalrawexp(context, mapping, arg)
624 653 return unwrapdate(context, mapping, thing, err)
625 654
626 655 def unwrapdate(context, mapping, thing, err=None):
627 656 thing = unwrapvalue(context, mapping, thing)
628 657 try:
629 658 return dateutil.parsedate(thing)
630 659 except AttributeError:
631 660 raise error.ParseError(err or _('not a date tuple nor a string'))
632 661 except error.ParseError:
633 662 if not err:
634 663 raise
635 664 raise error.ParseError(err)
636 665
637 666 def evalinteger(context, mapping, arg, err=None):
638 667 thing = evalrawexp(context, mapping, arg)
639 668 return unwrapinteger(context, mapping, thing, err)
640 669
641 670 def unwrapinteger(context, mapping, thing, err=None):
642 671 thing = unwrapvalue(context, mapping, thing)
643 672 try:
644 673 return int(thing)
645 674 except (TypeError, ValueError):
646 675 raise error.ParseError(err or _('not an integer'))
647 676
648 677 def evalstring(context, mapping, arg):
649 678 return stringify(context, mapping, evalrawexp(context, mapping, arg))
650 679
651 680 def evalstringliteral(context, mapping, arg):
652 681 """Evaluate given argument as string template, but returns symbol name
653 682 if it is unknown"""
654 683 func, data = arg
655 684 if func is runsymbol:
656 685 thing = func(context, mapping, data, default=data)
657 686 else:
658 687 thing = func(context, mapping, data)
659 688 return stringify(context, mapping, thing)
660 689
661 690 _unwrapfuncbytype = {
662 691 None: unwrapvalue,
663 692 bytes: stringify,
664 693 date: unwrapdate,
665 694 int: unwrapinteger,
666 695 }
667 696
668 697 def unwrapastype(context, mapping, thing, typ):
669 698 """Move the inner value object out of the wrapper and coerce its type"""
670 699 try:
671 700 f = _unwrapfuncbytype[typ]
672 701 except KeyError:
673 702 raise error.ProgrammingError('invalid type specified: %r' % typ)
674 703 return f(context, mapping, thing)
675 704
676 705 def runinteger(context, mapping, data):
677 706 return int(data)
678 707
679 708 def runstring(context, mapping, data):
680 709 return data
681 710
682 711 def _recursivesymbolblocker(key):
683 712 def showrecursion(**args):
684 713 raise error.Abort(_("recursive reference '%s' in template") % key)
685 714 return showrecursion
686 715
687 716 def runsymbol(context, mapping, key, default=''):
688 717 v = context.symbol(mapping, key)
689 718 if v is None:
690 719 # put poison to cut recursion. we can't move this to parsing phase
691 720 # because "x = {x}" is allowed if "x" is a keyword. (issue4758)
692 721 safemapping = mapping.copy()
693 722 safemapping[key] = _recursivesymbolblocker(key)
694 723 try:
695 724 v = context.process(key, safemapping)
696 725 except TemplateNotFound:
697 726 v = default
698 727 if callable(v) and getattr(v, '_requires', None) is None:
699 728 # old templatekw: expand all keywords and resources
700 729 # (TODO: deprecate this after porting web template keywords to new API)
701 730 props = {k: context._resources.lookup(context, mapping, k)
702 731 for k in context._resources.knownkeys()}
703 732 # pass context to _showcompatlist() through templatekw._showlist()
704 733 props['templ'] = context
705 734 props.update(mapping)
706 735 return v(**pycompat.strkwargs(props))
707 736 if callable(v):
708 737 # new templatekw
709 738 try:
710 739 return v(context, mapping)
711 740 except ResourceUnavailable:
712 741 # unsupported keyword is mapped to empty just like unknown keyword
713 742 return None
714 743 return v
715 744
716 745 def runtemplate(context, mapping, template):
717 746 for arg in template:
718 747 yield evalrawexp(context, mapping, arg)
719 748
720 749 def runfilter(context, mapping, data):
721 750 arg, filt = data
722 751 thing = evalrawexp(context, mapping, arg)
723 752 intype = getattr(filt, '_intype', None)
724 753 try:
725 754 thing = unwrapastype(context, mapping, thing, intype)
726 755 return filt(thing)
727 756 except error.ParseError as e:
728 757 raise error.ParseError(bytes(e), hint=_formatfiltererror(arg, filt))
729 758
730 759 def _formatfiltererror(arg, filt):
731 760 fn = pycompat.sysbytes(filt.__name__)
732 761 sym = findsymbolicname(arg)
733 762 if not sym:
734 763 return _("incompatible use of template filter '%s'") % fn
735 764 return (_("template filter '%s' is not compatible with keyword '%s'")
736 765 % (fn, sym))
737 766
738 767 def _iteroverlaymaps(context, origmapping, newmappings):
739 768 """Generate combined mappings from the original mapping and an iterable
740 769 of partial mappings to override the original"""
741 770 for i, nm in enumerate(newmappings):
742 771 lm = context.overlaymap(origmapping, nm)
743 772 lm['index'] = i
744 773 yield lm
745 774
746 775 def _applymap(context, mapping, d, targ):
747 776 for lm in _iteroverlaymaps(context, mapping, d.itermaps(context)):
748 777 yield evalrawexp(context, lm, targ)
749 778
750 779 def runmap(context, mapping, data):
751 780 darg, targ = data
752 781 d = evalwrapped(context, mapping, darg)
753 782 return mappedgenerator(_applymap, args=(mapping, d, targ))
754 783
755 784 def runmember(context, mapping, data):
756 785 darg, memb = data
757 786 d = evalwrapped(context, mapping, darg)
758 787 if util.safehasattr(d, 'tomap'):
759 788 lm = context.overlaymap(mapping, d.tomap())
760 789 return runsymbol(context, lm, memb)
761 790 try:
762 791 return d.getmember(context, mapping, memb)
763 792 except error.ParseError as err:
764 793 sym = findsymbolicname(darg)
765 794 if not sym:
766 795 raise
767 796 hint = _("keyword '%s' does not support member operation") % sym
768 797 raise error.ParseError(bytes(err), hint=hint)
769 798
770 799 def runnegate(context, mapping, data):
771 800 data = evalinteger(context, mapping, data,
772 801 _('negation needs an integer argument'))
773 802 return -data
774 803
775 804 def runarithmetic(context, mapping, data):
776 805 func, left, right = data
777 806 left = evalinteger(context, mapping, left,
778 807 _('arithmetic only defined on integers'))
779 808 right = evalinteger(context, mapping, right,
780 809 _('arithmetic only defined on integers'))
781 810 try:
782 811 return func(left, right)
783 812 except ZeroDivisionError:
784 813 raise error.Abort(_('division by zero is not defined'))
785 814
786 815 def joinitems(itemiter, sep):
787 816 """Join items with the separator; Returns generator of bytes"""
788 817 first = True
789 818 for x in itemiter:
790 819 if first:
791 820 first = False
792 821 elif sep:
793 822 yield sep
794 823 yield x
@@ -1,4958 +1,4967 b''
1 1 $ hg init a
2 2 $ cd a
3 3 $ echo a > a
4 4 $ hg add a
5 5 $ echo line 1 > b
6 6 $ echo line 2 >> b
7 7 $ hg commit -l b -d '1000000 0' -u 'User Name <user@hostname>'
8 8
9 9 $ hg add b
10 10 $ echo other 1 > c
11 11 $ echo other 2 >> c
12 12 $ echo >> c
13 13 $ echo other 3 >> c
14 14 $ hg commit -l c -d '1100000 0' -u 'A. N. Other <other@place>'
15 15
16 16 $ hg add c
17 17 $ hg commit -m 'no person' -d '1200000 0' -u 'other@place'
18 18 $ echo c >> c
19 19 $ hg commit -m 'no user, no domain' -d '1300000 0' -u 'person'
20 20
21 21 $ echo foo > .hg/branch
22 22 $ hg commit -m 'new branch' -d '1400000 0' -u 'person'
23 23
24 24 $ hg co -q 3
25 25 $ echo other 4 >> d
26 26 $ hg add d
27 27 $ hg commit -m 'new head' -d '1500000 0' -u 'person'
28 28
29 29 $ hg merge -q foo
30 30 $ hg commit -m 'merge' -d '1500001 0' -u 'person'
31 31
32 32 Test arithmetic operators have the right precedence:
33 33
34 34 $ hg log -l 1 -T '{date(date, "%Y") + 5 * 10} {date(date, "%Y") - 2 * 3}\n'
35 35 2020 1964
36 36 $ hg log -l 1 -T '{date(date, "%Y") * 5 + 10} {date(date, "%Y") * 3 - 2}\n'
37 37 9860 5908
38 38
39 39 Test division:
40 40
41 41 $ hg debugtemplate -r0 -v '{5 / 2} {mod(5, 2)}\n'
42 42 (template
43 43 (/
44 44 (integer '5')
45 45 (integer '2'))
46 46 (string ' ')
47 47 (func
48 48 (symbol 'mod')
49 49 (list
50 50 (integer '5')
51 51 (integer '2')))
52 52 (string '\n'))
53 53 2 1
54 54 $ hg debugtemplate -r0 -v '{5 / -2} {mod(5, -2)}\n'
55 55 (template
56 56 (/
57 57 (integer '5')
58 58 (negate
59 59 (integer '2')))
60 60 (string ' ')
61 61 (func
62 62 (symbol 'mod')
63 63 (list
64 64 (integer '5')
65 65 (negate
66 66 (integer '2'))))
67 67 (string '\n'))
68 68 -3 -1
69 69 $ hg debugtemplate -r0 -v '{-5 / 2} {mod(-5, 2)}\n'
70 70 (template
71 71 (/
72 72 (negate
73 73 (integer '5'))
74 74 (integer '2'))
75 75 (string ' ')
76 76 (func
77 77 (symbol 'mod')
78 78 (list
79 79 (negate
80 80 (integer '5'))
81 81 (integer '2')))
82 82 (string '\n'))
83 83 -3 1
84 84 $ hg debugtemplate -r0 -v '{-5 / -2} {mod(-5, -2)}\n'
85 85 (template
86 86 (/
87 87 (negate
88 88 (integer '5'))
89 89 (negate
90 90 (integer '2')))
91 91 (string ' ')
92 92 (func
93 93 (symbol 'mod')
94 94 (list
95 95 (negate
96 96 (integer '5'))
97 97 (negate
98 98 (integer '2'))))
99 99 (string '\n'))
100 100 2 -1
101 101
102 102 Filters bind closer than arithmetic:
103 103
104 104 $ hg debugtemplate -r0 -v '{revset(".")|count - 1}\n'
105 105 (template
106 106 (-
107 107 (|
108 108 (func
109 109 (symbol 'revset')
110 110 (string '.'))
111 111 (symbol 'count'))
112 112 (integer '1'))
113 113 (string '\n'))
114 114 0
115 115
116 116 But negate binds closer still:
117 117
118 118 $ hg debugtemplate -r0 -v '{1-3|stringify}\n'
119 119 (template
120 120 (-
121 121 (integer '1')
122 122 (|
123 123 (integer '3')
124 124 (symbol 'stringify')))
125 125 (string '\n'))
126 126 hg: parse error: arithmetic only defined on integers
127 127 [255]
128 128 $ hg debugtemplate -r0 -v '{-3|stringify}\n'
129 129 (template
130 130 (|
131 131 (negate
132 132 (integer '3'))
133 133 (symbol 'stringify'))
134 134 (string '\n'))
135 135 -3
136 136
137 137 Filters bind as close as map operator:
138 138
139 139 $ hg debugtemplate -r0 -v '{desc|splitlines % "{line}\n"}'
140 140 (template
141 141 (%
142 142 (|
143 143 (symbol 'desc')
144 144 (symbol 'splitlines'))
145 145 (template
146 146 (symbol 'line')
147 147 (string '\n'))))
148 148 line 1
149 149 line 2
150 150
151 151 Keyword arguments:
152 152
153 153 $ hg debugtemplate -r0 -v '{foo=bar|baz}'
154 154 (template
155 155 (keyvalue
156 156 (symbol 'foo')
157 157 (|
158 158 (symbol 'bar')
159 159 (symbol 'baz'))))
160 160 hg: parse error: can't use a key-value pair in this context
161 161 [255]
162 162
163 163 $ hg debugtemplate '{pad("foo", width=10, left=true)}\n'
164 164 foo
165 165
166 166 Call function which takes named arguments by filter syntax:
167 167
168 168 $ hg debugtemplate '{" "|separate}'
169 169 $ hg debugtemplate '{("not", "an", "argument", "list")|separate}'
170 170 hg: parse error: unknown method 'list'
171 171 [255]
172 172
173 173 Second branch starting at nullrev:
174 174
175 175 $ hg update null
176 176 0 files updated, 0 files merged, 4 files removed, 0 files unresolved
177 177 $ echo second > second
178 178 $ hg add second
179 179 $ hg commit -m second -d '1000000 0' -u 'User Name <user@hostname>'
180 180 created new head
181 181
182 182 $ echo third > third
183 183 $ hg add third
184 184 $ hg mv second fourth
185 185 $ hg commit -m third -d "2020-01-01 10:01"
186 186
187 187 $ hg log --template '{join(file_copies, ",\n")}\n' -r .
188 188 fourth (second)
189 189 $ hg log -T '{file_copies % "{source} -> {name}\n"}' -r .
190 190 second -> fourth
191 191 $ hg log -T '{rev} {ifcontains("fourth", file_copies, "t", "f")}\n' -r .:7
192 192 8 t
193 193 7 f
194 194
195 195 Working-directory revision has special identifiers, though they are still
196 196 experimental:
197 197
198 198 $ hg log -r 'wdir()' -T '{rev}:{node}\n'
199 199 2147483647:ffffffffffffffffffffffffffffffffffffffff
200 200
201 201 Some keywords are invalid for working-directory revision, but they should
202 202 never cause crash:
203 203
204 204 $ hg log -r 'wdir()' -T '{manifest}\n'
205 205
206 206
207 207 Internal resources shouldn't be exposed (issue5699):
208 208
209 209 $ hg log -r. -T '{cache}{ctx}{repo}{revcache}{templ}{ui}'
210 210
211 211 Never crash on internal resource not available:
212 212
213 213 $ hg --cwd .. debugtemplate '{"c0bebeef"|shortest}\n'
214 214 abort: template resource not available: ctx
215 215 [255]
216 216
217 217 $ hg config -T '{author}'
218 218
219 219 Quoting for ui.logtemplate
220 220
221 221 $ hg tip --config "ui.logtemplate={rev}\n"
222 222 8
223 223 $ hg tip --config "ui.logtemplate='{rev}\n'"
224 224 8
225 225 $ hg tip --config 'ui.logtemplate="{rev}\n"'
226 226 8
227 227 $ hg tip --config 'ui.logtemplate=n{rev}\n'
228 228 n8
229 229
230 230 Make sure user/global hgrc does not affect tests
231 231
232 232 $ echo '[ui]' > .hg/hgrc
233 233 $ echo 'logtemplate =' >> .hg/hgrc
234 234 $ echo 'style =' >> .hg/hgrc
235 235
236 236 Add some simple styles to settings
237 237
238 238 $ cat <<'EOF' >> .hg/hgrc
239 239 > [templates]
240 240 > simple = "{rev}\n"
241 241 > simple2 = {rev}\n
242 242 > rev = "should not precede {rev} keyword\n"
243 243 > EOF
244 244
245 245 $ hg log -l1 -Tsimple
246 246 8
247 247 $ hg log -l1 -Tsimple2
248 248 8
249 249 $ hg log -l1 -Trev
250 250 should not precede 8 keyword
251 251 $ hg log -l1 -T '{simple}'
252 252 8
253 253
254 254 Map file shouldn't see user templates:
255 255
256 256 $ cat <<EOF > tmpl
257 257 > changeset = 'nothing expanded:{simple}\n'
258 258 > EOF
259 259 $ hg log -l1 --style ./tmpl
260 260 nothing expanded:
261 261
262 262 Test templates and style maps in files:
263 263
264 264 $ echo "{rev}" > tmpl
265 265 $ hg log -l1 -T./tmpl
266 266 8
267 267 $ hg log -l1 -Tblah/blah
268 268 blah/blah (no-eol)
269 269
270 270 $ printf 'changeset = "{rev}\\n"\n' > map-simple
271 271 $ hg log -l1 -T./map-simple
272 272 8
273 273
274 274 a map file may have [templates] and [templatealias] sections:
275 275
276 276 $ cat <<'EOF' > map-simple
277 277 > [templates]
278 278 > changeset = "{a}\n"
279 279 > [templatealias]
280 280 > a = rev
281 281 > EOF
282 282 $ hg log -l1 -T./map-simple
283 283 8
284 284
285 285 so it can be included in hgrc
286 286
287 287 $ cat <<EOF > myhgrc
288 288 > %include $HGRCPATH
289 289 > %include map-simple
290 290 > [templates]
291 291 > foo = "{changeset}"
292 292 > EOF
293 293 $ HGRCPATH=./myhgrc hg log -l1 -Tfoo
294 294 8
295 295 $ HGRCPATH=./myhgrc hg log -l1 -T'{a}\n'
296 296 8
297 297
298 298 Test template map inheritance
299 299
300 300 $ echo "__base__ = map-cmdline.default" > map-simple
301 301 $ printf 'cset = "changeset: ***{rev}***\\n"\n' >> map-simple
302 302 $ hg log -l1 -T./map-simple
303 303 changeset: ***8***
304 304 tag: tip
305 305 user: test
306 306 date: Wed Jan 01 10:01:00 2020 +0000
307 307 summary: third
308 308
309 309
310 310 Test docheader, docfooter and separator in template map
311 311
312 312 $ cat <<'EOF' > map-myjson
313 313 > docheader = '\{\n'
314 314 > docfooter = '\n}\n'
315 315 > separator = ',\n'
316 316 > changeset = ' {dict(rev, node|short)|json}'
317 317 > EOF
318 318 $ hg log -l2 -T./map-myjson
319 319 {
320 320 {"node": "95c24699272e", "rev": 8},
321 321 {"node": "29114dbae42b", "rev": 7}
322 322 }
323 323
324 324 Test docheader, docfooter and separator in [templates] section
325 325
326 326 $ cat <<'EOF' >> .hg/hgrc
327 327 > [templates]
328 328 > myjson = ' {dict(rev, node|short)|json}'
329 329 > myjson:docheader = '\{\n'
330 330 > myjson:docfooter = '\n}\n'
331 331 > myjson:separator = ',\n'
332 332 > :docheader = 'should not be selected as a docheader for literal templates\n'
333 333 > EOF
334 334 $ hg log -l2 -Tmyjson
335 335 {
336 336 {"node": "95c24699272e", "rev": 8},
337 337 {"node": "29114dbae42b", "rev": 7}
338 338 }
339 339 $ hg log -l1 -T'{rev}\n'
340 340 8
341 341
342 342 Template should precede style option
343 343
344 344 $ hg log -l1 --style default -T '{rev}\n'
345 345 8
346 346
347 347 Add a commit with empty description, to ensure that the templates
348 348 below will omit the description line.
349 349
350 350 $ echo c >> c
351 351 $ hg add c
352 352 $ hg commit -qm ' '
353 353
354 354 Default style is like normal output. Phases style should be the same
355 355 as default style, except for extra phase lines.
356 356
357 357 $ hg log > log.out
358 358 $ hg log --style default > style.out
359 359 $ cmp log.out style.out || diff -u log.out style.out
360 360 $ hg log -T phases > phases.out
361 361 $ diff -U 0 log.out phases.out | egrep -v '^---|^\+\+\+|^@@'
362 362 +phase: draft
363 363 +phase: draft
364 364 +phase: draft
365 365 +phase: draft
366 366 +phase: draft
367 367 +phase: draft
368 368 +phase: draft
369 369 +phase: draft
370 370 +phase: draft
371 371 +phase: draft
372 372
373 373 $ hg log -v > log.out
374 374 $ hg log -v --style default > style.out
375 375 $ cmp log.out style.out || diff -u log.out style.out
376 376 $ hg log -v -T phases > phases.out
377 377 $ diff -U 0 log.out phases.out | egrep -v '^---|^\+\+\+|^@@'
378 378 +phase: draft
379 379 +phase: draft
380 380 +phase: draft
381 381 +phase: draft
382 382 +phase: draft
383 383 +phase: draft
384 384 +phase: draft
385 385 +phase: draft
386 386 +phase: draft
387 387 +phase: draft
388 388
389 389 $ hg log -q > log.out
390 390 $ hg log -q --style default > style.out
391 391 $ cmp log.out style.out || diff -u log.out style.out
392 392 $ hg log -q -T phases > phases.out
393 393 $ cmp log.out phases.out || diff -u log.out phases.out
394 394
395 395 $ hg log --debug > log.out
396 396 $ hg log --debug --style default > style.out
397 397 $ cmp log.out style.out || diff -u log.out style.out
398 398 $ hg log --debug -T phases > phases.out
399 399 $ cmp log.out phases.out || diff -u log.out phases.out
400 400
401 401 Default style of working-directory revision should also be the same (but
402 402 date may change while running tests):
403 403
404 404 $ hg log -r 'wdir()' | sed 's|^date:.*|date:|' > log.out
405 405 $ hg log -r 'wdir()' --style default | sed 's|^date:.*|date:|' > style.out
406 406 $ cmp log.out style.out || diff -u log.out style.out
407 407
408 408 $ hg log -r 'wdir()' -v | sed 's|^date:.*|date:|' > log.out
409 409 $ hg log -r 'wdir()' -v --style default | sed 's|^date:.*|date:|' > style.out
410 410 $ cmp log.out style.out || diff -u log.out style.out
411 411
412 412 $ hg log -r 'wdir()' -q > log.out
413 413 $ hg log -r 'wdir()' -q --style default > style.out
414 414 $ cmp log.out style.out || diff -u log.out style.out
415 415
416 416 $ hg log -r 'wdir()' --debug | sed 's|^date:.*|date:|' > log.out
417 417 $ hg log -r 'wdir()' --debug --style default \
418 418 > | sed 's|^date:.*|date:|' > style.out
419 419 $ cmp log.out style.out || diff -u log.out style.out
420 420
421 421 Default style should also preserve color information (issue2866):
422 422
423 423 $ cp $HGRCPATH $HGRCPATH-bak
424 424 $ cat <<EOF >> $HGRCPATH
425 425 > [extensions]
426 426 > color=
427 427 > EOF
428 428
429 429 $ hg --color=debug log > log.out
430 430 $ hg --color=debug log --style default > style.out
431 431 $ cmp log.out style.out || diff -u log.out style.out
432 432 $ hg --color=debug log -T phases > phases.out
433 433 $ diff -U 0 log.out phases.out | egrep -v '^---|^\+\+\+|^@@'
434 434 +[log.phase|phase: draft]
435 435 +[log.phase|phase: draft]
436 436 +[log.phase|phase: draft]
437 437 +[log.phase|phase: draft]
438 438 +[log.phase|phase: draft]
439 439 +[log.phase|phase: draft]
440 440 +[log.phase|phase: draft]
441 441 +[log.phase|phase: draft]
442 442 +[log.phase|phase: draft]
443 443 +[log.phase|phase: draft]
444 444
445 445 $ hg --color=debug -v log > log.out
446 446 $ hg --color=debug -v log --style default > style.out
447 447 $ cmp log.out style.out || diff -u log.out style.out
448 448 $ hg --color=debug -v log -T phases > phases.out
449 449 $ diff -U 0 log.out phases.out | egrep -v '^---|^\+\+\+|^@@'
450 450 +[log.phase|phase: draft]
451 451 +[log.phase|phase: draft]
452 452 +[log.phase|phase: draft]
453 453 +[log.phase|phase: draft]
454 454 +[log.phase|phase: draft]
455 455 +[log.phase|phase: draft]
456 456 +[log.phase|phase: draft]
457 457 +[log.phase|phase: draft]
458 458 +[log.phase|phase: draft]
459 459 +[log.phase|phase: draft]
460 460
461 461 $ hg --color=debug -q log > log.out
462 462 $ hg --color=debug -q log --style default > style.out
463 463 $ cmp log.out style.out || diff -u log.out style.out
464 464 $ hg --color=debug -q log -T phases > phases.out
465 465 $ cmp log.out phases.out || diff -u log.out phases.out
466 466
467 467 $ hg --color=debug --debug log > log.out
468 468 $ hg --color=debug --debug log --style default > style.out
469 469 $ cmp log.out style.out || diff -u log.out style.out
470 470 $ hg --color=debug --debug log -T phases > phases.out
471 471 $ cmp log.out phases.out || diff -u log.out phases.out
472 472
473 473 $ mv $HGRCPATH-bak $HGRCPATH
474 474
475 475 Remove commit with empty commit message, so as to not pollute further
476 476 tests.
477 477
478 478 $ hg --config extensions.strip= strip -q .
479 479
480 480 Revision with no copies (used to print a traceback):
481 481
482 482 $ hg tip -v --template '\n'
483 483
484 484
485 485 Compact style works:
486 486
487 487 $ hg log -Tcompact
488 488 8[tip] 95c24699272e 2020-01-01 10:01 +0000 test
489 489 third
490 490
491 491 7:-1 29114dbae42b 1970-01-12 13:46 +0000 user
492 492 second
493 493
494 494 6:5,4 d41e714fe50d 1970-01-18 08:40 +0000 person
495 495 merge
496 496
497 497 5:3 13207e5a10d9 1970-01-18 08:40 +0000 person
498 498 new head
499 499
500 500 4 bbe44766e73d 1970-01-17 04:53 +0000 person
501 501 new branch
502 502
503 503 3 10e46f2dcbf4 1970-01-16 01:06 +0000 person
504 504 no user, no domain
505 505
506 506 2 97054abb4ab8 1970-01-14 21:20 +0000 other
507 507 no person
508 508
509 509 1 b608e9d1a3f0 1970-01-13 17:33 +0000 other
510 510 other 1
511 511
512 512 0 1e4e1b8f71e0 1970-01-12 13:46 +0000 user
513 513 line 1
514 514
515 515
516 516 $ hg log -v --style compact
517 517 8[tip] 95c24699272e 2020-01-01 10:01 +0000 test
518 518 third
519 519
520 520 7:-1 29114dbae42b 1970-01-12 13:46 +0000 User Name <user@hostname>
521 521 second
522 522
523 523 6:5,4 d41e714fe50d 1970-01-18 08:40 +0000 person
524 524 merge
525 525
526 526 5:3 13207e5a10d9 1970-01-18 08:40 +0000 person
527 527 new head
528 528
529 529 4 bbe44766e73d 1970-01-17 04:53 +0000 person
530 530 new branch
531 531
532 532 3 10e46f2dcbf4 1970-01-16 01:06 +0000 person
533 533 no user, no domain
534 534
535 535 2 97054abb4ab8 1970-01-14 21:20 +0000 other@place
536 536 no person
537 537
538 538 1 b608e9d1a3f0 1970-01-13 17:33 +0000 A. N. Other <other@place>
539 539 other 1
540 540 other 2
541 541
542 542 other 3
543 543
544 544 0 1e4e1b8f71e0 1970-01-12 13:46 +0000 User Name <user@hostname>
545 545 line 1
546 546 line 2
547 547
548 548
549 549 $ hg log --debug --style compact
550 550 8[tip]:7,-1 95c24699272e 2020-01-01 10:01 +0000 test
551 551 third
552 552
553 553 7:-1,-1 29114dbae42b 1970-01-12 13:46 +0000 User Name <user@hostname>
554 554 second
555 555
556 556 6:5,4 d41e714fe50d 1970-01-18 08:40 +0000 person
557 557 merge
558 558
559 559 5:3,-1 13207e5a10d9 1970-01-18 08:40 +0000 person
560 560 new head
561 561
562 562 4:3,-1 bbe44766e73d 1970-01-17 04:53 +0000 person
563 563 new branch
564 564
565 565 3:2,-1 10e46f2dcbf4 1970-01-16 01:06 +0000 person
566 566 no user, no domain
567 567
568 568 2:1,-1 97054abb4ab8 1970-01-14 21:20 +0000 other@place
569 569 no person
570 570
571 571 1:0,-1 b608e9d1a3f0 1970-01-13 17:33 +0000 A. N. Other <other@place>
572 572 other 1
573 573 other 2
574 574
575 575 other 3
576 576
577 577 0:-1,-1 1e4e1b8f71e0 1970-01-12 13:46 +0000 User Name <user@hostname>
578 578 line 1
579 579 line 2
580 580
581 581
582 582 Test xml styles:
583 583
584 584 $ hg log --style xml -r 'not all()'
585 585 <?xml version="1.0"?>
586 586 <log>
587 587 </log>
588 588
589 589 $ hg log --style xml
590 590 <?xml version="1.0"?>
591 591 <log>
592 592 <logentry revision="8" node="95c24699272ef57d062b8bccc32c878bf841784a">
593 593 <tag>tip</tag>
594 594 <author email="test">test</author>
595 595 <date>2020-01-01T10:01:00+00:00</date>
596 596 <msg xml:space="preserve">third</msg>
597 597 </logentry>
598 598 <logentry revision="7" node="29114dbae42b9f078cf2714dbe3a86bba8ec7453">
599 599 <parent revision="-1" node="0000000000000000000000000000000000000000" />
600 600 <author email="user@hostname">User Name</author>
601 601 <date>1970-01-12T13:46:40+00:00</date>
602 602 <msg xml:space="preserve">second</msg>
603 603 </logentry>
604 604 <logentry revision="6" node="d41e714fe50d9e4a5f11b4d595d543481b5f980b">
605 605 <parent revision="5" node="13207e5a10d9fd28ec424934298e176197f2c67f" />
606 606 <parent revision="4" node="bbe44766e73d5f11ed2177f1838de10c53ef3e74" />
607 607 <author email="person">person</author>
608 608 <date>1970-01-18T08:40:01+00:00</date>
609 609 <msg xml:space="preserve">merge</msg>
610 610 </logentry>
611 611 <logentry revision="5" node="13207e5a10d9fd28ec424934298e176197f2c67f">
612 612 <parent revision="3" node="10e46f2dcbf4823578cf180f33ecf0b957964c47" />
613 613 <author email="person">person</author>
614 614 <date>1970-01-18T08:40:00+00:00</date>
615 615 <msg xml:space="preserve">new head</msg>
616 616 </logentry>
617 617 <logentry revision="4" node="bbe44766e73d5f11ed2177f1838de10c53ef3e74">
618 618 <branch>foo</branch>
619 619 <author email="person">person</author>
620 620 <date>1970-01-17T04:53:20+00:00</date>
621 621 <msg xml:space="preserve">new branch</msg>
622 622 </logentry>
623 623 <logentry revision="3" node="10e46f2dcbf4823578cf180f33ecf0b957964c47">
624 624 <author email="person">person</author>
625 625 <date>1970-01-16T01:06:40+00:00</date>
626 626 <msg xml:space="preserve">no user, no domain</msg>
627 627 </logentry>
628 628 <logentry revision="2" node="97054abb4ab824450e9164180baf491ae0078465">
629 629 <author email="other@place">other</author>
630 630 <date>1970-01-14T21:20:00+00:00</date>
631 631 <msg xml:space="preserve">no person</msg>
632 632 </logentry>
633 633 <logentry revision="1" node="b608e9d1a3f0273ccf70fb85fd6866b3482bf965">
634 634 <author email="other@place">A. N. Other</author>
635 635 <date>1970-01-13T17:33:20+00:00</date>
636 636 <msg xml:space="preserve">other 1
637 637 other 2
638 638
639 639 other 3</msg>
640 640 </logentry>
641 641 <logentry revision="0" node="1e4e1b8f71e05681d422154f5421e385fec3454f">
642 642 <author email="user@hostname">User Name</author>
643 643 <date>1970-01-12T13:46:40+00:00</date>
644 644 <msg xml:space="preserve">line 1
645 645 line 2</msg>
646 646 </logentry>
647 647 </log>
648 648
649 649 $ hg log -v --style xml
650 650 <?xml version="1.0"?>
651 651 <log>
652 652 <logentry revision="8" node="95c24699272ef57d062b8bccc32c878bf841784a">
653 653 <tag>tip</tag>
654 654 <author email="test">test</author>
655 655 <date>2020-01-01T10:01:00+00:00</date>
656 656 <msg xml:space="preserve">third</msg>
657 657 <paths>
658 658 <path action="A">fourth</path>
659 659 <path action="A">third</path>
660 660 <path action="R">second</path>
661 661 </paths>
662 662 <copies>
663 663 <copy source="second">fourth</copy>
664 664 </copies>
665 665 </logentry>
666 666 <logentry revision="7" node="29114dbae42b9f078cf2714dbe3a86bba8ec7453">
667 667 <parent revision="-1" node="0000000000000000000000000000000000000000" />
668 668 <author email="user@hostname">User Name</author>
669 669 <date>1970-01-12T13:46:40+00:00</date>
670 670 <msg xml:space="preserve">second</msg>
671 671 <paths>
672 672 <path action="A">second</path>
673 673 </paths>
674 674 </logentry>
675 675 <logentry revision="6" node="d41e714fe50d9e4a5f11b4d595d543481b5f980b">
676 676 <parent revision="5" node="13207e5a10d9fd28ec424934298e176197f2c67f" />
677 677 <parent revision="4" node="bbe44766e73d5f11ed2177f1838de10c53ef3e74" />
678 678 <author email="person">person</author>
679 679 <date>1970-01-18T08:40:01+00:00</date>
680 680 <msg xml:space="preserve">merge</msg>
681 681 <paths>
682 682 </paths>
683 683 </logentry>
684 684 <logentry revision="5" node="13207e5a10d9fd28ec424934298e176197f2c67f">
685 685 <parent revision="3" node="10e46f2dcbf4823578cf180f33ecf0b957964c47" />
686 686 <author email="person">person</author>
687 687 <date>1970-01-18T08:40:00+00:00</date>
688 688 <msg xml:space="preserve">new head</msg>
689 689 <paths>
690 690 <path action="A">d</path>
691 691 </paths>
692 692 </logentry>
693 693 <logentry revision="4" node="bbe44766e73d5f11ed2177f1838de10c53ef3e74">
694 694 <branch>foo</branch>
695 695 <author email="person">person</author>
696 696 <date>1970-01-17T04:53:20+00:00</date>
697 697 <msg xml:space="preserve">new branch</msg>
698 698 <paths>
699 699 </paths>
700 700 </logentry>
701 701 <logentry revision="3" node="10e46f2dcbf4823578cf180f33ecf0b957964c47">
702 702 <author email="person">person</author>
703 703 <date>1970-01-16T01:06:40+00:00</date>
704 704 <msg xml:space="preserve">no user, no domain</msg>
705 705 <paths>
706 706 <path action="M">c</path>
707 707 </paths>
708 708 </logentry>
709 709 <logentry revision="2" node="97054abb4ab824450e9164180baf491ae0078465">
710 710 <author email="other@place">other</author>
711 711 <date>1970-01-14T21:20:00+00:00</date>
712 712 <msg xml:space="preserve">no person</msg>
713 713 <paths>
714 714 <path action="A">c</path>
715 715 </paths>
716 716 </logentry>
717 717 <logentry revision="1" node="b608e9d1a3f0273ccf70fb85fd6866b3482bf965">
718 718 <author email="other@place">A. N. Other</author>
719 719 <date>1970-01-13T17:33:20+00:00</date>
720 720 <msg xml:space="preserve">other 1
721 721 other 2
722 722
723 723 other 3</msg>
724 724 <paths>
725 725 <path action="A">b</path>
726 726 </paths>
727 727 </logentry>
728 728 <logentry revision="0" node="1e4e1b8f71e05681d422154f5421e385fec3454f">
729 729 <author email="user@hostname">User Name</author>
730 730 <date>1970-01-12T13:46:40+00:00</date>
731 731 <msg xml:space="preserve">line 1
732 732 line 2</msg>
733 733 <paths>
734 734 <path action="A">a</path>
735 735 </paths>
736 736 </logentry>
737 737 </log>
738 738
739 739 $ hg log --debug --style xml
740 740 <?xml version="1.0"?>
741 741 <log>
742 742 <logentry revision="8" node="95c24699272ef57d062b8bccc32c878bf841784a">
743 743 <tag>tip</tag>
744 744 <parent revision="7" node="29114dbae42b9f078cf2714dbe3a86bba8ec7453" />
745 745 <parent revision="-1" node="0000000000000000000000000000000000000000" />
746 746 <author email="test">test</author>
747 747 <date>2020-01-01T10:01:00+00:00</date>
748 748 <msg xml:space="preserve">third</msg>
749 749 <paths>
750 750 <path action="A">fourth</path>
751 751 <path action="A">third</path>
752 752 <path action="R">second</path>
753 753 </paths>
754 754 <copies>
755 755 <copy source="second">fourth</copy>
756 756 </copies>
757 757 <extra key="branch">default</extra>
758 758 </logentry>
759 759 <logentry revision="7" node="29114dbae42b9f078cf2714dbe3a86bba8ec7453">
760 760 <parent revision="-1" node="0000000000000000000000000000000000000000" />
761 761 <parent revision="-1" node="0000000000000000000000000000000000000000" />
762 762 <author email="user@hostname">User Name</author>
763 763 <date>1970-01-12T13:46:40+00:00</date>
764 764 <msg xml:space="preserve">second</msg>
765 765 <paths>
766 766 <path action="A">second</path>
767 767 </paths>
768 768 <extra key="branch">default</extra>
769 769 </logentry>
770 770 <logentry revision="6" node="d41e714fe50d9e4a5f11b4d595d543481b5f980b">
771 771 <parent revision="5" node="13207e5a10d9fd28ec424934298e176197f2c67f" />
772 772 <parent revision="4" node="bbe44766e73d5f11ed2177f1838de10c53ef3e74" />
773 773 <author email="person">person</author>
774 774 <date>1970-01-18T08:40:01+00:00</date>
775 775 <msg xml:space="preserve">merge</msg>
776 776 <paths>
777 777 </paths>
778 778 <extra key="branch">default</extra>
779 779 </logentry>
780 780 <logentry revision="5" node="13207e5a10d9fd28ec424934298e176197f2c67f">
781 781 <parent revision="3" node="10e46f2dcbf4823578cf180f33ecf0b957964c47" />
782 782 <parent revision="-1" node="0000000000000000000000000000000000000000" />
783 783 <author email="person">person</author>
784 784 <date>1970-01-18T08:40:00+00:00</date>
785 785 <msg xml:space="preserve">new head</msg>
786 786 <paths>
787 787 <path action="A">d</path>
788 788 </paths>
789 789 <extra key="branch">default</extra>
790 790 </logentry>
791 791 <logentry revision="4" node="bbe44766e73d5f11ed2177f1838de10c53ef3e74">
792 792 <branch>foo</branch>
793 793 <parent revision="3" node="10e46f2dcbf4823578cf180f33ecf0b957964c47" />
794 794 <parent revision="-1" node="0000000000000000000000000000000000000000" />
795 795 <author email="person">person</author>
796 796 <date>1970-01-17T04:53:20+00:00</date>
797 797 <msg xml:space="preserve">new branch</msg>
798 798 <paths>
799 799 </paths>
800 800 <extra key="branch">foo</extra>
801 801 </logentry>
802 802 <logentry revision="3" node="10e46f2dcbf4823578cf180f33ecf0b957964c47">
803 803 <parent revision="2" node="97054abb4ab824450e9164180baf491ae0078465" />
804 804 <parent revision="-1" node="0000000000000000000000000000000000000000" />
805 805 <author email="person">person</author>
806 806 <date>1970-01-16T01:06:40+00:00</date>
807 807 <msg xml:space="preserve">no user, no domain</msg>
808 808 <paths>
809 809 <path action="M">c</path>
810 810 </paths>
811 811 <extra key="branch">default</extra>
812 812 </logentry>
813 813 <logentry revision="2" node="97054abb4ab824450e9164180baf491ae0078465">
814 814 <parent revision="1" node="b608e9d1a3f0273ccf70fb85fd6866b3482bf965" />
815 815 <parent revision="-1" node="0000000000000000000000000000000000000000" />
816 816 <author email="other@place">other</author>
817 817 <date>1970-01-14T21:20:00+00:00</date>
818 818 <msg xml:space="preserve">no person</msg>
819 819 <paths>
820 820 <path action="A">c</path>
821 821 </paths>
822 822 <extra key="branch">default</extra>
823 823 </logentry>
824 824 <logentry revision="1" node="b608e9d1a3f0273ccf70fb85fd6866b3482bf965">
825 825 <parent revision="0" node="1e4e1b8f71e05681d422154f5421e385fec3454f" />
826 826 <parent revision="-1" node="0000000000000000000000000000000000000000" />
827 827 <author email="other@place">A. N. Other</author>
828 828 <date>1970-01-13T17:33:20+00:00</date>
829 829 <msg xml:space="preserve">other 1
830 830 other 2
831 831
832 832 other 3</msg>
833 833 <paths>
834 834 <path action="A">b</path>
835 835 </paths>
836 836 <extra key="branch">default</extra>
837 837 </logentry>
838 838 <logentry revision="0" node="1e4e1b8f71e05681d422154f5421e385fec3454f">
839 839 <parent revision="-1" node="0000000000000000000000000000000000000000" />
840 840 <parent revision="-1" node="0000000000000000000000000000000000000000" />
841 841 <author email="user@hostname">User Name</author>
842 842 <date>1970-01-12T13:46:40+00:00</date>
843 843 <msg xml:space="preserve">line 1
844 844 line 2</msg>
845 845 <paths>
846 846 <path action="A">a</path>
847 847 </paths>
848 848 <extra key="branch">default</extra>
849 849 </logentry>
850 850 </log>
851 851
852 852
853 853 Test JSON style:
854 854
855 855 $ hg log -k nosuch -Tjson
856 856 [
857 857 ]
858 858
859 859 $ hg log -qr . -Tjson
860 860 [
861 861 {
862 862 "node": "95c24699272ef57d062b8bccc32c878bf841784a",
863 863 "rev": 8
864 864 }
865 865 ]
866 866
867 867 $ hg log -vpr . -Tjson --stat
868 868 [
869 869 {
870 870 "bookmarks": [],
871 871 "branch": "default",
872 872 "date": [1577872860, 0],
873 873 "desc": "third",
874 874 "diff": "diff -r 29114dbae42b -r 95c24699272e fourth\n--- /dev/null\tThu Jan 01 00:00:00 1970 +0000\n+++ b/fourth\tWed Jan 01 10:01:00 2020 +0000\n@@ -0,0 +1,1 @@\n+second\ndiff -r 29114dbae42b -r 95c24699272e second\n--- a/second\tMon Jan 12 13:46:40 1970 +0000\n+++ /dev/null\tThu Jan 01 00:00:00 1970 +0000\n@@ -1,1 +0,0 @@\n-second\ndiff -r 29114dbae42b -r 95c24699272e third\n--- /dev/null\tThu Jan 01 00:00:00 1970 +0000\n+++ b/third\tWed Jan 01 10:01:00 2020 +0000\n@@ -0,0 +1,1 @@\n+third\n",
875 875 "diffstat": " fourth | 1 +\n second | 1 -\n third | 1 +\n 3 files changed, 2 insertions(+), 1 deletions(-)\n",
876 876 "files": ["fourth", "second", "third"],
877 877 "node": "95c24699272ef57d062b8bccc32c878bf841784a",
878 878 "parents": ["29114dbae42b9f078cf2714dbe3a86bba8ec7453"],
879 879 "phase": "draft",
880 880 "rev": 8,
881 881 "tags": ["tip"],
882 882 "user": "test"
883 883 }
884 884 ]
885 885
886 886 honor --git but not format-breaking diffopts
887 887 $ hg --config diff.noprefix=True log --git -vpr . -Tjson
888 888 [
889 889 {
890 890 "bookmarks": [],
891 891 "branch": "default",
892 892 "date": [1577872860, 0],
893 893 "desc": "third",
894 894 "diff": "diff --git a/second b/fourth\nrename from second\nrename to fourth\ndiff --git a/third b/third\nnew file mode 100644\n--- /dev/null\n+++ b/third\n@@ -0,0 +1,1 @@\n+third\n",
895 895 "files": ["fourth", "second", "third"],
896 896 "node": "95c24699272ef57d062b8bccc32c878bf841784a",
897 897 "parents": ["29114dbae42b9f078cf2714dbe3a86bba8ec7453"],
898 898 "phase": "draft",
899 899 "rev": 8,
900 900 "tags": ["tip"],
901 901 "user": "test"
902 902 }
903 903 ]
904 904
905 905 $ hg log -T json
906 906 [
907 907 {
908 908 "bookmarks": [],
909 909 "branch": "default",
910 910 "date": [1577872860, 0],
911 911 "desc": "third",
912 912 "node": "95c24699272ef57d062b8bccc32c878bf841784a",
913 913 "parents": ["29114dbae42b9f078cf2714dbe3a86bba8ec7453"],
914 914 "phase": "draft",
915 915 "rev": 8,
916 916 "tags": ["tip"],
917 917 "user": "test"
918 918 },
919 919 {
920 920 "bookmarks": [],
921 921 "branch": "default",
922 922 "date": [1000000, 0],
923 923 "desc": "second",
924 924 "node": "29114dbae42b9f078cf2714dbe3a86bba8ec7453",
925 925 "parents": ["0000000000000000000000000000000000000000"],
926 926 "phase": "draft",
927 927 "rev": 7,
928 928 "tags": [],
929 929 "user": "User Name <user@hostname>"
930 930 },
931 931 {
932 932 "bookmarks": [],
933 933 "branch": "default",
934 934 "date": [1500001, 0],
935 935 "desc": "merge",
936 936 "node": "d41e714fe50d9e4a5f11b4d595d543481b5f980b",
937 937 "parents": ["13207e5a10d9fd28ec424934298e176197f2c67f", "bbe44766e73d5f11ed2177f1838de10c53ef3e74"],
938 938 "phase": "draft",
939 939 "rev": 6,
940 940 "tags": [],
941 941 "user": "person"
942 942 },
943 943 {
944 944 "bookmarks": [],
945 945 "branch": "default",
946 946 "date": [1500000, 0],
947 947 "desc": "new head",
948 948 "node": "13207e5a10d9fd28ec424934298e176197f2c67f",
949 949 "parents": ["10e46f2dcbf4823578cf180f33ecf0b957964c47"],
950 950 "phase": "draft",
951 951 "rev": 5,
952 952 "tags": [],
953 953 "user": "person"
954 954 },
955 955 {
956 956 "bookmarks": [],
957 957 "branch": "foo",
958 958 "date": [1400000, 0],
959 959 "desc": "new branch",
960 960 "node": "bbe44766e73d5f11ed2177f1838de10c53ef3e74",
961 961 "parents": ["10e46f2dcbf4823578cf180f33ecf0b957964c47"],
962 962 "phase": "draft",
963 963 "rev": 4,
964 964 "tags": [],
965 965 "user": "person"
966 966 },
967 967 {
968 968 "bookmarks": [],
969 969 "branch": "default",
970 970 "date": [1300000, 0],
971 971 "desc": "no user, no domain",
972 972 "node": "10e46f2dcbf4823578cf180f33ecf0b957964c47",
973 973 "parents": ["97054abb4ab824450e9164180baf491ae0078465"],
974 974 "phase": "draft",
975 975 "rev": 3,
976 976 "tags": [],
977 977 "user": "person"
978 978 },
979 979 {
980 980 "bookmarks": [],
981 981 "branch": "default",
982 982 "date": [1200000, 0],
983 983 "desc": "no person",
984 984 "node": "97054abb4ab824450e9164180baf491ae0078465",
985 985 "parents": ["b608e9d1a3f0273ccf70fb85fd6866b3482bf965"],
986 986 "phase": "draft",
987 987 "rev": 2,
988 988 "tags": [],
989 989 "user": "other@place"
990 990 },
991 991 {
992 992 "bookmarks": [],
993 993 "branch": "default",
994 994 "date": [1100000, 0],
995 995 "desc": "other 1\nother 2\n\nother 3",
996 996 "node": "b608e9d1a3f0273ccf70fb85fd6866b3482bf965",
997 997 "parents": ["1e4e1b8f71e05681d422154f5421e385fec3454f"],
998 998 "phase": "draft",
999 999 "rev": 1,
1000 1000 "tags": [],
1001 1001 "user": "A. N. Other <other@place>"
1002 1002 },
1003 1003 {
1004 1004 "bookmarks": [],
1005 1005 "branch": "default",
1006 1006 "date": [1000000, 0],
1007 1007 "desc": "line 1\nline 2",
1008 1008 "node": "1e4e1b8f71e05681d422154f5421e385fec3454f",
1009 1009 "parents": ["0000000000000000000000000000000000000000"],
1010 1010 "phase": "draft",
1011 1011 "rev": 0,
1012 1012 "tags": [],
1013 1013 "user": "User Name <user@hostname>"
1014 1014 }
1015 1015 ]
1016 1016
1017 1017 $ hg heads -v -Tjson
1018 1018 [
1019 1019 {
1020 1020 "bookmarks": [],
1021 1021 "branch": "default",
1022 1022 "date": [1577872860, 0],
1023 1023 "desc": "third",
1024 1024 "files": ["fourth", "second", "third"],
1025 1025 "node": "95c24699272ef57d062b8bccc32c878bf841784a",
1026 1026 "parents": ["29114dbae42b9f078cf2714dbe3a86bba8ec7453"],
1027 1027 "phase": "draft",
1028 1028 "rev": 8,
1029 1029 "tags": ["tip"],
1030 1030 "user": "test"
1031 1031 },
1032 1032 {
1033 1033 "bookmarks": [],
1034 1034 "branch": "default",
1035 1035 "date": [1500001, 0],
1036 1036 "desc": "merge",
1037 1037 "files": [],
1038 1038 "node": "d41e714fe50d9e4a5f11b4d595d543481b5f980b",
1039 1039 "parents": ["13207e5a10d9fd28ec424934298e176197f2c67f", "bbe44766e73d5f11ed2177f1838de10c53ef3e74"],
1040 1040 "phase": "draft",
1041 1041 "rev": 6,
1042 1042 "tags": [],
1043 1043 "user": "person"
1044 1044 },
1045 1045 {
1046 1046 "bookmarks": [],
1047 1047 "branch": "foo",
1048 1048 "date": [1400000, 0],
1049 1049 "desc": "new branch",
1050 1050 "files": [],
1051 1051 "node": "bbe44766e73d5f11ed2177f1838de10c53ef3e74",
1052 1052 "parents": ["10e46f2dcbf4823578cf180f33ecf0b957964c47"],
1053 1053 "phase": "draft",
1054 1054 "rev": 4,
1055 1055 "tags": [],
1056 1056 "user": "person"
1057 1057 }
1058 1058 ]
1059 1059
1060 1060 $ hg log --debug -Tjson
1061 1061 [
1062 1062 {
1063 1063 "added": ["fourth", "third"],
1064 1064 "bookmarks": [],
1065 1065 "branch": "default",
1066 1066 "date": [1577872860, 0],
1067 1067 "desc": "third",
1068 1068 "extra": {"branch": "default"},
1069 1069 "manifest": "94961b75a2da554b4df6fb599e5bfc7d48de0c64",
1070 1070 "modified": [],
1071 1071 "node": "95c24699272ef57d062b8bccc32c878bf841784a",
1072 1072 "parents": ["29114dbae42b9f078cf2714dbe3a86bba8ec7453"],
1073 1073 "phase": "draft",
1074 1074 "removed": ["second"],
1075 1075 "rev": 8,
1076 1076 "tags": ["tip"],
1077 1077 "user": "test"
1078 1078 },
1079 1079 {
1080 1080 "added": ["second"],
1081 1081 "bookmarks": [],
1082 1082 "branch": "default",
1083 1083 "date": [1000000, 0],
1084 1084 "desc": "second",
1085 1085 "extra": {"branch": "default"},
1086 1086 "manifest": "f2dbc354b94e5ec0b4f10680ee0cee816101d0bf",
1087 1087 "modified": [],
1088 1088 "node": "29114dbae42b9f078cf2714dbe3a86bba8ec7453",
1089 1089 "parents": ["0000000000000000000000000000000000000000"],
1090 1090 "phase": "draft",
1091 1091 "removed": [],
1092 1092 "rev": 7,
1093 1093 "tags": [],
1094 1094 "user": "User Name <user@hostname>"
1095 1095 },
1096 1096 {
1097 1097 "added": [],
1098 1098 "bookmarks": [],
1099 1099 "branch": "default",
1100 1100 "date": [1500001, 0],
1101 1101 "desc": "merge",
1102 1102 "extra": {"branch": "default"},
1103 1103 "manifest": "4dc3def4f9b4c6e8de820f6ee74737f91e96a216",
1104 1104 "modified": [],
1105 1105 "node": "d41e714fe50d9e4a5f11b4d595d543481b5f980b",
1106 1106 "parents": ["13207e5a10d9fd28ec424934298e176197f2c67f", "bbe44766e73d5f11ed2177f1838de10c53ef3e74"],
1107 1107 "phase": "draft",
1108 1108 "removed": [],
1109 1109 "rev": 6,
1110 1110 "tags": [],
1111 1111 "user": "person"
1112 1112 },
1113 1113 {
1114 1114 "added": ["d"],
1115 1115 "bookmarks": [],
1116 1116 "branch": "default",
1117 1117 "date": [1500000, 0],
1118 1118 "desc": "new head",
1119 1119 "extra": {"branch": "default"},
1120 1120 "manifest": "4dc3def4f9b4c6e8de820f6ee74737f91e96a216",
1121 1121 "modified": [],
1122 1122 "node": "13207e5a10d9fd28ec424934298e176197f2c67f",
1123 1123 "parents": ["10e46f2dcbf4823578cf180f33ecf0b957964c47"],
1124 1124 "phase": "draft",
1125 1125 "removed": [],
1126 1126 "rev": 5,
1127 1127 "tags": [],
1128 1128 "user": "person"
1129 1129 },
1130 1130 {
1131 1131 "added": [],
1132 1132 "bookmarks": [],
1133 1133 "branch": "foo",
1134 1134 "date": [1400000, 0],
1135 1135 "desc": "new branch",
1136 1136 "extra": {"branch": "foo"},
1137 1137 "manifest": "cb5a1327723bada42f117e4c55a303246eaf9ccc",
1138 1138 "modified": [],
1139 1139 "node": "bbe44766e73d5f11ed2177f1838de10c53ef3e74",
1140 1140 "parents": ["10e46f2dcbf4823578cf180f33ecf0b957964c47"],
1141 1141 "phase": "draft",
1142 1142 "removed": [],
1143 1143 "rev": 4,
1144 1144 "tags": [],
1145 1145 "user": "person"
1146 1146 },
1147 1147 {
1148 1148 "added": [],
1149 1149 "bookmarks": [],
1150 1150 "branch": "default",
1151 1151 "date": [1300000, 0],
1152 1152 "desc": "no user, no domain",
1153 1153 "extra": {"branch": "default"},
1154 1154 "manifest": "cb5a1327723bada42f117e4c55a303246eaf9ccc",
1155 1155 "modified": ["c"],
1156 1156 "node": "10e46f2dcbf4823578cf180f33ecf0b957964c47",
1157 1157 "parents": ["97054abb4ab824450e9164180baf491ae0078465"],
1158 1158 "phase": "draft",
1159 1159 "removed": [],
1160 1160 "rev": 3,
1161 1161 "tags": [],
1162 1162 "user": "person"
1163 1163 },
1164 1164 {
1165 1165 "added": ["c"],
1166 1166 "bookmarks": [],
1167 1167 "branch": "default",
1168 1168 "date": [1200000, 0],
1169 1169 "desc": "no person",
1170 1170 "extra": {"branch": "default"},
1171 1171 "manifest": "6e0e82995c35d0d57a52aca8da4e56139e06b4b1",
1172 1172 "modified": [],
1173 1173 "node": "97054abb4ab824450e9164180baf491ae0078465",
1174 1174 "parents": ["b608e9d1a3f0273ccf70fb85fd6866b3482bf965"],
1175 1175 "phase": "draft",
1176 1176 "removed": [],
1177 1177 "rev": 2,
1178 1178 "tags": [],
1179 1179 "user": "other@place"
1180 1180 },
1181 1181 {
1182 1182 "added": ["b"],
1183 1183 "bookmarks": [],
1184 1184 "branch": "default",
1185 1185 "date": [1100000, 0],
1186 1186 "desc": "other 1\nother 2\n\nother 3",
1187 1187 "extra": {"branch": "default"},
1188 1188 "manifest": "4e8d705b1e53e3f9375e0e60dc7b525d8211fe55",
1189 1189 "modified": [],
1190 1190 "node": "b608e9d1a3f0273ccf70fb85fd6866b3482bf965",
1191 1191 "parents": ["1e4e1b8f71e05681d422154f5421e385fec3454f"],
1192 1192 "phase": "draft",
1193 1193 "removed": [],
1194 1194 "rev": 1,
1195 1195 "tags": [],
1196 1196 "user": "A. N. Other <other@place>"
1197 1197 },
1198 1198 {
1199 1199 "added": ["a"],
1200 1200 "bookmarks": [],
1201 1201 "branch": "default",
1202 1202 "date": [1000000, 0],
1203 1203 "desc": "line 1\nline 2",
1204 1204 "extra": {"branch": "default"},
1205 1205 "manifest": "a0c8bcbbb45c63b90b70ad007bf38961f64f2af0",
1206 1206 "modified": [],
1207 1207 "node": "1e4e1b8f71e05681d422154f5421e385fec3454f",
1208 1208 "parents": ["0000000000000000000000000000000000000000"],
1209 1209 "phase": "draft",
1210 1210 "removed": [],
1211 1211 "rev": 0,
1212 1212 "tags": [],
1213 1213 "user": "User Name <user@hostname>"
1214 1214 }
1215 1215 ]
1216 1216
1217 1217 Error if style not readable:
1218 1218
1219 1219 #if unix-permissions no-root
1220 1220 $ touch q
1221 1221 $ chmod 0 q
1222 1222 $ hg log --style ./q
1223 1223 abort: Permission denied: ./q
1224 1224 [255]
1225 1225 #endif
1226 1226
1227 1227 Error if no style:
1228 1228
1229 1229 $ hg log --style notexist
1230 1230 abort: style 'notexist' not found
1231 1231 (available styles: bisect, changelog, compact, default, phases, show, status, xml)
1232 1232 [255]
1233 1233
1234 1234 $ hg log -T list
1235 1235 available styles: bisect, changelog, compact, default, phases, show, status, xml
1236 1236 abort: specify a template
1237 1237 [255]
1238 1238
1239 1239 Error if style missing key:
1240 1240
1241 1241 $ echo 'q = q' > t
1242 1242 $ hg log --style ./t
1243 1243 abort: "changeset" not in template map
1244 1244 [255]
1245 1245
1246 1246 Error if style missing value:
1247 1247
1248 1248 $ echo 'changeset =' > t
1249 1249 $ hg log --style t
1250 1250 hg: parse error at t:1: missing value
1251 1251 [255]
1252 1252
1253 1253 Error if include fails:
1254 1254
1255 1255 $ echo 'changeset = q' >> t
1256 1256 #if unix-permissions no-root
1257 1257 $ hg log --style ./t
1258 1258 abort: template file ./q: Permission denied
1259 1259 [255]
1260 1260 $ rm -f q
1261 1261 #endif
1262 1262
1263 1263 Include works:
1264 1264
1265 1265 $ echo '{rev}' > q
1266 1266 $ hg log --style ./t
1267 1267 8
1268 1268 7
1269 1269 6
1270 1270 5
1271 1271 4
1272 1272 3
1273 1273 2
1274 1274 1
1275 1275 0
1276 1276
1277 1277 Check that recursive reference does not fall into RuntimeError (issue4758):
1278 1278
1279 1279 common mistake:
1280 1280
1281 1281 $ cat << EOF > issue4758
1282 1282 > changeset = '{changeset}\n'
1283 1283 > EOF
1284 1284 $ hg log --style ./issue4758
1285 1285 abort: recursive reference 'changeset' in template
1286 1286 [255]
1287 1287
1288 1288 circular reference:
1289 1289
1290 1290 $ cat << EOF > issue4758
1291 1291 > changeset = '{foo}'
1292 1292 > foo = '{changeset}'
1293 1293 > EOF
1294 1294 $ hg log --style ./issue4758
1295 1295 abort: recursive reference 'foo' in template
1296 1296 [255]
1297 1297
1298 1298 buildmap() -> gettemplate(), where no thunk was made:
1299 1299
1300 1300 $ cat << EOF > issue4758
1301 1301 > changeset = '{files % changeset}\n'
1302 1302 > EOF
1303 1303 $ hg log --style ./issue4758
1304 1304 abort: recursive reference 'changeset' in template
1305 1305 [255]
1306 1306
1307 1307 not a recursion if a keyword of the same name exists:
1308 1308
1309 1309 $ cat << EOF > issue4758
1310 1310 > changeset = '{tags % rev}'
1311 1311 > rev = '{rev} {tag}\n'
1312 1312 > EOF
1313 1313 $ hg log --style ./issue4758 -r tip
1314 1314 8 tip
1315 1315
1316 1316 Check that {phase} works correctly on parents:
1317 1317
1318 1318 $ cat << EOF > parentphase
1319 1319 > changeset_debug = '{rev} ({phase}):{parents}\n'
1320 1320 > parent = ' {rev} ({phase})'
1321 1321 > EOF
1322 1322 $ hg phase -r 5 --public
1323 1323 $ hg phase -r 7 --secret --force
1324 1324 $ hg log --debug -G --style ./parentphase
1325 1325 @ 8 (secret): 7 (secret) -1 (public)
1326 1326 |
1327 1327 o 7 (secret): -1 (public) -1 (public)
1328 1328
1329 1329 o 6 (draft): 5 (public) 4 (draft)
1330 1330 |\
1331 1331 | o 5 (public): 3 (public) -1 (public)
1332 1332 | |
1333 1333 o | 4 (draft): 3 (public) -1 (public)
1334 1334 |/
1335 1335 o 3 (public): 2 (public) -1 (public)
1336 1336 |
1337 1337 o 2 (public): 1 (public) -1 (public)
1338 1338 |
1339 1339 o 1 (public): 0 (public) -1 (public)
1340 1340 |
1341 1341 o 0 (public): -1 (public) -1 (public)
1342 1342
1343 1343
1344 1344 Missing non-standard names give no error (backward compatibility):
1345 1345
1346 1346 $ echo "changeset = '{c}'" > t
1347 1347 $ hg log --style ./t
1348 1348
1349 1349 Defining non-standard name works:
1350 1350
1351 1351 $ cat <<EOF > t
1352 1352 > changeset = '{c}'
1353 1353 > c = q
1354 1354 > EOF
1355 1355 $ hg log --style ./t
1356 1356 8
1357 1357 7
1358 1358 6
1359 1359 5
1360 1360 4
1361 1361 3
1362 1362 2
1363 1363 1
1364 1364 0
1365 1365
1366 1366 ui.style works:
1367 1367
1368 1368 $ echo '[ui]' > .hg/hgrc
1369 1369 $ echo 'style = t' >> .hg/hgrc
1370 1370 $ hg log
1371 1371 8
1372 1372 7
1373 1373 6
1374 1374 5
1375 1375 4
1376 1376 3
1377 1377 2
1378 1378 1
1379 1379 0
1380 1380
1381 1381
1382 1382 Issue338:
1383 1383
1384 1384 $ hg log --style=changelog > changelog
1385 1385
1386 1386 $ cat changelog
1387 1387 2020-01-01 test <test>
1388 1388
1389 1389 * fourth, second, third:
1390 1390 third
1391 1391 [95c24699272e] [tip]
1392 1392
1393 1393 1970-01-12 User Name <user@hostname>
1394 1394
1395 1395 * second:
1396 1396 second
1397 1397 [29114dbae42b]
1398 1398
1399 1399 1970-01-18 person <person>
1400 1400
1401 1401 * merge
1402 1402 [d41e714fe50d]
1403 1403
1404 1404 * d:
1405 1405 new head
1406 1406 [13207e5a10d9]
1407 1407
1408 1408 1970-01-17 person <person>
1409 1409
1410 1410 * new branch
1411 1411 [bbe44766e73d] <foo>
1412 1412
1413 1413 1970-01-16 person <person>
1414 1414
1415 1415 * c:
1416 1416 no user, no domain
1417 1417 [10e46f2dcbf4]
1418 1418
1419 1419 1970-01-14 other <other@place>
1420 1420
1421 1421 * c:
1422 1422 no person
1423 1423 [97054abb4ab8]
1424 1424
1425 1425 1970-01-13 A. N. Other <other@place>
1426 1426
1427 1427 * b:
1428 1428 other 1 other 2
1429 1429
1430 1430 other 3
1431 1431 [b608e9d1a3f0]
1432 1432
1433 1433 1970-01-12 User Name <user@hostname>
1434 1434
1435 1435 * a:
1436 1436 line 1 line 2
1437 1437 [1e4e1b8f71e0]
1438 1438
1439 1439
1440 1440 Issue2130: xml output for 'hg heads' is malformed
1441 1441
1442 1442 $ hg heads --style changelog
1443 1443 2020-01-01 test <test>
1444 1444
1445 1445 * fourth, second, third:
1446 1446 third
1447 1447 [95c24699272e] [tip]
1448 1448
1449 1449 1970-01-18 person <person>
1450 1450
1451 1451 * merge
1452 1452 [d41e714fe50d]
1453 1453
1454 1454 1970-01-17 person <person>
1455 1455
1456 1456 * new branch
1457 1457 [bbe44766e73d] <foo>
1458 1458
1459 1459
1460 1460 Keys work:
1461 1461
1462 1462 $ for key in author branch branches date desc file_adds file_dels file_mods \
1463 1463 > file_copies file_copies_switch files \
1464 1464 > manifest node parents rev tags diffstat extras \
1465 1465 > p1rev p2rev p1node p2node; do
1466 1466 > for mode in '' --verbose --debug; do
1467 1467 > hg log $mode --template "$key$mode: {$key}\n"
1468 1468 > done
1469 1469 > done
1470 1470 author: test
1471 1471 author: User Name <user@hostname>
1472 1472 author: person
1473 1473 author: person
1474 1474 author: person
1475 1475 author: person
1476 1476 author: other@place
1477 1477 author: A. N. Other <other@place>
1478 1478 author: User Name <user@hostname>
1479 1479 author--verbose: test
1480 1480 author--verbose: User Name <user@hostname>
1481 1481 author--verbose: person
1482 1482 author--verbose: person
1483 1483 author--verbose: person
1484 1484 author--verbose: person
1485 1485 author--verbose: other@place
1486 1486 author--verbose: A. N. Other <other@place>
1487 1487 author--verbose: User Name <user@hostname>
1488 1488 author--debug: test
1489 1489 author--debug: User Name <user@hostname>
1490 1490 author--debug: person
1491 1491 author--debug: person
1492 1492 author--debug: person
1493 1493 author--debug: person
1494 1494 author--debug: other@place
1495 1495 author--debug: A. N. Other <other@place>
1496 1496 author--debug: User Name <user@hostname>
1497 1497 branch: default
1498 1498 branch: default
1499 1499 branch: default
1500 1500 branch: default
1501 1501 branch: foo
1502 1502 branch: default
1503 1503 branch: default
1504 1504 branch: default
1505 1505 branch: default
1506 1506 branch--verbose: default
1507 1507 branch--verbose: default
1508 1508 branch--verbose: default
1509 1509 branch--verbose: default
1510 1510 branch--verbose: foo
1511 1511 branch--verbose: default
1512 1512 branch--verbose: default
1513 1513 branch--verbose: default
1514 1514 branch--verbose: default
1515 1515 branch--debug: default
1516 1516 branch--debug: default
1517 1517 branch--debug: default
1518 1518 branch--debug: default
1519 1519 branch--debug: foo
1520 1520 branch--debug: default
1521 1521 branch--debug: default
1522 1522 branch--debug: default
1523 1523 branch--debug: default
1524 1524 branches:
1525 1525 branches:
1526 1526 branches:
1527 1527 branches:
1528 1528 branches: foo
1529 1529 branches:
1530 1530 branches:
1531 1531 branches:
1532 1532 branches:
1533 1533 branches--verbose:
1534 1534 branches--verbose:
1535 1535 branches--verbose:
1536 1536 branches--verbose:
1537 1537 branches--verbose: foo
1538 1538 branches--verbose:
1539 1539 branches--verbose:
1540 1540 branches--verbose:
1541 1541 branches--verbose:
1542 1542 branches--debug:
1543 1543 branches--debug:
1544 1544 branches--debug:
1545 1545 branches--debug:
1546 1546 branches--debug: foo
1547 1547 branches--debug:
1548 1548 branches--debug:
1549 1549 branches--debug:
1550 1550 branches--debug:
1551 1551 date: 1577872860.00
1552 1552 date: 1000000.00
1553 1553 date: 1500001.00
1554 1554 date: 1500000.00
1555 1555 date: 1400000.00
1556 1556 date: 1300000.00
1557 1557 date: 1200000.00
1558 1558 date: 1100000.00
1559 1559 date: 1000000.00
1560 1560 date--verbose: 1577872860.00
1561 1561 date--verbose: 1000000.00
1562 1562 date--verbose: 1500001.00
1563 1563 date--verbose: 1500000.00
1564 1564 date--verbose: 1400000.00
1565 1565 date--verbose: 1300000.00
1566 1566 date--verbose: 1200000.00
1567 1567 date--verbose: 1100000.00
1568 1568 date--verbose: 1000000.00
1569 1569 date--debug: 1577872860.00
1570 1570 date--debug: 1000000.00
1571 1571 date--debug: 1500001.00
1572 1572 date--debug: 1500000.00
1573 1573 date--debug: 1400000.00
1574 1574 date--debug: 1300000.00
1575 1575 date--debug: 1200000.00
1576 1576 date--debug: 1100000.00
1577 1577 date--debug: 1000000.00
1578 1578 desc: third
1579 1579 desc: second
1580 1580 desc: merge
1581 1581 desc: new head
1582 1582 desc: new branch
1583 1583 desc: no user, no domain
1584 1584 desc: no person
1585 1585 desc: other 1
1586 1586 other 2
1587 1587
1588 1588 other 3
1589 1589 desc: line 1
1590 1590 line 2
1591 1591 desc--verbose: third
1592 1592 desc--verbose: second
1593 1593 desc--verbose: merge
1594 1594 desc--verbose: new head
1595 1595 desc--verbose: new branch
1596 1596 desc--verbose: no user, no domain
1597 1597 desc--verbose: no person
1598 1598 desc--verbose: other 1
1599 1599 other 2
1600 1600
1601 1601 other 3
1602 1602 desc--verbose: line 1
1603 1603 line 2
1604 1604 desc--debug: third
1605 1605 desc--debug: second
1606 1606 desc--debug: merge
1607 1607 desc--debug: new head
1608 1608 desc--debug: new branch
1609 1609 desc--debug: no user, no domain
1610 1610 desc--debug: no person
1611 1611 desc--debug: other 1
1612 1612 other 2
1613 1613
1614 1614 other 3
1615 1615 desc--debug: line 1
1616 1616 line 2
1617 1617 file_adds: fourth third
1618 1618 file_adds: second
1619 1619 file_adds:
1620 1620 file_adds: d
1621 1621 file_adds:
1622 1622 file_adds:
1623 1623 file_adds: c
1624 1624 file_adds: b
1625 1625 file_adds: a
1626 1626 file_adds--verbose: fourth third
1627 1627 file_adds--verbose: second
1628 1628 file_adds--verbose:
1629 1629 file_adds--verbose: d
1630 1630 file_adds--verbose:
1631 1631 file_adds--verbose:
1632 1632 file_adds--verbose: c
1633 1633 file_adds--verbose: b
1634 1634 file_adds--verbose: a
1635 1635 file_adds--debug: fourth third
1636 1636 file_adds--debug: second
1637 1637 file_adds--debug:
1638 1638 file_adds--debug: d
1639 1639 file_adds--debug:
1640 1640 file_adds--debug:
1641 1641 file_adds--debug: c
1642 1642 file_adds--debug: b
1643 1643 file_adds--debug: a
1644 1644 file_dels: second
1645 1645 file_dels:
1646 1646 file_dels:
1647 1647 file_dels:
1648 1648 file_dels:
1649 1649 file_dels:
1650 1650 file_dels:
1651 1651 file_dels:
1652 1652 file_dels:
1653 1653 file_dels--verbose: second
1654 1654 file_dels--verbose:
1655 1655 file_dels--verbose:
1656 1656 file_dels--verbose:
1657 1657 file_dels--verbose:
1658 1658 file_dels--verbose:
1659 1659 file_dels--verbose:
1660 1660 file_dels--verbose:
1661 1661 file_dels--verbose:
1662 1662 file_dels--debug: second
1663 1663 file_dels--debug:
1664 1664 file_dels--debug:
1665 1665 file_dels--debug:
1666 1666 file_dels--debug:
1667 1667 file_dels--debug:
1668 1668 file_dels--debug:
1669 1669 file_dels--debug:
1670 1670 file_dels--debug:
1671 1671 file_mods:
1672 1672 file_mods:
1673 1673 file_mods:
1674 1674 file_mods:
1675 1675 file_mods:
1676 1676 file_mods: c
1677 1677 file_mods:
1678 1678 file_mods:
1679 1679 file_mods:
1680 1680 file_mods--verbose:
1681 1681 file_mods--verbose:
1682 1682 file_mods--verbose:
1683 1683 file_mods--verbose:
1684 1684 file_mods--verbose:
1685 1685 file_mods--verbose: c
1686 1686 file_mods--verbose:
1687 1687 file_mods--verbose:
1688 1688 file_mods--verbose:
1689 1689 file_mods--debug:
1690 1690 file_mods--debug:
1691 1691 file_mods--debug:
1692 1692 file_mods--debug:
1693 1693 file_mods--debug:
1694 1694 file_mods--debug: c
1695 1695 file_mods--debug:
1696 1696 file_mods--debug:
1697 1697 file_mods--debug:
1698 1698 file_copies: fourth (second)
1699 1699 file_copies:
1700 1700 file_copies:
1701 1701 file_copies:
1702 1702 file_copies:
1703 1703 file_copies:
1704 1704 file_copies:
1705 1705 file_copies:
1706 1706 file_copies:
1707 1707 file_copies--verbose: fourth (second)
1708 1708 file_copies--verbose:
1709 1709 file_copies--verbose:
1710 1710 file_copies--verbose:
1711 1711 file_copies--verbose:
1712 1712 file_copies--verbose:
1713 1713 file_copies--verbose:
1714 1714 file_copies--verbose:
1715 1715 file_copies--verbose:
1716 1716 file_copies--debug: fourth (second)
1717 1717 file_copies--debug:
1718 1718 file_copies--debug:
1719 1719 file_copies--debug:
1720 1720 file_copies--debug:
1721 1721 file_copies--debug:
1722 1722 file_copies--debug:
1723 1723 file_copies--debug:
1724 1724 file_copies--debug:
1725 1725 file_copies_switch:
1726 1726 file_copies_switch:
1727 1727 file_copies_switch:
1728 1728 file_copies_switch:
1729 1729 file_copies_switch:
1730 1730 file_copies_switch:
1731 1731 file_copies_switch:
1732 1732 file_copies_switch:
1733 1733 file_copies_switch:
1734 1734 file_copies_switch--verbose:
1735 1735 file_copies_switch--verbose:
1736 1736 file_copies_switch--verbose:
1737 1737 file_copies_switch--verbose:
1738 1738 file_copies_switch--verbose:
1739 1739 file_copies_switch--verbose:
1740 1740 file_copies_switch--verbose:
1741 1741 file_copies_switch--verbose:
1742 1742 file_copies_switch--verbose:
1743 1743 file_copies_switch--debug:
1744 1744 file_copies_switch--debug:
1745 1745 file_copies_switch--debug:
1746 1746 file_copies_switch--debug:
1747 1747 file_copies_switch--debug:
1748 1748 file_copies_switch--debug:
1749 1749 file_copies_switch--debug:
1750 1750 file_copies_switch--debug:
1751 1751 file_copies_switch--debug:
1752 1752 files: fourth second third
1753 1753 files: second
1754 1754 files:
1755 1755 files: d
1756 1756 files:
1757 1757 files: c
1758 1758 files: c
1759 1759 files: b
1760 1760 files: a
1761 1761 files--verbose: fourth second third
1762 1762 files--verbose: second
1763 1763 files--verbose:
1764 1764 files--verbose: d
1765 1765 files--verbose:
1766 1766 files--verbose: c
1767 1767 files--verbose: c
1768 1768 files--verbose: b
1769 1769 files--verbose: a
1770 1770 files--debug: fourth second third
1771 1771 files--debug: second
1772 1772 files--debug:
1773 1773 files--debug: d
1774 1774 files--debug:
1775 1775 files--debug: c
1776 1776 files--debug: c
1777 1777 files--debug: b
1778 1778 files--debug: a
1779 1779 manifest: 6:94961b75a2da
1780 1780 manifest: 5:f2dbc354b94e
1781 1781 manifest: 4:4dc3def4f9b4
1782 1782 manifest: 4:4dc3def4f9b4
1783 1783 manifest: 3:cb5a1327723b
1784 1784 manifest: 3:cb5a1327723b
1785 1785 manifest: 2:6e0e82995c35
1786 1786 manifest: 1:4e8d705b1e53
1787 1787 manifest: 0:a0c8bcbbb45c
1788 1788 manifest--verbose: 6:94961b75a2da
1789 1789 manifest--verbose: 5:f2dbc354b94e
1790 1790 manifest--verbose: 4:4dc3def4f9b4
1791 1791 manifest--verbose: 4:4dc3def4f9b4
1792 1792 manifest--verbose: 3:cb5a1327723b
1793 1793 manifest--verbose: 3:cb5a1327723b
1794 1794 manifest--verbose: 2:6e0e82995c35
1795 1795 manifest--verbose: 1:4e8d705b1e53
1796 1796 manifest--verbose: 0:a0c8bcbbb45c
1797 1797 manifest--debug: 6:94961b75a2da554b4df6fb599e5bfc7d48de0c64
1798 1798 manifest--debug: 5:f2dbc354b94e5ec0b4f10680ee0cee816101d0bf
1799 1799 manifest--debug: 4:4dc3def4f9b4c6e8de820f6ee74737f91e96a216
1800 1800 manifest--debug: 4:4dc3def4f9b4c6e8de820f6ee74737f91e96a216
1801 1801 manifest--debug: 3:cb5a1327723bada42f117e4c55a303246eaf9ccc
1802 1802 manifest--debug: 3:cb5a1327723bada42f117e4c55a303246eaf9ccc
1803 1803 manifest--debug: 2:6e0e82995c35d0d57a52aca8da4e56139e06b4b1
1804 1804 manifest--debug: 1:4e8d705b1e53e3f9375e0e60dc7b525d8211fe55
1805 1805 manifest--debug: 0:a0c8bcbbb45c63b90b70ad007bf38961f64f2af0
1806 1806 node: 95c24699272ef57d062b8bccc32c878bf841784a
1807 1807 node: 29114dbae42b9f078cf2714dbe3a86bba8ec7453
1808 1808 node: d41e714fe50d9e4a5f11b4d595d543481b5f980b
1809 1809 node: 13207e5a10d9fd28ec424934298e176197f2c67f
1810 1810 node: bbe44766e73d5f11ed2177f1838de10c53ef3e74
1811 1811 node: 10e46f2dcbf4823578cf180f33ecf0b957964c47
1812 1812 node: 97054abb4ab824450e9164180baf491ae0078465
1813 1813 node: b608e9d1a3f0273ccf70fb85fd6866b3482bf965
1814 1814 node: 1e4e1b8f71e05681d422154f5421e385fec3454f
1815 1815 node--verbose: 95c24699272ef57d062b8bccc32c878bf841784a
1816 1816 node--verbose: 29114dbae42b9f078cf2714dbe3a86bba8ec7453
1817 1817 node--verbose: d41e714fe50d9e4a5f11b4d595d543481b5f980b
1818 1818 node--verbose: 13207e5a10d9fd28ec424934298e176197f2c67f
1819 1819 node--verbose: bbe44766e73d5f11ed2177f1838de10c53ef3e74
1820 1820 node--verbose: 10e46f2dcbf4823578cf180f33ecf0b957964c47
1821 1821 node--verbose: 97054abb4ab824450e9164180baf491ae0078465
1822 1822 node--verbose: b608e9d1a3f0273ccf70fb85fd6866b3482bf965
1823 1823 node--verbose: 1e4e1b8f71e05681d422154f5421e385fec3454f
1824 1824 node--debug: 95c24699272ef57d062b8bccc32c878bf841784a
1825 1825 node--debug: 29114dbae42b9f078cf2714dbe3a86bba8ec7453
1826 1826 node--debug: d41e714fe50d9e4a5f11b4d595d543481b5f980b
1827 1827 node--debug: 13207e5a10d9fd28ec424934298e176197f2c67f
1828 1828 node--debug: bbe44766e73d5f11ed2177f1838de10c53ef3e74
1829 1829 node--debug: 10e46f2dcbf4823578cf180f33ecf0b957964c47
1830 1830 node--debug: 97054abb4ab824450e9164180baf491ae0078465
1831 1831 node--debug: b608e9d1a3f0273ccf70fb85fd6866b3482bf965
1832 1832 node--debug: 1e4e1b8f71e05681d422154f5421e385fec3454f
1833 1833 parents:
1834 1834 parents: -1:000000000000
1835 1835 parents: 5:13207e5a10d9 4:bbe44766e73d
1836 1836 parents: 3:10e46f2dcbf4
1837 1837 parents:
1838 1838 parents:
1839 1839 parents:
1840 1840 parents:
1841 1841 parents:
1842 1842 parents--verbose:
1843 1843 parents--verbose: -1:000000000000
1844 1844 parents--verbose: 5:13207e5a10d9 4:bbe44766e73d
1845 1845 parents--verbose: 3:10e46f2dcbf4
1846 1846 parents--verbose:
1847 1847 parents--verbose:
1848 1848 parents--verbose:
1849 1849 parents--verbose:
1850 1850 parents--verbose:
1851 1851 parents--debug: 7:29114dbae42b9f078cf2714dbe3a86bba8ec7453 -1:0000000000000000000000000000000000000000
1852 1852 parents--debug: -1:0000000000000000000000000000000000000000 -1:0000000000000000000000000000000000000000
1853 1853 parents--debug: 5:13207e5a10d9fd28ec424934298e176197f2c67f 4:bbe44766e73d5f11ed2177f1838de10c53ef3e74
1854 1854 parents--debug: 3:10e46f2dcbf4823578cf180f33ecf0b957964c47 -1:0000000000000000000000000000000000000000
1855 1855 parents--debug: 3:10e46f2dcbf4823578cf180f33ecf0b957964c47 -1:0000000000000000000000000000000000000000
1856 1856 parents--debug: 2:97054abb4ab824450e9164180baf491ae0078465 -1:0000000000000000000000000000000000000000
1857 1857 parents--debug: 1:b608e9d1a3f0273ccf70fb85fd6866b3482bf965 -1:0000000000000000000000000000000000000000
1858 1858 parents--debug: 0:1e4e1b8f71e05681d422154f5421e385fec3454f -1:0000000000000000000000000000000000000000
1859 1859 parents--debug: -1:0000000000000000000000000000000000000000 -1:0000000000000000000000000000000000000000
1860 1860 rev: 8
1861 1861 rev: 7
1862 1862 rev: 6
1863 1863 rev: 5
1864 1864 rev: 4
1865 1865 rev: 3
1866 1866 rev: 2
1867 1867 rev: 1
1868 1868 rev: 0
1869 1869 rev--verbose: 8
1870 1870 rev--verbose: 7
1871 1871 rev--verbose: 6
1872 1872 rev--verbose: 5
1873 1873 rev--verbose: 4
1874 1874 rev--verbose: 3
1875 1875 rev--verbose: 2
1876 1876 rev--verbose: 1
1877 1877 rev--verbose: 0
1878 1878 rev--debug: 8
1879 1879 rev--debug: 7
1880 1880 rev--debug: 6
1881 1881 rev--debug: 5
1882 1882 rev--debug: 4
1883 1883 rev--debug: 3
1884 1884 rev--debug: 2
1885 1885 rev--debug: 1
1886 1886 rev--debug: 0
1887 1887 tags: tip
1888 1888 tags:
1889 1889 tags:
1890 1890 tags:
1891 1891 tags:
1892 1892 tags:
1893 1893 tags:
1894 1894 tags:
1895 1895 tags:
1896 1896 tags--verbose: tip
1897 1897 tags--verbose:
1898 1898 tags--verbose:
1899 1899 tags--verbose:
1900 1900 tags--verbose:
1901 1901 tags--verbose:
1902 1902 tags--verbose:
1903 1903 tags--verbose:
1904 1904 tags--verbose:
1905 1905 tags--debug: tip
1906 1906 tags--debug:
1907 1907 tags--debug:
1908 1908 tags--debug:
1909 1909 tags--debug:
1910 1910 tags--debug:
1911 1911 tags--debug:
1912 1912 tags--debug:
1913 1913 tags--debug:
1914 1914 diffstat: 3: +2/-1
1915 1915 diffstat: 1: +1/-0
1916 1916 diffstat: 0: +0/-0
1917 1917 diffstat: 1: +1/-0
1918 1918 diffstat: 0: +0/-0
1919 1919 diffstat: 1: +1/-0
1920 1920 diffstat: 1: +4/-0
1921 1921 diffstat: 1: +2/-0
1922 1922 diffstat: 1: +1/-0
1923 1923 diffstat--verbose: 3: +2/-1
1924 1924 diffstat--verbose: 1: +1/-0
1925 1925 diffstat--verbose: 0: +0/-0
1926 1926 diffstat--verbose: 1: +1/-0
1927 1927 diffstat--verbose: 0: +0/-0
1928 1928 diffstat--verbose: 1: +1/-0
1929 1929 diffstat--verbose: 1: +4/-0
1930 1930 diffstat--verbose: 1: +2/-0
1931 1931 diffstat--verbose: 1: +1/-0
1932 1932 diffstat--debug: 3: +2/-1
1933 1933 diffstat--debug: 1: +1/-0
1934 1934 diffstat--debug: 0: +0/-0
1935 1935 diffstat--debug: 1: +1/-0
1936 1936 diffstat--debug: 0: +0/-0
1937 1937 diffstat--debug: 1: +1/-0
1938 1938 diffstat--debug: 1: +4/-0
1939 1939 diffstat--debug: 1: +2/-0
1940 1940 diffstat--debug: 1: +1/-0
1941 1941 extras: branch=default
1942 1942 extras: branch=default
1943 1943 extras: branch=default
1944 1944 extras: branch=default
1945 1945 extras: branch=foo
1946 1946 extras: branch=default
1947 1947 extras: branch=default
1948 1948 extras: branch=default
1949 1949 extras: branch=default
1950 1950 extras--verbose: branch=default
1951 1951 extras--verbose: branch=default
1952 1952 extras--verbose: branch=default
1953 1953 extras--verbose: branch=default
1954 1954 extras--verbose: branch=foo
1955 1955 extras--verbose: branch=default
1956 1956 extras--verbose: branch=default
1957 1957 extras--verbose: branch=default
1958 1958 extras--verbose: branch=default
1959 1959 extras--debug: branch=default
1960 1960 extras--debug: branch=default
1961 1961 extras--debug: branch=default
1962 1962 extras--debug: branch=default
1963 1963 extras--debug: branch=foo
1964 1964 extras--debug: branch=default
1965 1965 extras--debug: branch=default
1966 1966 extras--debug: branch=default
1967 1967 extras--debug: branch=default
1968 1968 p1rev: 7
1969 1969 p1rev: -1
1970 1970 p1rev: 5
1971 1971 p1rev: 3
1972 1972 p1rev: 3
1973 1973 p1rev: 2
1974 1974 p1rev: 1
1975 1975 p1rev: 0
1976 1976 p1rev: -1
1977 1977 p1rev--verbose: 7
1978 1978 p1rev--verbose: -1
1979 1979 p1rev--verbose: 5
1980 1980 p1rev--verbose: 3
1981 1981 p1rev--verbose: 3
1982 1982 p1rev--verbose: 2
1983 1983 p1rev--verbose: 1
1984 1984 p1rev--verbose: 0
1985 1985 p1rev--verbose: -1
1986 1986 p1rev--debug: 7
1987 1987 p1rev--debug: -1
1988 1988 p1rev--debug: 5
1989 1989 p1rev--debug: 3
1990 1990 p1rev--debug: 3
1991 1991 p1rev--debug: 2
1992 1992 p1rev--debug: 1
1993 1993 p1rev--debug: 0
1994 1994 p1rev--debug: -1
1995 1995 p2rev: -1
1996 1996 p2rev: -1
1997 1997 p2rev: 4
1998 1998 p2rev: -1
1999 1999 p2rev: -1
2000 2000 p2rev: -1
2001 2001 p2rev: -1
2002 2002 p2rev: -1
2003 2003 p2rev: -1
2004 2004 p2rev--verbose: -1
2005 2005 p2rev--verbose: -1
2006 2006 p2rev--verbose: 4
2007 2007 p2rev--verbose: -1
2008 2008 p2rev--verbose: -1
2009 2009 p2rev--verbose: -1
2010 2010 p2rev--verbose: -1
2011 2011 p2rev--verbose: -1
2012 2012 p2rev--verbose: -1
2013 2013 p2rev--debug: -1
2014 2014 p2rev--debug: -1
2015 2015 p2rev--debug: 4
2016 2016 p2rev--debug: -1
2017 2017 p2rev--debug: -1
2018 2018 p2rev--debug: -1
2019 2019 p2rev--debug: -1
2020 2020 p2rev--debug: -1
2021 2021 p2rev--debug: -1
2022 2022 p1node: 29114dbae42b9f078cf2714dbe3a86bba8ec7453
2023 2023 p1node: 0000000000000000000000000000000000000000
2024 2024 p1node: 13207e5a10d9fd28ec424934298e176197f2c67f
2025 2025 p1node: 10e46f2dcbf4823578cf180f33ecf0b957964c47
2026 2026 p1node: 10e46f2dcbf4823578cf180f33ecf0b957964c47
2027 2027 p1node: 97054abb4ab824450e9164180baf491ae0078465
2028 2028 p1node: b608e9d1a3f0273ccf70fb85fd6866b3482bf965
2029 2029 p1node: 1e4e1b8f71e05681d422154f5421e385fec3454f
2030 2030 p1node: 0000000000000000000000000000000000000000
2031 2031 p1node--verbose: 29114dbae42b9f078cf2714dbe3a86bba8ec7453
2032 2032 p1node--verbose: 0000000000000000000000000000000000000000
2033 2033 p1node--verbose: 13207e5a10d9fd28ec424934298e176197f2c67f
2034 2034 p1node--verbose: 10e46f2dcbf4823578cf180f33ecf0b957964c47
2035 2035 p1node--verbose: 10e46f2dcbf4823578cf180f33ecf0b957964c47
2036 2036 p1node--verbose: 97054abb4ab824450e9164180baf491ae0078465
2037 2037 p1node--verbose: b608e9d1a3f0273ccf70fb85fd6866b3482bf965
2038 2038 p1node--verbose: 1e4e1b8f71e05681d422154f5421e385fec3454f
2039 2039 p1node--verbose: 0000000000000000000000000000000000000000
2040 2040 p1node--debug: 29114dbae42b9f078cf2714dbe3a86bba8ec7453
2041 2041 p1node--debug: 0000000000000000000000000000000000000000
2042 2042 p1node--debug: 13207e5a10d9fd28ec424934298e176197f2c67f
2043 2043 p1node--debug: 10e46f2dcbf4823578cf180f33ecf0b957964c47
2044 2044 p1node--debug: 10e46f2dcbf4823578cf180f33ecf0b957964c47
2045 2045 p1node--debug: 97054abb4ab824450e9164180baf491ae0078465
2046 2046 p1node--debug: b608e9d1a3f0273ccf70fb85fd6866b3482bf965
2047 2047 p1node--debug: 1e4e1b8f71e05681d422154f5421e385fec3454f
2048 2048 p1node--debug: 0000000000000000000000000000000000000000
2049 2049 p2node: 0000000000000000000000000000000000000000
2050 2050 p2node: 0000000000000000000000000000000000000000
2051 2051 p2node: bbe44766e73d5f11ed2177f1838de10c53ef3e74
2052 2052 p2node: 0000000000000000000000000000000000000000
2053 2053 p2node: 0000000000000000000000000000000000000000
2054 2054 p2node: 0000000000000000000000000000000000000000
2055 2055 p2node: 0000000000000000000000000000000000000000
2056 2056 p2node: 0000000000000000000000000000000000000000
2057 2057 p2node: 0000000000000000000000000000000000000000
2058 2058 p2node--verbose: 0000000000000000000000000000000000000000
2059 2059 p2node--verbose: 0000000000000000000000000000000000000000
2060 2060 p2node--verbose: bbe44766e73d5f11ed2177f1838de10c53ef3e74
2061 2061 p2node--verbose: 0000000000000000000000000000000000000000
2062 2062 p2node--verbose: 0000000000000000000000000000000000000000
2063 2063 p2node--verbose: 0000000000000000000000000000000000000000
2064 2064 p2node--verbose: 0000000000000000000000000000000000000000
2065 2065 p2node--verbose: 0000000000000000000000000000000000000000
2066 2066 p2node--verbose: 0000000000000000000000000000000000000000
2067 2067 p2node--debug: 0000000000000000000000000000000000000000
2068 2068 p2node--debug: 0000000000000000000000000000000000000000
2069 2069 p2node--debug: bbe44766e73d5f11ed2177f1838de10c53ef3e74
2070 2070 p2node--debug: 0000000000000000000000000000000000000000
2071 2071 p2node--debug: 0000000000000000000000000000000000000000
2072 2072 p2node--debug: 0000000000000000000000000000000000000000
2073 2073 p2node--debug: 0000000000000000000000000000000000000000
2074 2074 p2node--debug: 0000000000000000000000000000000000000000
2075 2075 p2node--debug: 0000000000000000000000000000000000000000
2076 2076
2077 2077 Filters work:
2078 2078
2079 2079 $ hg log --template '{author|domain}\n'
2080 2080
2081 2081 hostname
2082 2082
2083 2083
2084 2084
2085 2085
2086 2086 place
2087 2087 place
2088 2088 hostname
2089 2089
2090 2090 $ hg log --template '{author|person}\n'
2091 2091 test
2092 2092 User Name
2093 2093 person
2094 2094 person
2095 2095 person
2096 2096 person
2097 2097 other
2098 2098 A. N. Other
2099 2099 User Name
2100 2100
2101 2101 $ hg log --template '{author|user}\n'
2102 2102 test
2103 2103 user
2104 2104 person
2105 2105 person
2106 2106 person
2107 2107 person
2108 2108 other
2109 2109 other
2110 2110 user
2111 2111
2112 2112 $ hg log --template '{date|date}\n'
2113 2113 Wed Jan 01 10:01:00 2020 +0000
2114 2114 Mon Jan 12 13:46:40 1970 +0000
2115 2115 Sun Jan 18 08:40:01 1970 +0000
2116 2116 Sun Jan 18 08:40:00 1970 +0000
2117 2117 Sat Jan 17 04:53:20 1970 +0000
2118 2118 Fri Jan 16 01:06:40 1970 +0000
2119 2119 Wed Jan 14 21:20:00 1970 +0000
2120 2120 Tue Jan 13 17:33:20 1970 +0000
2121 2121 Mon Jan 12 13:46:40 1970 +0000
2122 2122
2123 2123 $ hg log --template '{date|isodate}\n'
2124 2124 2020-01-01 10:01 +0000
2125 2125 1970-01-12 13:46 +0000
2126 2126 1970-01-18 08:40 +0000
2127 2127 1970-01-18 08:40 +0000
2128 2128 1970-01-17 04:53 +0000
2129 2129 1970-01-16 01:06 +0000
2130 2130 1970-01-14 21:20 +0000
2131 2131 1970-01-13 17:33 +0000
2132 2132 1970-01-12 13:46 +0000
2133 2133
2134 2134 $ hg log --template '{date|isodatesec}\n'
2135 2135 2020-01-01 10:01:00 +0000
2136 2136 1970-01-12 13:46:40 +0000
2137 2137 1970-01-18 08:40:01 +0000
2138 2138 1970-01-18 08:40:00 +0000
2139 2139 1970-01-17 04:53:20 +0000
2140 2140 1970-01-16 01:06:40 +0000
2141 2141 1970-01-14 21:20:00 +0000
2142 2142 1970-01-13 17:33:20 +0000
2143 2143 1970-01-12 13:46:40 +0000
2144 2144
2145 2145 $ hg log --template '{date|rfc822date}\n'
2146 2146 Wed, 01 Jan 2020 10:01:00 +0000
2147 2147 Mon, 12 Jan 1970 13:46:40 +0000
2148 2148 Sun, 18 Jan 1970 08:40:01 +0000
2149 2149 Sun, 18 Jan 1970 08:40:00 +0000
2150 2150 Sat, 17 Jan 1970 04:53:20 +0000
2151 2151 Fri, 16 Jan 1970 01:06:40 +0000
2152 2152 Wed, 14 Jan 1970 21:20:00 +0000
2153 2153 Tue, 13 Jan 1970 17:33:20 +0000
2154 2154 Mon, 12 Jan 1970 13:46:40 +0000
2155 2155
2156 2156 $ hg log --template '{desc|firstline}\n'
2157 2157 third
2158 2158 second
2159 2159 merge
2160 2160 new head
2161 2161 new branch
2162 2162 no user, no domain
2163 2163 no person
2164 2164 other 1
2165 2165 line 1
2166 2166
2167 2167 $ hg log --template '{node|short}\n'
2168 2168 95c24699272e
2169 2169 29114dbae42b
2170 2170 d41e714fe50d
2171 2171 13207e5a10d9
2172 2172 bbe44766e73d
2173 2173 10e46f2dcbf4
2174 2174 97054abb4ab8
2175 2175 b608e9d1a3f0
2176 2176 1e4e1b8f71e0
2177 2177
2178 2178 $ hg log --template '<changeset author="{author|xmlescape}"/>\n'
2179 2179 <changeset author="test"/>
2180 2180 <changeset author="User Name &lt;user@hostname&gt;"/>
2181 2181 <changeset author="person"/>
2182 2182 <changeset author="person"/>
2183 2183 <changeset author="person"/>
2184 2184 <changeset author="person"/>
2185 2185 <changeset author="other@place"/>
2186 2186 <changeset author="A. N. Other &lt;other@place&gt;"/>
2187 2187 <changeset author="User Name &lt;user@hostname&gt;"/>
2188 2188
2189 2189 $ hg log --template '{rev}: {children}\n'
2190 2190 8:
2191 2191 7: 8:95c24699272e
2192 2192 6:
2193 2193 5: 6:d41e714fe50d
2194 2194 4: 6:d41e714fe50d
2195 2195 3: 4:bbe44766e73d 5:13207e5a10d9
2196 2196 2: 3:10e46f2dcbf4
2197 2197 1: 2:97054abb4ab8
2198 2198 0: 1:b608e9d1a3f0
2199 2199
2200 2200 Formatnode filter works:
2201 2201
2202 2202 $ hg -q log -r 0 --template '{node|formatnode}\n'
2203 2203 1e4e1b8f71e0
2204 2204
2205 2205 $ hg log -r 0 --template '{node|formatnode}\n'
2206 2206 1e4e1b8f71e0
2207 2207
2208 2208 $ hg -v log -r 0 --template '{node|formatnode}\n'
2209 2209 1e4e1b8f71e0
2210 2210
2211 2211 $ hg --debug log -r 0 --template '{node|formatnode}\n'
2212 2212 1e4e1b8f71e05681d422154f5421e385fec3454f
2213 2213
2214 2214 Age filter:
2215 2215
2216 2216 $ hg init unstable-hash
2217 2217 $ cd unstable-hash
2218 2218 $ hg log --template '{date|age}\n' > /dev/null || exit 1
2219 2219
2220 2220 >>> from __future__ import absolute_import
2221 2221 >>> import datetime
2222 2222 >>> fp = open('a', 'wb')
2223 2223 >>> n = datetime.datetime.now() + datetime.timedelta(366 * 7)
2224 2224 >>> fp.write(b'%d-%d-%d 00:00' % (n.year, n.month, n.day)) and None
2225 2225 >>> fp.close()
2226 2226 $ hg add a
2227 2227 $ hg commit -m future -d "`cat a`"
2228 2228
2229 2229 $ hg log -l1 --template '{date|age}\n'
2230 2230 7 years from now
2231 2231
2232 2232 $ cd ..
2233 2233 $ rm -rf unstable-hash
2234 2234
2235 2235 Filename filters:
2236 2236
2237 2237 $ hg debugtemplate '{"foo/bar"|basename}|{"foo/"|basename}|{"foo"|basename}|\n'
2238 2238 bar||foo|
2239 2239 $ hg debugtemplate '{"foo/bar"|dirname}|{"foo/"|dirname}|{"foo"|dirname}|\n'
2240 2240 foo|foo||
2241 2241 $ hg debugtemplate '{"foo/bar"|stripdir}|{"foo/"|stripdir}|{"foo"|stripdir}|\n'
2242 2242 foo|foo|foo|
2243 2243
2244 2244 Add a dummy commit to make up for the instability of the above:
2245 2245
2246 2246 $ echo a > a
2247 2247 $ hg add a
2248 2248 $ hg ci -m future
2249 2249
2250 2250 Count filter:
2251 2251
2252 2252 $ hg log -l1 --template '{node|count} {node|short|count}\n'
2253 2253 40 12
2254 2254
2255 2255 $ hg log -l1 --template '{revset("null^")|count} {revset(".")|count} {revset("0::3")|count}\n'
2256 2256 0 1 4
2257 2257
2258 2258 $ hg log -G --template '{rev}: children: {children|count}, \
2259 2259 > tags: {tags|count}, file_adds: {file_adds|count}, \
2260 2260 > ancestors: {revset("ancestors(%s)", rev)|count}'
2261 2261 @ 9: children: 0, tags: 1, file_adds: 1, ancestors: 3
2262 2262 |
2263 2263 o 8: children: 1, tags: 0, file_adds: 2, ancestors: 2
2264 2264 |
2265 2265 o 7: children: 1, tags: 0, file_adds: 1, ancestors: 1
2266 2266
2267 2267 o 6: children: 0, tags: 0, file_adds: 0, ancestors: 7
2268 2268 |\
2269 2269 | o 5: children: 1, tags: 0, file_adds: 1, ancestors: 5
2270 2270 | |
2271 2271 o | 4: children: 1, tags: 0, file_adds: 0, ancestors: 5
2272 2272 |/
2273 2273 o 3: children: 2, tags: 0, file_adds: 0, ancestors: 4
2274 2274 |
2275 2275 o 2: children: 1, tags: 0, file_adds: 1, ancestors: 3
2276 2276 |
2277 2277 o 1: children: 1, tags: 0, file_adds: 1, ancestors: 2
2278 2278 |
2279 2279 o 0: children: 1, tags: 0, file_adds: 1, ancestors: 1
2280 2280
2281 2281
2282 2282 $ hg log -l1 -T '{termwidth|count}\n'
2283 2283 hg: parse error: not countable
2284 2284 (template filter 'count' is not compatible with keyword 'termwidth')
2285 2285 [255]
2286 2286
2287 2287 Upper/lower filters:
2288 2288
2289 2289 $ hg log -r0 --template '{branch|upper}\n'
2290 2290 DEFAULT
2291 2291 $ hg log -r0 --template '{author|lower}\n'
2292 2292 user name <user@hostname>
2293 2293 $ hg log -r0 --template '{date|upper}\n'
2294 2294 1000000.00
2295 2295
2296 2296 Add a commit that does all possible modifications at once
2297 2297
2298 2298 $ echo modify >> third
2299 2299 $ touch b
2300 2300 $ hg add b
2301 2301 $ hg mv fourth fifth
2302 2302 $ hg rm a
2303 2303 $ hg ci -m "Modify, add, remove, rename"
2304 2304
2305 2305 Check the status template
2306 2306
2307 2307 $ cat <<EOF >> $HGRCPATH
2308 2308 > [extensions]
2309 2309 > color=
2310 2310 > EOF
2311 2311
2312 2312 $ hg log -T status -r 10
2313 2313 changeset: 10:0f9759ec227a
2314 2314 tag: tip
2315 2315 user: test
2316 2316 date: Thu Jan 01 00:00:00 1970 +0000
2317 2317 summary: Modify, add, remove, rename
2318 2318 files:
2319 2319 M third
2320 2320 A b
2321 2321 A fifth
2322 2322 R a
2323 2323 R fourth
2324 2324
2325 2325 $ hg log -T status -C -r 10
2326 2326 changeset: 10:0f9759ec227a
2327 2327 tag: tip
2328 2328 user: test
2329 2329 date: Thu Jan 01 00:00:00 1970 +0000
2330 2330 summary: Modify, add, remove, rename
2331 2331 files:
2332 2332 M third
2333 2333 A b
2334 2334 A fifth
2335 2335 fourth
2336 2336 R a
2337 2337 R fourth
2338 2338
2339 2339 $ hg log -T status -C -r 10 -v
2340 2340 changeset: 10:0f9759ec227a
2341 2341 tag: tip
2342 2342 user: test
2343 2343 date: Thu Jan 01 00:00:00 1970 +0000
2344 2344 description:
2345 2345 Modify, add, remove, rename
2346 2346
2347 2347 files:
2348 2348 M third
2349 2349 A b
2350 2350 A fifth
2351 2351 fourth
2352 2352 R a
2353 2353 R fourth
2354 2354
2355 2355 $ hg log -T status -C -r 10 --debug
2356 2356 changeset: 10:0f9759ec227a4859c2014a345cd8a859022b7c6c
2357 2357 tag: tip
2358 2358 phase: secret
2359 2359 parent: 9:bf9dfba36635106d6a73ccc01e28b762da60e066
2360 2360 parent: -1:0000000000000000000000000000000000000000
2361 2361 manifest: 8:89dd546f2de0a9d6d664f58d86097eb97baba567
2362 2362 user: test
2363 2363 date: Thu Jan 01 00:00:00 1970 +0000
2364 2364 extra: branch=default
2365 2365 description:
2366 2366 Modify, add, remove, rename
2367 2367
2368 2368 files:
2369 2369 M third
2370 2370 A b
2371 2371 A fifth
2372 2372 fourth
2373 2373 R a
2374 2374 R fourth
2375 2375
2376 2376 $ hg log -T status -C -r 10 --quiet
2377 2377 10:0f9759ec227a
2378 2378 $ hg --color=debug log -T status -r 10
2379 2379 [log.changeset changeset.secret|changeset: 10:0f9759ec227a]
2380 2380 [log.tag|tag: tip]
2381 2381 [log.user|user: test]
2382 2382 [log.date|date: Thu Jan 01 00:00:00 1970 +0000]
2383 2383 [log.summary|summary: Modify, add, remove, rename]
2384 2384 [ui.note log.files|files:]
2385 2385 [status.modified|M third]
2386 2386 [status.added|A b]
2387 2387 [status.added|A fifth]
2388 2388 [status.removed|R a]
2389 2389 [status.removed|R fourth]
2390 2390
2391 2391 $ hg --color=debug log -T status -C -r 10
2392 2392 [log.changeset changeset.secret|changeset: 10:0f9759ec227a]
2393 2393 [log.tag|tag: tip]
2394 2394 [log.user|user: test]
2395 2395 [log.date|date: Thu Jan 01 00:00:00 1970 +0000]
2396 2396 [log.summary|summary: Modify, add, remove, rename]
2397 2397 [ui.note log.files|files:]
2398 2398 [status.modified|M third]
2399 2399 [status.added|A b]
2400 2400 [status.added|A fifth]
2401 2401 [status.copied| fourth]
2402 2402 [status.removed|R a]
2403 2403 [status.removed|R fourth]
2404 2404
2405 2405 $ hg --color=debug log -T status -C -r 10 -v
2406 2406 [log.changeset changeset.secret|changeset: 10:0f9759ec227a]
2407 2407 [log.tag|tag: tip]
2408 2408 [log.user|user: test]
2409 2409 [log.date|date: Thu Jan 01 00:00:00 1970 +0000]
2410 2410 [ui.note log.description|description:]
2411 2411 [ui.note log.description|Modify, add, remove, rename]
2412 2412
2413 2413 [ui.note log.files|files:]
2414 2414 [status.modified|M third]
2415 2415 [status.added|A b]
2416 2416 [status.added|A fifth]
2417 2417 [status.copied| fourth]
2418 2418 [status.removed|R a]
2419 2419 [status.removed|R fourth]
2420 2420
2421 2421 $ hg --color=debug log -T status -C -r 10 --debug
2422 2422 [log.changeset changeset.secret|changeset: 10:0f9759ec227a4859c2014a345cd8a859022b7c6c]
2423 2423 [log.tag|tag: tip]
2424 2424 [log.phase|phase: secret]
2425 2425 [log.parent changeset.secret|parent: 9:bf9dfba36635106d6a73ccc01e28b762da60e066]
2426 2426 [log.parent changeset.public|parent: -1:0000000000000000000000000000000000000000]
2427 2427 [ui.debug log.manifest|manifest: 8:89dd546f2de0a9d6d664f58d86097eb97baba567]
2428 2428 [log.user|user: test]
2429 2429 [log.date|date: Thu Jan 01 00:00:00 1970 +0000]
2430 2430 [ui.debug log.extra|extra: branch=default]
2431 2431 [ui.note log.description|description:]
2432 2432 [ui.note log.description|Modify, add, remove, rename]
2433 2433
2434 2434 [ui.note log.files|files:]
2435 2435 [status.modified|M third]
2436 2436 [status.added|A b]
2437 2437 [status.added|A fifth]
2438 2438 [status.copied| fourth]
2439 2439 [status.removed|R a]
2440 2440 [status.removed|R fourth]
2441 2441
2442 2442 $ hg --color=debug log -T status -C -r 10 --quiet
2443 2443 [log.node|10:0f9759ec227a]
2444 2444
2445 2445 Check the bisect template
2446 2446
2447 2447 $ hg bisect -g 1
2448 2448 $ hg bisect -b 3 --noupdate
2449 2449 Testing changeset 2:97054abb4ab8 (2 changesets remaining, ~1 tests)
2450 2450 $ hg log -T bisect -r 0:4
2451 2451 changeset: 0:1e4e1b8f71e0
2452 2452 bisect: good (implicit)
2453 2453 user: User Name <user@hostname>
2454 2454 date: Mon Jan 12 13:46:40 1970 +0000
2455 2455 summary: line 1
2456 2456
2457 2457 changeset: 1:b608e9d1a3f0
2458 2458 bisect: good
2459 2459 user: A. N. Other <other@place>
2460 2460 date: Tue Jan 13 17:33:20 1970 +0000
2461 2461 summary: other 1
2462 2462
2463 2463 changeset: 2:97054abb4ab8
2464 2464 bisect: untested
2465 2465 user: other@place
2466 2466 date: Wed Jan 14 21:20:00 1970 +0000
2467 2467 summary: no person
2468 2468
2469 2469 changeset: 3:10e46f2dcbf4
2470 2470 bisect: bad
2471 2471 user: person
2472 2472 date: Fri Jan 16 01:06:40 1970 +0000
2473 2473 summary: no user, no domain
2474 2474
2475 2475 changeset: 4:bbe44766e73d
2476 2476 bisect: bad (implicit)
2477 2477 branch: foo
2478 2478 user: person
2479 2479 date: Sat Jan 17 04:53:20 1970 +0000
2480 2480 summary: new branch
2481 2481
2482 2482 $ hg log --debug -T bisect -r 0:4
2483 2483 changeset: 0:1e4e1b8f71e05681d422154f5421e385fec3454f
2484 2484 bisect: good (implicit)
2485 2485 phase: public
2486 2486 parent: -1:0000000000000000000000000000000000000000
2487 2487 parent: -1:0000000000000000000000000000000000000000
2488 2488 manifest: 0:a0c8bcbbb45c63b90b70ad007bf38961f64f2af0
2489 2489 user: User Name <user@hostname>
2490 2490 date: Mon Jan 12 13:46:40 1970 +0000
2491 2491 files+: a
2492 2492 extra: branch=default
2493 2493 description:
2494 2494 line 1
2495 2495 line 2
2496 2496
2497 2497
2498 2498 changeset: 1:b608e9d1a3f0273ccf70fb85fd6866b3482bf965
2499 2499 bisect: good
2500 2500 phase: public
2501 2501 parent: 0:1e4e1b8f71e05681d422154f5421e385fec3454f
2502 2502 parent: -1:0000000000000000000000000000000000000000
2503 2503 manifest: 1:4e8d705b1e53e3f9375e0e60dc7b525d8211fe55
2504 2504 user: A. N. Other <other@place>
2505 2505 date: Tue Jan 13 17:33:20 1970 +0000
2506 2506 files+: b
2507 2507 extra: branch=default
2508 2508 description:
2509 2509 other 1
2510 2510 other 2
2511 2511
2512 2512 other 3
2513 2513
2514 2514
2515 2515 changeset: 2:97054abb4ab824450e9164180baf491ae0078465
2516 2516 bisect: untested
2517 2517 phase: public
2518 2518 parent: 1:b608e9d1a3f0273ccf70fb85fd6866b3482bf965
2519 2519 parent: -1:0000000000000000000000000000000000000000
2520 2520 manifest: 2:6e0e82995c35d0d57a52aca8da4e56139e06b4b1
2521 2521 user: other@place
2522 2522 date: Wed Jan 14 21:20:00 1970 +0000
2523 2523 files+: c
2524 2524 extra: branch=default
2525 2525 description:
2526 2526 no person
2527 2527
2528 2528
2529 2529 changeset: 3:10e46f2dcbf4823578cf180f33ecf0b957964c47
2530 2530 bisect: bad
2531 2531 phase: public
2532 2532 parent: 2:97054abb4ab824450e9164180baf491ae0078465
2533 2533 parent: -1:0000000000000000000000000000000000000000
2534 2534 manifest: 3:cb5a1327723bada42f117e4c55a303246eaf9ccc
2535 2535 user: person
2536 2536 date: Fri Jan 16 01:06:40 1970 +0000
2537 2537 files: c
2538 2538 extra: branch=default
2539 2539 description:
2540 2540 no user, no domain
2541 2541
2542 2542
2543 2543 changeset: 4:bbe44766e73d5f11ed2177f1838de10c53ef3e74
2544 2544 bisect: bad (implicit)
2545 2545 branch: foo
2546 2546 phase: draft
2547 2547 parent: 3:10e46f2dcbf4823578cf180f33ecf0b957964c47
2548 2548 parent: -1:0000000000000000000000000000000000000000
2549 2549 manifest: 3:cb5a1327723bada42f117e4c55a303246eaf9ccc
2550 2550 user: person
2551 2551 date: Sat Jan 17 04:53:20 1970 +0000
2552 2552 extra: branch=foo
2553 2553 description:
2554 2554 new branch
2555 2555
2556 2556
2557 2557 $ hg log -v -T bisect -r 0:4
2558 2558 changeset: 0:1e4e1b8f71e0
2559 2559 bisect: good (implicit)
2560 2560 user: User Name <user@hostname>
2561 2561 date: Mon Jan 12 13:46:40 1970 +0000
2562 2562 files: a
2563 2563 description:
2564 2564 line 1
2565 2565 line 2
2566 2566
2567 2567
2568 2568 changeset: 1:b608e9d1a3f0
2569 2569 bisect: good
2570 2570 user: A. N. Other <other@place>
2571 2571 date: Tue Jan 13 17:33:20 1970 +0000
2572 2572 files: b
2573 2573 description:
2574 2574 other 1
2575 2575 other 2
2576 2576
2577 2577 other 3
2578 2578
2579 2579
2580 2580 changeset: 2:97054abb4ab8
2581 2581 bisect: untested
2582 2582 user: other@place
2583 2583 date: Wed Jan 14 21:20:00 1970 +0000
2584 2584 files: c
2585 2585 description:
2586 2586 no person
2587 2587
2588 2588
2589 2589 changeset: 3:10e46f2dcbf4
2590 2590 bisect: bad
2591 2591 user: person
2592 2592 date: Fri Jan 16 01:06:40 1970 +0000
2593 2593 files: c
2594 2594 description:
2595 2595 no user, no domain
2596 2596
2597 2597
2598 2598 changeset: 4:bbe44766e73d
2599 2599 bisect: bad (implicit)
2600 2600 branch: foo
2601 2601 user: person
2602 2602 date: Sat Jan 17 04:53:20 1970 +0000
2603 2603 description:
2604 2604 new branch
2605 2605
2606 2606
2607 2607 $ hg --color=debug log -T bisect -r 0:4
2608 2608 [log.changeset changeset.public|changeset: 0:1e4e1b8f71e0]
2609 2609 [log.bisect bisect.good|bisect: good (implicit)]
2610 2610 [log.user|user: User Name <user@hostname>]
2611 2611 [log.date|date: Mon Jan 12 13:46:40 1970 +0000]
2612 2612 [log.summary|summary: line 1]
2613 2613
2614 2614 [log.changeset changeset.public|changeset: 1:b608e9d1a3f0]
2615 2615 [log.bisect bisect.good|bisect: good]
2616 2616 [log.user|user: A. N. Other <other@place>]
2617 2617 [log.date|date: Tue Jan 13 17:33:20 1970 +0000]
2618 2618 [log.summary|summary: other 1]
2619 2619
2620 2620 [log.changeset changeset.public|changeset: 2:97054abb4ab8]
2621 2621 [log.bisect bisect.untested|bisect: untested]
2622 2622 [log.user|user: other@place]
2623 2623 [log.date|date: Wed Jan 14 21:20:00 1970 +0000]
2624 2624 [log.summary|summary: no person]
2625 2625
2626 2626 [log.changeset changeset.public|changeset: 3:10e46f2dcbf4]
2627 2627 [log.bisect bisect.bad|bisect: bad]
2628 2628 [log.user|user: person]
2629 2629 [log.date|date: Fri Jan 16 01:06:40 1970 +0000]
2630 2630 [log.summary|summary: no user, no domain]
2631 2631
2632 2632 [log.changeset changeset.draft|changeset: 4:bbe44766e73d]
2633 2633 [log.bisect bisect.bad|bisect: bad (implicit)]
2634 2634 [log.branch|branch: foo]
2635 2635 [log.user|user: person]
2636 2636 [log.date|date: Sat Jan 17 04:53:20 1970 +0000]
2637 2637 [log.summary|summary: new branch]
2638 2638
2639 2639 $ hg --color=debug log --debug -T bisect -r 0:4
2640 2640 [log.changeset changeset.public|changeset: 0:1e4e1b8f71e05681d422154f5421e385fec3454f]
2641 2641 [log.bisect bisect.good|bisect: good (implicit)]
2642 2642 [log.phase|phase: public]
2643 2643 [log.parent changeset.public|parent: -1:0000000000000000000000000000000000000000]
2644 2644 [log.parent changeset.public|parent: -1:0000000000000000000000000000000000000000]
2645 2645 [ui.debug log.manifest|manifest: 0:a0c8bcbbb45c63b90b70ad007bf38961f64f2af0]
2646 2646 [log.user|user: User Name <user@hostname>]
2647 2647 [log.date|date: Mon Jan 12 13:46:40 1970 +0000]
2648 2648 [ui.debug log.files|files+: a]
2649 2649 [ui.debug log.extra|extra: branch=default]
2650 2650 [ui.note log.description|description:]
2651 2651 [ui.note log.description|line 1
2652 2652 line 2]
2653 2653
2654 2654
2655 2655 [log.changeset changeset.public|changeset: 1:b608e9d1a3f0273ccf70fb85fd6866b3482bf965]
2656 2656 [log.bisect bisect.good|bisect: good]
2657 2657 [log.phase|phase: public]
2658 2658 [log.parent changeset.public|parent: 0:1e4e1b8f71e05681d422154f5421e385fec3454f]
2659 2659 [log.parent changeset.public|parent: -1:0000000000000000000000000000000000000000]
2660 2660 [ui.debug log.manifest|manifest: 1:4e8d705b1e53e3f9375e0e60dc7b525d8211fe55]
2661 2661 [log.user|user: A. N. Other <other@place>]
2662 2662 [log.date|date: Tue Jan 13 17:33:20 1970 +0000]
2663 2663 [ui.debug log.files|files+: b]
2664 2664 [ui.debug log.extra|extra: branch=default]
2665 2665 [ui.note log.description|description:]
2666 2666 [ui.note log.description|other 1
2667 2667 other 2
2668 2668
2669 2669 other 3]
2670 2670
2671 2671
2672 2672 [log.changeset changeset.public|changeset: 2:97054abb4ab824450e9164180baf491ae0078465]
2673 2673 [log.bisect bisect.untested|bisect: untested]
2674 2674 [log.phase|phase: public]
2675 2675 [log.parent changeset.public|parent: 1:b608e9d1a3f0273ccf70fb85fd6866b3482bf965]
2676 2676 [log.parent changeset.public|parent: -1:0000000000000000000000000000000000000000]
2677 2677 [ui.debug log.manifest|manifest: 2:6e0e82995c35d0d57a52aca8da4e56139e06b4b1]
2678 2678 [log.user|user: other@place]
2679 2679 [log.date|date: Wed Jan 14 21:20:00 1970 +0000]
2680 2680 [ui.debug log.files|files+: c]
2681 2681 [ui.debug log.extra|extra: branch=default]
2682 2682 [ui.note log.description|description:]
2683 2683 [ui.note log.description|no person]
2684 2684
2685 2685
2686 2686 [log.changeset changeset.public|changeset: 3:10e46f2dcbf4823578cf180f33ecf0b957964c47]
2687 2687 [log.bisect bisect.bad|bisect: bad]
2688 2688 [log.phase|phase: public]
2689 2689 [log.parent changeset.public|parent: 2:97054abb4ab824450e9164180baf491ae0078465]
2690 2690 [log.parent changeset.public|parent: -1:0000000000000000000000000000000000000000]
2691 2691 [ui.debug log.manifest|manifest: 3:cb5a1327723bada42f117e4c55a303246eaf9ccc]
2692 2692 [log.user|user: person]
2693 2693 [log.date|date: Fri Jan 16 01:06:40 1970 +0000]
2694 2694 [ui.debug log.files|files: c]
2695 2695 [ui.debug log.extra|extra: branch=default]
2696 2696 [ui.note log.description|description:]
2697 2697 [ui.note log.description|no user, no domain]
2698 2698
2699 2699
2700 2700 [log.changeset changeset.draft|changeset: 4:bbe44766e73d5f11ed2177f1838de10c53ef3e74]
2701 2701 [log.bisect bisect.bad|bisect: bad (implicit)]
2702 2702 [log.branch|branch: foo]
2703 2703 [log.phase|phase: draft]
2704 2704 [log.parent changeset.public|parent: 3:10e46f2dcbf4823578cf180f33ecf0b957964c47]
2705 2705 [log.parent changeset.public|parent: -1:0000000000000000000000000000000000000000]
2706 2706 [ui.debug log.manifest|manifest: 3:cb5a1327723bada42f117e4c55a303246eaf9ccc]
2707 2707 [log.user|user: person]
2708 2708 [log.date|date: Sat Jan 17 04:53:20 1970 +0000]
2709 2709 [ui.debug log.extra|extra: branch=foo]
2710 2710 [ui.note log.description|description:]
2711 2711 [ui.note log.description|new branch]
2712 2712
2713 2713
2714 2714 $ hg --color=debug log -v -T bisect -r 0:4
2715 2715 [log.changeset changeset.public|changeset: 0:1e4e1b8f71e0]
2716 2716 [log.bisect bisect.good|bisect: good (implicit)]
2717 2717 [log.user|user: User Name <user@hostname>]
2718 2718 [log.date|date: Mon Jan 12 13:46:40 1970 +0000]
2719 2719 [ui.note log.files|files: a]
2720 2720 [ui.note log.description|description:]
2721 2721 [ui.note log.description|line 1
2722 2722 line 2]
2723 2723
2724 2724
2725 2725 [log.changeset changeset.public|changeset: 1:b608e9d1a3f0]
2726 2726 [log.bisect bisect.good|bisect: good]
2727 2727 [log.user|user: A. N. Other <other@place>]
2728 2728 [log.date|date: Tue Jan 13 17:33:20 1970 +0000]
2729 2729 [ui.note log.files|files: b]
2730 2730 [ui.note log.description|description:]
2731 2731 [ui.note log.description|other 1
2732 2732 other 2
2733 2733
2734 2734 other 3]
2735 2735
2736 2736
2737 2737 [log.changeset changeset.public|changeset: 2:97054abb4ab8]
2738 2738 [log.bisect bisect.untested|bisect: untested]
2739 2739 [log.user|user: other@place]
2740 2740 [log.date|date: Wed Jan 14 21:20:00 1970 +0000]
2741 2741 [ui.note log.files|files: c]
2742 2742 [ui.note log.description|description:]
2743 2743 [ui.note log.description|no person]
2744 2744
2745 2745
2746 2746 [log.changeset changeset.public|changeset: 3:10e46f2dcbf4]
2747 2747 [log.bisect bisect.bad|bisect: bad]
2748 2748 [log.user|user: person]
2749 2749 [log.date|date: Fri Jan 16 01:06:40 1970 +0000]
2750 2750 [ui.note log.files|files: c]
2751 2751 [ui.note log.description|description:]
2752 2752 [ui.note log.description|no user, no domain]
2753 2753
2754 2754
2755 2755 [log.changeset changeset.draft|changeset: 4:bbe44766e73d]
2756 2756 [log.bisect bisect.bad|bisect: bad (implicit)]
2757 2757 [log.branch|branch: foo]
2758 2758 [log.user|user: person]
2759 2759 [log.date|date: Sat Jan 17 04:53:20 1970 +0000]
2760 2760 [ui.note log.description|description:]
2761 2761 [ui.note log.description|new branch]
2762 2762
2763 2763
2764 2764 $ hg bisect --reset
2765 2765
2766 2766 Error on syntax:
2767 2767
2768 2768 $ echo 'x = "f' >> t
2769 2769 $ hg log
2770 2770 hg: parse error at t:3: unmatched quotes
2771 2771 [255]
2772 2772
2773 2773 $ hg log -T '{date'
2774 2774 hg: parse error at 1: unterminated template expansion
2775 2775 ({date
2776 2776 ^ here)
2777 2777 [255]
2778 2778 $ hg log -T '{date(}'
2779 2779 hg: parse error at 6: not a prefix: end
2780 2780 ({date(}
2781 2781 ^ here)
2782 2782 [255]
2783 2783 $ hg log -T '{date)}'
2784 2784 hg: parse error at 5: invalid token
2785 2785 ({date)}
2786 2786 ^ here)
2787 2787 [255]
2788 2788 $ hg log -T '{date date}'
2789 2789 hg: parse error at 6: invalid token
2790 2790 ({date date}
2791 2791 ^ here)
2792 2792 [255]
2793 2793
2794 2794 $ hg log -T '{}'
2795 2795 hg: parse error at 1: not a prefix: end
2796 2796 ({}
2797 2797 ^ here)
2798 2798 [255]
2799 2799 $ hg debugtemplate -v '{()}'
2800 2800 (template
2801 2801 (group
2802 2802 None))
2803 2803 hg: parse error: missing argument
2804 2804 [255]
2805 2805
2806 2806 Behind the scenes, this would throw TypeError without intype=bytes
2807 2807
2808 2808 $ hg log -l 3 --template '{date|obfuscate}\n'
2809 2809 &#48;&#46;&#48;&#48;
2810 2810 &#48;&#46;&#48;&#48;
2811 2811 &#49;&#53;&#55;&#55;&#56;&#55;&#50;&#56;&#54;&#48;&#46;&#48;&#48;
2812 2812
2813 2813 Behind the scenes, this will throw a ValueError
2814 2814
2815 2815 $ hg log -l 3 --template 'line: {desc|shortdate}\n'
2816 2816 hg: parse error: invalid date: 'Modify, add, remove, rename'
2817 2817 (template filter 'shortdate' is not compatible with keyword 'desc')
2818 2818 [255]
2819 2819
2820 2820 Behind the scenes, this would throw AttributeError without intype=bytes
2821 2821
2822 2822 $ hg log -l 3 --template 'line: {date|escape}\n'
2823 2823 line: 0.00
2824 2824 line: 0.00
2825 2825 line: 1577872860.00
2826 2826
2827 2827 $ hg log -l 3 --template 'line: {extras|localdate}\n'
2828 2828 hg: parse error: localdate expects a date information
2829 2829 [255]
2830 2830
2831 2831 Behind the scenes, this will throw ValueError
2832 2832
2833 2833 $ hg tip --template '{author|email|date}\n'
2834 2834 hg: parse error: date expects a date information
2835 2835 [255]
2836 2836
2837 2837 $ hg tip -T '{author|email|shortdate}\n'
2838 2838 hg: parse error: invalid date: 'test'
2839 2839 (template filter 'shortdate' is not compatible with keyword 'author')
2840 2840 [255]
2841 2841
2842 2842 $ hg tip -T '{get(extras, "branch")|shortdate}\n'
2843 2843 hg: parse error: invalid date: 'default'
2844 2844 (incompatible use of template filter 'shortdate')
2845 2845 [255]
2846 2846
2847 2847 Error in nested template:
2848 2848
2849 2849 $ hg log -T '{"date'
2850 2850 hg: parse error at 2: unterminated string
2851 2851 ({"date
2852 2852 ^ here)
2853 2853 [255]
2854 2854
2855 2855 $ hg log -T '{"foo{date|?}"}'
2856 2856 hg: parse error at 11: syntax error
2857 2857 ({"foo{date|?}"}
2858 2858 ^ here)
2859 2859 [255]
2860 2860
2861 2861 Thrown an error if a template function doesn't exist
2862 2862
2863 2863 $ hg tip --template '{foo()}\n'
2864 2864 hg: parse error: unknown function 'foo'
2865 2865 [255]
2866 2866
2867 2867 Pass generator object created by template function to filter
2868 2868
2869 2869 $ hg log -l 1 --template '{if(author, author)|user}\n'
2870 2870 test
2871 2871
2872 2872 Test index keyword:
2873 2873
2874 2874 $ hg log -l 2 -T '{index + 10}{files % " {index}:{file}"}\n'
2875 2875 10 0:a 1:b 2:fifth 3:fourth 4:third
2876 2876 11 0:a
2877 2877
2878 2878 $ hg branches -T '{index} {branch}\n'
2879 2879 0 default
2880 2880 1 foo
2881 2881
2882 2882 Test diff function:
2883 2883
2884 2884 $ hg diff -c 8
2885 2885 diff -r 29114dbae42b -r 95c24699272e fourth
2886 2886 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
2887 2887 +++ b/fourth Wed Jan 01 10:01:00 2020 +0000
2888 2888 @@ -0,0 +1,1 @@
2889 2889 +second
2890 2890 diff -r 29114dbae42b -r 95c24699272e second
2891 2891 --- a/second Mon Jan 12 13:46:40 1970 +0000
2892 2892 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000
2893 2893 @@ -1,1 +0,0 @@
2894 2894 -second
2895 2895 diff -r 29114dbae42b -r 95c24699272e third
2896 2896 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
2897 2897 +++ b/third Wed Jan 01 10:01:00 2020 +0000
2898 2898 @@ -0,0 +1,1 @@
2899 2899 +third
2900 2900
2901 2901 $ hg log -r 8 -T "{diff()}"
2902 2902 diff -r 29114dbae42b -r 95c24699272e fourth
2903 2903 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
2904 2904 +++ b/fourth Wed Jan 01 10:01:00 2020 +0000
2905 2905 @@ -0,0 +1,1 @@
2906 2906 +second
2907 2907 diff -r 29114dbae42b -r 95c24699272e second
2908 2908 --- a/second Mon Jan 12 13:46:40 1970 +0000
2909 2909 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000
2910 2910 @@ -1,1 +0,0 @@
2911 2911 -second
2912 2912 diff -r 29114dbae42b -r 95c24699272e third
2913 2913 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
2914 2914 +++ b/third Wed Jan 01 10:01:00 2020 +0000
2915 2915 @@ -0,0 +1,1 @@
2916 2916 +third
2917 2917
2918 2918 $ hg log -r 8 -T "{diff('glob:f*')}"
2919 2919 diff -r 29114dbae42b -r 95c24699272e fourth
2920 2920 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
2921 2921 +++ b/fourth Wed Jan 01 10:01:00 2020 +0000
2922 2922 @@ -0,0 +1,1 @@
2923 2923 +second
2924 2924
2925 2925 $ hg log -r 8 -T "{diff('', 'glob:f*')}"
2926 2926 diff -r 29114dbae42b -r 95c24699272e second
2927 2927 --- a/second Mon Jan 12 13:46:40 1970 +0000
2928 2928 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000
2929 2929 @@ -1,1 +0,0 @@
2930 2930 -second
2931 2931 diff -r 29114dbae42b -r 95c24699272e third
2932 2932 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
2933 2933 +++ b/third Wed Jan 01 10:01:00 2020 +0000
2934 2934 @@ -0,0 +1,1 @@
2935 2935 +third
2936 2936
2937 2937 $ hg log -r 8 -T "{diff('FOURTH'|lower)}"
2938 2938 diff -r 29114dbae42b -r 95c24699272e fourth
2939 2939 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
2940 2940 +++ b/fourth Wed Jan 01 10:01:00 2020 +0000
2941 2941 @@ -0,0 +1,1 @@
2942 2942 +second
2943 2943
2944 2944 ui verbosity:
2945 2945
2946 2946 $ hg log -l1 -T '{verbosity}\n'
2947 2947
2948 2948 $ hg log -l1 -T '{verbosity}\n' --debug
2949 2949 debug
2950 2950 $ hg log -l1 -T '{verbosity}\n' --quiet
2951 2951 quiet
2952 2952 $ hg log -l1 -T '{verbosity}\n' --verbose
2953 2953 verbose
2954 2954
2955 2955 $ cd ..
2956 2956
2957 2957
2958 2958 latesttag:
2959 2959
2960 2960 $ hg init latesttag
2961 2961 $ cd latesttag
2962 2962
2963 2963 $ echo a > file
2964 2964 $ hg ci -Am a -d '0 0'
2965 2965 adding file
2966 2966
2967 2967 $ echo b >> file
2968 2968 $ hg ci -m b -d '1 0'
2969 2969
2970 2970 $ echo c >> head1
2971 2971 $ hg ci -Am h1c -d '2 0'
2972 2972 adding head1
2973 2973
2974 2974 $ hg update -q 1
2975 2975 $ echo d >> head2
2976 2976 $ hg ci -Am h2d -d '3 0'
2977 2977 adding head2
2978 2978 created new head
2979 2979
2980 2980 $ echo e >> head2
2981 2981 $ hg ci -m h2e -d '4 0'
2982 2982
2983 2983 $ hg merge -q
2984 2984 $ hg ci -m merge -d '5 -3600'
2985 2985
2986 2986 No tag set:
2987 2987
2988 2988 $ hg log -G --template '{rev}: {latesttag}+{latesttagdistance}\n'
2989 2989 @ 5: null+5
2990 2990 |\
2991 2991 | o 4: null+4
2992 2992 | |
2993 2993 | o 3: null+3
2994 2994 | |
2995 2995 o | 2: null+3
2996 2996 |/
2997 2997 o 1: null+2
2998 2998 |
2999 2999 o 0: null+1
3000 3000
3001 3001
3002 3002 One common tag: longest path wins for {latesttagdistance}:
3003 3003
3004 3004 $ hg tag -r 1 -m t1 -d '6 0' t1
3005 3005 $ hg log -G --template '{rev}: {latesttag}+{latesttagdistance}\n'
3006 3006 @ 6: t1+4
3007 3007 |
3008 3008 o 5: t1+3
3009 3009 |\
3010 3010 | o 4: t1+2
3011 3011 | |
3012 3012 | o 3: t1+1
3013 3013 | |
3014 3014 o | 2: t1+1
3015 3015 |/
3016 3016 o 1: t1+0
3017 3017 |
3018 3018 o 0: null+1
3019 3019
3020 3020
3021 3021 One ancestor tag: closest wins:
3022 3022
3023 3023 $ hg tag -r 2 -m t2 -d '7 0' t2
3024 3024 $ hg log -G --template '{rev}: {latesttag}+{latesttagdistance}\n'
3025 3025 @ 7: t2+3
3026 3026 |
3027 3027 o 6: t2+2
3028 3028 |
3029 3029 o 5: t2+1
3030 3030 |\
3031 3031 | o 4: t1+2
3032 3032 | |
3033 3033 | o 3: t1+1
3034 3034 | |
3035 3035 o | 2: t2+0
3036 3036 |/
3037 3037 o 1: t1+0
3038 3038 |
3039 3039 o 0: null+1
3040 3040
3041 3041
3042 3042 Two branch tags: more recent wins if same number of changes:
3043 3043
3044 3044 $ hg tag -r 3 -m t3 -d '8 0' t3
3045 3045 $ hg log -G --template '{rev}: {latesttag}+{latesttagdistance}\n'
3046 3046 @ 8: t3+5
3047 3047 |
3048 3048 o 7: t3+4
3049 3049 |
3050 3050 o 6: t3+3
3051 3051 |
3052 3052 o 5: t3+2
3053 3053 |\
3054 3054 | o 4: t3+1
3055 3055 | |
3056 3056 | o 3: t3+0
3057 3057 | |
3058 3058 o | 2: t2+0
3059 3059 |/
3060 3060 o 1: t1+0
3061 3061 |
3062 3062 o 0: null+1
3063 3063
3064 3064
3065 3065 Two branch tags: fewest changes wins:
3066 3066
3067 3067 $ hg tag -r 4 -m t4 -d '4 0' t4 # older than t2, but should not matter
3068 3068 $ hg log -G --template "{rev}: {latesttag % '{tag}+{distance},{changes} '}\n"
3069 3069 @ 9: t4+5,6
3070 3070 |
3071 3071 o 8: t4+4,5
3072 3072 |
3073 3073 o 7: t4+3,4
3074 3074 |
3075 3075 o 6: t4+2,3
3076 3076 |
3077 3077 o 5: t4+1,2
3078 3078 |\
3079 3079 | o 4: t4+0,0
3080 3080 | |
3081 3081 | o 3: t3+0,0
3082 3082 | |
3083 3083 o | 2: t2+0,0
3084 3084 |/
3085 3085 o 1: t1+0,0
3086 3086 |
3087 3087 o 0: null+1,1
3088 3088
3089 3089
3090 3090 Merged tag overrides:
3091 3091
3092 3092 $ hg tag -r 5 -m t5 -d '9 0' t5
3093 3093 $ hg tag -r 3 -m at3 -d '10 0' at3
3094 3094 $ hg log -G --template '{rev}: {latesttag}+{latesttagdistance}\n'
3095 3095 @ 11: t5+6
3096 3096 |
3097 3097 o 10: t5+5
3098 3098 |
3099 3099 o 9: t5+4
3100 3100 |
3101 3101 o 8: t5+3
3102 3102 |
3103 3103 o 7: t5+2
3104 3104 |
3105 3105 o 6: t5+1
3106 3106 |
3107 3107 o 5: t5+0
3108 3108 |\
3109 3109 | o 4: t4+0
3110 3110 | |
3111 3111 | o 3: at3:t3+0
3112 3112 | |
3113 3113 o | 2: t2+0
3114 3114 |/
3115 3115 o 1: t1+0
3116 3116 |
3117 3117 o 0: null+1
3118 3118
3119 3119
3120 3120 $ hg log -G --template "{rev}: {latesttag % '{tag}+{distance},{changes} '}\n"
3121 3121 @ 11: t5+6,6
3122 3122 |
3123 3123 o 10: t5+5,5
3124 3124 |
3125 3125 o 9: t5+4,4
3126 3126 |
3127 3127 o 8: t5+3,3
3128 3128 |
3129 3129 o 7: t5+2,2
3130 3130 |
3131 3131 o 6: t5+1,1
3132 3132 |
3133 3133 o 5: t5+0,0
3134 3134 |\
3135 3135 | o 4: t4+0,0
3136 3136 | |
3137 3137 | o 3: at3+0,0 t3+0,0
3138 3138 | |
3139 3139 o | 2: t2+0,0
3140 3140 |/
3141 3141 o 1: t1+0,0
3142 3142 |
3143 3143 o 0: null+1,1
3144 3144
3145 3145
3146 3146 $ hg log -G --template "{rev}: {latesttag('re:^t[13]$') % '{tag}, C: {changes}, D: {distance}'}\n"
3147 3147 @ 11: t3, C: 9, D: 8
3148 3148 |
3149 3149 o 10: t3, C: 8, D: 7
3150 3150 |
3151 3151 o 9: t3, C: 7, D: 6
3152 3152 |
3153 3153 o 8: t3, C: 6, D: 5
3154 3154 |
3155 3155 o 7: t3, C: 5, D: 4
3156 3156 |
3157 3157 o 6: t3, C: 4, D: 3
3158 3158 |
3159 3159 o 5: t3, C: 3, D: 2
3160 3160 |\
3161 3161 | o 4: t3, C: 1, D: 1
3162 3162 | |
3163 3163 | o 3: t3, C: 0, D: 0
3164 3164 | |
3165 3165 o | 2: t1, C: 1, D: 1
3166 3166 |/
3167 3167 o 1: t1, C: 0, D: 0
3168 3168 |
3169 3169 o 0: null, C: 1, D: 1
3170 3170
3171 3171
3172 3172 $ cd ..
3173 3173
3174 3174
3175 3175 Style path expansion: issue1948 - ui.style option doesn't work on OSX
3176 3176 if it is a relative path
3177 3177
3178 3178 $ mkdir -p home/styles
3179 3179
3180 3180 $ cat > home/styles/teststyle <<EOF
3181 3181 > changeset = 'test {rev}:{node|short}\n'
3182 3182 > EOF
3183 3183
3184 3184 $ HOME=`pwd`/home; export HOME
3185 3185
3186 3186 $ cat > latesttag/.hg/hgrc <<EOF
3187 3187 > [ui]
3188 3188 > style = ~/styles/teststyle
3189 3189 > EOF
3190 3190
3191 3191 $ hg -R latesttag tip
3192 3192 test 11:97e5943b523a
3193 3193
3194 3194 Test recursive showlist template (issue1989):
3195 3195
3196 3196 $ cat > style1989 <<EOF
3197 3197 > changeset = '{file_mods}{manifest}{extras}'
3198 3198 > file_mod = 'M|{author|person}\n'
3199 3199 > manifest = '{rev},{author}\n'
3200 3200 > extra = '{key}: {author}\n'
3201 3201 > EOF
3202 3202
3203 3203 $ hg -R latesttag log -r tip --style=style1989
3204 3204 M|test
3205 3205 11,test
3206 3206 branch: test
3207 3207
3208 3208 Test new-style inline templating:
3209 3209
3210 3210 $ hg log -R latesttag -r tip --template 'modified files: {file_mods % " {file}\n"}\n'
3211 3211 modified files: .hgtags
3212 3212
3213 3213
3214 3214 $ hg log -R latesttag -r tip -T '{rev % "a"}\n'
3215 3215 hg: parse error: 11 is not iterable of mappings
3216 3216 [255]
3217 3217 $ hg log -R latesttag -r tip -T '{get(extras, "unknown") % "a"}\n'
3218 3218 hg: parse error: None is not iterable of mappings
3219 3219 [255]
3220 3220 $ hg log -R latesttag -r tip -T '{extras % "{key}\n" % "{key}\n"}'
3221 3221 hg: parse error: list of strings is not mappable
3222 3222 [255]
3223 3223
3224 3224 Test new-style inline templating of non-list/dict type:
3225 3225
3226 3226 $ hg log -R latesttag -r tip -T '{manifest}\n'
3227 3227 11:2bc6e9006ce2
3228 3228 $ hg log -R latesttag -r tip -T 'string length: {manifest|count}\n'
3229 3229 string length: 15
3230 3230 $ hg log -R latesttag -r tip -T '{manifest % "{rev}:{node}"}\n'
3231 3231 11:2bc6e9006ce29882383a22d39fd1f4e66dd3e2fc
3232 3232
3233 3233 $ hg log -R latesttag -r tip -T '{get(extras, "branch") % "{key}: {value}\n"}'
3234 3234 branch: default
3235 3235 $ hg log -R latesttag -r tip -T '{get(extras, "unknown") % "{key}\n"}'
3236 3236 hg: parse error: None is not iterable of mappings
3237 3237 [255]
3238 3238 $ hg log -R latesttag -r tip -T '{min(extras) % "{key}: {value}\n"}'
3239 3239 branch: default
3240 3240 $ hg log -R latesttag -l1 -T '{min(revset("0:9")) % "{rev}:{node|short}\n"}'
3241 3241 0:ce3cec86e6c2
3242 3242 $ hg log -R latesttag -l1 -T '{max(revset("0:9")) % "{rev}:{node|short}\n"}'
3243 3243 9:fbc7cd862e9c
3244 3244
3245 3245 Test manifest/get() can be join()-ed as string, though it's silly:
3246 3246
3247 3247 $ hg log -R latesttag -r tip -T '{join(manifest, ".")}\n'
3248 3248 1.1.:.2.b.c.6.e.9.0.0.6.c.e.2
3249 3249 $ hg log -R latesttag -r tip -T '{join(get(extras, "branch"), ".")}\n'
3250 3250 d.e.f.a.u.l.t
3251 3251
3252 3252 Test join() over string
3253 3253
3254 3254 $ hg log -R latesttag -r tip -T '{join(rev|stringify, ".")}\n'
3255 3255 1.1
3256 3256
3257 3257 Test join() over uniterable
3258 3258
3259 3259 $ hg log -R latesttag -r tip -T '{join(rev, "")}\n'
3260 3260 hg: parse error: 11 is not iterable
3261 3261 [255]
3262 3262
3263 3263 Test min/max of integers
3264 3264
3265 3265 $ hg log -R latesttag -l1 -T '{min(revset("9:10"))}\n'
3266 3266 9
3267 3267 $ hg log -R latesttag -l1 -T '{max(revset("9:10"))}\n'
3268 3268 10
3269 3269
3270 3270 Test min/max over map operation:
3271 3271
3272 3272 $ hg log -R latesttag -r3 -T '{min(tags % "{tag}")}\n'
3273 3273 at3
3274 3274 $ hg log -R latesttag -r3 -T '{max(tags % "{tag}")}\n'
3275 3275 t3
3276 3276
3277 3277 Test min/max of strings:
3278 3278
3279 3279 $ hg log -R latesttag -l1 -T '{min(desc)}\n'
3280 3280 3
3281 3281 $ hg log -R latesttag -l1 -T '{max(desc)}\n'
3282 3282 t
3283 3283
3284 3284 Test min/max of non-iterable:
3285 3285
3286 3286 $ hg debugtemplate '{min(1)}'
3287 3287 hg: parse error: 1 is not iterable
3288 3288 (min first argument should be an iterable)
3289 3289 [255]
3290 3290 $ hg debugtemplate '{max(2)}'
3291 3291 hg: parse error: 2 is not iterable
3292 3292 (max first argument should be an iterable)
3293 3293 [255]
3294 3294
3295 3295 Test min/max of empty sequence:
3296 3296
3297 3297 $ hg debugtemplate '{min("")}'
3298 3298 hg: parse error: empty string
3299 3299 (min first argument should be an iterable)
3300 3300 [255]
3301 3301 $ hg debugtemplate '{max("")}'
3302 3302 hg: parse error: empty string
3303 3303 (max first argument should be an iterable)
3304 3304 [255]
3305 3305 $ hg debugtemplate '{min(dict())}'
3306 3306 hg: parse error: empty sequence
3307 3307 (min first argument should be an iterable)
3308 3308 [255]
3309 3309 $ hg debugtemplate '{max(dict())}'
3310 3310 hg: parse error: empty sequence
3311 3311 (max first argument should be an iterable)
3312 3312 [255]
3313 3313 $ hg debugtemplate '{min(dict() % "")}'
3314 3314 hg: parse error: empty sequence
3315 3315 (min first argument should be an iterable)
3316 3316 [255]
3317 3317 $ hg debugtemplate '{max(dict() % "")}'
3318 3318 hg: parse error: empty sequence
3319 3319 (max first argument should be an iterable)
3320 3320 [255]
3321 3321
3322 3322 Test min/max of if() result
3323 3323
3324 3324 $ cd latesttag
3325 3325 $ hg log -l1 -T '{min(if(true, revset("9:10"), ""))}\n'
3326 3326 9
3327 3327 $ hg log -l1 -T '{max(if(false, "", revset("9:10")))}\n'
3328 3328 10
3329 3329 $ hg log -l1 -T '{min(ifcontains("a", "aa", revset("9:10"), ""))}\n'
3330 3330 9
3331 3331 $ hg log -l1 -T '{max(ifcontains("a", "bb", "", revset("9:10")))}\n'
3332 3332 10
3333 3333 $ hg log -l1 -T '{min(ifeq(0, 0, revset("9:10"), ""))}\n'
3334 3334 9
3335 3335 $ hg log -l1 -T '{max(ifeq(0, 1, "", revset("9:10")))}\n'
3336 3336 10
3337 3337 $ cd ..
3338 3338
3339 3339 Test laziness of if() then/else clause
3340 3340
3341 3341 $ hg debugtemplate '{count(0)}'
3342 3342 hg: parse error: not countable
3343 3343 (incompatible use of template filter 'count')
3344 3344 [255]
3345 3345 $ hg debugtemplate '{if(true, "", count(0))}'
3346 3346 $ hg debugtemplate '{if(false, count(0), "")}'
3347 3347 $ hg debugtemplate '{ifcontains("a", "aa", "", count(0))}'
3348 3348 $ hg debugtemplate '{ifcontains("a", "bb", count(0), "")}'
3349 3349 $ hg debugtemplate '{ifeq(0, 0, "", count(0))}'
3350 3350 $ hg debugtemplate '{ifeq(0, 1, count(0), "")}'
3351 3351
3352 3352 Test dot operator precedence:
3353 3353
3354 3354 $ hg debugtemplate -R latesttag -r0 -v '{manifest.node|short}\n'
3355 3355 (template
3356 3356 (|
3357 3357 (.
3358 3358 (symbol 'manifest')
3359 3359 (symbol 'node'))
3360 3360 (symbol 'short'))
3361 3361 (string '\n'))
3362 3362 89f4071fec70
3363 3363
3364 3364 (the following examples are invalid, but seem natural in parsing POV)
3365 3365
3366 3366 $ hg debugtemplate -R latesttag -r0 -v '{foo|bar.baz}\n' 2> /dev/null
3367 3367 (template
3368 3368 (|
3369 3369 (symbol 'foo')
3370 3370 (.
3371 3371 (symbol 'bar')
3372 3372 (symbol 'baz')))
3373 3373 (string '\n'))
3374 3374 [255]
3375 3375 $ hg debugtemplate -R latesttag -r0 -v '{foo.bar()}\n' 2> /dev/null
3376 3376 (template
3377 3377 (.
3378 3378 (symbol 'foo')
3379 3379 (func
3380 3380 (symbol 'bar')
3381 3381 None))
3382 3382 (string '\n'))
3383 3383 [255]
3384 3384
3385 3385 Test evaluation of dot operator:
3386 3386
3387 3387 $ hg log -R latesttag -l1 -T '{min(revset("0:9")).node}\n'
3388 3388 ce3cec86e6c26bd9bdfc590a6b92abc9680f1796
3389 3389 $ hg log -R latesttag -r0 -T '{extras.branch}\n'
3390 3390 default
3391 3391
3392 3392 $ hg log -R latesttag -l1 -T '{author.invalid}\n'
3393 3393 hg: parse error: 'test' is not a dictionary
3394 3394 (keyword 'author' does not support member operation)
3395 3395 [255]
3396 3396 $ hg log -R latesttag -l1 -T '{min("abc").invalid}\n'
3397 3397 hg: parse error: 'a' is not a dictionary
3398 3398 [255]
3399 3399
3400 3400 Test the sub function of templating for expansion:
3401 3401
3402 3402 $ hg log -R latesttag -r 10 --template '{sub("[0-9]", "x", "{rev}")}\n'
3403 3403 xx
3404 3404
3405 3405 $ hg log -R latesttag -r 10 -T '{sub("[", "x", rev)}\n'
3406 3406 hg: parse error: sub got an invalid pattern: [
3407 3407 [255]
3408 3408 $ hg log -R latesttag -r 10 -T '{sub("[0-9]", r"\1", rev)}\n'
3409 3409 hg: parse error: sub got an invalid replacement: \1
3410 3410 [255]
3411 3411
3412 3412 Test the strip function with chars specified:
3413 3413
3414 3414 $ hg log -R latesttag --template '{desc}\n'
3415 3415 at3
3416 3416 t5
3417 3417 t4
3418 3418 t3
3419 3419 t2
3420 3420 t1
3421 3421 merge
3422 3422 h2e
3423 3423 h2d
3424 3424 h1c
3425 3425 b
3426 3426 a
3427 3427
3428 3428 $ hg log -R latesttag --template '{strip(desc, "te")}\n'
3429 3429 at3
3430 3430 5
3431 3431 4
3432 3432 3
3433 3433 2
3434 3434 1
3435 3435 merg
3436 3436 h2
3437 3437 h2d
3438 3438 h1c
3439 3439 b
3440 3440 a
3441 3441
3442 3442 Test date format:
3443 3443
3444 3444 $ hg log -R latesttag --template 'date: {date(date, "%y %m %d %S %z")}\n'
3445 3445 date: 70 01 01 10 +0000
3446 3446 date: 70 01 01 09 +0000
3447 3447 date: 70 01 01 04 +0000
3448 3448 date: 70 01 01 08 +0000
3449 3449 date: 70 01 01 07 +0000
3450 3450 date: 70 01 01 06 +0000
3451 3451 date: 70 01 01 05 +0100
3452 3452 date: 70 01 01 04 +0000
3453 3453 date: 70 01 01 03 +0000
3454 3454 date: 70 01 01 02 +0000
3455 3455 date: 70 01 01 01 +0000
3456 3456 date: 70 01 01 00 +0000
3457 3457
3458 3458 Test invalid date:
3459 3459
3460 3460 $ hg log -R latesttag -T '{date(rev)}\n'
3461 3461 hg: parse error: date expects a date information
3462 3462 [255]
3463 3463
3464 3464 Test integer literal:
3465 3465
3466 3466 $ hg debugtemplate -v '{(0)}\n'
3467 3467 (template
3468 3468 (group
3469 3469 (integer '0'))
3470 3470 (string '\n'))
3471 3471 0
3472 3472 $ hg debugtemplate -v '{(123)}\n'
3473 3473 (template
3474 3474 (group
3475 3475 (integer '123'))
3476 3476 (string '\n'))
3477 3477 123
3478 3478 $ hg debugtemplate -v '{(-4)}\n'
3479 3479 (template
3480 3480 (group
3481 3481 (negate
3482 3482 (integer '4')))
3483 3483 (string '\n'))
3484 3484 -4
3485 3485 $ hg debugtemplate '{(-)}\n'
3486 3486 hg: parse error at 3: not a prefix: )
3487 3487 ({(-)}\n
3488 3488 ^ here)
3489 3489 [255]
3490 3490 $ hg debugtemplate '{(-a)}\n'
3491 3491 hg: parse error: negation needs an integer argument
3492 3492 [255]
3493 3493
3494 3494 top-level integer literal is interpreted as symbol (i.e. variable name):
3495 3495
3496 3496 $ hg debugtemplate -D 1=one -v '{1}\n'
3497 3497 (template
3498 3498 (integer '1')
3499 3499 (string '\n'))
3500 3500 one
3501 3501 $ hg debugtemplate -D 1=one -v '{if("t", "{1}")}\n'
3502 3502 (template
3503 3503 (func
3504 3504 (symbol 'if')
3505 3505 (list
3506 3506 (string 't')
3507 3507 (template
3508 3508 (integer '1'))))
3509 3509 (string '\n'))
3510 3510 one
3511 3511 $ hg debugtemplate -D 1=one -v '{1|stringify}\n'
3512 3512 (template
3513 3513 (|
3514 3514 (integer '1')
3515 3515 (symbol 'stringify'))
3516 3516 (string '\n'))
3517 3517 one
3518 3518
3519 3519 unless explicit symbol is expected:
3520 3520
3521 3521 $ hg log -Ra -r0 -T '{desc|1}\n'
3522 3522 hg: parse error: expected a symbol, got 'integer'
3523 3523 [255]
3524 3524 $ hg log -Ra -r0 -T '{1()}\n'
3525 3525 hg: parse error: expected a symbol, got 'integer'
3526 3526 [255]
3527 3527
3528 3528 Test string literal:
3529 3529
3530 3530 $ hg debugtemplate -Ra -r0 -v '{"string with no template fragment"}\n'
3531 3531 (template
3532 3532 (string 'string with no template fragment')
3533 3533 (string '\n'))
3534 3534 string with no template fragment
3535 3535 $ hg debugtemplate -Ra -r0 -v '{"template: {rev}"}\n'
3536 3536 (template
3537 3537 (template
3538 3538 (string 'template: ')
3539 3539 (symbol 'rev'))
3540 3540 (string '\n'))
3541 3541 template: 0
3542 3542 $ hg debugtemplate -Ra -r0 -v '{r"rawstring: {rev}"}\n'
3543 3543 (template
3544 3544 (string 'rawstring: {rev}')
3545 3545 (string '\n'))
3546 3546 rawstring: {rev}
3547 3547 $ hg debugtemplate -Ra -r0 -v '{files % r"rawstring: {file}"}\n'
3548 3548 (template
3549 3549 (%
3550 3550 (symbol 'files')
3551 3551 (string 'rawstring: {file}'))
3552 3552 (string '\n'))
3553 3553 rawstring: {file}
3554 3554
3555 3555 Test string escaping:
3556 3556
3557 3557 $ hg log -R latesttag -r 0 --template '>\n<>\\n<{if(rev, "[>\n<>\\n<]")}>\n<>\\n<\n'
3558 3558 >
3559 3559 <>\n<[>
3560 3560 <>\n<]>
3561 3561 <>\n<
3562 3562
3563 3563 $ hg log -R latesttag -r 0 \
3564 3564 > --config ui.logtemplate='>\n<>\\n<{if(rev, "[>\n<>\\n<]")}>\n<>\\n<\n'
3565 3565 >
3566 3566 <>\n<[>
3567 3567 <>\n<]>
3568 3568 <>\n<
3569 3569
3570 3570 $ hg log -R latesttag -r 0 -T esc \
3571 3571 > --config templates.esc='>\n<>\\n<{if(rev, "[>\n<>\\n<]")}>\n<>\\n<\n'
3572 3572 >
3573 3573 <>\n<[>
3574 3574 <>\n<]>
3575 3575 <>\n<
3576 3576
3577 3577 $ cat <<'EOF' > esctmpl
3578 3578 > changeset = '>\n<>\\n<{if(rev, "[>\n<>\\n<]")}>\n<>\\n<\n'
3579 3579 > EOF
3580 3580 $ hg log -R latesttag -r 0 --style ./esctmpl
3581 3581 >
3582 3582 <>\n<[>
3583 3583 <>\n<]>
3584 3584 <>\n<
3585 3585
3586 3586 Test string escaping of quotes:
3587 3587
3588 3588 $ hg log -Ra -r0 -T '{"\""}\n'
3589 3589 "
3590 3590 $ hg log -Ra -r0 -T '{"\\\""}\n'
3591 3591 \"
3592 3592 $ hg log -Ra -r0 -T '{r"\""}\n'
3593 3593 \"
3594 3594 $ hg log -Ra -r0 -T '{r"\\\""}\n'
3595 3595 \\\"
3596 3596
3597 3597
3598 3598 $ hg log -Ra -r0 -T '{"\""}\n'
3599 3599 "
3600 3600 $ hg log -Ra -r0 -T '{"\\\""}\n'
3601 3601 \"
3602 3602 $ hg log -Ra -r0 -T '{r"\""}\n'
3603 3603 \"
3604 3604 $ hg log -Ra -r0 -T '{r"\\\""}\n'
3605 3605 \\\"
3606 3606
3607 3607 Test exception in quoted template. single backslash before quotation mark is
3608 3608 stripped before parsing:
3609 3609
3610 3610 $ cat <<'EOF' > escquotetmpl
3611 3611 > changeset = "\" \\" \\\" \\\\" {files % \"{file}\"}\n"
3612 3612 > EOF
3613 3613 $ cd latesttag
3614 3614 $ hg log -r 2 --style ../escquotetmpl
3615 3615 " \" \" \\" head1
3616 3616
3617 3617 $ hg log -r 2 -T esc --config templates.esc='"{\"valid\"}\n"'
3618 3618 valid
3619 3619 $ hg log -r 2 -T esc --config templates.esc="'"'{\'"'"'valid\'"'"'}\n'"'"
3620 3620 valid
3621 3621
3622 3622 Test compatibility with 2.9.2-3.4 of escaped quoted strings in nested
3623 3623 _evalifliteral() templates (issue4733):
3624 3624
3625 3625 $ hg log -r 2 -T '{if(rev, "\"{rev}")}\n'
3626 3626 "2
3627 3627 $ hg log -r 2 -T '{if(rev, "{if(rev, \"\\\"{rev}\")}")}\n'
3628 3628 "2
3629 3629 $ hg log -r 2 -T '{if(rev, "{if(rev, \"{if(rev, \\\"\\\\\\\"{rev}\\\")}\")}")}\n'
3630 3630 "2
3631 3631
3632 3632 $ hg log -r 2 -T '{if(rev, "\\\"")}\n'
3633 3633 \"
3634 3634 $ hg log -r 2 -T '{if(rev, "{if(rev, \"\\\\\\\"\")}")}\n'
3635 3635 \"
3636 3636 $ hg log -r 2 -T '{if(rev, "{if(rev, \"{if(rev, \\\"\\\\\\\\\\\\\\\"\\\")}\")}")}\n'
3637 3637 \"
3638 3638
3639 3639 $ hg log -r 2 -T '{if(rev, r"\\\"")}\n'
3640 3640 \\\"
3641 3641 $ hg log -r 2 -T '{if(rev, "{if(rev, r\"\\\\\\\"\")}")}\n'
3642 3642 \\\"
3643 3643 $ hg log -r 2 -T '{if(rev, "{if(rev, \"{if(rev, r\\\"\\\\\\\\\\\\\\\"\\\")}\")}")}\n'
3644 3644 \\\"
3645 3645
3646 3646 escaped single quotes and errors:
3647 3647
3648 3648 $ hg log -r 2 -T "{if(rev, '{if(rev, \'foo\')}')}"'\n'
3649 3649 foo
3650 3650 $ hg log -r 2 -T "{if(rev, '{if(rev, r\'foo\')}')}"'\n'
3651 3651 foo
3652 3652 $ hg log -r 2 -T '{if(rev, "{if(rev, \")}")}\n'
3653 3653 hg: parse error at 21: unterminated string
3654 3654 ({if(rev, "{if(rev, \")}")}\n
3655 3655 ^ here)
3656 3656 [255]
3657 3657 $ hg log -r 2 -T '{if(rev, \"\\"")}\n'
3658 3658 hg: parse error: trailing \ in string
3659 3659 [255]
3660 3660 $ hg log -r 2 -T '{if(rev, r\"\\"")}\n'
3661 3661 hg: parse error: trailing \ in string
3662 3662 [255]
3663 3663
3664 3664 $ cd ..
3665 3665
3666 3666 Test leading backslashes:
3667 3667
3668 3668 $ cd latesttag
3669 3669 $ hg log -r 2 -T '\{rev} {files % "\{file}"}\n'
3670 3670 {rev} {file}
3671 3671 $ hg log -r 2 -T '\\{rev} {files % "\\{file}"}\n'
3672 3672 \2 \head1
3673 3673 $ hg log -r 2 -T '\\\{rev} {files % "\\\{file}"}\n'
3674 3674 \{rev} \{file}
3675 3675 $ cd ..
3676 3676
3677 3677 Test leading backslashes in "if" expression (issue4714):
3678 3678
3679 3679 $ cd latesttag
3680 3680 $ hg log -r 2 -T '{if("1", "\{rev}")} {if("1", r"\{rev}")}\n'
3681 3681 {rev} \{rev}
3682 3682 $ hg log -r 2 -T '{if("1", "\\{rev}")} {if("1", r"\\{rev}")}\n'
3683 3683 \2 \\{rev}
3684 3684 $ hg log -r 2 -T '{if("1", "\\\{rev}")} {if("1", r"\\\{rev}")}\n'
3685 3685 \{rev} \\\{rev}
3686 3686 $ cd ..
3687 3687
3688 3688 "string-escape"-ed "\x5c\x786e" becomes r"\x6e" (once) or r"n" (twice)
3689 3689
3690 3690 $ hg log -R a -r 0 --template '{if("1", "\x5c\x786e", "NG")}\n'
3691 3691 \x6e
3692 3692 $ hg log -R a -r 0 --template '{if("1", r"\x5c\x786e", "NG")}\n'
3693 3693 \x5c\x786e
3694 3694 $ hg log -R a -r 0 --template '{if("", "NG", "\x5c\x786e")}\n'
3695 3695 \x6e
3696 3696 $ hg log -R a -r 0 --template '{if("", "NG", r"\x5c\x786e")}\n'
3697 3697 \x5c\x786e
3698 3698
3699 3699 $ hg log -R a -r 2 --template '{ifeq("no perso\x6e", desc, "\x5c\x786e", "NG")}\n'
3700 3700 \x6e
3701 3701 $ hg log -R a -r 2 --template '{ifeq(r"no perso\x6e", desc, "NG", r"\x5c\x786e")}\n'
3702 3702 \x5c\x786e
3703 3703 $ hg log -R a -r 2 --template '{ifeq(desc, "no perso\x6e", "\x5c\x786e", "NG")}\n'
3704 3704 \x6e
3705 3705 $ hg log -R a -r 2 --template '{ifeq(desc, r"no perso\x6e", "NG", r"\x5c\x786e")}\n'
3706 3706 \x5c\x786e
3707 3707
3708 3708 $ hg log -R a -r 8 --template '{join(files, "\n")}\n'
3709 3709 fourth
3710 3710 second
3711 3711 third
3712 3712 $ hg log -R a -r 8 --template '{join(files, r"\n")}\n'
3713 3713 fourth\nsecond\nthird
3714 3714
3715 3715 $ hg log -R a -r 2 --template '{rstdoc("1st\n\n2nd", "htm\x6c")}'
3716 3716 <p>
3717 3717 1st
3718 3718 </p>
3719 3719 <p>
3720 3720 2nd
3721 3721 </p>
3722 3722 $ hg log -R a -r 2 --template '{rstdoc(r"1st\n\n2nd", "html")}'
3723 3723 <p>
3724 3724 1st\n\n2nd
3725 3725 </p>
3726 3726 $ hg log -R a -r 2 --template '{rstdoc("1st\n\n2nd", r"htm\x6c")}'
3727 3727 1st
3728 3728
3729 3729 2nd
3730 3730
3731 3731 $ hg log -R a -r 2 --template '{strip(desc, "\x6e")}\n'
3732 3732 o perso
3733 3733 $ hg log -R a -r 2 --template '{strip(desc, r"\x6e")}\n'
3734 3734 no person
3735 3735 $ hg log -R a -r 2 --template '{strip("no perso\x6e", "\x6e")}\n'
3736 3736 o perso
3737 3737 $ hg log -R a -r 2 --template '{strip(r"no perso\x6e", r"\x6e")}\n'
3738 3738 no perso
3739 3739
3740 3740 $ hg log -R a -r 2 --template '{sub("\\x6e", "\x2d", desc)}\n'
3741 3741 -o perso-
3742 3742 $ hg log -R a -r 2 --template '{sub(r"\\x6e", "-", desc)}\n'
3743 3743 no person
3744 3744 $ hg log -R a -r 2 --template '{sub("n", r"\x2d", desc)}\n'
3745 3745 \x2do perso\x2d
3746 3746 $ hg log -R a -r 2 --template '{sub("n", "\x2d", "no perso\x6e")}\n'
3747 3747 -o perso-
3748 3748 $ hg log -R a -r 2 --template '{sub("n", r"\x2d", r"no perso\x6e")}\n'
3749 3749 \x2do perso\x6e
3750 3750
3751 3751 $ hg log -R a -r 8 --template '{files % "{file}\n"}'
3752 3752 fourth
3753 3753 second
3754 3754 third
3755 3755
3756 3756 Test string escaping in nested expression:
3757 3757
3758 3758 $ hg log -R a -r 8 --template '{ifeq(r"\x6e", if("1", "\x5c\x786e"), join(files, "\x5c\x786e"))}\n'
3759 3759 fourth\x6esecond\x6ethird
3760 3760 $ hg log -R a -r 8 --template '{ifeq(if("1", r"\x6e"), "\x5c\x786e", join(files, "\x5c\x786e"))}\n'
3761 3761 fourth\x6esecond\x6ethird
3762 3762
3763 3763 $ hg log -R a -r 8 --template '{join(files, ifeq(branch, "default", "\x5c\x786e"))}\n'
3764 3764 fourth\x6esecond\x6ethird
3765 3765 $ hg log -R a -r 8 --template '{join(files, ifeq(branch, "default", r"\x5c\x786e"))}\n'
3766 3766 fourth\x5c\x786esecond\x5c\x786ethird
3767 3767
3768 3768 $ hg log -R a -r 3:4 --template '{rev}:{sub(if("1", "\x6e"), ifeq(branch, "foo", r"\x5c\x786e", "\x5c\x786e"), desc)}\n'
3769 3769 3:\x6eo user, \x6eo domai\x6e
3770 3770 4:\x5c\x786eew bra\x5c\x786ech
3771 3771
3772 3772 Test quotes in nested expression are evaluated just like a $(command)
3773 3773 substitution in POSIX shells:
3774 3774
3775 3775 $ hg log -R a -r 8 -T '{"{"{rev}:{node|short}"}"}\n'
3776 3776 8:95c24699272e
3777 3777 $ hg log -R a -r 8 -T '{"{"\{{rev}} \"{node|short}\""}"}\n'
3778 3778 {8} "95c24699272e"
3779 3779
3780 3780 Test recursive evaluation:
3781 3781
3782 3782 $ hg init r
3783 3783 $ cd r
3784 3784 $ echo a > a
3785 3785 $ hg ci -Am '{rev}'
3786 3786 adding a
3787 3787 $ hg log -r 0 --template '{if(rev, desc)}\n'
3788 3788 {rev}
3789 3789 $ hg log -r 0 --template '{if(rev, "{author} {rev}")}\n'
3790 3790 test 0
3791 3791
3792 3792 $ hg branch -q 'text.{rev}'
3793 3793 $ echo aa >> aa
3794 3794 $ hg ci -u '{node|short}' -m 'desc to be wrapped desc to be wrapped'
3795 3795
3796 3796 $ hg log -l1 --template '{fill(desc, "20", author, branch)}'
3797 3797 {node|short}desc to
3798 3798 text.{rev}be wrapped
3799 3799 text.{rev}desc to be
3800 3800 text.{rev}wrapped (no-eol)
3801 3801 $ hg log -l1 --template '{fill(desc, "20", "{node|short}:", "text.{rev}:")}'
3802 3802 bcc7ff960b8e:desc to
3803 3803 text.1:be wrapped
3804 3804 text.1:desc to be
3805 3805 text.1:wrapped (no-eol)
3806 3806 $ hg log -l1 -T '{fill(desc, date, "", "")}\n'
3807 3807 hg: parse error: fill expects an integer width
3808 3808 [255]
3809 3809
3810 3810 $ COLUMNS=25 hg log -l1 --template '{fill(desc, termwidth, "{node|short}:", "termwidth.{rev}:")}'
3811 3811 bcc7ff960b8e:desc to be
3812 3812 termwidth.1:wrapped desc
3813 3813 termwidth.1:to be wrapped (no-eol)
3814 3814
3815 3815 $ hg log -l 1 --template '{sub(r"[0-9]", "-", author)}'
3816 3816 {node|short} (no-eol)
3817 3817 $ hg log -l 1 --template '{sub(r"[0-9]", "-", "{node|short}")}'
3818 3818 bcc-ff---b-e (no-eol)
3819 3819
3820 3820 $ cat >> .hg/hgrc <<EOF
3821 3821 > [extensions]
3822 3822 > color=
3823 3823 > [color]
3824 3824 > mode=ansi
3825 3825 > text.{rev} = red
3826 3826 > text.1 = green
3827 3827 > EOF
3828 3828 $ hg log --color=always -l 1 --template '{label(branch, "text\n")}'
3829 3829 \x1b[0;31mtext\x1b[0m (esc)
3830 3830 $ hg log --color=always -l 1 --template '{label("text.{rev}", "text\n")}'
3831 3831 \x1b[0;32mtext\x1b[0m (esc)
3832 3832
3833 3833 color effect can be specified without quoting:
3834 3834
3835 3835 $ hg log --color=always -l 1 --template '{label(red, "text\n")}'
3836 3836 \x1b[0;31mtext\x1b[0m (esc)
3837 3837
3838 3838 color effects can be nested (issue5413)
3839 3839
3840 3840 $ hg debugtemplate --color=always \
3841 3841 > '{label(red, "red{label(magenta, "ma{label(cyan, "cyan")}{label(yellow, "yellow")}genta")}")}\n'
3842 3842 \x1b[0;31mred\x1b[0;35mma\x1b[0;36mcyan\x1b[0m\x1b[0;31m\x1b[0;35m\x1b[0;33myellow\x1b[0m\x1b[0;31m\x1b[0;35mgenta\x1b[0m (esc)
3843 3843
3844 3844 pad() should interact well with color codes (issue5416)
3845 3845
3846 3846 $ hg debugtemplate --color=always \
3847 3847 > '{pad(label(red, "red"), 5, label(cyan, "-"))}\n'
3848 3848 \x1b[0;31mred\x1b[0m\x1b[0;36m-\x1b[0m\x1b[0;36m-\x1b[0m (esc)
3849 3849
3850 3850 label should be no-op if color is disabled:
3851 3851
3852 3852 $ hg log --color=never -l 1 --template '{label(red, "text\n")}'
3853 3853 text
3854 3854 $ hg log --config extensions.color=! -l 1 --template '{label(red, "text\n")}'
3855 3855 text
3856 3856
3857 3857 Test branches inside if statement:
3858 3858
3859 3859 $ hg log -r 0 --template '{if(branches, "yes", "no")}\n'
3860 3860 no
3861 3861
3862 3862 Test dict constructor:
3863 3863
3864 3864 $ hg log -r 0 -T '{dict(y=node|short, x=rev)}\n'
3865 3865 y=f7769ec2ab97 x=0
3866 3866 $ hg log -r 0 -T '{dict(x=rev, y=node|short) % "{key}={value}\n"}'
3867 3867 x=0
3868 3868 y=f7769ec2ab97
3869 3869 $ hg log -r 0 -T '{dict(x=rev, y=node|short)|json}\n'
3870 3870 {"x": 0, "y": "f7769ec2ab97"}
3871 3871 $ hg log -r 0 -T '{dict()|json}\n'
3872 3872 {}
3873 3873
3874 3874 $ hg log -r 0 -T '{dict(rev, node=node|short)}\n'
3875 3875 rev=0 node=f7769ec2ab97
3876 3876 $ hg log -r 0 -T '{dict(rev, node|short)}\n'
3877 3877 rev=0 node=f7769ec2ab97
3878 3878
3879 3879 $ hg log -r 0 -T '{dict(rev, rev=rev)}\n'
3880 3880 hg: parse error: duplicated dict key 'rev' inferred
3881 3881 [255]
3882 3882 $ hg log -r 0 -T '{dict(node, node|short)}\n'
3883 3883 hg: parse error: duplicated dict key 'node' inferred
3884 3884 [255]
3885 3885 $ hg log -r 0 -T '{dict(1 + 2)}'
3886 3886 hg: parse error: dict key cannot be inferred
3887 3887 [255]
3888 3888
3889 3889 $ hg log -r 0 -T '{dict(x=rev, x=node)}'
3890 3890 hg: parse error: dict got multiple values for keyword argument 'x'
3891 3891 [255]
3892 3892
3893 3893 Test get function:
3894 3894
3895 3895 $ hg log -r 0 --template '{get(extras, "branch")}\n'
3896 3896 default
3897 3897 $ hg log -r 0 --template '{get(extras, "br{"anch"}")}\n'
3898 3898 default
3899 3899 $ hg log -r 0 --template '{get(files, "should_fail")}\n'
3900 3900 hg: parse error: not a dictionary
3901 3901 (get() expects a dict as first argument)
3902 3902 [255]
3903 3903
3904 3904 Test json filter applied to hybrid object:
3905 3905
3906 3906 $ hg log -r0 -T '{files|json}\n'
3907 3907 ["a"]
3908 3908 $ hg log -r0 -T '{extras|json}\n'
3909 3909 {"branch": "default"}
3910 3910
3911 3911 Test json filter applied to map result:
3912 3912
3913 3913 $ hg log -r0 -T '{json(extras % "{key}")}\n'
3914 3914 ["branch"]
3915 3915
3916 3916 Test localdate(date, tz) function:
3917 3917
3918 3918 $ TZ=JST-09 hg log -r0 -T '{date|localdate|isodate}\n'
3919 3919 1970-01-01 09:00 +0900
3920 3920 $ TZ=JST-09 hg log -r0 -T '{localdate(date, "UTC")|isodate}\n'
3921 3921 1970-01-01 00:00 +0000
3922 3922 $ TZ=JST-09 hg log -r0 -T '{localdate(date, "blahUTC")|isodate}\n'
3923 3923 hg: parse error: localdate expects a timezone
3924 3924 [255]
3925 3925 $ TZ=JST-09 hg log -r0 -T '{localdate(date, "+0200")|isodate}\n'
3926 3926 1970-01-01 02:00 +0200
3927 3927 $ TZ=JST-09 hg log -r0 -T '{localdate(date, "0")|isodate}\n'
3928 3928 1970-01-01 00:00 +0000
3929 3929 $ TZ=JST-09 hg log -r0 -T '{localdate(date, 0)|isodate}\n'
3930 3930 1970-01-01 00:00 +0000
3931 3931 $ hg log -r0 -T '{localdate(date, "invalid")|isodate}\n'
3932 3932 hg: parse error: localdate expects a timezone
3933 3933 [255]
3934 3934 $ hg log -r0 -T '{localdate(date, date)|isodate}\n'
3935 3935 hg: parse error: localdate expects a timezone
3936 3936 [255]
3937 3937
3938 3938 Test shortest(node) function:
3939 3939
3940 3940 $ echo b > b
3941 3941 $ hg ci -qAm b
3942 3942 $ hg log --template '{shortest(node)}\n'
3943 3943 e777
3944 3944 bcc7
3945 3945 f776
3946 3946 $ hg log --template '{shortest(node, 10)}\n'
3947 3947 e777603221
3948 3948 bcc7ff960b
3949 3949 f7769ec2ab
3950 3950 $ hg log --template '{node|shortest}\n' -l1
3951 3951 e777
3952 3952
3953 3953 $ hg log -r 0 -T '{shortest(node, "1{"0"}")}\n'
3954 3954 f7769ec2ab
3955 3955 $ hg log -r 0 -T '{shortest(node, "not an int")}\n'
3956 3956 hg: parse error: shortest() expects an integer minlength
3957 3957 [255]
3958 3958
3959 3959 $ hg log -r 'wdir()' -T '{node|shortest}\n'
3960 3960 ffff
3961 3961
3962 3962 $ hg log --template '{shortest("f")}\n' -l1
3963 3963 f
3964 3964
3965 3965 $ hg log --template '{shortest("0123456789012345678901234567890123456789")}\n' -l1
3966 3966 0123456789012345678901234567890123456789
3967 3967
3968 3968 $ hg log --template '{shortest("01234567890123456789012345678901234567890123456789")}\n' -l1
3969 3969 01234567890123456789012345678901234567890123456789
3970 3970
3971 3971 $ hg log --template '{shortest("not a hex string")}\n' -l1
3972 3972 not a hex string
3973 3973
3974 3974 $ hg log --template '{shortest("not a hex string, but it'\''s 40 bytes long")}\n' -l1
3975 3975 not a hex string, but it's 40 bytes long
3976 3976
3977 3977 $ hg log --template '{shortest("ffffffffffffffffffffffffffffffffffffffff")}\n' -l1
3978 3978 ffff
3979 3979
3980 3980 $ hg log --template '{shortest("fffffff")}\n' -l1
3981 3981 ffff
3982 3982
3983 3983 $ hg log --template '{shortest("ff")}\n' -l1
3984 3984 ffff
3985 3985
3986 3986 $ cd ..
3987 3987
3988 3988 Test shortest(node) with the repo having short hash collision:
3989 3989
3990 3990 $ hg init hashcollision
3991 3991 $ cd hashcollision
3992 3992 $ cat <<EOF >> .hg/hgrc
3993 3993 > [experimental]
3994 3994 > evolution.createmarkers=True
3995 3995 > EOF
3996 3996 $ echo 0 > a
3997 3997 $ hg ci -qAm 0
3998 3998 $ for i in 17 129 248 242 480 580 617 1057 2857 4025; do
3999 3999 > hg up -q 0
4000 4000 > echo $i > a
4001 4001 > hg ci -qm $i
4002 4002 > done
4003 4003 $ hg up -q null
4004 4004 $ hg log -r0: -T '{rev}:{node}\n'
4005 4005 0:b4e73ffab476aa0ee32ed81ca51e07169844bc6a
4006 4006 1:11424df6dc1dd4ea255eae2b58eaca7831973bbc
4007 4007 2:11407b3f1b9c3e76a79c1ec5373924df096f0499
4008 4008 3:11dd92fe0f39dfdaacdaa5f3997edc533875cfc4
4009 4009 4:10776689e627b465361ad5c296a20a487e153ca4
4010 4010 5:a00be79088084cb3aff086ab799f8790e01a976b
4011 4011 6:a0b0acd79b4498d0052993d35a6a748dd51d13e6
4012 4012 7:a0457b3450b8e1b778f1163b31a435802987fe5d
4013 4013 8:c56256a09cd28e5764f32e8e2810d0f01e2e357a
4014 4014 9:c5623987d205cd6d9d8389bfc40fff9dbb670b48
4015 4015 10:c562ddd9c94164376c20b86b0b4991636a3bf84f
4016 4016 $ hg debugobsolete a00be79088084cb3aff086ab799f8790e01a976b
4017 4017 obsoleted 1 changesets
4018 4018 $ hg debugobsolete c5623987d205cd6d9d8389bfc40fff9dbb670b48
4019 4019 obsoleted 1 changesets
4020 4020 $ hg debugobsolete c562ddd9c94164376c20b86b0b4991636a3bf84f
4021 4021 obsoleted 1 changesets
4022 4022
4023 4023 nodes starting with '11' (we don't have the revision number '11' though)
4024 4024
4025 4025 $ hg log -r 1:3 -T '{rev}:{shortest(node, 0)}\n'
4026 4026 1:1142
4027 4027 2:1140
4028 4028 3:11d
4029 4029
4030 4030 '5:a00' is hidden, but still we have two nodes starting with 'a0'
4031 4031
4032 4032 $ hg log -r 6:7 -T '{rev}:{shortest(node, 0)}\n'
4033 4033 6:a0b
4034 4034 7:a04
4035 4035
4036 4036 node '10' conflicts with the revision number '10' even if it is hidden
4037 4037 (we could exclude hidden revision numbers, but currently we don't)
4038 4038
4039 4039 $ hg log -r 4 -T '{rev}:{shortest(node, 0)}\n'
4040 4040 4:107
4041 4041 $ hg log -r 4 -T '{rev}:{shortest(node, 0)}\n' --hidden
4042 4042 4:107
4043 4043
4044 4044 node 'c562' should be unique if the other 'c562' nodes are hidden
4045 4045 (but we don't try the slow path to filter out hidden nodes for now)
4046 4046
4047 4047 $ hg log -r 8 -T '{rev}:{node|shortest}\n'
4048 4048 8:c5625
4049 4049 $ hg log -r 8:10 -T '{rev}:{node|shortest}\n' --hidden
4050 4050 8:c5625
4051 4051 9:c5623
4052 4052 10:c562d
4053 4053
4054 4054 $ cd ..
4055 4055
4056 4056 Test pad function
4057 4057
4058 4058 $ cd r
4059 4059
4060 4060 $ hg log --template '{pad(rev, 20)} {author|user}\n'
4061 4061 2 test
4062 4062 1 {node|short}
4063 4063 0 test
4064 4064
4065 4065 $ hg log --template '{pad(rev, 20, " ", True)} {author|user}\n'
4066 4066 2 test
4067 4067 1 {node|short}
4068 4068 0 test
4069 4069
4070 4070 $ hg log --template '{pad(rev, 20, "-", False)} {author|user}\n'
4071 4071 2------------------- test
4072 4072 1------------------- {node|short}
4073 4073 0------------------- test
4074 4074
4075 4075 Test template string in pad function
4076 4076
4077 4077 $ hg log -r 0 -T '{pad("\{{rev}}", 10)} {author|user}\n'
4078 4078 {0} test
4079 4079
4080 4080 $ hg log -r 0 -T '{pad(r"\{rev}", 10)} {author|user}\n'
4081 4081 \{rev} test
4082 4082
4083 4083 Test width argument passed to pad function
4084 4084
4085 4085 $ hg log -r 0 -T '{pad(rev, "1{"0"}")} {author|user}\n'
4086 4086 0 test
4087 4087 $ hg log -r 0 -T '{pad(rev, "not an int")}\n'
4088 4088 hg: parse error: pad() expects an integer width
4089 4089 [255]
4090 4090
4091 4091 Test invalid fillchar passed to pad function
4092 4092
4093 4093 $ hg log -r 0 -T '{pad(rev, 10, "")}\n'
4094 4094 hg: parse error: pad() expects a single fill character
4095 4095 [255]
4096 4096 $ hg log -r 0 -T '{pad(rev, 10, "--")}\n'
4097 4097 hg: parse error: pad() expects a single fill character
4098 4098 [255]
4099 4099
4100 4100 Test boolean argument passed to pad function
4101 4101
4102 4102 no crash
4103 4103
4104 4104 $ hg log -r 0 -T '{pad(rev, 10, "-", "f{"oo"}")}\n'
4105 4105 ---------0
4106 4106
4107 4107 string/literal
4108 4108
4109 4109 $ hg log -r 0 -T '{pad(rev, 10, "-", "false")}\n'
4110 4110 ---------0
4111 4111 $ hg log -r 0 -T '{pad(rev, 10, "-", false)}\n'
4112 4112 0---------
4113 4113 $ hg log -r 0 -T '{pad(rev, 10, "-", "")}\n'
4114 4114 0---------
4115 4115
4116 4116 unknown keyword is evaluated to ''
4117 4117
4118 4118 $ hg log -r 0 -T '{pad(rev, 10, "-", unknownkeyword)}\n'
4119 4119 0---------
4120 4120
4121 4121 Test separate function
4122 4122
4123 4123 $ hg log -r 0 -T '{separate("-", "", "a", "b", "", "", "c", "")}\n'
4124 4124 a-b-c
4125 4125 $ hg log -r 0 -T '{separate(" ", "{rev}:{node|short}", author|user, branch)}\n'
4126 4126 0:f7769ec2ab97 test default
4127 4127 $ hg log -r 0 --color=always -T '{separate(" ", "a", label(red, "b"), "c", label(red, ""), "d")}\n'
4128 4128 a \x1b[0;31mb\x1b[0m c d (esc)
4129 4129
4130 4130 Test boolean expression/literal passed to if function
4131 4131
4132 4132 $ hg log -r 0 -T '{if(rev, "rev 0 is True")}\n'
4133 4133 rev 0 is True
4134 4134 $ hg log -r 0 -T '{if(0, "literal 0 is True as well")}\n'
4135 4135 literal 0 is True as well
4136 4136 $ hg log -r 0 -T '{if("", "", "empty string is False")}\n'
4137 4137 empty string is False
4138 4138 $ hg log -r 0 -T '{if(revset(r"0 - 0"), "", "empty list is False")}\n'
4139 4139 empty list is False
4140 4140 $ hg log -r 0 -T '{if(true, "true is True")}\n'
4141 4141 true is True
4142 4142 $ hg log -r 0 -T '{if(false, "", "false is False")}\n'
4143 4143 false is False
4144 4144 $ hg log -r 0 -T '{if("false", "non-empty string is True")}\n'
4145 4145 non-empty string is True
4146 4146
4147 4147 Test ifcontains function
4148 4148
4149 4149 $ hg log --template '{rev} {ifcontains(rev, "2 two 0", "is in the string", "is not")}\n'
4150 4150 2 is in the string
4151 4151 1 is not
4152 4152 0 is in the string
4153 4153
4154 4154 $ hg log -T '{rev} {ifcontains(rev, "2 two{" 0"}", "is in the string", "is not")}\n'
4155 4155 2 is in the string
4156 4156 1 is not
4157 4157 0 is in the string
4158 4158
4159 4159 $ hg log --template '{rev} {ifcontains("a", file_adds, "added a", "did not add a")}\n'
4160 4160 2 did not add a
4161 4161 1 did not add a
4162 4162 0 added a
4163 4163
4164 4164 $ hg log --debug -T '{rev}{ifcontains(1, parents, " is parent of 1")}\n'
4165 4165 2 is parent of 1
4166 4166 1
4167 4167 0
4168 4168
4169 $ hg log -l1 -T '{ifcontains("branch", extras, "t", "f")}\n'
4170 t
4171 $ hg log -l1 -T '{ifcontains("branch", extras % "{key}", "t", "f")}\n'
4172 t
4173 $ hg log -l1 -T '{ifcontains("branc", extras % "{key}", "t", "f")}\n'
4174 f
4175 $ hg log -l1 -T '{ifcontains("branc", stringify(extras % "{key}"), "t", "f")}\n'
4176 t
4177
4169 4178 Test revset function
4170 4179
4171 4180 $ hg log --template '{rev} {ifcontains(rev, revset("."), "current rev", "not current rev")}\n'
4172 4181 2 current rev
4173 4182 1 not current rev
4174 4183 0 not current rev
4175 4184
4176 4185 $ hg log --template '{rev} {ifcontains(rev, revset(". + .^"), "match rev", "not match rev")}\n'
4177 4186 2 match rev
4178 4187 1 match rev
4179 4188 0 not match rev
4180 4189
4181 4190 $ hg log -T '{ifcontains(desc, revset(":"), "", "type not match")}\n' -l1
4182 4191 type not match
4183 4192
4184 4193 $ hg log --template '{rev} Parents: {revset("parents(%s)", rev)}\n'
4185 4194 2 Parents: 1
4186 4195 1 Parents: 0
4187 4196 0 Parents:
4188 4197
4189 4198 $ cat >> .hg/hgrc <<EOF
4190 4199 > [revsetalias]
4191 4200 > myparents(\$1) = parents(\$1)
4192 4201 > EOF
4193 4202 $ hg log --template '{rev} Parents: {revset("myparents(%s)", rev)}\n'
4194 4203 2 Parents: 1
4195 4204 1 Parents: 0
4196 4205 0 Parents:
4197 4206
4198 4207 $ hg log --template 'Rev: {rev}\n{revset("::%s", rev) % "Ancestor: {revision}\n"}\n'
4199 4208 Rev: 2
4200 4209 Ancestor: 0
4201 4210 Ancestor: 1
4202 4211 Ancestor: 2
4203 4212
4204 4213 Rev: 1
4205 4214 Ancestor: 0
4206 4215 Ancestor: 1
4207 4216
4208 4217 Rev: 0
4209 4218 Ancestor: 0
4210 4219
4211 4220 $ hg log --template '{revset("TIP"|lower)}\n' -l1
4212 4221 2
4213 4222
4214 4223 $ hg log -T '{revset("%s", "t{"ip"}")}\n' -l1
4215 4224 2
4216 4225
4217 4226 a list template is evaluated for each item of revset/parents
4218 4227
4219 4228 $ hg log -T '{rev} p: {revset("p1(%s)", rev) % "{rev}:{node|short}"}\n'
4220 4229 2 p: 1:bcc7ff960b8e
4221 4230 1 p: 0:f7769ec2ab97
4222 4231 0 p:
4223 4232
4224 4233 $ hg log --debug -T '{rev} p:{parents % " {rev}:{node|short}"}\n'
4225 4234 2 p: 1:bcc7ff960b8e -1:000000000000
4226 4235 1 p: 0:f7769ec2ab97 -1:000000000000
4227 4236 0 p: -1:000000000000 -1:000000000000
4228 4237
4229 4238 therefore, 'revcache' should be recreated for each rev
4230 4239
4231 4240 $ hg log -T '{rev} {file_adds}\np {revset("p1(%s)", rev) % "{file_adds}"}\n'
4232 4241 2 aa b
4233 4242 p
4234 4243 1
4235 4244 p a
4236 4245 0 a
4237 4246 p
4238 4247
4239 4248 $ hg log --debug -T '{rev} {file_adds}\np {parents % "{file_adds}"}\n'
4240 4249 2 aa b
4241 4250 p
4242 4251 1
4243 4252 p a
4244 4253 0 a
4245 4254 p
4246 4255
4247 4256 a revset item must be evaluated as an integer revision, not an offset from tip
4248 4257
4249 4258 $ hg log -l 1 -T '{revset("null") % "{rev}:{node|short}"}\n'
4250 4259 -1:000000000000
4251 4260 $ hg log -l 1 -T '{revset("%s", "null") % "{rev}:{node|short}"}\n'
4252 4261 -1:000000000000
4253 4262
4254 4263 join() should pick '{rev}' from revset items:
4255 4264
4256 4265 $ hg log -R ../a -T '{join(revset("parents(%d)", rev), ", ")}\n' -r6
4257 4266 4, 5
4258 4267
4259 4268 on the other hand, parents are formatted as '{rev}:{node|formatnode}' by
4260 4269 default. join() should agree with the default formatting:
4261 4270
4262 4271 $ hg log -R ../a -T '{join(parents, ", ")}\n' -r6
4263 4272 5:13207e5a10d9, 4:bbe44766e73d
4264 4273
4265 4274 $ hg log -R ../a -T '{join(parents, ",\n")}\n' -r6 --debug
4266 4275 5:13207e5a10d9fd28ec424934298e176197f2c67f,
4267 4276 4:bbe44766e73d5f11ed2177f1838de10c53ef3e74
4268 4277
4269 4278 Invalid arguments passed to revset()
4270 4279
4271 4280 $ hg log -T '{revset("%whatever", 0)}\n'
4272 4281 hg: parse error: unexpected revspec format character w
4273 4282 [255]
4274 4283 $ hg log -T '{revset("%lwhatever", files)}\n'
4275 4284 hg: parse error: unexpected revspec format character w
4276 4285 [255]
4277 4286 $ hg log -T '{revset("%s %s", 0)}\n'
4278 4287 hg: parse error: missing argument for revspec
4279 4288 [255]
4280 4289 $ hg log -T '{revset("", 0)}\n'
4281 4290 hg: parse error: too many revspec arguments specified
4282 4291 [255]
4283 4292 $ hg log -T '{revset("%s", 0, 1)}\n'
4284 4293 hg: parse error: too many revspec arguments specified
4285 4294 [255]
4286 4295 $ hg log -T '{revset("%", 0)}\n'
4287 4296 hg: parse error: incomplete revspec format character
4288 4297 [255]
4289 4298 $ hg log -T '{revset("%l", 0)}\n'
4290 4299 hg: parse error: incomplete revspec format character
4291 4300 [255]
4292 4301 $ hg log -T '{revset("%d", 'foo')}\n'
4293 4302 hg: parse error: invalid argument for revspec
4294 4303 [255]
4295 4304 $ hg log -T '{revset("%ld", files)}\n'
4296 4305 hg: parse error: invalid argument for revspec
4297 4306 [255]
4298 4307 $ hg log -T '{revset("%ls", 0)}\n'
4299 4308 hg: parse error: invalid argument for revspec
4300 4309 [255]
4301 4310 $ hg log -T '{revset("%b", 'foo')}\n'
4302 4311 hg: parse error: invalid argument for revspec
4303 4312 [255]
4304 4313 $ hg log -T '{revset("%lb", files)}\n'
4305 4314 hg: parse error: invalid argument for revspec
4306 4315 [255]
4307 4316 $ hg log -T '{revset("%r", 0)}\n'
4308 4317 hg: parse error: invalid argument for revspec
4309 4318 [255]
4310 4319
4311 4320 Test 'originalnode'
4312 4321
4313 4322 $ hg log -r 1 -T '{revset("null") % "{node|short} {originalnode|short}"}\n'
4314 4323 000000000000 bcc7ff960b8e
4315 4324 $ hg log -r 0 -T '{manifest % "{node} {originalnode}"}\n'
4316 4325 a0c8bcbbb45c63b90b70ad007bf38961f64f2af0 f7769ec2ab975ad19684098ad1ffd9b81ecc71a1
4317 4326
4318 4327 Test files function
4319 4328
4320 4329 $ hg log -T "{rev}\n{join(files('*'), '\n')}\n"
4321 4330 2
4322 4331 a
4323 4332 aa
4324 4333 b
4325 4334 1
4326 4335 a
4327 4336 0
4328 4337 a
4329 4338
4330 4339 $ hg log -T "{rev}\n{join(files('aa'), '\n')}\n"
4331 4340 2
4332 4341 aa
4333 4342 1
4334 4343
4335 4344 0
4336 4345
4337 4346
4338 4347 Test relpath function
4339 4348
4340 4349 $ hg log -r0 -T '{files % "{file|relpath}\n"}'
4341 4350 a
4342 4351 $ cd ..
4343 4352 $ hg log -R r -r0 -T '{files % "{file|relpath}\n"}'
4344 4353 r/a
4345 4354 $ cd r
4346 4355
4347 4356 Test active bookmark templating
4348 4357
4349 4358 $ hg book foo
4350 4359 $ hg book bar
4351 4360 $ hg log --template "{rev} {bookmarks % '{bookmark}{ifeq(bookmark, active, \"*\")} '}\n"
4352 4361 2 bar* foo
4353 4362 1
4354 4363 0
4355 4364 $ hg log --template "{rev} {activebookmark}\n"
4356 4365 2 bar
4357 4366 1
4358 4367 0
4359 4368 $ hg bookmarks --inactive bar
4360 4369 $ hg log --template "{rev} {activebookmark}\n"
4361 4370 2
4362 4371 1
4363 4372 0
4364 4373 $ hg book -r1 baz
4365 4374 $ hg log --template "{rev} {join(bookmarks, ' ')}\n"
4366 4375 2 bar foo
4367 4376 1 baz
4368 4377 0
4369 4378 $ hg log --template "{rev} {ifcontains('foo', bookmarks, 't', 'f')}\n"
4370 4379 2 t
4371 4380 1 f
4372 4381 0 f
4373 4382
4374 4383 Test namespaces dict
4375 4384
4376 4385 $ hg --config extensions.revnamesext=$TESTDIR/revnamesext.py log -T '{rev}\n{namespaces % " {namespace} color={colorname} builtin={builtin}\n {join(names, ",")}\n"}\n'
4377 4386 2
4378 4387 bookmarks color=bookmark builtin=True
4379 4388 bar,foo
4380 4389 tags color=tag builtin=True
4381 4390 tip
4382 4391 branches color=branch builtin=True
4383 4392 text.{rev}
4384 4393 revnames color=revname builtin=False
4385 4394 r2
4386 4395
4387 4396 1
4388 4397 bookmarks color=bookmark builtin=True
4389 4398 baz
4390 4399 tags color=tag builtin=True
4391 4400
4392 4401 branches color=branch builtin=True
4393 4402 text.{rev}
4394 4403 revnames color=revname builtin=False
4395 4404 r1
4396 4405
4397 4406 0
4398 4407 bookmarks color=bookmark builtin=True
4399 4408
4400 4409 tags color=tag builtin=True
4401 4410
4402 4411 branches color=branch builtin=True
4403 4412 default
4404 4413 revnames color=revname builtin=False
4405 4414 r0
4406 4415
4407 4416 $ hg log -r2 -T '{namespaces % "{namespace}: {names}\n"}'
4408 4417 bookmarks: bar foo
4409 4418 tags: tip
4410 4419 branches: text.{rev}
4411 4420 $ hg log -r2 -T '{namespaces % "{namespace}:\n{names % " {name}\n"}"}'
4412 4421 bookmarks:
4413 4422 bar
4414 4423 foo
4415 4424 tags:
4416 4425 tip
4417 4426 branches:
4418 4427 text.{rev}
4419 4428 $ hg log -r2 -T '{get(namespaces, "bookmarks") % "{name}\n"}'
4420 4429 bar
4421 4430 foo
4422 4431 $ hg log -r2 -T '{namespaces.bookmarks % "{bookmark}\n"}'
4423 4432 bar
4424 4433 foo
4425 4434
4426 4435 Test stringify on sub expressions
4427 4436
4428 4437 $ cd ..
4429 4438 $ hg log -R a -r 8 --template '{join(files, if("1", if("1", ", ")))}\n'
4430 4439 fourth, second, third
4431 4440 $ hg log -R a -r 8 --template '{strip(if("1", if("1", "-abc-")), if("1", if("1", "-")))}\n'
4432 4441 abc
4433 4442
4434 4443 Test splitlines
4435 4444
4436 4445 $ hg log -Gv -R a --template "{splitlines(desc) % 'foo {line}\n'}"
4437 4446 @ foo Modify, add, remove, rename
4438 4447 |
4439 4448 o foo future
4440 4449 |
4441 4450 o foo third
4442 4451 |
4443 4452 o foo second
4444 4453
4445 4454 o foo merge
4446 4455 |\
4447 4456 | o foo new head
4448 4457 | |
4449 4458 o | foo new branch
4450 4459 |/
4451 4460 o foo no user, no domain
4452 4461 |
4453 4462 o foo no person
4454 4463 |
4455 4464 o foo other 1
4456 4465 | foo other 2
4457 4466 | foo
4458 4467 | foo other 3
4459 4468 o foo line 1
4460 4469 foo line 2
4461 4470
4462 4471 $ hg log -R a -r0 -T '{desc|splitlines}\n'
4463 4472 line 1 line 2
4464 4473 $ hg log -R a -r0 -T '{join(desc|splitlines, "|")}\n'
4465 4474 line 1|line 2
4466 4475
4467 4476 Test startswith
4468 4477 $ hg log -Gv -R a --template "{startswith(desc)}"
4469 4478 hg: parse error: startswith expects two arguments
4470 4479 [255]
4471 4480
4472 4481 $ hg log -Gv -R a --template "{startswith('line', desc)}"
4473 4482 @
4474 4483 |
4475 4484 o
4476 4485 |
4477 4486 o
4478 4487 |
4479 4488 o
4480 4489
4481 4490 o
4482 4491 |\
4483 4492 | o
4484 4493 | |
4485 4494 o |
4486 4495 |/
4487 4496 o
4488 4497 |
4489 4498 o
4490 4499 |
4491 4500 o
4492 4501 |
4493 4502 o line 1
4494 4503 line 2
4495 4504
4496 4505 Test bad template with better error message
4497 4506
4498 4507 $ hg log -Gv -R a --template '{desc|user()}'
4499 4508 hg: parse error: expected a symbol, got 'func'
4500 4509 [255]
4501 4510
4502 4511 Test word function (including index out of bounds graceful failure)
4503 4512
4504 4513 $ hg log -Gv -R a --template "{word('1', desc)}"
4505 4514 @ add,
4506 4515 |
4507 4516 o
4508 4517 |
4509 4518 o
4510 4519 |
4511 4520 o
4512 4521
4513 4522 o
4514 4523 |\
4515 4524 | o head
4516 4525 | |
4517 4526 o | branch
4518 4527 |/
4519 4528 o user,
4520 4529 |
4521 4530 o person
4522 4531 |
4523 4532 o 1
4524 4533 |
4525 4534 o 1
4526 4535
4527 4536
4528 4537 Test word third parameter used as splitter
4529 4538
4530 4539 $ hg log -Gv -R a --template "{word('0', desc, 'o')}"
4531 4540 @ M
4532 4541 |
4533 4542 o future
4534 4543 |
4535 4544 o third
4536 4545 |
4537 4546 o sec
4538 4547
4539 4548 o merge
4540 4549 |\
4541 4550 | o new head
4542 4551 | |
4543 4552 o | new branch
4544 4553 |/
4545 4554 o n
4546 4555 |
4547 4556 o n
4548 4557 |
4549 4558 o
4550 4559 |
4551 4560 o line 1
4552 4561 line 2
4553 4562
4554 4563 Test word error messages for not enough and too many arguments
4555 4564
4556 4565 $ hg log -Gv -R a --template "{word('0')}"
4557 4566 hg: parse error: word expects two or three arguments, got 1
4558 4567 [255]
4559 4568
4560 4569 $ hg log -Gv -R a --template "{word('0', desc, 'o', 'h', 'b', 'o', 'y')}"
4561 4570 hg: parse error: word expects two or three arguments, got 7
4562 4571 [255]
4563 4572
4564 4573 Test word for integer literal
4565 4574
4566 4575 $ hg log -R a --template "{word(2, desc)}\n" -r0
4567 4576 line
4568 4577
4569 4578 Test word for invalid numbers
4570 4579
4571 4580 $ hg log -Gv -R a --template "{word('a', desc)}"
4572 4581 hg: parse error: word expects an integer index
4573 4582 [255]
4574 4583
4575 4584 Test word for out of range
4576 4585
4577 4586 $ hg log -R a --template "{word(10000, desc)}"
4578 4587 $ hg log -R a --template "{word(-10000, desc)}"
4579 4588
4580 4589 Test indent and not adding to empty lines
4581 4590
4582 4591 $ hg log -T "-----\n{indent(desc, '>> ', ' > ')}\n" -r 0:1 -R a
4583 4592 -----
4584 4593 > line 1
4585 4594 >> line 2
4586 4595 -----
4587 4596 > other 1
4588 4597 >> other 2
4589 4598
4590 4599 >> other 3
4591 4600
4592 4601 Test with non-strings like dates
4593 4602
4594 4603 $ hg log -T "{indent(date, ' ')}\n" -r 2:3 -R a
4595 4604 1200000.00
4596 4605 1300000.00
4597 4606
4598 4607 Test broken string escapes:
4599 4608
4600 4609 $ hg log -T "bogus\\" -R a
4601 4610 hg: parse error: trailing \ in string
4602 4611 [255]
4603 4612 $ hg log -T "\\xy" -R a
4604 4613 hg: parse error: invalid \x escape* (glob)
4605 4614 [255]
4606 4615
4607 4616 json filter should escape HTML tags so that the output can be embedded in hgweb:
4608 4617
4609 4618 $ hg log -T "{'<foo@example.org>'|json}\n" -R a -l1
4610 4619 "\u003cfoo@example.org\u003e"
4611 4620
4612 4621 Templater supports aliases of symbol and func() styles:
4613 4622
4614 4623 $ hg clone -q a aliases
4615 4624 $ cd aliases
4616 4625 $ cat <<EOF >> .hg/hgrc
4617 4626 > [templatealias]
4618 4627 > r = rev
4619 4628 > rn = "{r}:{node|short}"
4620 4629 > status(c, files) = files % "{c} {file}\n"
4621 4630 > utcdate(d) = localdate(d, "UTC")
4622 4631 > EOF
4623 4632
4624 4633 $ hg debugtemplate -vr0 '{rn} {utcdate(date)|isodate}\n'
4625 4634 (template
4626 4635 (symbol 'rn')
4627 4636 (string ' ')
4628 4637 (|
4629 4638 (func
4630 4639 (symbol 'utcdate')
4631 4640 (symbol 'date'))
4632 4641 (symbol 'isodate'))
4633 4642 (string '\n'))
4634 4643 * expanded:
4635 4644 (template
4636 4645 (template
4637 4646 (symbol 'rev')
4638 4647 (string ':')
4639 4648 (|
4640 4649 (symbol 'node')
4641 4650 (symbol 'short')))
4642 4651 (string ' ')
4643 4652 (|
4644 4653 (func
4645 4654 (symbol 'localdate')
4646 4655 (list
4647 4656 (symbol 'date')
4648 4657 (string 'UTC')))
4649 4658 (symbol 'isodate'))
4650 4659 (string '\n'))
4651 4660 0:1e4e1b8f71e0 1970-01-12 13:46 +0000
4652 4661
4653 4662 $ hg debugtemplate -vr0 '{status("A", file_adds)}'
4654 4663 (template
4655 4664 (func
4656 4665 (symbol 'status')
4657 4666 (list
4658 4667 (string 'A')
4659 4668 (symbol 'file_adds'))))
4660 4669 * expanded:
4661 4670 (template
4662 4671 (%
4663 4672 (symbol 'file_adds')
4664 4673 (template
4665 4674 (string 'A')
4666 4675 (string ' ')
4667 4676 (symbol 'file')
4668 4677 (string '\n'))))
4669 4678 A a
4670 4679
4671 4680 A unary function alias can be called as a filter:
4672 4681
4673 4682 $ hg debugtemplate -vr0 '{date|utcdate|isodate}\n'
4674 4683 (template
4675 4684 (|
4676 4685 (|
4677 4686 (symbol 'date')
4678 4687 (symbol 'utcdate'))
4679 4688 (symbol 'isodate'))
4680 4689 (string '\n'))
4681 4690 * expanded:
4682 4691 (template
4683 4692 (|
4684 4693 (func
4685 4694 (symbol 'localdate')
4686 4695 (list
4687 4696 (symbol 'date')
4688 4697 (string 'UTC')))
4689 4698 (symbol 'isodate'))
4690 4699 (string '\n'))
4691 4700 1970-01-12 13:46 +0000
4692 4701
4693 4702 Aliases should be applied only to command arguments and templates in hgrc.
4694 4703 Otherwise, our stock styles and web templates could be corrupted:
4695 4704
4696 4705 $ hg log -r0 -T '{rn} {utcdate(date)|isodate}\n'
4697 4706 0:1e4e1b8f71e0 1970-01-12 13:46 +0000
4698 4707
4699 4708 $ hg log -r0 --config ui.logtemplate='"{rn} {utcdate(date)|isodate}\n"'
4700 4709 0:1e4e1b8f71e0 1970-01-12 13:46 +0000
4701 4710
4702 4711 $ cat <<EOF > tmpl
4703 4712 > changeset = 'nothing expanded:{rn}\n'
4704 4713 > EOF
4705 4714 $ hg log -r0 --style ./tmpl
4706 4715 nothing expanded:
4707 4716
4708 4717 Aliases in formatter:
4709 4718
4710 4719 $ hg branches -T '{pad(branch, 7)} {rn}\n'
4711 4720 default 6:d41e714fe50d
4712 4721 foo 4:bbe44766e73d
4713 4722
4714 4723 Aliases should honor HGPLAIN:
4715 4724
4716 4725 $ HGPLAIN= hg log -r0 -T 'nothing expanded:{rn}\n'
4717 4726 nothing expanded:
4718 4727 $ HGPLAINEXCEPT=templatealias hg log -r0 -T '{rn}\n'
4719 4728 0:1e4e1b8f71e0
4720 4729
4721 4730 Unparsable alias:
4722 4731
4723 4732 $ hg debugtemplate --config templatealias.bad='x(' -v '{bad}'
4724 4733 (template
4725 4734 (symbol 'bad'))
4726 4735 abort: bad definition of template alias "bad": at 2: not a prefix: end
4727 4736 [255]
4728 4737 $ hg log --config templatealias.bad='x(' -T '{bad}'
4729 4738 abort: bad definition of template alias "bad": at 2: not a prefix: end
4730 4739 [255]
4731 4740
4732 4741 $ cd ..
4733 4742
4734 4743 Set up repository for non-ascii encoding tests:
4735 4744
4736 4745 $ hg init nonascii
4737 4746 $ cd nonascii
4738 4747 $ $PYTHON <<EOF
4739 4748 > open('latin1', 'wb').write(b'\xe9')
4740 4749 > open('utf-8', 'wb').write(b'\xc3\xa9')
4741 4750 > EOF
4742 4751 $ HGENCODING=utf-8 hg branch -q `cat utf-8`
4743 4752 $ HGENCODING=utf-8 hg ci -qAm "non-ascii branch: `cat utf-8`" utf-8
4744 4753
4745 4754 json filter should try round-trip conversion to utf-8:
4746 4755
4747 4756 $ HGENCODING=ascii hg log -T "{branch|json}\n" -r0
4748 4757 "\u00e9"
4749 4758 $ HGENCODING=ascii hg log -T "{desc|json}\n" -r0
4750 4759 "non-ascii branch: \u00e9"
4751 4760
4752 4761 json filter should take input as utf-8 if it was converted from utf-8:
4753 4762
4754 4763 $ HGENCODING=latin-1 hg log -T "{branch|json}\n" -r0
4755 4764 "\u00e9"
4756 4765 $ HGENCODING=latin-1 hg log -T "{desc|json}\n" -r0
4757 4766 "non-ascii branch: \u00e9"
4758 4767
4759 4768 json filter takes input as utf-8b:
4760 4769
4761 4770 $ HGENCODING=ascii hg log -T "{'`cat utf-8`'|json}\n" -l1
4762 4771 "\u00e9"
4763 4772 $ HGENCODING=ascii hg log -T "{'`cat latin1`'|json}\n" -l1
4764 4773 "\udce9"
4765 4774
4766 4775 utf8 filter:
4767 4776
4768 4777 $ HGENCODING=ascii hg log -T "round-trip: {branch|utf8|hex}\n" -r0
4769 4778 round-trip: c3a9
4770 4779 $ HGENCODING=latin1 hg log -T "decoded: {'`cat latin1`'|utf8|hex}\n" -l1
4771 4780 decoded: c3a9
4772 4781 $ HGENCODING=ascii hg log -T "replaced: {'`cat latin1`'|utf8|hex}\n" -l1
4773 4782 abort: decoding near * (glob)
4774 4783 [255]
4775 4784 $ hg log -T "coerced to string: {rev|utf8}\n" -r0
4776 4785 coerced to string: 0
4777 4786
4778 4787 pad width:
4779 4788
4780 4789 $ HGENCODING=utf-8 hg debugtemplate "{pad('`cat utf-8`', 2, '-')}\n"
4781 4790 \xc3\xa9- (esc)
4782 4791
4783 4792 $ cd ..
4784 4793
4785 4794 Test that template function in extension is registered as expected
4786 4795
4787 4796 $ cd a
4788 4797
4789 4798 $ cat <<EOF > $TESTTMP/customfunc.py
4790 4799 > from mercurial import registrar
4791 4800 >
4792 4801 > templatefunc = registrar.templatefunc()
4793 4802 >
4794 4803 > @templatefunc(b'custom()')
4795 4804 > def custom(context, mapping, args):
4796 4805 > return b'custom'
4797 4806 > EOF
4798 4807 $ cat <<EOF > .hg/hgrc
4799 4808 > [extensions]
4800 4809 > customfunc = $TESTTMP/customfunc.py
4801 4810 > EOF
4802 4811
4803 4812 $ hg log -r . -T "{custom()}\n" --config customfunc.enabled=true
4804 4813 custom
4805 4814
4806 4815 $ cd ..
4807 4816
4808 4817 Test 'graphwidth' in 'hg log' on various topologies. The key here is that the
4809 4818 printed graphwidths 3, 5, 7, etc. should all line up in their respective
4810 4819 columns. We don't care about other aspects of the graph rendering here.
4811 4820
4812 4821 $ hg init graphwidth
4813 4822 $ cd graphwidth
4814 4823
4815 4824 $ wrappabletext="a a a a a a a a a a a a"
4816 4825
4817 4826 $ printf "first\n" > file
4818 4827 $ hg add file
4819 4828 $ hg commit -m "$wrappabletext"
4820 4829
4821 4830 $ printf "first\nsecond\n" > file
4822 4831 $ hg commit -m "$wrappabletext"
4823 4832
4824 4833 $ hg checkout 0
4825 4834 1 files updated, 0 files merged, 0 files removed, 0 files unresolved
4826 4835 $ printf "third\nfirst\n" > file
4827 4836 $ hg commit -m "$wrappabletext"
4828 4837 created new head
4829 4838
4830 4839 $ hg merge
4831 4840 merging file
4832 4841 0 files updated, 1 files merged, 0 files removed, 0 files unresolved
4833 4842 (branch merge, don't forget to commit)
4834 4843
4835 4844 $ hg log --graph -T "{graphwidth}"
4836 4845 @ 3
4837 4846 |
4838 4847 | @ 5
4839 4848 |/
4840 4849 o 3
4841 4850
4842 4851 $ hg commit -m "$wrappabletext"
4843 4852
4844 4853 $ hg log --graph -T "{graphwidth}"
4845 4854 @ 5
4846 4855 |\
4847 4856 | o 5
4848 4857 | |
4849 4858 o | 5
4850 4859 |/
4851 4860 o 3
4852 4861
4853 4862
4854 4863 $ hg checkout 0
4855 4864 1 files updated, 0 files merged, 0 files removed, 0 files unresolved
4856 4865 $ printf "third\nfirst\nsecond\n" > file
4857 4866 $ hg commit -m "$wrappabletext"
4858 4867 created new head
4859 4868
4860 4869 $ hg log --graph -T "{graphwidth}"
4861 4870 @ 3
4862 4871 |
4863 4872 | o 7
4864 4873 | |\
4865 4874 +---o 7
4866 4875 | |
4867 4876 | o 5
4868 4877 |/
4869 4878 o 3
4870 4879
4871 4880
4872 4881 $ hg log --graph -T "{graphwidth}" -r 3
4873 4882 o 5
4874 4883 |\
4875 4884 ~ ~
4876 4885
4877 4886 $ hg log --graph -T "{graphwidth}" -r 1
4878 4887 o 3
4879 4888 |
4880 4889 ~
4881 4890
4882 4891 $ hg merge
4883 4892 1 files updated, 0 files merged, 0 files removed, 0 files unresolved
4884 4893 (branch merge, don't forget to commit)
4885 4894 $ hg commit -m "$wrappabletext"
4886 4895
4887 4896 $ printf "seventh\n" >> file
4888 4897 $ hg commit -m "$wrappabletext"
4889 4898
4890 4899 $ hg log --graph -T "{graphwidth}"
4891 4900 @ 3
4892 4901 |
4893 4902 o 5
4894 4903 |\
4895 4904 | o 5
4896 4905 | |
4897 4906 o | 7
4898 4907 |\ \
4899 4908 | o | 7
4900 4909 | |/
4901 4910 o / 5
4902 4911 |/
4903 4912 o 3
4904 4913
4905 4914
4906 4915 The point of graphwidth is to allow wrapping that accounts for the space taken
4907 4916 by the graph.
4908 4917
4909 4918 $ COLUMNS=10 hg log --graph -T "{fill(desc, termwidth - graphwidth)}"
4910 4919 @ a a a a
4911 4920 | a a a a
4912 4921 | a a a a
4913 4922 o a a a
4914 4923 |\ a a a
4915 4924 | | a a a
4916 4925 | | a a a
4917 4926 | o a a a
4918 4927 | | a a a
4919 4928 | | a a a
4920 4929 | | a a a
4921 4930 o | a a
4922 4931 |\ \ a a
4923 4932 | | | a a
4924 4933 | | | a a
4925 4934 | | | a a
4926 4935 | | | a a
4927 4936 | o | a a
4928 4937 | |/ a a
4929 4938 | | a a
4930 4939 | | a a
4931 4940 | | a a
4932 4941 | | a a
4933 4942 o | a a a
4934 4943 |/ a a a
4935 4944 | a a a
4936 4945 | a a a
4937 4946 o a a a a
4938 4947 a a a a
4939 4948 a a a a
4940 4949
4941 4950 Something tricky happens when there are elided nodes; the next drawn row of
4942 4951 edges can be more than one column wider, but the graph width only increases by
4943 4952 one column. The remaining columns are added in between the nodes.
4944 4953
4945 4954 $ hg log --graph -T "{graphwidth}" -r "0|2|4|5"
4946 4955 o 5
4947 4956 |\
4948 4957 | \
4949 4958 | :\
4950 4959 o : : 7
4951 4960 :/ /
4952 4961 : o 5
4953 4962 :/
4954 4963 o 3
4955 4964
4956 4965
4957 4966 $ cd ..
4958 4967
General Comments 0
You need to be logged in to leave comments. Login now