| Index: tools/grit/grit/gather/tr_html.py
|
| diff --git a/tools/grit/grit/gather/tr_html.py b/tools/grit/grit/gather/tr_html.py
|
| new file mode 100755
|
| index 0000000000000000000000000000000000000000..348725109b8b68009b1999dd97aa273b8346e18a
|
| --- /dev/null
|
| +++ b/tools/grit/grit/gather/tr_html.py
|
| @@ -0,0 +1,745 @@
|
| +#!/usr/bin/env python
|
| +# Copyright (c) 2012 The Chromium Authors. All rights reserved.
|
| +# Use of this source code is governed by a BSD-style license that can be
|
| +# found in the LICENSE file.
|
| +
|
| +'''A gatherer for the TotalRecall brand of HTML templates with replaceable
|
| +portions. We wanted to reuse extern.tclib.api.handlers.html.TCHTMLParser
|
| +but this proved impossible due to the fact that the TotalRecall HTML templates
|
| +are in general quite far from parseable HTML and the TCHTMLParser derives
|
| +from HTMLParser.HTMLParser which requires relatively well-formed HTML. Some
|
| +examples of "HTML" from the TotalRecall HTML templates that wouldn't be
|
| +parseable include things like:
|
| +
|
| + <a [PARAMS]>blabla</a> (not parseable because attributes are invalid)
|
| +
|
| + <table><tr><td>[LOTSOFSTUFF]</tr></table> (not parseable because closing
|
| + </td> is in the HTML [LOTSOFSTUFF]
|
| + is replaced by)
|
| +
|
| +The other problem with using general parsers (such as TCHTMLParser) is that
|
| +we want to make sure we output the TotalRecall template with as little changes
|
| +as possible in terms of whitespace characters, layout etc. With any parser
|
| +that generates a parse tree, and generates output by dumping the parse tree,
|
| +we would always have little inconsistencies which could cause bugs (the
|
| +TotalRecall template stuff is quite brittle and can break if e.g. a tab
|
| +character is replaced with spaces).
|
| +
|
| +The solution, which may be applicable to some other HTML-like template
|
| +languages floating around Google, is to create a parser with a simple state
|
| +machine that keeps track of what kind of tag it's inside, and whether it's in
|
| +a translateable section or not. Translateable sections are:
|
| +
|
| +a) text (including [BINGO] replaceables) inside of tags that
|
| + can contain translateable text (which is all tags except
|
| + for a few)
|
| +
|
| +b) text inside of an 'alt' attribute in an <image> element, or
|
| + the 'value' attribute of a <submit>, <button> or <text>
|
| + element.
|
| +
|
| +The parser does not build up a parse tree but rather a "skeleton" which
|
| +is a list of nontranslateable strings intermingled with grit.clique.MessageClique
|
| +objects. This simplifies the parser considerably compared to a regular HTML
|
| +parser. To output a translated document, each item in the skeleton is
|
| +printed out, with the relevant Translation from each MessageCliques being used
|
| +for the requested language.
|
| +
|
| +This implementation borrows some code, constants and ideas from
|
| +extern.tclib.api.handlers.html.TCHTMLParser.
|
| +'''
|
| +
|
| +
|
| +import re
|
| +import types
|
| +
|
| +from grit import clique
|
| +from grit import exception
|
| +from grit import lazy_re
|
| +from grit import util
|
| +from grit import tclib
|
| +
|
| +from grit.gather import interface
|
| +
|
| +
|
| +# HTML tags which break (separate) chunks.
|
| +_BLOCK_TAGS = ['script', 'p', 'h1', 'h2', 'h3', 'h4', 'h5', 'h6', 'hr', 'br',
|
| + 'body', 'style', 'head', 'title', 'table', 'tr', 'td', 'th',
|
| + 'ul', 'ol', 'dl', 'nl', 'li', 'div', 'object', 'center',
|
| + 'html', 'link', 'form', 'select', 'textarea',
|
| + 'button', 'option', 'map', 'area', 'blockquote', 'pre',
|
| + 'meta', 'xmp', 'noscript', 'label', 'tbody', 'thead',
|
| + 'script', 'style', 'pre', 'iframe', 'img', 'input', 'nowrap',
|
| + 'fieldset', 'legend']
|
| +
|
| +# HTML tags which may appear within a chunk.
|
| +_INLINE_TAGS = ['b', 'i', 'u', 'tt', 'code', 'font', 'a', 'span', 'small',
|
| + 'key', 'nobr', 'url', 'em', 's', 'sup', 'strike',
|
| + 'strong']
|
| +
|
| +# HTML tags within which linebreaks are significant.
|
| +_PREFORMATTED_TAGS = ['textarea', 'xmp', 'pre']
|
| +
|
| +# An array mapping some of the inline HTML tags to more meaningful
|
| +# names for those tags. This will be used when generating placeholders
|
| +# representing these tags.
|
| +_HTML_PLACEHOLDER_NAMES = { 'a' : 'link', 'br' : 'break', 'b' : 'bold',
|
| + 'i' : 'italic', 'li' : 'item', 'ol' : 'ordered_list', 'p' : 'paragraph',
|
| + 'ul' : 'unordered_list', 'img' : 'image', 'em' : 'emphasis' }
|
| +
|
| +# We append each of these characters in sequence to distinguish between
|
| +# different placeholders with basically the same name (e.g. BOLD1, BOLD2).
|
| +# Keep in mind that a placeholder name must not be a substring of any other
|
| +# placeholder name in the same message, so we can't simply count (BOLD_1
|
| +# would be a substring of BOLD_10).
|
| +_SUFFIXES = '123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ'
|
| +
|
| +# Matches whitespace in an HTML document. Also matches HTML comments, which are
|
| +# treated as whitespace.
|
| +_WHITESPACE = lazy_re.compile(r'(\s| |\\n|\\r|<!--\s*desc\s*=.*?-->)+',
|
| + re.DOTALL)
|
| +
|
| +# Matches whitespace sequences which can be folded into a single whitespace
|
| +# character. This matches single characters so that non-spaces are replaced
|
| +# with spaces.
|
| +_FOLD_WHITESPACE = lazy_re.compile(r'\s+')
|
| +
|
| +# Finds a non-whitespace character
|
| +_NON_WHITESPACE = lazy_re.compile(r'\S')
|
| +
|
| +# Matches two or more in a row (a single   is not changed into
|
| +# placeholders because different languages require different numbers of spaces
|
| +# and placeholders must match exactly; more than one is probably a "special"
|
| +# whitespace sequence and should be turned into a placeholder).
|
| +_NBSP = lazy_re.compile(r' ( )+')
|
| +
|
| +# Matches nontranslateable chunks of the document
|
| +_NONTRANSLATEABLES = lazy_re.compile(r'''
|
| + <\s*script.+?<\s*/\s*script\s*>
|
| + |
|
| + <\s*style.+?<\s*/\s*style\s*>
|
| + |
|
| + <!--.+?-->
|
| + |
|
| + <\?IMPORT\s.+?> # import tag
|
| + |
|
| + <\s*[a-zA-Z_]+:.+?> # custom tag (open)
|
| + |
|
| + <\s*/\s*[a-zA-Z_]+:.+?> # custom tag (close)
|
| + |
|
| + <!\s*[A-Z]+\s*([^>]+|"[^"]+"|'[^']+')*?>
|
| + ''', re.MULTILINE | re.DOTALL | re.VERBOSE | re.IGNORECASE)
|
| +
|
| +# Matches a tag and its attributes
|
| +_ELEMENT = lazy_re.compile(r'''
|
| + # Optional closing /, element name
|
| + <\s*(?P<closing>/)?\s*(?P<element>[a-zA-Z0-9]+)\s*
|
| + # Attributes and/or replaceables inside the tag, if any
|
| + (?P<atts>(
|
| + \s*([a-zA-Z_][-:.a-zA-Z_0-9]*) # Attribute name
|
| + (\s*=\s*(\'[^\']*\'|"[^"]*"|[-a-zA-Z0-9./,:;+*%?!&$\(\)_#=~\'"@]*))?
|
| + |
|
| + \s*\[(\$?\~)?([A-Z0-9-_]+?)(\~\$?)?\]
|
| + )*)
|
| + \s*(?P<empty>/)?\s*> # Optional empty-tag closing /, and tag close
|
| + ''',
|
| + re.MULTILINE | re.DOTALL | re.VERBOSE)
|
| +
|
| +# Matches elements that may have translateable attributes. The value of these
|
| +# special attributes is given by group 'value1' or 'value2'. Note that this
|
| +# regexp demands that the attribute value be quoted; this is necessary because
|
| +# the non-tree-building nature of the parser means we don't know when we're
|
| +# writing out attributes, so we wouldn't know to escape spaces.
|
| +_SPECIAL_ELEMENT = lazy_re.compile(r'''
|
| + <\s*(
|
| + input[^>]+?value\s*=\s*(\'(?P<value3>[^\']*)\'|"(?P<value4>[^"]*)")
|
| + [^>]+type\s*=\s*"?'?(button|reset|text|submit)'?"?
|
| + |
|
| + (
|
| + table[^>]+?title\s*=
|
| + |
|
| + img[^>]+?alt\s*=
|
| + |
|
| + input[^>]+?type\s*=\s*"?'?(button|reset|text|submit)'?"?[^>]+?value\s*=
|
| + )
|
| + \s*(\'(?P<value1>[^\']*)\'|"(?P<value2>[^"]*)")
|
| + )[^>]*?>
|
| + ''', re.MULTILINE | re.DOTALL | re.VERBOSE | re.IGNORECASE)
|
| +
|
| +# Matches stuff that is translateable if it occurs in the right context
|
| +# (between tags). This includes all characters and character entities.
|
| +# Note that this also matches which needs to be handled as whitespace
|
| +# before this regexp is applied.
|
| +_CHARACTERS = lazy_re.compile(r'''
|
| + (
|
| + \w
|
| + |
|
| + [\!\@\#\$\%\^\*\(\)\-\=\_\+\[\]\{\}\\\|\;\:\'\"\,\.\/\?\`\~]
|
| + |
|
| + &(\#[0-9]+|\#x[0-9a-fA-F]+|[A-Za-z0-9]+);
|
| + )+
|
| + ''', re.MULTILINE | re.DOTALL | re.VERBOSE)
|
| +
|
| +# Matches Total Recall's "replaceable" tags, which are just any text
|
| +# in capitals enclosed by delimiters like [] or [~~] or [$~~$] (e.g. [HELLO],
|
| +# [~HELLO~] and [$~HELLO~$]).
|
| +_REPLACEABLE = lazy_re.compile(r'\[(\$?\~)?(?P<name>[A-Z0-9-_]+?)(\~\$?)?\]',
|
| + re.MULTILINE)
|
| +
|
| +
|
| +# Matches the silly [!]-prefixed "header" that is used in some TotalRecall
|
| +# templates.
|
| +_SILLY_HEADER = lazy_re.compile(r'\[!\]\ntitle\t(?P<title>[^\n]+?)\n.+?\n\n',
|
| + re.MULTILINE | re.DOTALL)
|
| +
|
| +
|
| +# Matches a comment that provides a description for the message it occurs in.
|
| +_DESCRIPTION_COMMENT = lazy_re.compile(
|
| + r'<!--\s*desc\s*=\s*(?P<description>.+?)\s*-->', re.DOTALL)
|
| +
|
| +# Matches a comment which is used to break apart multiple messages.
|
| +_MESSAGE_BREAK_COMMENT = lazy_re.compile(r'<!--\s*message-break\s*-->',
|
| + re.DOTALL)
|
| +
|
| +# Matches a comment which is used to prevent block tags from splitting a message
|
| +_MESSAGE_NO_BREAK_COMMENT = re.compile(r'<!--\s*message-no-break\s*-->',
|
| + re.DOTALL)
|
| +
|
| +
|
| +_DEBUG = 0
|
| +def _DebugPrint(text):
|
| + if _DEBUG:
|
| + print text.encode('utf-8')
|
| +
|
| +
|
| +class HtmlChunks(object):
|
| + '''A parser that knows how to break an HTML-like document into a list of
|
| + chunks, where each chunk is either translateable or non-translateable.
|
| + The chunks are unmodified sections of the original document, so concatenating
|
| + the text of all chunks would result in the original document.'''
|
| +
|
| + def InTranslateable(self):
|
| + return self.last_translateable != -1
|
| +
|
| + def Rest(self):
|
| + return self.text_[self.current:]
|
| +
|
| + def StartTranslateable(self):
|
| + assert not self.InTranslateable()
|
| + if self.current != 0:
|
| + # Append a nontranslateable chunk
|
| + chunk_text = self.text_[self.chunk_start : self.last_nontranslateable + 1]
|
| + # Needed in the case where document starts with a translateable.
|
| + if len(chunk_text) > 0:
|
| + self.AddChunk(False, chunk_text)
|
| + self.chunk_start = self.last_nontranslateable + 1
|
| + self.last_translateable = self.current
|
| + self.last_nontranslateable = -1
|
| +
|
| + def EndTranslateable(self):
|
| + assert self.InTranslateable()
|
| + # Append a translateable chunk
|
| + self.AddChunk(True,
|
| + self.text_[self.chunk_start : self.last_translateable + 1])
|
| + self.chunk_start = self.last_translateable + 1
|
| + self.last_translateable = -1
|
| + self.last_nontranslateable = self.current
|
| +
|
| + def AdvancePast(self, match):
|
| + self.current += match.end()
|
| +
|
| + def AddChunk(self, translateable, text):
|
| + '''Adds a chunk to self, removing linebreaks and duplicate whitespace
|
| + if appropriate.
|
| + '''
|
| + m = _DESCRIPTION_COMMENT.search(text)
|
| + if m:
|
| + self.last_description = m.group('description')
|
| + # Remove the description from the output text
|
| + text = _DESCRIPTION_COMMENT.sub('', text)
|
| +
|
| + m = _MESSAGE_BREAK_COMMENT.search(text)
|
| + if m:
|
| + # Remove the coment from the output text. It should already effectively
|
| + # break apart messages.
|
| + text = _MESSAGE_BREAK_COMMENT.sub('', text)
|
| +
|
| + if translateable and not self.last_element_ in _PREFORMATTED_TAGS:
|
| + if self.fold_whitespace_:
|
| + # Fold whitespace sequences if appropriate. This is optional because it
|
| + # alters the output strings.
|
| + text = _FOLD_WHITESPACE.sub(' ', text)
|
| + else:
|
| + text = text.replace('\n', ' ')
|
| + text = text.replace('\r', ' ')
|
| + # This whitespace folding doesn't work in all cases, thus the
|
| + # fold_whitespace flag to support backwards compatibility.
|
| + text = text.replace(' ', ' ')
|
| + text = text.replace(' ', ' ')
|
| +
|
| + if translateable:
|
| + description = self.last_description
|
| + self.last_description = ''
|
| + else:
|
| + description = ''
|
| +
|
| + if text != '':
|
| + self.chunks_.append((translateable, text, description))
|
| +
|
| + def Parse(self, text, fold_whitespace):
|
| + '''Parses self.text_ into an intermediate format stored in self.chunks_
|
| + which is translateable and nontranslateable chunks. Also returns
|
| + self.chunks_
|
| +
|
| + Args:
|
| + text: The HTML for parsing.
|
| + fold_whitespace: Whether whitespace sequences should be folded into a
|
| + single space.
|
| +
|
| + Return:
|
| + [chunk1, chunk2, chunk3, ...] (instances of class Chunk)
|
| + '''
|
| + #
|
| + # Chunker state
|
| + #
|
| +
|
| + self.text_ = text
|
| + self.fold_whitespace_ = fold_whitespace
|
| +
|
| + # A list of tuples (is_translateable, text) which represents the document
|
| + # after chunking.
|
| + self.chunks_ = []
|
| +
|
| + # Start index of the last chunk, whether translateable or not
|
| + self.chunk_start = 0
|
| +
|
| + # Index of the last for-sure translateable character if we are parsing
|
| + # a translateable chunk, -1 to indicate we are not in a translateable chunk.
|
| + # This is needed so that we don't include trailing whitespace in the
|
| + # translateable chunk (whitespace is neutral).
|
| + self.last_translateable = -1
|
| +
|
| + # Index of the last for-sure nontranslateable character if we are parsing
|
| + # a nontranslateable chunk, -1 if we are not in a nontranslateable chunk.
|
| + # This is needed to make sure we can group e.g. "<b>Hello</b> there"
|
| + # together instead of just "Hello</b> there" which would be much worse
|
| + # for translation.
|
| + self.last_nontranslateable = -1
|
| +
|
| + # Index of the character we're currently looking at.
|
| + self.current = 0
|
| +
|
| + # The name of the last block element parsed.
|
| + self.last_element_ = ''
|
| +
|
| + # The last explicit description we found.
|
| + self.last_description = ''
|
| +
|
| + # Whether no-break was the last chunk seen
|
| + self.last_nobreak = False
|
| +
|
| + while self.current < len(self.text_):
|
| + _DebugPrint('REST: %s' % self.text_[self.current:self.current+60])
|
| +
|
| + m = _MESSAGE_NO_BREAK_COMMENT.match(self.Rest())
|
| + if m:
|
| + self.AdvancePast(m)
|
| + self.last_nobreak = True
|
| + continue
|
| +
|
| + # Try to match whitespace
|
| + m = _WHITESPACE.match(self.Rest())
|
| + if m:
|
| + # Whitespace is neutral, it just advances 'current' and does not switch
|
| + # between translateable/nontranslateable. If we are in a
|
| + # nontranslateable section that extends to the current point, we extend
|
| + # it to include the whitespace. If we are in a translateable section,
|
| + # we do not extend it until we find
|
| + # more translateable parts, because we never want a translateable chunk
|
| + # to end with whitespace.
|
| + if (not self.InTranslateable() and
|
| + self.last_nontranslateable == self.current - 1):
|
| + self.last_nontranslateable = self.current + m.end() - 1
|
| + self.AdvancePast(m)
|
| + continue
|
| +
|
| + # Then we try to match nontranslateables
|
| + m = _NONTRANSLATEABLES.match(self.Rest())
|
| + if m:
|
| + if self.InTranslateable():
|
| + self.EndTranslateable()
|
| + self.last_nontranslateable = self.current + m.end() - 1
|
| + self.AdvancePast(m)
|
| + continue
|
| +
|
| + # Now match all other HTML element tags (opening, closing, or empty, we
|
| + # don't care).
|
| + m = _ELEMENT.match(self.Rest())
|
| + if m:
|
| + element_name = m.group('element').lower()
|
| + if element_name in _BLOCK_TAGS:
|
| + self.last_element_ = element_name
|
| + if self.InTranslateable():
|
| + if self.last_nobreak:
|
| + self.last_nobreak = False
|
| + else:
|
| + self.EndTranslateable()
|
| +
|
| + # Check for "special" elements, i.e. ones that have a translateable
|
| + # attribute, and handle them correctly. Note that all of the
|
| + # "special" elements are block tags, so no need to check for this
|
| + # if the tag is not a block tag.
|
| + sm = _SPECIAL_ELEMENT.match(self.Rest())
|
| + if sm:
|
| + # Get the appropriate group name
|
| + for group in sm.groupdict().keys():
|
| + if sm.groupdict()[group]:
|
| + break
|
| +
|
| + # First make a nontranslateable chunk up to and including the
|
| + # quote before the translateable attribute value
|
| + self.AddChunk(False, self.text_[
|
| + self.chunk_start : self.current + sm.start(group)])
|
| + # Then a translateable for the translateable bit
|
| + self.AddChunk(True, self.Rest()[sm.start(group) : sm.end(group)])
|
| + # Finally correct the data invariant for the parser
|
| + self.chunk_start = self.current + sm.end(group)
|
| +
|
| + self.last_nontranslateable = self.current + m.end() - 1
|
| + elif self.InTranslateable():
|
| + # We're in a translateable and the tag is an inline tag, so we
|
| + # need to include it in the translateable.
|
| + self.last_translateable = self.current + m.end() - 1
|
| + self.AdvancePast(m)
|
| + continue
|
| +
|
| + # Anything else we find must be translateable, so we advance one character
|
| + # at a time until one of the above matches.
|
| + if not self.InTranslateable():
|
| + self.StartTranslateable()
|
| + else:
|
| + self.last_translateable = self.current
|
| + self.current += 1
|
| +
|
| + # Close the final chunk
|
| + if self.InTranslateable():
|
| + self.AddChunk(True, self.text_[self.chunk_start : ])
|
| + else:
|
| + self.AddChunk(False, self.text_[self.chunk_start : ])
|
| +
|
| + return self.chunks_
|
| +
|
| +
|
| +def HtmlToMessage(html, include_block_tags=False, description=''):
|
| + '''Takes a bit of HTML, which must contain only "inline" HTML elements,
|
| + and changes it into a tclib.Message. This involves escaping any entities and
|
| + replacing any HTML code with placeholders.
|
| +
|
| + If include_block_tags is true, no error will be given if block tags (e.g.
|
| + <p> or <br>) are included in the HTML.
|
| +
|
| + Args:
|
| + html: 'Hello <b>[USERNAME]</b>, how <i>are</i> you?'
|
| + include_block_tags: False
|
| +
|
| + Return:
|
| + tclib.Message('Hello START_BOLD1USERNAMEEND_BOLD, '
|
| + 'howNBSPSTART_ITALICareEND_ITALIC you?',
|
| + [ Placeholder('START_BOLD', '<b>', ''),
|
| + Placeholder('USERNAME', '[USERNAME]', ''),
|
| + Placeholder('END_BOLD', '</b>', ''),
|
| + Placeholder('START_ITALIC', '<i>', ''),
|
| + Placeholder('END_ITALIC', '</i>', ''), ])
|
| + '''
|
| + # Approach is:
|
| + # - first placeholderize, finding <elements>, [REPLACEABLES] and
|
| + # - then escape all character entities in text in-between placeholders
|
| +
|
| + parts = [] # List of strings (for text chunks) and tuples (ID, original)
|
| + # for placeholders
|
| +
|
| + count_names = {} # Map of base names to number of times used
|
| + end_names = {} # Map of base names to stack of end tags (for correct nesting)
|
| +
|
| + def MakeNameClosure(base, type = ''):
|
| + '''Returns a closure that can be called once all names have been allocated
|
| + to return the final name of the placeholder. This allows us to minimally
|
| + number placeholders for non-overlap.
|
| +
|
| + Also ensures that END_XXX_Y placeholders have the same Y as the
|
| + corresponding BEGIN_XXX_Y placeholder when we have nested tags of the same
|
| + type.
|
| +
|
| + Args:
|
| + base: 'phname'
|
| + type: '' | 'begin' | 'end'
|
| +
|
| + Return:
|
| + Closure()
|
| + '''
|
| + name = base.upper()
|
| + if type != '':
|
| + name = ('%s_%s' % (type, base)).upper()
|
| +
|
| + if name in count_names.keys():
|
| + count_names[name] += 1
|
| + else:
|
| + count_names[name] = 1
|
| +
|
| + def MakeFinalName(name_ = name, index = count_names[name] - 1):
|
| + if (type.lower() == 'end' and
|
| + base in end_names.keys() and len(end_names[base])):
|
| + return end_names[base].pop(-1) # For correct nesting
|
| + if count_names[name_] != 1:
|
| + name_ = '%s_%s' % (name_, _SUFFIXES[index])
|
| + # We need to use a stack to ensure that the end-tag suffixes match
|
| + # the begin-tag suffixes. Only needed when more than one tag of the
|
| + # same type.
|
| + if type == 'begin':
|
| + end_name = ('END_%s_%s' % (base, _SUFFIXES[index])).upper()
|
| + if base in end_names.keys():
|
| + end_names[base].append(end_name)
|
| + else:
|
| + end_names[base] = [end_name]
|
| +
|
| + return name_
|
| +
|
| + return MakeFinalName
|
| +
|
| + current = 0
|
| + last_nobreak = False
|
| +
|
| + while current < len(html):
|
| + m = _MESSAGE_NO_BREAK_COMMENT.match(html[current:])
|
| + if m:
|
| + last_nobreak = True
|
| + current += m.end()
|
| + continue
|
| +
|
| + m = _NBSP.match(html[current:])
|
| + if m:
|
| + parts.append((MakeNameClosure('SPACE'), m.group()))
|
| + current += m.end()
|
| + continue
|
| +
|
| + m = _REPLACEABLE.match(html[current:])
|
| + if m:
|
| + # Replaceables allow - but placeholders don't, so replace - with _
|
| + ph_name = MakeNameClosure('X_%s_X' % m.group('name').replace('-', '_'))
|
| + parts.append((ph_name, m.group()))
|
| + current += m.end()
|
| + continue
|
| +
|
| + m = _SPECIAL_ELEMENT.match(html[current:])
|
| + if m:
|
| + if not include_block_tags:
|
| + if last_nobreak:
|
| + last_nobreak = False
|
| + else:
|
| + raise exception.BlockTagInTranslateableChunk(html)
|
| + element_name = 'block' # for simplification
|
| + # Get the appropriate group name
|
| + for group in m.groupdict().keys():
|
| + if m.groupdict()[group]:
|
| + break
|
| + parts.append((MakeNameClosure(element_name, 'begin'),
|
| + html[current : current + m.start(group)]))
|
| + parts.append(m.group(group))
|
| + parts.append((MakeNameClosure(element_name, 'end'),
|
| + html[current + m.end(group) : current + m.end()]))
|
| + current += m.end()
|
| + continue
|
| +
|
| + m = _ELEMENT.match(html[current:])
|
| + if m:
|
| + element_name = m.group('element').lower()
|
| + if not include_block_tags and not element_name in _INLINE_TAGS:
|
| + if last_nobreak:
|
| + last_nobreak = False
|
| + else:
|
| + raise exception.BlockTagInTranslateableChunk(html[current:])
|
| + if element_name in _HTML_PLACEHOLDER_NAMES: # use meaningful names
|
| + element_name = _HTML_PLACEHOLDER_NAMES[element_name]
|
| +
|
| + # Make a name for the placeholder
|
| + type = ''
|
| + if not m.group('empty'):
|
| + if m.group('closing'):
|
| + type = 'end'
|
| + else:
|
| + type = 'begin'
|
| + parts.append((MakeNameClosure(element_name, type), m.group()))
|
| + current += m.end()
|
| + continue
|
| +
|
| + if len(parts) and isinstance(parts[-1], types.StringTypes):
|
| + parts[-1] += html[current]
|
| + else:
|
| + parts.append(html[current])
|
| + current += 1
|
| +
|
| + msg_text = ''
|
| + placeholders = []
|
| + for part in parts:
|
| + if isinstance(part, types.TupleType):
|
| + final_name = part[0]()
|
| + original = part[1]
|
| + msg_text += final_name
|
| + placeholders.append(tclib.Placeholder(final_name, original, '(HTML code)'))
|
| + else:
|
| + msg_text += part
|
| +
|
| + msg = tclib.Message(text=msg_text, placeholders=placeholders,
|
| + description=description)
|
| + content = msg.GetContent()
|
| + for ix in range(len(content)):
|
| + if isinstance(content[ix], types.StringTypes):
|
| + content[ix] = util.UnescapeHtml(content[ix], replace_nbsp=False)
|
| +
|
| + return msg
|
| +
|
| +
|
| +class TrHtml(interface.GathererBase):
|
| + '''Represents a document or message in the template format used by
|
| + Total Recall for HTML documents.'''
|
| +
|
| + def __init__(self, *args, **kwargs):
|
| + super(TrHtml, self).__init__(*args, **kwargs)
|
| + self.have_parsed_ = False
|
| + self.skeleton_ = [] # list of strings and MessageClique objects
|
| + self.fold_whitespace_ = False
|
| +
|
| + def SetAttributes(self, attrs):
|
| + '''Sets node attributes used by the gatherer.
|
| +
|
| + This checks the fold_whitespace attribute.
|
| +
|
| + Args:
|
| + attrs: The mapping of node attributes.
|
| + '''
|
| + self.fold_whitespace_ = ('fold_whitespace' in attrs and
|
| + attrs['fold_whitespace'] == 'true')
|
| +
|
| + def GetText(self):
|
| + '''Returns the original text of the HTML document'''
|
| + return self.text_
|
| +
|
| + def GetTextualIds(self):
|
| + return [self.extkey]
|
| +
|
| + def GetCliques(self):
|
| + '''Returns the message cliques for each translateable message in the
|
| + document.'''
|
| + return [x for x in self.skeleton_ if isinstance(x, clique.MessageClique)]
|
| +
|
| + def Translate(self, lang, pseudo_if_not_available=True,
|
| + skeleton_gatherer=None, fallback_to_english=False):
|
| + '''Returns this document with translateable messages filled with
|
| + the translation for language 'lang'.
|
| +
|
| + Args:
|
| + lang: 'en'
|
| + pseudo_if_not_available: True
|
| +
|
| + Return:
|
| + 'ID_THIS_SECTION TYPE\n...BEGIN\n "Translated message"\n......\nEND
|
| +
|
| + Raises:
|
| + grit.exception.NotReady() if used before Parse() has been successfully
|
| + called.
|
| + grit.exception.NoSuchTranslation() if 'pseudo_if_not_available' is false
|
| + and there is no translation for the requested language.
|
| + '''
|
| + if len(self.skeleton_) == 0:
|
| + raise exception.NotReady()
|
| +
|
| + # TODO(joi) Implement support for skeleton gatherers here.
|
| +
|
| + out = []
|
| + for item in self.skeleton_:
|
| + if isinstance(item, types.StringTypes):
|
| + out.append(item)
|
| + else:
|
| + msg = item.MessageForLanguage(lang,
|
| + pseudo_if_not_available,
|
| + fallback_to_english)
|
| + for content in msg.GetContent():
|
| + if isinstance(content, tclib.Placeholder):
|
| + out.append(content.GetOriginal())
|
| + else:
|
| + # We escape " characters to increase the chance that attributes
|
| + # will be properly escaped.
|
| + out.append(util.EscapeHtml(content, True))
|
| +
|
| + return ''.join(out)
|
| +
|
| + def Parse(self):
|
| + if self.have_parsed_:
|
| + return
|
| + self.have_parsed_ = True
|
| +
|
| + text = self._LoadInputFile()
|
| +
|
| + # Ignore the BOM character if the document starts with one.
|
| + if text.startswith(u'\ufeff'):
|
| + text = text[1:]
|
| +
|
| + self.text_ = text
|
| +
|
| + # Parsing is done in two phases: First, we break the document into
|
| + # translateable and nontranslateable chunks. Second, we run through each
|
| + # translateable chunk and insert placeholders for any HTML elements,
|
| + # unescape escaped characters, etc.
|
| +
|
| + # First handle the silly little [!]-prefixed header because it's not
|
| + # handled by our HTML parsers.
|
| + m = _SILLY_HEADER.match(text)
|
| + if m:
|
| + self.skeleton_.append(text[:m.start('title')])
|
| + self.skeleton_.append(self.uberclique.MakeClique(
|
| + tclib.Message(text=text[m.start('title'):m.end('title')])))
|
| + self.skeleton_.append(text[m.end('title') : m.end()])
|
| + text = text[m.end():]
|
| +
|
| + chunks = HtmlChunks().Parse(text, self.fold_whitespace_)
|
| +
|
| + for chunk in chunks:
|
| + if chunk[0]: # Chunk is translateable
|
| + self.skeleton_.append(self.uberclique.MakeClique(
|
| + HtmlToMessage(chunk[1], description=chunk[2])))
|
| + else:
|
| + self.skeleton_.append(chunk[1])
|
| +
|
| + # Go through the skeleton and change any messages that consist solely of
|
| + # placeholders and whitespace into nontranslateable strings.
|
| + for ix in range(len(self.skeleton_)):
|
| + got_text = False
|
| + if isinstance(self.skeleton_[ix], clique.MessageClique):
|
| + msg = self.skeleton_[ix].GetMessage()
|
| + for item in msg.GetContent():
|
| + if (isinstance(item, types.StringTypes) and _NON_WHITESPACE.search(item)
|
| + and item != ' '):
|
| + got_text = True
|
| + break
|
| + if not got_text:
|
| + self.skeleton_[ix] = msg.GetRealContent()
|
| +
|
| + def SubstituteMessages(self, substituter):
|
| + '''Applies substitutions to all messages in the tree.
|
| +
|
| + Goes through the skeleton and finds all MessageCliques.
|
| +
|
| + Args:
|
| + substituter: a grit.util.Substituter object.
|
| + '''
|
| + new_skel = []
|
| + for chunk in self.skeleton_:
|
| + if isinstance(chunk, clique.MessageClique):
|
| + old_message = chunk.GetMessage()
|
| + new_message = substituter.SubstituteMessage(old_message)
|
| + if new_message is not old_message:
|
| + new_skel.append(self.uberclique.MakeClique(new_message))
|
| + continue
|
| + new_skel.append(chunk)
|
| + self.skeleton_ = new_skel
|
| +
|
|
|