[Zope3-checkins] CVS: Zope3/src/zope/app/index/text - configure.zcml:1.1.2.2 control.py:1.1.2.2
Jim Fulton
jim@zope.com
Tue, 24 Dec 2002 07:51:37 -0500
Update of /cvs-repository/Zope3/src/zope/app/index/text
In directory cvs.zope.org:/tmp/cvs-serv1158/src/zope/app/index/text
Modified Files:
Tag: NameGeddon-branch
configure.zcml control.py
Log Message:
Searched for and changed over 1200 references to Zope.something.
Most of these were either comments, doc strings, or permission ids.
Many were imports or ids in zcml. (much zcml fixup is still needed.
=== Zope3/src/zope/app/index/text/configure.zcml 1.1.2.1 => 1.1.2.2 ===
--- Zope3/src/zope/app/index/text/configure.zcml:1.1.2.1 Mon Dec 23 14:31:39 2002
+++ Zope3/src/zope/app/index/text/configure.zcml Tue Dec 24 07:51:06 2002
@@ -6,14 +6,14 @@
<content class="zope.app.index.text.index.TextIndex">
<require
- permission="Zope.ManageServices"
+ permission="zope.ManageServices"
interface="zope.app.interfaces.index.text.interfaces.IUITextIndex"
attributes="query"
/>
<factory
- id="Zope.App.index.text.factory"
- permission="Zope.ManageServices"
+ id="zope.app.index.text.factory"
+ permission="zope.ManageServices"
/>
</content>
@@ -21,7 +21,7 @@
<browser:menuItem
menu="add_component"
for="zope.app.interfaces.container.IAdding"
- action="Zope.App.index.text.factory"
+ action="zope.app.index.text.factory"
title="Text Index"
description="An index to support full-text search"
/>
@@ -32,7 +32,7 @@
<browser:view
for="zope.textindex.textindexinterfaces.IStatistics"
- permission="Zope.ManageServices"
+ permission="zope.ManageServices"
name="control.html"
factory="zope.app.index.text.control.ControlView">
=== Zope3/src/zope/app/index/text/control.py 1.1.2.1 => 1.1.2.2 ===
--- Zope3/src/zope/app/index/text/control.py:1.1.2.1 Mon Dec 23 14:31:39 2002
+++ Zope3/src/zope/app/index/text/control.py Tue Dec 24 07:51:06 2002
@@ -25,7 +25,7 @@
from zope.publisher.interfaces.browser import IBrowserView
from zope.publisher.browser import BrowserView
-from Zope.App.Traversing import locationAsUnicode
+from zope.app.traversing import locationAsUnicode
from zope.app.interfaces.dublincore import IZopeDublinCore
from zope.app.interfaces.index.text.interfaces import IQueryView