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
1d84ac1e
Commit
1d84ac1e
authored
Jul 02, 2005
by
Andreas Jung
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Collector #1826: manage_convertIndexes() - fixed handling of PathIndexes
parent
9df9ac51
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
5 deletions
+9
-5
doc/CHANGES.txt
doc/CHANGES.txt
+1
-1
lib/python/Products/ZCatalog/ZCatalog.py
lib/python/Products/ZCatalog/ZCatalog.py
+8
-4
No files found.
doc/CHANGES.txt
View file @
1d84ac1e
...
...
@@ -39,7 +39,7 @@ Zope Changes
- Collector #1808: manage_convertIndexes no longer tries to change the
index types causing some trouble with CMF.
- manage_convertIndexes now handles DateRangeIndexes properly
- manage_convertIndexes now handles DateRangeIndexes
and PathIndexes
properly
- WebDAV COPY and MOVE did not call '_notifyOfCopyTo' and
'_postCopy' hooks like it was done in
...
...
lib/python/Products/ZCatalog/ZCatalog.py
View file @
1d84ac1e
...
...
@@ -925,10 +925,14 @@ class ZCatalog(Folder, Persistent, Implicit):
for
idx
in
self
.
Indexes
.
objectValues
():
bases
=
[
str
(
name
)
for
name
in
idx
.
__class__
.
__bases__
]
found
=
False
for
base
in
bases
:
if
'UnIndex'
in
base
:
found
=
True
break
if
idx
.
meta_type
==
'PathIndex'
:
found
=
True
else
:
for
base
in
bases
:
if
'UnIndex'
in
base
:
found
=
True
break
if
found
:
idx_type
=
idx
.
meta_type
...
...
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