[Zope3-checkins] CVS: Zope3/src/zope/app/browser/index/field - control.pt:1.5

Steve Alexander steve@cat-box.net
Mon, 30 Jun 2003 13:05:14 -0400


Update of /cvs-repository/Zope3/src/zope/app/browser/index/field
In directory cvs.zope.org:/tmp/cvs-serv24902/src/zope/app/browser/index/field

Modified Files:
	control.pt 
Log Message:
Removed TAB characters.


=== Zope3/src/zope/app/browser/index/field/control.pt 1.4 => 1.5 ===
--- Zope3/src/zope/app/browser/index/field/control.pt:1.4	Wed Jun 25 17:18:52 2003
+++ Zope3/src/zope/app/browser/index/field/control.pt	Mon Jun 30 13:04:43 2003
@@ -60,30 +60,30 @@
 
     <div tal:condition="request/queryText|nothing" tal:omit-tag="">
         <div tal:define="result view/query" tal:omit-tag="">
-	    <div tal:condition="not:result/total">
-	        No hits.  Please try another query.
-	    </div>
-	    <div tal:condition="result/total">
-		<div tal:content="
-		string:Hits ${result/first}-${result/last} of ${result/total}:"
-		/>
-		<div tal:repeat="info result/results">
-	            title=<span tal:replace="info/title" />;
-		    url=<a href="location"
-		            tal:attributes="href info/location"
+            <div tal:condition="not:result/total">
+                No hits.  Please try another query.
+            </div>
+            <div tal:condition="result/total">
+                <div tal:content="
+                string:Hits ${result/first}-${result/last} of ${result/total}:"
+                />
+                <div tal:repeat="info result/results">
+                    title=<span tal:replace="info/title" />;
+                    url=<a href="location"
+                            tal:attributes="href info/location"
                             tal:content="info/location">url</a>
-		</div>
-	    </div>
-	    <span tal:condition="exists:result/prev">
+                </div>
+            </div>
+            <span tal:condition="exists:result/prev">
                 <a href="next"
                    tal:attributes="href
                        string:?queryText=${request/queryText}&start=${view/prevBatch}">&lt;-- PREVIOUS BATCH</a>
-	    </span>
-	    <span tal:condition="exists:result/next">
+            </span>
+            <span tal:condition="exists:result/next">
                 <a href="next"
                    tal:attributes="href
                        string:?queryText=${request/queryText}&start=${view/nextBatch}">NEXT BATCH --&gt;</a>
-	    </span>
+            </span>
         </div>
     </div>