Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Z
Zope
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
Zope
Commits
03c6c87e
Commit
03c6c87e
authored
Jul 05, 2002
by
Casey Duncan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Collector #458: Fixed broken reindex_all method of CatalogAwareness classes
parent
ca075f5d
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
3 deletions
+5
-3
doc/CHANGES.txt
doc/CHANGES.txt
+3
-1
lib/python/Products/ZCatalog/CatalogAwareness.py
lib/python/Products/ZCatalog/CatalogAwareness.py
+1
-1
lib/python/Products/ZCatalog/CatalogPathAwareness.py
lib/python/Products/ZCatalog/CatalogPathAwareness.py
+1
-1
No files found.
doc/CHANGES.txt
View file @
03c6c87e
...
...
@@ -5,6 +5,8 @@ Zope Changes
file HISTORY.txt.
Bugs Fixed
- Collector #458: Fixed broken reindex_all in CatalogAwareness classes.
- The default "start" script now causes the event log to be sent to
standard output unless the "EVENT_LOG_FILE" or "STUPID_LOG_FILE"
...
...
@@ -13,7 +15,7 @@ Zope Changes
- The much-hated name "STUPID_LOG_FILE" now has a preferred
alias: "EVENT_LOG_FILE".
- Collector 454: The "default" session_data transient object
- Collector
#
454: The "default" session_data transient object
container was not created if an object named "session_data"
existed in the root.
...
...
lib/python/Products/ZCatalog/CatalogAwareness.py
View file @
03c6c87e
...
...
@@ -133,7 +133,7 @@ class CatalogAware:
if
hasattr
(
aq_base
(
obj
),
'objectValues'
):
sub
=
obj
.
objectValues
()
for
item
in
obj
.
objectValues
():
reindex_all
(
self
,
item
)
self
.
reindex_all
(
self
,
item
)
return
'done!'
...
...
lib/python/Products/ZCatalog/CatalogPathAwareness.py
View file @
03c6c87e
...
...
@@ -118,7 +118,7 @@ class CatalogAware:
if
hasattr
(
aq_base
(
obj
),
'objectValues'
):
sub
=
obj
.
objectValues
()
for
item
in
obj
.
objectValues
():
reindex_all
(
self
,
item
)
self
.
reindex_all
(
self
,
item
)
return
'done!'
class
CatalogPathAware
(
CatalogAware
):
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment