Commit 571be996 authored by Jérome Perrin's avatar Jérome Perrin

split updateCellRange in _updateCellRange and updateCellRange, where...

split updateCellRange in _updateCellRange and updateCellRange, where reindexing is done only with updateCellRange.


git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@4979 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent 303e2844
...@@ -319,8 +319,8 @@ class XMLMatrix(Folder): ...@@ -319,8 +319,8 @@ class XMLMatrix(Folder):
self.reindexObject() self.reindexObject()
security.declareProtected(Permissions.ModifyPortalContent, security.declareProtected(Permissions.ModifyPortalContent,
'updateCellRange') '_updateCellRange')
def updateCellRange(self, base_id, script_id=None, **kw): def _updateCellRange(self, base_id, script_id=None, **kw):
""" """
The asCellRange script is Portal Type dependent The asCellRange script is Portal Type dependent
which is not the case with this kind of code which is not the case with this kind of code
...@@ -340,7 +340,14 @@ class XMLMatrix(Folder): ...@@ -340,7 +340,14 @@ class XMLMatrix(Folder):
raise UnboundLocalError,\ raise UnboundLocalError,\
"Did not find cell range script for portal type: %r" %\ "Did not find cell range script for portal type: %r" %\
self.getPortalType() self.getPortalType()
self.setCellRange(base_id=base_id, *cell_range) self._setCellRange(base_id=base_id, *cell_range)
security.declareProtected(Permissions.ModifyPortalContent,
'updateCellRange')
def updateCellRange(self, base_id='cell', script_id=None, **kw):
""" same as _updateCellRange, but reindex the object. """
self._updateCellRange(base_id=base_id, script_id=script_id, **kw)
self.reindexObject()
security.declareProtected( Permissions.ModifyPortalContent, '_renameCellRange' ) security.declareProtected( Permissions.ModifyPortalContent, '_renameCellRange' )
......
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