Changeset a5c240 in indico


Ignore:
Timestamp:
02/18/11 15:43:47 (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, 051b2622c51afb171a1dedb46a0df4fbb0cbd02e, d9941f8582b36b24821a11ea5ba16fda6a457fb1
Children:
4376e4
Parents:
9f7b3f6
git-author:
Pedro Ferreira <jose.pedro.ferreira@…> (02/18/11 09:31:45)
git-committer:
Pedro Ferreira <jose.pedro.ferreira@…> (02/18/11 15:43:47)
Message:

[FIX] Small details

  • livesync - small detail
  • Issues caused by migration
  • Missing 'edit_16' icon
  • Fix retried requests
Files:
1 added
4 edited

Legend:

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

    r4e5048 ra5c240  
    145145        """bin/migration/CategoryDate.py""" 
    146146 
     147 
    147148def runCategoryConfDictToTreeSet(dbi): 
    148149    """ 
     
    155156            print categ.getId() 
    156157 
     158 
    157159def runMigration(): 
    158     tasks = [runPluginMigration, runTaskMigration, 
    159              runConferenceMigration, migrateCategoryDateIndex, 
     160    tasks = [runPluginMigration, 
     161             runTaskMigration, 
     162             runConferenceMigration, 
     163             runCategoryDateIndexMigration, 
    160164             runCategoryConfDictToTreeSet] 
    161165 
     
    174178    print console.colored("Database Migration successful!\n", 
    175179                          'green', attrs=['bold']) 
     180 
    176181 
    177182def main(): 
  • indico/MaKaC/webinterface/rh/base.py

    r06a6d9 ra5c240  
    466466                if retry < 10: 
    467467                    # notify components that the request is being retried 
    468                     self._notify('requestRetry', 10-retry) 
     468                    self._notify('requestRetry', self._req, 10-retry) 
    469469 
    470470                try: 
  • indico/ext/livesync/cern_search/agent.py

    rb41a57 ra5c240  
    120120        tupload = time.time() - (tstart + tgen) 
    121121 
    122         self._logger.info('rec %s result: %s' % (batch, result_data)) 
     122        self._logger.debug('rec %s result: %s' % (batch, result_data)) 
    123123 
    124124        xmlDoc = etree.fromstring(result_data) 
  • indico/modules/upcoming.py

    r90a484a ra5c240  
    224224                    wrappedObj.getId(), 
    225225                    date, date + obj.getAdvertisingDelta()) 
    226                 for confId in events: 
    227                     conf = conference.ConferenceHolder().getById(confId) 
     226                for conf in events: 
    228227                    self.processEvent(date, conf, obj, objDict) 
    229228 
Note: See TracChangeset for help on using the changeset viewer.