本文整理汇总了Python中translate.storage.placeables.parse函数的典型用法代码示例。如果您正苦于以下问题:Python parse函数的具体用法?Python parse怎么用?Python parse使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了parse函数的9个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Python代码示例。
示例1: parse_placeables
def parse_placeables(self):
"""parses placeables"""
count = 0
for parsedfile in self.parsedfiles:
for unit in parsedfile.units:
placeables.parse(unit.source, placeables.general.parsers)
placeables.parse(unit.target, placeables.general.parsers)
count += len(parsedfile.units)
print("counted %d units" % count)
开发者ID:KINFOO,项目名称:translate,代码行数:9,代码来源:benchmark.py
示例2: test_simple_terminology
def test_simple_terminology(self):
TerminologyPlaceable.matchers = [self.matcher]
tree = parse(self.test_string, general.parsers + term_parsers)
assert isinstance(tree.sub[0], general.XMLTagPlaceable)
assert isinstance(tree.sub[2], general.XMLTagPlaceable)
tree.print_tree()
term = tree.sub[3].sub[1]
assert isinstance(term, TerminologyPlaceable)
assert six.text_type(term) == self.term_po.getunits()[2].source
assert term.translate() == six.text_type(self.term_po.getunits()[2].target)
开发者ID:Jobava,项目名称:translate-toolkit,代码行数:13,代码来源:test_terminology.py
示例3: test_delete_range_case4
def test_delete_range_case4(self):
# Case 4: Across multiple elements #
elem = self.elem.copy()
# Delete the last two elements
deleted, parent, offset = elem.delete_range(elem.elem_offset(elem.sub[2]), len(elem))
assert deleted == self.elem
assert parent is None
assert offset is None
assert len(elem.sub) == 2
assert unicode(elem) == u'Ģët <a href="http://www.example.com" alt="Ģët &brand;!">'
# A separate test case where the delete range include elements between
# the start- and end elements.
origelem = parse(u'foo %s bar', general.parsers)
elem = origelem.copy()
assert len(elem.sub) == 3
deleted, parent, offset = elem.delete_range(3, 7)
assert deleted == origelem
assert parent is None
assert offset is None
assert unicode(elem) == 'foobar'
开发者ID:AndryulE,项目名称:kitsune,代码行数:21,代码来源:test_base.py
示例4: test_find
def test_find(self):
assert self.elem.find('example') == 24
assert self.elem.find(u'example') == 24
searchelem = parse(u'&brand;', general.parsers)
assert self.elem.find(searchelem) == 46
开发者ID:AndryulE,项目名称:kitsune,代码行数:5,代码来源:test_base.py
示例5: __init__
def __init__(self):
self.elem = parse(self.ORIGSTR, general.parsers)
开发者ID:AndryulE,项目名称:kitsune,代码行数:2,代码来源:test_base.py
示例6: mark_placeables
def mark_placeables(text):
"""Wrap placeables to easily distinguish and manipulate them"""
PARSERS = [
NewlineEscapePlaceable.parse,
TabEscapePlaceable.parse,
EscapePlaceable.parse,
# The spaces placeable can match '\n ' and mask the newline,
# so it has to come later.
SpacesPlaceable.parse,
PythonFormatNamedPlaceable.parse,
PythonFormatPlaceable.parse,
general.XMLTagPlaceable.parse,
general.AltAttrPlaceable.parse,
general.XMLEntityPlaceable.parse,
general.PythonFormattingPlaceable.parse,
general.JavaMessageFormatPlaceable.parse,
general.FormattingPlaceable.parse,
# The Qt variables can consume the %1 in %1$s which will mask a printf
# placeable, so it has to come later.
general.QtFormattingPlaceable.parse,
general.UrlPlaceable.parse,
general.FilePlaceable.parse,
general.EmailPlaceable.parse,
general.CapsPlaceable.parse,
general.CamelCasePlaceable.parse,
general.OptionPlaceable.parse,
general.PunctuationPlaceable.parse,
general.NumberPlaceable.parse,
]
TITLES = {
'NewlineEscapePlaceable': "Escaped newline",
'TabEscapePlaceable': "Escaped tab",
'EscapePlaceable': "Escaped sequence",
'SpacesPlaceable': "Unusual space in string",
'AltAttrPlaceable': "'alt' attribute inside XML tag",
'NewlinePlaceable': "New-line",
'NumberPlaceable': "Number",
'QtFormattingPlaceable': "Qt string formatting variable",
'PythonFormattingPlaceable': "Python string formatting variable",
'JavaMessageFormatPlaceable': "Java Message formatting variable",
'FormattingPlaceable': "String formatting variable",
'UrlPlaceable': "URI",
'FilePlaceable': "File location",
'EmailPlaceable': "Email",
'PunctuationPlaceable': "Punctuation",
'XMLEntityPlaceable': "XML entity",
'CapsPlaceable': "Long all-caps string",
'CamelCasePlaceable': "Camel case string",
'XMLTagPlaceable': "XML tag",
'OptionPlaceable': "Command line option",
'PythonFormatNamedPlaceable': "Python format string",
'PythonFormatPlaceable': "Python format string"
}
output = u""
# Get a flat list of placeables and StringElem instances
flat_items = parse(text, PARSERS).flatten()
for item in flat_items:
# Placeable: mark
if isinstance(item, BasePlaceable):
class_name = item.__class__.__name__
placeable = unicode(item)
# CSS class used to mark the placeable
css = {
'TabEscapePlaceable': "escape ",
'EscapePlaceable': "escape ",
'SpacesPlaceable': "space ",
'NewlinePlaceable': "escape ",
}.get(class_name, "")
title = TITLES.get(class_name, "Unknown placeable")
# Correctly render placeables in translation editor
content = {
'TabEscapePlaceable': u'\\t',
'EscapePlaceable': u'\\',
'NewlinePlaceable': {
u'\r\n': u'\\r\\n<br/>\n',
u'\r': u'\\r<br/>\n',
u'\n': u'\\n<br/>\n',
}.get(placeable),
'PythonFormatPlaceable':
placeable.replace('&', '&').replace('<', '<').replace('>', '>'),
'PythonFormatNamedPlaceable':
placeable.replace('&', '&').replace('<', '<').replace('>', '>'),
'XMLEntityPlaceable': placeable.replace('&', '&'),
'XMLTagPlaceable':
placeable.replace('<', '<').replace('>', '>'),
}.get(class_name, placeable)
output += ('<mark class="%splaceable" title="%s">%s</mark>') \
% (css, title, content)
# Not a placeable: skip
#.........这里部分代码省略.........
开发者ID:bychek-ru,项目名称:pontoon,代码行数:101,代码来源:utils.py
示例7: setup_method
def setup_method(self, method):
self.elem = parse(self.ORIGSTR, general.parsers)
开发者ID:XLeonardo,项目名称:translate-1,代码行数:2,代码来源:test_base.py
示例8: rich_parse
def rich_parse(s):
return parse(s, xliffparsers)
开发者ID:onlinehomeopati,项目名称:translate,代码行数:2,代码来源:test_ts2.py
示例9: mark_placeables
def mark_placeables(text):
"""Wrap placeables to easily distinguish and manipulate them.
Source: http://bit.ly/1yQOC9B
"""
class TabEscapePlaceable(base.Ph):
"""Placeable handling tab escapes."""
istranslatable = False
regex = re.compile(r'\t')
parse = classmethod(general.regex_parse)
class EscapePlaceable(base.Ph):
"""Placeable handling escapes."""
istranslatable = False
regex = re.compile(r'\\')
parse = classmethod(general.regex_parse)
class SpacesPlaceable(base.Ph):
"""Placeable handling spaces."""
istranslatable = False
regex = re.compile('^ +| +$|[\r\n\t] +| {2,}')
parse = classmethod(general.regex_parse)
PARSERS = [
TabEscapePlaceable.parse,
EscapePlaceable.parse,
general.NewlinePlaceable.parse,
# The spaces placeable can match '\n ' and mask the newline,
# so it has to come later.
SpacesPlaceable.parse,
general.XMLTagPlaceable.parse,
general.AltAttrPlaceable.parse,
general.XMLEntityPlaceable.parse,
general.PythonFormattingPlaceable.parse,
general.JavaMessageFormatPlaceable.parse,
general.FormattingPlaceable.parse,
# The Qt variables can consume the %1 in %1$s which will mask a printf
# placeable, so it has to come later.
general.QtFormattingPlaceable.parse,
general.UrlPlaceable.parse,
general.FilePlaceable.parse,
general.EmailPlaceable.parse,
general.CapsPlaceable.parse,
general.CamelCasePlaceable.parse,
general.OptionPlaceable.parse,
general.PunctuationPlaceable.parse,
general.NumberPlaceable.parse,
]
TITLES = {
'TabEscapePlaceable': "Escaped tab",
'EscapePlaceable': "Escaped sequence",
'SpacesPlaceable': "Unusual space in string",
'AltAttrPlaceable': "'alt' attribute inside XML tag",
'NewlinePlaceable': "New-line",
'NumberPlaceable': "Number",
'QtFormattingPlaceable': "Qt string formatting variable",
'PythonFormattingPlaceable': "Python string formatting variable",
'JavaMessageFormatPlaceable': "Java Message formatting variable",
'FormattingPlaceable': "String formatting variable",
'UrlPlaceable': "URI",
'FilePlaceable': "File location",
'EmailPlaceable': "Email",
'PunctuationPlaceable': "Punctuation",
'XMLEntityPlaceable': "XML entity",
'CapsPlaceable': "Long all-caps string",
'CamelCasePlaceable': "Camel case string",
'XMLTagPlaceable': "XML tag",
'OptionPlaceable': "Command line option",
}
output = u""
# Get a flat list of placeables and StringElem instances
flat_items = parse(text, PARSERS).flatten()
for item in flat_items:
# Placeable: mark
if isinstance(item, BasePlaceable):
class_name = item.__class__.__name__
placeable = unicode(item)
# CSS class used to mark the placeable
css = {
'TabEscapePlaceable': "escape ",
'EscapePlaceable': "escape ",
'SpacesPlaceable': "space ",
'NewlinePlaceable': "escape ",
}.get(class_name, "")
title = TITLES.get(class_name, "Unknown placeable")
spaces = ' ' * len(placeable)
if not placeable.startswith(' '):
spaces = placeable[0] + ' ' * (len(placeable) - 1)
# Correctly render placeables in translation editor
content = {
#.........这里部分代码省略.........
开发者ID:amire80,项目名称:pontoon,代码行数:101,代码来源:utils.py
注:本文中的translate.storage.placeables.parse函数示例由纯净天空整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论