[Zope-Checkins] SVN: Zope/trunk/lib/python/ Fix for issue 233 in the Zope 3 collector.

Fred L. Drake, Jr. fred at zope.com
Tue Jul 13 14:17:02 EDT 2004


Log message for revision 26503:
  Fix for issue 233 in the Zope 3 collector.
  This corresponds to the Hotfix_2004-07-13 product.
  


Changed:
  U   Zope/trunk/lib/python/Products/PageTemplates/tests/output/CheckI18nTranslateHooked.html
  U   Zope/trunk/lib/python/TAL/TALDefs.py
  U   Zope/trunk/lib/python/TAL/TALGenerator.py
  U   Zope/trunk/lib/python/TAL/TALInterpreter.py
  A   Zope/trunk/lib/python/TAL/tests/input/test36.html
  A   Zope/trunk/lib/python/TAL/tests/output/test36.html
  U   Zope/trunk/lib/python/TAL/tests/test_htmltalparser.py
  U   Zope/trunk/lib/python/TAL/tests/test_talinterpreter.py


-=-
Modified: Zope/trunk/lib/python/Products/PageTemplates/tests/output/CheckI18nTranslateHooked.html
===================================================================
--- Zope/trunk/lib/python/Products/PageTemplates/tests/output/CheckI18nTranslateHooked.html	2004-07-13 18:13:52 UTC (rev 26502)
+++ Zope/trunk/lib/python/Products/PageTemplates/tests/output/CheckI18nTranslateHooked.html	2004-07-13 18:17:01 UTC (rev 26503)
@@ -4,7 +4,7 @@
    <p>[foo](bar/{})</p>
    <a href="foo" alt="[default](alttext/{})">link</a>
    <p>[dom](${name} was born in ${country}./{'country':'Antarctica','name':'Lomax'})</p>
-   <p>[default](hmm/{'age':25})</p>
+   <p>[default](hmm/{'age':'25'})</p>
 </head>
 </body>
 </html>

Modified: Zope/trunk/lib/python/TAL/TALDefs.py
===================================================================
--- Zope/trunk/lib/python/TAL/TALDefs.py	2004-07-13 18:13:52 UTC (rev 26502)
+++ Zope/trunk/lib/python/TAL/TALDefs.py	2004-07-13 18:17:01 UTC (rev 26503)
@@ -19,7 +19,7 @@
 
 from ITALES import ITALESErrorInfo
 
-TAL_VERSION = "1.4"
+TAL_VERSION = "1.5"
 
 XML_NS = "http://www.w3.org/XML/1998/namespace" # URI for XML namespace
 XMLNS_NS = "http://www.w3.org/2000/xmlns/" # URI for XML NS declarations

Modified: Zope/trunk/lib/python/TAL/TALGenerator.py
===================================================================
--- Zope/trunk/lib/python/TAL/TALGenerator.py	2004-07-13 18:13:52 UTC (rev 26502)
+++ Zope/trunk/lib/python/TAL/TALGenerator.py	2004-07-13 18:17:01 UTC (rev 26503)
@@ -352,9 +352,8 @@
             assert action == I18N_EXPRESSION
             key, expr = parseSubstitution(expression)
             cexpr = self.compileExpression(expr)
-        # XXX Would key be anything but 'text' or None?
-        assert key in ('text', None)
-        self.emit('i18nVariable', varname, program, cexpr)
+        self.emit('i18nVariable',
+                  varname, program, cexpr, int(key == "structure"))
 
     def emitTranslation(self, msgid, i18ndata):
         program = self.popProgram()
@@ -783,7 +782,8 @@
             #   - I18N_CONTENT for tal:content
             #   - I18N_EXPRESSION for explicit tal:replace
             # o varname[2] will be None for the first two actions and the
-            #   replacement tal expression for the third action.
+            #   replacement tal expression for the third action.  This
+            #   can include a 'text' or 'structure' indicator.
             assert (varname[1]
                     in [I18N_REPLACE, I18N_CONTENT, I18N_EXPRESSION])
             self.emitI18nVariable(varname)

Modified: Zope/trunk/lib/python/TAL/TALInterpreter.py
===================================================================
--- Zope/trunk/lib/python/TAL/TALInterpreter.py	2004-07-13 18:13:52 UTC (rev 26502)
+++ Zope/trunk/lib/python/TAL/TALInterpreter.py	2004-07-13 18:17:01 UTC (rev 26503)
@@ -14,7 +14,7 @@
 """
 Interpreter for a pre-compiled TAL program.
 """
-
+import cgi
 import sys
 import getopt
 import re
@@ -496,7 +496,7 @@
     bytecode_handlers["insertText"] = do_insertText
 
     def do_i18nVariable(self, stuff):
-        varname, program, expression = stuff
+        varname, program, expression, structure = stuff
         if expression is None:
             # The value is implicitly the contents of this tag, so we have to
             # evaluate the mini-program to get the value of the variable.
@@ -510,7 +510,14 @@
         else:
             # Evaluate the value to be associated with the variable in the
             # i18n interpolation dictionary.
-            value = self.engine.evaluate(expression)
+            if structure:
+                value = self.engine.evaluateStructure(expression)
+            else:
+                value = self.engine.evaluate(expression)
+
+            if not structure:
+                value = cgi.escape(str(value))
+
         # Either the i18n:name tag is nested inside an i18n:translate in which
         # case the last item on the stack has the i18n dictionary and string
         # representation, or the i18n:name and i18n:translate attributes are

Added: Zope/trunk/lib/python/TAL/tests/input/test36.html
===================================================================
--- Zope/trunk/lib/python/TAL/tests/input/test36.html	2004-07-13 18:13:52 UTC (rev 26502)
+++ Zope/trunk/lib/python/TAL/tests/input/test36.html	2004-07-13 18:17:01 UTC (rev 26503)
@@ -0,0 +1,6 @@
+<span tal:replace="string:<foo>" />
+<span i18n:translate="">
+  <span tal:replace="string:<foo>" i18n:name="name1" />
+  <span tal:replace="structure string:<bar />" i18n:name="name2" />
+  <span i18n:name="name3"><b>some</b> <i>text</i></span>
+</span>

Added: Zope/trunk/lib/python/TAL/tests/output/test36.html
===================================================================
--- Zope/trunk/lib/python/TAL/tests/output/test36.html	2004-07-13 18:13:52 UTC (rev 26502)
+++ Zope/trunk/lib/python/TAL/tests/output/test36.html	2004-07-13 18:17:01 UTC (rev 26503)
@@ -0,0 +1,2 @@
+&lt;foo&gt;
+<span>&lt;foo&gt; <bar /> <b>some</b> <i>text</i></span>

Modified: Zope/trunk/lib/python/TAL/tests/test_htmltalparser.py
===================================================================
--- Zope/trunk/lib/python/TAL/tests/test_htmltalparser.py	2004-07-13 18:13:52 UTC (rev 26502)
+++ Zope/trunk/lib/python/TAL/tests/test_htmltalparser.py	2004-07-13 18:17:01 UTC (rev 26503)
@@ -594,7 +594,8 @@
          ('span',
           [('tal:replace', 'str:Lomax', 'tal'),
            ('i18n:name', 'name', 'i18n')]))],
-       '$str:Lomax$')),
+       '$str:Lomax$',
+       0)),
      ('rawtextBeginScope',
       (' was born in\n  ',
        2,
@@ -607,7 +608,8 @@
          ('span',
           [('tal:replace', 'str:Antarctica', 'tal'),
            ('i18n:name', 'country', 'i18n')]))],
-       '$str:Antarctica$')),
+       '$str:Antarctica$',
+       0)),
      ('endScope', ()),
      ('rawtextColumn', ('.\n', 0))])),
   ('endScope', ()),
