Changeset 5fcab7 in indico
- Timestamp:
- 04/21/11 15:51:54 (2 years ago)
- Branches:
- master, burotel, hello-world-walkthrough, ipv6, v0.98-series, v0.98.2, v0.98.3, v0.98b1, v0.98b2, v0.99, b8c30da8ebdbdcbd675a873997cc3e95f567de49, 4287315ec967a3da168d83963c14001db8487d53
- Children:
- ff7997
- Parents:
- 8ca7fa
- File:
-
- 1 edited
-
indico/MaKaC/conference.py (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
indico/MaKaC/conference.py
r7e5a99 r5fcab7 11452 11452 if not self._idx.has_key( av.getId() ): 11453 11453 l = [] 11454 self._idx[ av.getId() ] = l11455 11454 else: 11456 l = self._idx[ av.getId()]11455 l = self._idx[av.getId()] 11457 11456 if track not in l: 11458 l.append( track ) 11457 l.append(track) 11458 # necessary, otherwise ZODB won't know it needs to update the BTree 11459 self._idx[av.getId()] = l 11459 11460 self.notifyModification() 11460 11461 … … 11465 11466 if track in l: 11466 11467 l.remove( track ) 11468 self._idx[av.getId()] = l 11467 11469 self.notifyModification() 11468 11470 11469 11471 def notifyModification(self): 11470 self._idx._p_changed = 111471 11472 self._p_changed = 1 11472 11473 … … 11703 11704 coordination privileges must be granted. 11704 11705 """ 11706 11705 11707 try: 11706 11708 if self._coordinators:
Note: See TracChangeset
for help on using the changeset viewer.
