[Zope3-checkins] CVS: Zope3/lib/python/Zope/App/OFS/Services/Browser - adapter_search.pt:1.1.2.3 view_search.pt:1.1.2.2

Jim Fulton jim@zope.com
Thu, 19 Dec 2002 12:33:41 -0500


Update of /cvs-repository/Zope3/lib/python/Zope/App/OFS/Services/Browser
In directory cvs.zope.org:/tmp/cvs-serv1948

Modified Files:
      Tag: AdapterAndView-branch
	adapter_search.pt view_search.pt 
Log Message:
Changed these templates to:

- Use GET for the searches, to:

  o Make the searches book-markable, and to:

  o Make debugging easier

- Spell POST in uppercase. HTTP methods are defined to be upper case.



=== Zope3/lib/python/Zope/App/OFS/Services/Browser/adapter_search.pt 1.1.2.2 => 1.1.2.3 ===
--- Zope3/lib/python/Zope/App/OFS/Services/Browser/adapter_search.pt:1.1.2.2	Thu Dec 12 10:19:54 2002
+++ Zope3/lib/python/Zope/App/OFS/Services/Browser/adapter_search.pt	Thu Dec 19 12:33:41 2002
@@ -3,7 +3,7 @@
 <body>
 <div metal:fill-slot="body">
 
-<form action="." method="post"
+<form action="." method="GET"
       tal:attributes="action request/URL"
       >
   <table>
@@ -19,7 +19,7 @@
   </table>
 </form>
 
-<form action="." method="post"
+<form action="." method="POST"
       tal:attributes="action request/URL"
       tal:condition="request/SEARCH|nothing"
       >


=== Zope3/lib/python/Zope/App/OFS/Services/Browser/view_search.pt 1.1.2.1 => 1.1.2.2 ===
--- Zope3/lib/python/Zope/App/OFS/Services/Browser/view_search.pt:1.1.2.1	Thu Dec 12 10:19:54 2002
+++ Zope3/lib/python/Zope/App/OFS/Services/Browser/view_search.pt	Thu Dec 19 12:33:41 2002
@@ -3,7 +3,7 @@
 <body>
 <div metal:fill-slot="body">
 
-<form action="." method="post"
+<form action="." method="GET"
       tal:attributes="action request/URL"
       >
   <table>
@@ -19,7 +19,7 @@
   </table>
 </form>
 
-<form action="." method="post"
+<form action="." method="POST"
       tal:attributes="action request/URL"
       tal:condition="request/SEARCH|nothing"
       >