projects
/
Plinn.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Réindexation des memberdata. Refactoring.
[Plinn.git]
/
Folder.py
diff --git
a/Folder.py
b/Folder.py
index
2c498c6
..
8ed3cc3
100644
(file)
--- a/
Folder.py
+++ b/
Folder.py
@@
-1,7
+1,7
@@
# -*- coding: utf-8 -*-
#######################################################################################
# Plinn - http://plinn.org #
# -*- coding: utf-8 -*-
#######################################################################################
# Plinn - http://plinn.org #
-# Copyright (C) 2005-20
07 Benoît PIN
<benoit.pin@ensmp.fr> #
+# Copyright (C) 2005-20
14 Benoît Pin
<benoit.pin@ensmp.fr> #
# #
# This program is free software; you can redistribute it and/or #
# modify it under the terms of the GNU General Public License #
# #
# This program is free software; you can redistribute it and/or #
# modify it under the terms of the GNU General Public License #
@@
-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):