Commit 3657c47f authored by Barry Warsaw's avatar Barry Warsaw

Typos in the docstring, and also let index()'s arg be optional.

parent 4e7b5aba
...@@ -41,15 +41,16 @@ Commands: ...@@ -41,15 +41,16 @@ Commands:
and adding them as documents to the mail folder. and adding them as documents to the mail folder.
index threshold index [threshold]
Index all of the DTML documents in the database, committing Index all of the DTML documents in the database, committing
sub-transactions after each threshold objects. sub-transactions after each threshold objects. threshold defaults to
1000.
If the threshold is less than the number of messages, then the If the threshold is less than the number of messages, then the
size of the temporary sub-transaction commit file is output. size of the temporary sub-transaction commit file is output.
inc mbox start end [threads wait] inc mbox start end [threads [wait]]
Incrementally index messages start to end in unix mailbox mbox. Incrementally index messages start to end in unix mailbox mbox.
...@@ -73,9 +74,9 @@ Commands: ...@@ -73,9 +74,9 @@ Commands:
- The cpu time - The cpu time
- The number of ZODB trabsaction conflicts detected when reading - The number of ZODB transaction conflicts detected when reading
- The number of ZODB trabsaction conflicts detected when committing - The number of ZODB transaction conflicts detected when committing
edit edits deletes inserts threads wait edit edits deletes inserts threads wait
...@@ -266,14 +267,16 @@ def index(): ...@@ -266,14 +267,16 @@ def index():
import AccessControl.SecurityManagement, AccessControl.SpecialUsers import AccessControl.SecurityManagement, AccessControl.SpecialUsers
app=Zope.app() app=Zope.app()
Products.ZCatalog.ZCatalog.manage_addZCatalog(app, 'cat', '') Products.ZCatalog.ZCatalog.manage_addZCatalog(app, 'cat', '')
app.cat.threshold=atoi(sys.argv[2]) try:
app.cat.threshold = atoi(sys.argv[2])
except IndexError:
app.cat.threashold = 1000
from Products.ZCTextIndex.ZCTextIndex \ from Products.ZCTextIndex.ZCTextIndex \
import PLexicon import PLexicon
from Products.ZCTextIndex.Lexicon \ from Products.ZCTextIndex.Lexicon \
import Splitter, CaseNormalizer import Splitter, CaseNormalizer
app.cat._setObject('lex', app.cat._setObject('lex',
PLexicon('lex', '', Splitter(), CaseNormalizer()) PLexicon('lex', '', Splitter(), CaseNormalizer())
) )
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment