##// END OF EJS Templates
discovery: explicitly use `undecided` for the children mapping...
discovery: explicitly use `undecided` for the children mapping Recent performance achievements makes the assumption that the `undecided` set is used for sampling. That assumption is always true in practice. We stop pretending that taking anything else would make sense and we directly use the `undecided` set from the object. This provides a more honest API.

File last commit:

r40065:e2697acd default
r42052:a05f0bbe default
Show More
templatefilters.py
475 lines | 14.5 KiB | text/x-python | PythonLexer
Yuya Nishihara
templatefilers: correct filename in header comment
r32740 # templatefilters.py - common template expansion filters
Matt Mackall
templates: move filters to their own module...
r5976 #
# Copyright 2005-2008 Matt Mackall <mpm@selenic.com>
#
Martin Geisler
updated license to be explicit about GPL version 2
r8225 # This software may be used and distributed according to the terms of the
Matt Mackall
Update license to GPLv2+
r10263 # GNU General Public License version 2 or any later version.
Matt Mackall
templates: move filters to their own module...
r5976
Gregory Szorc
templatefilters: use absolute_import
r25983 from __future__ import absolute_import
import os
import re
import time
Yuya Nishihara
templatefilters: handle TypeError by count()...
r37246 from .i18n import _
Gregory Szorc
templatefilters: use absolute_import
r25983 from . import (
encoding,
Augie Fackler
templatefilters: defend against evil unicode strs in json filter...
r34838 error,
Gregory Szorc
templatefilters: use absolute_import
r25983 node,
Pulkit Goyal
py3: alias long to int on Python 3
r32126 pycompat,
FUJIWARA Katsunori
templatefilters: use templatefilter to mark a function as template filter...
r28693 registrar,
Yuya Nishihara
templater: move stringify() to templateutil module...
r36938 templateutil,
Augie Fackler
python3: use our bytes-only version of cgi.escape everywhere...
r34696 url,
Gregory Szorc
templatefilters: use absolute_import
r25983 util,
)
Yuya Nishihara
stringutil: bulk-replace call sites to point to new module...
r37102 from .utils import (
dateutil,
stringutil,
)
Matt Mackall
templates: move filters to their own module...
r5976
timeless
pycompat: switch to util.urlreq/util.urlerr for py3 compat
r28883 urlerr = util.urlerr
urlreq = util.urlreq
Pulkit Goyal
py3: alias long to int on Python 3
r32126 if pycompat.ispy3:
long = int
FUJIWARA Katsunori
templatefilters: use templatefilter to mark a function as template filter...
r28693 # filters are callables like:
# fn(obj)
# with:
# obj - object to be filtered (text, date, list and so on)
filters = {}
templatefilter = registrar.templatefilter(filters)
Yuya Nishihara
templatefilters: declare input type as bytes where appropriate...
r37240 @templatefilter('addbreaks', intype=bytes)
Patrick Mezard
templatefilters: sort function definitions
r13588 def addbreaks(text):
FUJIWARA Katsunori
templatefilters: use templatefilter to mark a function as template filter...
r28693 """Any text. Add an XHTML "<br />" tag before the end of
Patrick Mezard
templatefilters: move doc from templates.txt to docstrings
r13591 every line except the last.
"""
Patrick Mezard
templatefilters: sort function definitions
r13588 return text.replace('\n', '<br/>\n')
Dirkjan Ochtman
templater: provide the standard template filters by default
r8360
David Soria Parra
templatefilters: add short format for age formatting...
r19736 agescales = [("year", 3600 * 24 * 365, 'Y'),
("month", 3600 * 24 * 30, 'M'),
("week", 3600 * 24 * 7, 'W'),
("day", 3600 * 24, 'd'),
("hour", 3600, 'h'),
("minute", 60, 'm'),
("second", 1, 's')]
Matt Mackall
templates: move filters to their own module...
r5976
Yuya Nishihara
templatefilters: declare input type as date where appropriate...
r37244 @templatefilter('age', intype=templateutil.date)
David Soria Parra
templatefilters: add short format for age formatting...
r19736 def age(date, abbrev=False):
FUJIWARA Katsunori
templatefilters: use templatefilter to mark a function as template filter...
r28693 """Date. Returns a human-readable date/time difference between the
Patrick Mezard
templatefilters: move doc from templates.txt to docstrings
r13591 given date/time and the current date/time.
"""
Matt Mackall
templates: move filters to their own module...
r5976
def plural(t, c):
if c == 1:
return t
return t + "s"
David Soria Parra
templatefilters: add short format for age formatting...
r19736 def fmt(t, c, a):
if abbrev:
return "%d%s" % (c, a)
Matt Mackall
templates: move filters to their own module...
r5976 return "%d %s" % (c, plural(t, c))
now = time.time()
then = date[0]
timeless
templates: provide granularity for future values for age filter
r13666 future = False
Dirkjan Ochtman
templater: fix age filter to state the obvious on future timestamps
r7682 if then > now:
timeless
templates: provide granularity for future values for age filter
r13666 future = True
delta = max(1, int(then - now))
if delta > agescales[0][1] * 30:
return 'in the distant future'
else:
delta = max(1, int(now - then))
if delta > agescales[0][1] * 2:
Boris Feld
util: extract all date-related utils in utils/dateutil module...
r36625 return dateutil.shortdate(date)
Dirkjan Ochtman
templater: readable dates older than 24 months revert to ISO8601 (issue1006)
r9722
David Soria Parra
templatefilters: add short format for age formatting...
r19736 for t, s, a in agescales:
Alejandro Santos
compat: use // for integer division
r9029 n = delta // s
Matt Mackall
templates: move filters to their own module...
r5976 if n >= 2 or s == 1:
timeless
templates: provide granularity for future values for age filter
r13666 if future:
David Soria Parra
templatefilters: add short format for age formatting...
r19736 return '%s from now' % fmt(t, n, a)
return '%s ago' % fmt(t, n, a)
Matt Mackall
templates: move filters to their own module...
r5976
Yuya Nishihara
templatefilters: declare input type as bytes where appropriate...
r37240 @templatefilter('basename', intype=bytes)
Patrick Mezard
templatefilters: wrap all filters in dedicated functions...
r13590 def basename(path):
FUJIWARA Katsunori
templatefilters: use templatefilter to mark a function as template filter...
r28693 """Any text. Treats the text as a path, and returns the last
Yuya Nishihara
templatefilters: fix doc of basename()...
r35577 component of the path after splitting by the path separator.
For example, "foo/bar/baz" becomes "baz" and "foo/bar//" becomes "".
Patrick Mezard
templatefilters: move doc from templates.txt to docstrings
r13591 """
Patrick Mezard
templatefilters: wrap all filters in dedicated functions...
r13590 return os.path.basename(path)
Martin von Zweigbergk
templatefilters: rename commonprefix to commondir...
r38323 @templatefilter('commondir')
def commondir(filelist):
Joerg Sonnenberger
templatefilters: add commonprefix...
r38198 """List of text. Treats each list item as file name with /
as path separator and returns the longest common directory
prefix shared by all list items.
Returns the empty string if no common prefix exists.
The list items are not normalized, i.e. "foo/../bar" is handled as
file "bar" in the directory "foo/..". Leading slashes are ignored.
For example, ["foo/bar/baz", "foo/baz/bar"] becomes "foo" and
["foo/bar", "baz"] becomes "".
"""
def common(a, b):
if len(a) > len(b):
a = b[:len(a)]
elif len(b) > len(a):
b = b[:len(a)]
if a == b:
return a
Gregory Szorc
global: use pycompat.xrange()...
r38806 for i in pycompat.xrange(len(a)):
Joerg Sonnenberger
templatefilters: add commonprefix...
r38198 if a[i] != b[i]:
return a[:i]
return a
try:
if not filelist:
return ""
dirlist = [f.lstrip('/').split('/')[:-1] for f in filelist]
if len(dirlist) == 1:
return '/'.join(dirlist[0])
a = min(dirlist)
b = max(dirlist)
# The common prefix of a and b is shared with all
# elements of the list since Python sorts lexicographical
# and [1, x] after [1].
return '/'.join(common(a, b))
except TypeError:
raise error.ParseError(_('argument is not a list of text'))
FUJIWARA Katsunori
templatefilters: use templatefilter to mark a function as template filter...
r28693 @templatefilter('count')
Anton Shestakov
templater: add count template filter, plus tests...
r22668 def count(i):
FUJIWARA Katsunori
templatefilters: use templatefilter to mark a function as template filter...
r28693 """List or text. Returns the length as an integer."""
Yuya Nishihara
templatefilters: handle TypeError by count()...
r37246 try:
return len(i)
except TypeError:
raise error.ParseError(_('not countable'))
Anton Shestakov
templater: add count template filter, plus tests...
r22668
Yuya Nishihara
templatefilters: declare input type as bytes where appropriate...
r37240 @templatefilter('dirname', intype=bytes)
Yuya Nishihara
templatefilters: add dirname() filter...
r36260 def dirname(path):
"""Any text. Treats the text as a path, and strips the last
component of the path after splitting by the path separator.
"""
return os.path.dirname(path)
Yuya Nishihara
templatefilters: declare input type as bytes where appropriate...
r37240 @templatefilter('domain', intype=bytes)
Patrick Mezard
templatefilters: sort function definitions
r13588 def domain(author):
FUJIWARA Katsunori
templatefilters: use templatefilter to mark a function as template filter...
r28693 """Any text. Finds the first string that looks like an email
Patrick Mezard
templatefilters: move doc from templates.txt to docstrings
r13591 address, and extracts just the domain component. Example: ``User
<user@example.com>`` becomes ``example.com``.
"""
Patrick Mezard
templatefilters: sort function definitions
r13588 f = author.find('@')
if f == -1:
return ''
author = author[f + 1:]
f = author.find('>')
if f >= 0:
author = author[:f]
return author
Yuya Nishihara
templatefilters: declare input type as bytes where appropriate...
r37240 @templatefilter('email', intype=bytes)
Patrick Mezard
templatefilters: wrap all filters in dedicated functions...
r13590 def email(text):
FUJIWARA Katsunori
templatefilters: use templatefilter to mark a function as template filter...
r28693 """Any text. Extracts the first string that looks like an email
Patrick Mezard
templatefilters: move doc from templates.txt to docstrings
r13591 address. Example: ``User <user@example.com>`` becomes
``user@example.com``.
"""
Yuya Nishihara
stringutil: bulk-replace call sites to point to new module...
r37102 return stringutil.email(text)
Patrick Mezard
templatefilters: wrap all filters in dedicated functions...
r13590
Yuya Nishihara
templatefilters: declare input type as bytes where appropriate...
r37240 @templatefilter('escape', intype=bytes)
Patrick Mezard
templatefilters: wrap all filters in dedicated functions...
r13590 def escape(text):
FUJIWARA Katsunori
templatefilters: use templatefilter to mark a function as template filter...
r28693 """Any text. Replaces the special XML/XHTML characters "&", "<"
Siddharth Agarwal
hgweb: make the escape filter remove null characters (issue2567)
r17772 and ">" with XML entities, and filters out NUL characters.
Patrick Mezard
templatefilters: move doc from templates.txt to docstrings
r13591 """
Augie Fackler
python3: use our bytes-only version of cgi.escape everywhere...
r34696 return url.escape(text.replace('\0', ''), True)
Patrick Mezard
templatefilters: wrap all filters in dedicated functions...
r13590
Matt Mackall
templates: move filters to their own module...
r5976 para_re = None
space_re = None
Mads Kiilerich
check-code: check for spaces around = for named parameters
r19872 def fill(text, width, initindent='', hangindent=''):
Sean Farley
templater: add indentation arguments to the fill function
r19228 '''fill many paragraphs with optional indentation.'''
Matt Mackall
templates: move filters to their own module...
r5976 global para_re, space_re
if para_re is None:
para_re = re.compile('(\n\n|\n\\s*[-*]\\s*)', re.M)
Yuya Nishihara
py3: make regexp literal bytes in templatefilters.py...
r36516 space_re = re.compile(br' +')
Matt Mackall
templates: move filters to their own module...
r5976
def findparas():
start = 0
while True:
m = para_re.search(text, start)
if not m:
Yuya Nishihara
templatefilters: use encoding.unifromlocal/unitolocal() for py3 compatibility
r36515 uctext = encoding.unifromlocal(text[start:])
FUJIWARA Katsunori
replace Python standard textwrap by MBCS sensitive one for i18n text...
r11297 w = len(uctext)
Martin von Zweigbergk
cleanup: some Yoda conditions, this patch removes...
r40065 while w > 0 and uctext[w - 1].isspace():
Matt Mackall
many, many trivial check-code fixups
r10282 w -= 1
Yuya Nishihara
templatefilters: use encoding.unifromlocal/unitolocal() for py3 compatibility
r36515 yield (encoding.unitolocal(uctext[:w]),
encoding.unitolocal(uctext[w:]))
Matt Mackall
templates: move filters to their own module...
r5976 break
yield text[start:m.start(0)], m.group(1)
start = m.end(1)
Yuya Nishihara
stringutil: bulk-replace call sites to point to new module...
r37102 return "".join([stringutil.wrap(space_re.sub(' ',
stringutil.wrap(para, width)),
width, initindent, hangindent) + rest
Matt Mackall
templates: move filters to their own module...
r5976 for para, rest in findparas()])
Yuya Nishihara
templatefilters: declare input type as bytes where appropriate...
r37240 @templatefilter('fill68', intype=bytes)
Patrick Mezard
templatefilters: wrap all filters in dedicated functions...
r13590 def fill68(text):
FUJIWARA Katsunori
templatefilters: use templatefilter to mark a function as template filter...
r28693 """Any text. Wraps the text to fit in 68 columns."""
Patrick Mezard
templatefilters: wrap all filters in dedicated functions...
r13590 return fill(text, 68)
Yuya Nishihara
templatefilters: declare input type as bytes where appropriate...
r37240 @templatefilter('fill76', intype=bytes)
Patrick Mezard
templatefilters: wrap all filters in dedicated functions...
r13590 def fill76(text):
FUJIWARA Katsunori
templatefilters: use templatefilter to mark a function as template filter...
r28693 """Any text. Wraps the text to fit in 76 columns."""
Patrick Mezard
templatefilters: wrap all filters in dedicated functions...
r13590 return fill(text, 76)
Yuya Nishihara
templatefilters: declare input type as bytes where appropriate...
r37240 @templatefilter('firstline', intype=bytes)
Matt Mackall
templates: move filters to their own module...
r5976 def firstline(text):
FUJIWARA Katsunori
templatefilters: use templatefilter to mark a function as template filter...
r28693 """Any text. Returns the first line of text."""
Matt Mackall
templates: move filters to their own module...
r5976 try:
Nicolas Dumazet
for calls expecting bool args, pass bool instead of int...
r9136 return text.splitlines(True)[0].rstrip('\r\n')
Matt Mackall
templates: move filters to their own module...
r5976 except IndexError:
return ''
Yuya Nishihara
templatefilters: declare input type as bytes where appropriate...
r37240 @templatefilter('hex', intype=bytes)
Patrick Mezard
templatefilters: wrap all filters in dedicated functions...
r13590 def hexfilter(text):
FUJIWARA Katsunori
templatefilters: use templatefilter to mark a function as template filter...
r28693 """Any text. Convert a binary Mercurial node identifier into
Patrick Mezard
templatefilters: move doc from templates.txt to docstrings
r13591 its long hexadecimal representation.
"""
Patrick Mezard
templatefilters: wrap all filters in dedicated functions...
r13590 return node.hex(text)
Yuya Nishihara
templatefilters: declare input type as date where appropriate...
r37244 @templatefilter('hgdate', intype=templateutil.date)
Patrick Mezard
templatefilters: wrap all filters in dedicated functions...
r13590 def hgdate(text):
FUJIWARA Katsunori
templatefilters: use templatefilter to mark a function as template filter...
r28693 """Date. Returns the date as a pair of numbers: "1157407993
Yuya Nishihara
templatefilters: undeprecate hgdate...
r38319 25200" (Unix timestamp, timezone offset).
Patrick Mezard
templatefilters: move doc from templates.txt to docstrings
r13591 """
Patrick Mezard
templatefilters: wrap all filters in dedicated functions...
r13590 return "%d %d" % text
Yuya Nishihara
templatefilters: declare input type as date where appropriate...
r37244 @templatefilter('isodate', intype=templateutil.date)
Patrick Mezard
templatefilters: wrap all filters in dedicated functions...
r13590 def isodate(text):
FUJIWARA Katsunori
templatefilters: use templatefilter to mark a function as template filter...
r28693 """Date. Returns the date in ISO 8601 format: "2009-08-18 13:00
Patrick Mezard
templatefilters: move doc from templates.txt to docstrings
r13591 +0200".
"""
Boris Feld
util: extract all date-related utils in utils/dateutil module...
r36625 return dateutil.datestr(text, '%Y-%m-%d %H:%M %1%2')
Patrick Mezard
templatefilters: wrap all filters in dedicated functions...
r13590
Yuya Nishihara
templatefilters: declare input type as date where appropriate...
r37244 @templatefilter('isodatesec', intype=templateutil.date)
Patrick Mezard
templatefilters: wrap all filters in dedicated functions...
r13590 def isodatesec(text):
FUJIWARA Katsunori
templatefilters: use templatefilter to mark a function as template filter...
r28693 """Date. Returns the date in ISO 8601 format, including
Patrick Mezard
templatefilters: move doc from templates.txt to docstrings
r13591 seconds: "2009-08-18 13:00:13 +0200". See also the rfc3339date
filter.
"""
Boris Feld
util: extract all date-related utils in utils/dateutil module...
r36625 return dateutil.datestr(text, '%Y-%m-%d %H:%M:%S %1%2')
Patrick Mezard
templatefilters: wrap all filters in dedicated functions...
r13590
Matt Mackall
templates: move filters to their own module...
r5976 def indent(text, prefix):
'''indent each non-empty line of text after first with prefix.'''
lines = text.splitlines()
num_lines = len(lines)
Nicolas Dumazet
templatefilters: indent: do not compute text.endswith('\n') in each iteration
r9387 endswithnewline = text[-1:] == '\n'
Matt Mackall
templates: move filters to their own module...
r5976 def indenter():
Gregory Szorc
global: use pycompat.xrange()...
r38806 for i in pycompat.xrange(num_lines):
Matt Mackall
templates: move filters to their own module...
r5976 l = lines[i]
if i and l.strip():
yield prefix
yield l
Nicolas Dumazet
templatefilters: indent: do not compute text.endswith('\n') in each iteration
r9387 if i < num_lines - 1 or endswithnewline:
Matt Mackall
templates: move filters to their own module...
r5976 yield '\n'
return "".join(indenter())
FUJIWARA Katsunori
templatefilters: use templatefilter to mark a function as template filter...
r28693 @templatefilter('json')
Yuya Nishihara
formatter: use templatefilters.json()...
r31782 def json(obj, paranoid=True):
Yuya Nishihara
templatefilters: document the json filter...
r37967 """Any object. Serializes the object to a JSON formatted text."""
Yuya Nishihara
templatefilters: unroll handling of None/False/True...
r31780 if obj is None:
return 'null'
elif obj is False:
return 'false'
elif obj is True:
return 'true'
Matt Harbison
templatefilter: add support for 'long' to json()...
r31728 elif isinstance(obj, (int, long, float)):
Pulkit Goyal
py3: use pycompat.bytestr() instead of str()...
r32127 return pycompat.bytestr(obj)
Pulkit Goyal
py3: replace str with bytes in isinstance()
r32128 elif isinstance(obj, bytes):
Yuya Nishihara
formatter: use templatefilters.json()...
r31782 return '"%s"' % encoding.jsonescape(obj, paranoid=paranoid)
Martin von Zweigbergk
json: reject unicode on py2 as well...
r38044 elif isinstance(obj, type(u'')):
Augie Fackler
templatefilters: defend against evil unicode strs in json filter...
r34838 raise error.ProgrammingError(
Martin von Zweigbergk
json: reject unicode on py2 as well...
r38044 'Mercurial only does output with bytes: %r' % obj)
Augie Fackler
templatefilters: use safehasattr instead of hasattr
r14967 elif util.safehasattr(obj, 'keys'):
Yuya Nishihara
json: pass formatting options recursively...
r32743 out = ['"%s": %s' % (encoding.jsonescape(k, paranoid=paranoid),
json(v, paranoid))
Yuya Nishihara
templatefilters: use list comprehension in json()...
r31781 for k, v in sorted(obj.iteritems())]
Dirkjan Ochtman
add graph page to hgweb
r6691 return '{' + ', '.join(out) + '}'
Augie Fackler
globally: use safehasattr(x, '__iter__') instead of hasattr(x, '__iter__')
r14944 elif util.safehasattr(obj, '__iter__'):
Yuya Nishihara
json: pass formatting options recursively...
r32743 out = [json(i, paranoid) for i in obj]
Dirkjan Ochtman
add graph page to hgweb
r6691 return '[' + ', '.join(out) + ']'
Yuya Nishihara
templatefilters: raise ProgrammingError if unencodable type passed to json()...
r37247 raise error.ProgrammingError('cannot encode %r' % obj)
Dirkjan Ochtman
add graph page to hgweb
r6691
Yuya Nishihara
templatefilters: declare input type as bytes where appropriate...
r37240 @templatefilter('lower', intype=bytes)
Yuya Nishihara
templatefilters: add "upper" and "lower" for case conversion...
r24566 def lower(text):
FUJIWARA Katsunori
templatefilters: use templatefilter to mark a function as template filter...
r28693 """Any text. Converts the text to lowercase."""
Yuya Nishihara
templatefilters: add "upper" and "lower" for case conversion...
r24566 return encoding.lower(text)
Yuya Nishihara
templatefilters: declare input type as bytes where appropriate...
r37240 @templatefilter('nonempty', intype=bytes)
Pulkit Goyal
templatefilters: stop using str as a variable name...
r36570 def nonempty(text):
FUJIWARA Katsunori
templatefilters: use templatefilter to mark a function as template filter...
r28693 """Any text. Returns '(none)' if the string is empty."""
Pulkit Goyal
templatefilters: stop using str as a variable name...
r36570 return text or "(none)"
Patrick Mezard
templatefilters: sort function definitions
r13588
Yuya Nishihara
templatefilters: declare input type as bytes where appropriate...
r37240 @templatefilter('obfuscate', intype=bytes)
Patrick Mezard
templatefilters: sort function definitions
r13588 def obfuscate(text):
FUJIWARA Katsunori
templatefilters: use templatefilter to mark a function as template filter...
r28693 """Any text. Returns the input text rendered as a sequence of
Patrick Mezard
templatefilters: move doc from templates.txt to docstrings
r13591 XML entities.
"""
Augie Fackler
templatefilters: convert arguments to sysstrs for unicode() ctor...
r36581 text = unicode(text, pycompat.sysstr(encoding.encoding), r'replace')
Patrick Mezard
templatefilters: sort function definitions
r13588 return ''.join(['&#%d;' % ord(c) for c in text])
Yuya Nishihara
templatefilters: declare input type as bytes where appropriate...
r37240 @templatefilter('permissions', intype=bytes)
Patrick Mezard
templatefilters: sort function definitions
r13588 def permissions(flags):
if "l" in flags:
return "lrwxrwxrwx"
if "x" in flags:
return "-rwxr-xr-x"
return "-rw-r--r--"
Yuya Nishihara
templatefilters: declare input type as bytes where appropriate...
r37240 @templatefilter('person', intype=bytes)
Patrick Mezard
templatefilters: sort function definitions
r13588 def person(author):
FUJIWARA Katsunori
templatefilters: use templatefilter to mark a function as template filter...
r28693 """Any text. Returns the name before an email address,
"Yann E. MORIN"
templates/filters: strip quotes from {author|person}...
r16235 interpreting it as per RFC 5322.
"""
Connor Sheehan
stringutil: move person function from templatefilters...
r37173 return stringutil.person(author)
Patrick Mezard
templatefilters: sort function definitions
r13588
Yuya Nishihara
templatefilters: declare input type as bytes where appropriate...
r37240 @templatefilter('revescape', intype=bytes)
av6
templates: introduce revescape filter for escaping symbolic revisions...
r25778 def revescape(text):
FUJIWARA Katsunori
templatefilters: use templatefilter to mark a function as template filter...
r28693 """Any text. Escapes all "special" characters, except @.
av6
templates: introduce revescape filter for escaping symbolic revisions...
r25778 Forward slashes are escaped twice to prevent web servers from prematurely
unescaping them. For example, "@foo bar/baz" becomes "@foo%20bar%252Fbaz".
"""
timeless
pycompat: switch to util.urlreq/util.urlerr for py3 compat
r28883 return urlreq.quote(text, safe='/@').replace('/', '%252F')
av6
templates: introduce revescape filter for escaping symbolic revisions...
r25778
Yuya Nishihara
templatefilters: declare input type as date where appropriate...
r37244 @templatefilter('rfc3339date', intype=templateutil.date)
Patrick Mezard
templatefilters: wrap all filters in dedicated functions...
r13590 def rfc3339date(text):
FUJIWARA Katsunori
templatefilters: use templatefilter to mark a function as template filter...
r28693 """Date. Returns a date using the Internet date format
Patrick Mezard
templatefilters: move doc from templates.txt to docstrings
r13591 specified in RFC 3339: "2009-08-18T13:00:13+02:00".
"""
Boris Feld
util: extract all date-related utils in utils/dateutil module...
r36625 return dateutil.datestr(text, "%Y-%m-%dT%H:%M:%S%1:%2")
Patrick Mezard
templatefilters: wrap all filters in dedicated functions...
r13590
Yuya Nishihara
templatefilters: declare input type as date where appropriate...
r37244 @templatefilter('rfc822date', intype=templateutil.date)
Patrick Mezard
templatefilters: wrap all filters in dedicated functions...
r13590 def rfc822date(text):
FUJIWARA Katsunori
templatefilters: use templatefilter to mark a function as template filter...
r28693 """Date. Returns a date using the same format used in email
Patrick Mezard
templatefilters: move doc from templates.txt to docstrings
r13591 headers: "Tue, 18 Aug 2009 13:00:13 +0200".
"""
Boris Feld
util: extract all date-related utils in utils/dateutil module...
r36625 return dateutil.datestr(text, "%a, %d %b %Y %H:%M:%S %1%2")
Patrick Mezard
templatefilters: wrap all filters in dedicated functions...
r13590
Yuya Nishihara
templatefilters: declare input type as bytes where appropriate...
r37240 @templatefilter('short', intype=bytes)
Patrick Mezard
templatefilters: wrap all filters in dedicated functions...
r13590 def short(text):
FUJIWARA Katsunori
templatefilters: use templatefilter to mark a function as template filter...
r28693 """Changeset hash. Returns the short form of a changeset hash,
Patrick Mezard
templatefilters: move doc from templates.txt to docstrings
r13591 i.e. a 12 hexadecimal digit string.
"""
Patrick Mezard
templatefilters: wrap all filters in dedicated functions...
r13590 return text[:12]
Yuya Nishihara
templatefilters: declare input type as bytes where appropriate...
r37240 @templatefilter('shortbisect', intype=bytes)
Yuya Nishihara
templatefilters: inline hbisect.shortlabel()...
r36848 def shortbisect(label):
"""Any text. Treats `label` as a bisection status, and
"Yann E. MORIN"
templates: add 'bisect' keyword to return a cset's bisect status...
r15155 returns a single-character representing the status (G: good, B: bad,
S: skipped, U: untested, I: ignored). Returns single space if `text`
is not a valid bisection status.
"""
Yuya Nishihara
templatefilters: inline hbisect.shortlabel()...
r36848 if label:
Yuya Nishihara
py3: fix slicing of bisect label in templatefilters.shortbisect()
r36849 return label[0:1].upper()
Yuya Nishihara
templatefilters: inline hbisect.shortlabel()...
r36848 return ' '
"Yann E. MORIN"
templates: add 'bisect' keyword to return a cset's bisect status...
r15155
Yuya Nishihara
templatefilters: declare input type as date where appropriate...
r37244 @templatefilter('shortdate', intype=templateutil.date)
Patrick Mezard
templatefilters: wrap all filters in dedicated functions...
r13590 def shortdate(text):
FUJIWARA Katsunori
templatefilters: use templatefilter to mark a function as template filter...
r28693 """Date. Returns a date like "2006-09-18"."""
Boris Feld
util: extract all date-related utils in utils/dateutil module...
r36625 return dateutil.shortdate(text)
Patrick Mezard
templatefilters: wrap all filters in dedicated functions...
r13590
Yuya Nishihara
templatefilters: declare input type as bytes where appropriate...
r37240 @templatefilter('slashpath', intype=bytes)
Yuya Nishihara
templatefilters: add slashpath() to convert path separator to slash...
r35460 def slashpath(path):
"""Any text. Replaces the native path separator with slash."""
return util.pconvert(path)
Yuya Nishihara
templatefilters: declare input type as bytes where appropriate...
r37240 @templatefilter('splitlines', intype=bytes)
Ryan McElroy
templatefilter: add splitlines function...
r21820 def splitlines(text):
FUJIWARA Katsunori
templatefilters: use templatefilter to mark a function as template filter...
r28693 """Any text. Split text into a list of lines."""
Yuya Nishihara
templater: move hybrid class and functions to templateutil module...
r36939 return templateutil.hybridlist(text.splitlines(), name='line')
Ryan McElroy
templatefilter: add splitlines function...
r21820
Yuya Nishihara
templatefilters: declare input type as bytes where appropriate...
r37240 @templatefilter('stringescape', intype=bytes)
Patrick Mezard
templatefilters: wrap all filters in dedicated functions...
r13590 def stringescape(text):
Yuya Nishihara
stringutil: bulk-replace call sites to point to new module...
r37102 return stringutil.escapestr(text)
Patrick Mezard
templatefilters: wrap all filters in dedicated functions...
r13590
Yuya Nishihara
templatefilters: allow declaration of input data type...
r37239 @templatefilter('stringify', intype=bytes)
Patrick Mezard
templatefilters: sort function definitions
r13588 def stringify(thing):
FUJIWARA Katsunori
templatefilters: use templatefilter to mark a function as template filter...
r28693 """Any type. Turns the value into text by converting values into
Patrick Mezard
templatefilters: move doc from templates.txt to docstrings
r13591 text and concatenating them.
"""
Yuya Nishihara
templatefilters: allow declaration of input data type...
r37239 return thing # coerced by the intype
Patrick Mezard
templatefilters: sort function definitions
r13588
Yuya Nishihara
templatefilters: declare input type as bytes where appropriate...
r37240 @templatefilter('stripdir', intype=bytes)
Aleix Conchillo Flaque
templatefilters: add new stripdir filter...
r8158 def stripdir(text):
FUJIWARA Katsunori
templatefilters: use templatefilter to mark a function as template filter...
r28693 """Treat the text as path and strip a directory level, if
Patrick Mezard
templatefilters: move doc from templates.txt to docstrings
r13591 possible. For example, "foo" and "foo/bar" becomes "foo".
"""
Aleix Conchillo Flaque
templatefilters: add new stripdir filter...
r8158 dir = os.path.dirname(text)
if dir == "":
return os.path.basename(text)
else:
return dir
Yuya Nishihara
templatefilters: declare input type as bytes where appropriate...
r37240 @templatefilter('tabindent', intype=bytes)
Patrick Mezard
templatefilters: wrap all filters in dedicated functions...
r13590 def tabindent(text):
FUJIWARA Katsunori
templatefilters: use templatefilter to mark a function as template filter...
r28693 """Any text. Returns the text, with every non-empty line
Matt Mackall
template: fix tabindent docstring (issue2880)
r19467 except the first starting with a tab character.
Patrick Mezard
templatefilters: move doc from templates.txt to docstrings
r13591 """
Patrick Mezard
templatefilters: wrap all filters in dedicated functions...
r13590 return indent(text, '\t')
Yuya Nishihara
templatefilters: declare input type as bytes where appropriate...
r37240 @templatefilter('upper', intype=bytes)
Yuya Nishihara
templatefilters: add "upper" and "lower" for case conversion...
r24566 def upper(text):
FUJIWARA Katsunori
templatefilters: use templatefilter to mark a function as template filter...
r28693 """Any text. Converts the text to uppercase."""
Yuya Nishihara
templatefilters: add "upper" and "lower" for case conversion...
r24566 return encoding.upper(text)
Yuya Nishihara
templatefilters: declare input type as bytes where appropriate...
r37240 @templatefilter('urlescape', intype=bytes)
Patrick Mezard
templatefilters: wrap all filters in dedicated functions...
r13590 def urlescape(text):
FUJIWARA Katsunori
templatefilters: use templatefilter to mark a function as template filter...
r28693 """Any text. Escapes all "special" characters. For example,
Patrick Mezard
templatefilters: move doc from templates.txt to docstrings
r13591 "foo bar" becomes "foo%20bar".
"""
timeless
pycompat: switch to util.urlreq/util.urlerr for py3 compat
r28883 return urlreq.quote(text)
Patrick Mezard
templatefilters: wrap all filters in dedicated functions...
r13590
Yuya Nishihara
templatefilters: declare input type as bytes where appropriate...
r37240 @templatefilter('user', intype=bytes)
Patrick Mezard
templatefilters: wrap all filters in dedicated functions...
r13590 def userfilter(text):
FUJIWARA Katsunori
templatefilters: use templatefilter to mark a function as template filter...
r28693 """Any text. Returns a short representation of a user name or email
Matteo Capobianco
templates/filters: extracting the user portion of an email address...
r16360 address."""
Yuya Nishihara
stringutil: bulk-replace call sites to point to new module...
r37102 return stringutil.shortuser(text)
Patrick Mezard
templatefilters: wrap all filters in dedicated functions...
r13590
Yuya Nishihara
templatefilters: declare input type as bytes where appropriate...
r37240 @templatefilter('emailuser', intype=bytes)
Matteo Capobianco
templates/filters: extracting the user portion of an email address...
r16360 def emailuser(text):
FUJIWARA Katsunori
templatefilters: use templatefilter to mark a function as template filter...
r28693 """Any text. Returns the user portion of an email address."""
Yuya Nishihara
stringutil: bulk-replace call sites to point to new module...
r37102 return stringutil.emailuser(text)
Matteo Capobianco
templates/filters: extracting the user portion of an email address...
r16360
Yuya Nishihara
templatefilters: declare input type as bytes where appropriate...
r37240 @templatefilter('utf8', intype=bytes)
Yuya Nishihara
templatefilters: add "utf8" to get utf-8 bytes from local-encoding text...
r28209 def utf8(text):
FUJIWARA Katsunori
templatefilters: use templatefilter to mark a function as template filter...
r28693 """Any text. Converts from the local character encoding to UTF-8."""
Yuya Nishihara
templatefilters: add "utf8" to get utf-8 bytes from local-encoding text...
r28209 return encoding.fromlocal(text)
Yuya Nishihara
templatefilters: declare input type as bytes where appropriate...
r37240 @templatefilter('xmlescape', intype=bytes)
Patrick Mezard
templatefilters: sort function definitions
r13588 def xmlescape(text):
text = (text
.replace('&', '&amp;')
.replace('<', '&lt;')
.replace('>', '&gt;')
.replace('"', '&quot;')
.replace("'", '&#39;')) # &apos; invalid in HTML
return re.sub('[\x00-\x08\x0B\x0C\x0E-\x1F]', ' ', text)
Rocco Rutte
templatefilters: add "nonempty" template filter...
r8234
Angel Ezquerra
hgweb: add websub template filter...
r18627 def websub(text, websubtable):
""":websub: Any text. Only applies to hgweb. Applies the regular
expression replacements defined in the websub section.
"""
if websubtable:
for regexp, format in websubtable:
text = regexp.sub(format, text)
return text
FUJIWARA Katsunori
registrar: add templatefilter to mark a function as template filter (API)...
r28692 def loadfilter(ui, extname, registrarobj):
"""Load template filter from specified registrarobj
"""
for name, func in registrarobj._table.iteritems():
filters[name] = func
Patrick Mezard
templatefilters: move doc from templates.txt to docstrings
r13591 # tell hggettext to extract docstrings from these functions:
i18nfunctions = filters.values()