[Zope-Checkins] CVS: Zope3/lib/python/Zope/TAL/tests/input - test27.html:1.1.2.1 test28.html:1.1.2.1

Barry Warsaw barry@wooz.org
Tue, 25 Jun 2002 20:07:52 -0400


Update of /cvs-repository/Zope3/lib/python/Zope/TAL/tests/input
In directory cvs.zope.org:/tmp/cvs-serv9803/tests/input

Added Files:
      Tag: tal-i18n-refactor-branch
	test27.html test28.html 
Log Message:
First pass at refactoring the i18n tal attribute handling.  Some stuff
works better, some stuff is broken (which is why this is on a
branch).  In particular i18n:name + tal:content now works, as does
i18n:name + implicit tal:replace, but i18n:name + (explicit)
tal:replace is broken.  Checkpointing so I can work on this at home.

Specific changes:

New test files.


=== Added File Zope3/lib/python/Zope/TAL/tests/input/test27.html ===
<p i18n:translate="verify">Your contact email address is recorded as
    <a href="mailto:user@example.com"
       tal:content="request/submitter"
       i18n:name="email">user@host.com</a>
</p>


=== Added File Zope3/lib/python/Zope/TAL/tests/input/test28.html ===
<p i18n:translate="verify">Your contact email address is recorded as
    <span i18n:name="email">
    <a href="mailto:user@example.com"
       tal:content="request/submitter">user@host.com</a></span>
</p>