projects
/
Plinn.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
|
inline
| side by side (from parent 1:
710412c
)
Le tri est effectué directement par le catalogue.
author
Benoît Pin
<benoit.pin@gmail.com>
Wed, 9 Jul 2014 05:46:34 +0000
(07:46 +0200)
committer
Benoît Pin
<benoit.pin@gmail.com>
Wed, 9 Jul 2014 05:46:34 +0000
(07:46 +0200)
Folder.py
patch
|
blob
|
history
diff --git
a/Folder.py
b/Folder.py
index
2c498c6
..
9b30e53
100644
(file)
--- a/
Folder.py
+++ b/
Folder.py
@@
-266,7
+266,9
@@
class PlinnFolder(CMFCatalogAware, PortalFolder, DefaultDublinCoreImpl) :
ctool = getUtilityByInterfaceName('Products.CMFCore.interfaces.ICatalogTool')
contentFilter['path'] = {'query':'/'.join(self.getPhysicalPath()),
'depth':1}
ctool = getUtilityByInterfaceName('Products.CMFCore.interfaces.ICatalogTool')
contentFilter['path'] = {'query':'/'.join(self.getPhysicalPath()),
'depth':1}
- return ctool(sort_on='position', **contentFilter)
+ if not contentFilter.has_key('sort_on') :
+ contentFilter['sort_index'] = 'position'
+ return ctool(**contentFilter)
security.declarePublic('synContentValues')
def synContentValues(self):
security.declarePublic('synContentValues')
def synContentValues(self):