@@ -638,7 +640,8 @@
            ('',
              [('insertText', ('$bar$', []))])),
          ('rawtextOffset', ('</span>', 7))],
-      None)),
+      None,
+        0)),
    ('endScope', ()),
    ('rawtextOffset', ('.', 1))])),
 ('endScope', ()),
@@ -662,12 +665,12 @@
     [('rawtextBeginScope', ('\n  ', 2, (2, 2), 0, {'i18n:name': 'name'})),
      ('i18nVariable',
       ('name',
-       [('rawtextOffset', ('<b>Jim</b>', 10))], None)),
+       [('rawtextOffset', ('<b>Jim</b>', 10))], None, 0)),
      ('rawtextBeginScope',
       (' was born in\n  ', 2, (3, 2), 1, {'i18n:name': 'country'})),
      ('i18nVariable',
       ('country',
-       [('rawtextOffset', ('the USA', 7))], None)),
+       [('rawtextOffset', ('the USA', 7))], None, 0)),
      ('endScope', ()),
      ('rawtextColumn', ('.\n', 0))])),
   ('endScope', ()),
@@ -782,7 +785,7 @@
          [('i18n:data', 'here/currentTime', 'i18n'),
           ('i18n:translate', 'timefmt', 'i18n'),
           ('i18n:name', 'time', 'i18n')])),
-       ('i18nVariable', ('time', [], None))],
+       ('i18nVariable', ('time', [], None, 0))],
       '$here/currentTime$')),
     ('endScope', ()),
     ('rawtextOffset', ('... beep!', 9))])),
@@ -816,7 +819,8 @@
            ('i18n:name', 'jobnum', 'i18n')])),
         ('rawtextOffset', ('NN', 2)),
         ('rawtextOffset', ('</span>', 7))],
-       '$context/@@object_name$')),
+       '$context/@@object_name$',
+       0)),
      ('endScope', ())])),
   ('endScope', ()),
   ('rawtextColumn', ('</span>\n', 0))
@@ -860,7 +864,8 @@
           [('rawtextOffset', ('user at host.com', 13))])),
         ('endScope', ()),
         ('rawtextOffset', ('</a>', 4))],
-       None)),
+       None,
+       0)),
      ('endScope', ()),
      ('rawtextColumn', ('\n', 0))])),
   ('endScope', ()),
@@ -900,7 +905,8 @@
          ('$request/submitter$',
           [('rawtextOffset', ('user at host.com', 13))])),
         ('rawtextOffset', ('</a>', 4))],
-       None)),
+       None,
+       0)),
      ('endScope', ()),
      ('rawtextColumn', ('\n', 0))])),
   ('endScope', ()),

Modified: Zope/trunk/lib/python/TAL/tests/test_talinterpreter.py
===================================================================
--- Zope/trunk/lib/python/TAL/tests/test_talinterpreter.py	2004-07-13 18:13:52 UTC (rev 26502)
+++ Zope/trunk/lib/python/TAL/tests/test_talinterpreter.py	2004-07-13 18:17:01 UTC (rev 26503)
@@ -94,7 +94,7 @@
                     '<div>THIS IS TEXT FOR <span>BARVALUE</span>.</div>\n')
 
     def test_translate_static_text_as_dynamic_from_bytecode(self):
-        program =  [('version', '1.4'),
+        program =  [('version', '1.5'),
  ('mode', 'html'),
 ('setPosition', (1, 0)),
 ('beginScope', {'i18n:translate': ''}),
@@ -116,7 +116,8 @@
            ('',
              [('insertText', ('$bar$', []))])),
          ('rawtextOffset', ('</span>', 7))],
-      None)),
+        None,
+        0)),
    ('endScope', ()),
    ('rawtextOffset', ('.', 1))])),
 ('endScope', ()),



More information about the Zope-Checkins mailing list