[Zope3-checkins] CVS: Zope3/lib/python/Zope/App/index/text - control.pt:1.4
Guido van Rossum
guido@python.org
Thu, 5 Dec 2002 08:57:08 -0500
Update of /cvs-repository/Zope3/lib/python/Zope/App/index/text
In directory cvs.zope.org:/tmp/cvs-serv4181
Modified Files:
control.pt
Log Message:
Add boilerplate to use the standard template.
=== Zope3/lib/python/Zope/App/index/text/control.pt 1.3 => 1.4 ===
--- Zope3/lib/python/Zope/App/index/text/control.pt:1.3 Wed Dec 4 16:39:17 2002
+++ Zope3/lib/python/Zope/App/index/text/control.pt Thu Dec 5 08:57:08 2002
@@ -1,8 +1,23 @@
-<html>
+<html metal:use-macro="views/standard_macros/page">
+
+ <head>
+ <title>TextIndex Control Page</title>
+ </head>
<body>
- <h1>TextIndex</h1>
+ <div metal:fill-slot="body">
+
+ <h1><br>TextIndex</h1>
+
+ <p class="form-help">
+ This page lets you control a text index, which is used to
+ provide a full-text searching facility. The search box here is
+ only for debugging. Subscription status: A "subscribed" index
+ will update itself whenever objects are added, deleted or
+ modified; an "unsubscribed" index will retain the indexing
+ information but not update itself further.
+ </p>
<span tal:condition="request/callSubscribe|nothing" tal:omit-tag="">
<span tal:define="dummy context/subscribe" tal:omit-tag=""/>
@@ -40,6 +55,8 @@
Search results:
<span tal:replace="python:context.query(request['queryText'])[1]" />
</div>
+
+ </div>
</body>