[Zope3-checkins] SVN: Zope3/branches/Zope-3.1/src/zope/app/apidoc/ Benji and Phillip just pointed out that empty actions are not valid HTML.

Stephan Richter srichter at cosmos.phy.tufts.edu
Thu Aug 4 12:02:16 EDT 2005


Log message for revision 37703:
  Benji and Phillip just pointed out that empty actions are not valid HTML. 
  :(
  

Changed:
  U   Zope3/branches/Zope-3.1/src/zope/app/apidoc/codemodule/browser/menu.pt
  U   Zope3/branches/Zope-3.1/src/zope/app/apidoc/ifacemodule/menu.pt

-=-
Modified: Zope3/branches/Zope-3.1/src/zope/app/apidoc/codemodule/browser/menu.pt
===================================================================
--- Zope3/branches/Zope-3.1/src/zope/app/apidoc/codemodule/browser/menu.pt	2005-08-04 16:00:09 UTC (rev 37702)
+++ Zope3/branches/Zope-3.1/src/zope/app/apidoc/codemodule/browser/menu.pt	2005-08-04 16:02:16 UTC (rev 37703)
@@ -7,7 +7,8 @@
     <div>
       <span i18n:translate="">Class Finder:</span> <br/>
       <i i18n:translate="">(Enter partial Python path)</i></div>
-    <form action="" method="post">
+    <form action="" method="post"
+          tal:attributes="action request/URL">
       <input type="text" name="path" 
              style="font-size: 80%; width=95%" />
       <input type="submit" name="SUBMIT" value="Find" 

Modified: Zope3/branches/Zope-3.1/src/zope/app/apidoc/ifacemodule/menu.pt
===================================================================
--- Zope3/branches/Zope-3.1/src/zope/app/apidoc/ifacemodule/menu.pt	2005-08-04 16:00:09 UTC (rev 37702)
+++ Zope3/branches/Zope-3.1/src/zope/app/apidoc/ifacemodule/menu.pt	2005-08-04 16:02:16 UTC (rev 37703)
@@ -7,7 +7,8 @@
     <div>
       <span i18n:translate="">Interface Finder:</span>
     </div>
-    <form action="" method="post">
+    <form action="" method="post"
+          tal:attributes="action request/URL">
       <input type="checkbox" name="name_only" value="on" checked="checked" />
       <tal:block i18n:translate="">name only search</tal:block>
       <br />



More information about the Zope3-Checkins mailing list