[Zope3-checkins] CVS: Zope3/src/zope/app/browser/services/registration - namecomponentregistry.pt:1.7

Stephan Richter srichter at cosmos.phy.tufts.edu
Thu Aug 7 16:50:35 EDT 2003


Update of /cvs-repository/Zope3/src/zope/app/browser/services/registration
In directory cvs.zope.org:/tmp/cvs-serv16095/browser/services/registration

Modified Files:
	namecomponentregistry.pt 
Log Message:
bug, which I introduced from my cleaning, fixed.


=== Zope3/src/zope/app/browser/services/registration/namecomponentregistry.pt 1.6 => 1.7 ===
--- Zope3/src/zope/app/browser/services/registration/namecomponentregistry.pt:1.6	Thu Aug  7 13:41:28 2003
+++ Zope3/src/zope/app/browser/services/registration/namecomponentregistry.pt	Thu Aug  7 15:50:30 2003
@@ -11,42 +11,42 @@
       <div tal:condition="not:registries">
         <p metal:define-slot="empty_text">No fruits have been registered</p>
       </div>
-    </div>
-
-    <div tal:condition="registries">
-
-      <div metal:define-slot="extra_top" tal:condition="nothing">
-
-        <p>For each fruit, the fruit name is given and all of the components
-           registered to provide the fruit are shown.  You may select the
-           component to provide the fruit or disable the fruit.
-        </p>
-
-        <p>Select a fruit name or a component name to visit the fruit or
-          component.</p>
 
+      <div tal:condition="registries">
+  
+        <div metal:define-slot="extra_top" tal:condition="nothing">
+  
+          <p>For each fruit, the fruit name is given and all of the components
+             registered to provide the fruit are shown.  You may select the
+             component to provide the fruit or disable the fruit.
+          </p>
+  
+          <p>Select a fruit name or a component name to visit the fruit or
+            component.</p>
+  
+        </div>
+  
+          <form action="." method="post" tal:attributes="action request/URL">
+  
+            <div tal:repeat="registry registries">
+              <a href="#"
+                 tal:content="registry/name"
+                 tal:attributes="href registry/url"
+                 tal:condition="registry/active">Orange</a>
+              <span tal:replace="registry/name"
+                    tal:condition="registry/inactive" />
+              <br />
+              <span tal:content="structure registry/view" />
+            </div>
+  
+            <input type="submit" name="submit_update" value="Update" 
+                   i18n:attributes="value update-button"/><br />
+  
+        </form>
+  
+        <div metal:define-slot="extra_bottom" tal:condition="nothing" />
+  
       </div>
-
-        <form action="." method="post" tal:attributes="action request/URL">
-
-          <div tal:repeat="registry registries">
-            <a href="#"
-               tal:content="registry/name"
-               tal:attributes="href registry/url"
-               tal:condition="registry/active">Orange</a>
-            <span tal:replace="registry/name"
-                  tal:condition="registry/inactive" />
-            <br />
-            <span tal:content="structure registry/view" />
-          </div>
-
-          <input type="submit" name="submit_update" value="Update" 
-                 i18n:attributes="value update-button"/><br />
-
-      </form>
-
-      <div metal:define-slot="extra_bottom" tal:condition="nothing" />
-
     </div>
   </div>
 




More information about the Zope3-Checkins mailing list