[IMP] npybabel.py: comment w/ rationale for not using iterparse() in qweb extraction

bzr revid: odo@openerp.com-20120206153217-27ns8rl6q0198vqk
This commit is contained in:
Olivier Dony 2012-02-06 16:32:17 +01:00
parent 59801aff1d
commit 968decea96
1 changed files with 2 additions and 0 deletions

View File

@ -66,6 +66,8 @@ def extract_qweb(fileobj, keywords, comment_tags, options):
if len(text) > 1: # Avoid mono-char tokens like ':' ',' etc.
result.append((lineno, None, text, [TRANSLATION_FLAG_COMMENT]))
# not using elementTree.iterparse because we need to skip sub-trees in case
# the ancestor element had a reason to be skipped
def iter_elements(current_element):
for el in current_element:
if "t-js" not in el.attrib and \