[Zope3-checkins] SVN: Zope3/trunk/src/zope/app/apidoc/codemodule/browser/introspector.pt Merged revision 40855 from the 3.2 branch:

Dmitry Vasiliev dima at hlabs.spb.ru
Sat Dec 17 15:56:13 EST 2005


Log message for revision 40858:
  Merged revision 40855 from the 3.2 branch:
  
  Fixed bad message id:
    
  tal:condition shouldn't be used with i18n:name in this context
  

Changed:
  U   Zope3/trunk/src/zope/app/apidoc/codemodule/browser/introspector.pt

-=-
Modified: Zope3/trunk/src/zope/app/apidoc/codemodule/browser/introspector.pt
===================================================================
--- Zope3/trunk/src/zope/app/apidoc/codemodule/browser/introspector.pt	2005-12-17 20:01:56 UTC (rev 40857)
+++ Zope3/trunk/src/zope/app/apidoc/codemodule/browser/introspector.pt	2005-12-17 20:56:13 UTC (rev 40858)
@@ -15,12 +15,12 @@
        tal:content="view/klassView/context/getPath"
        i18n:name="class-name" />
     (
-     <span tal:replace="context/zope:name"
-           tal:condition="context/zope:name"
-           i18n:name="object-name"/>
-     <i tal:condition="not: context/zope:name"
-        i18n:name="object-name"
-        i18n:translate="">&lt;no name&gt;</i>
+     <tal:block i18n:name="object-name">
+       <span tal:replace="context/zope:name"
+         tal:condition="context/zope:name"/>
+       <i tal:condition="not: context/zope:name"
+         i18n:translate="">&lt;no name&gt;</i>
+     </tal:block>
     )
   </h1>
   <em tal:define="parent view/parent"



More information about the Zope3-Checkins mailing list