Changeset e9ba8c in indico


Ignore:
Timestamp:
03/16/11 15:50:00 (2 years ago)
Author:
Pedro Ferreira <jose.pedro.ferreira@…>
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:
bb29fc
Parents:
26699f
git-author:
Pedro Ferreira <jose.pedro.ferreira@…> (03/16/11 15:49:19)
git-committer:
Pedro Ferreira <jose.pedro.ferreira@…> (03/16/11 15:50:00)
Message:

[FIX] migration - fix AC of categories

  • It was missing;
File:
1 edited

Legend:

Unmodified
Added
Removed
  • bin/migration/migrate_0.97_0.98.py

    r4ec29c re9ba8c  
    114114 
    115115 
     116def runCategoryACMigration(dbi, withRBDB): 
     117    """ 
     118    Fixing AccessController for categories 
     119    """ 
     120    for categ in CategoryManager()._getIdx().itervalues(): 
     121        _fixAC(categ) 
     122        dbi.commit() 
     123 
     124 
    116125def runConferenceMigration(dbi, withRBDB): 
    117126    """ 
     
    228237 
    229238    tasks = [runPluginMigration, 
     239             runCategoryACMigration, 
    230240             runConferenceMigration, 
    231241             runTaskMigration, 
Note: See TracChangeset for help on using the changeset viewer.