Changeset a5c240 in indico
- Timestamp:
- 02/18/11 15:43:47 (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, 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)
- Files:
-
- 1 added
- 4 edited
-
bin/migration/migrate_0.97_0.98.py (modified) (3 diffs)
-
indico/MaKaC/webinterface/rh/base.py (modified) (1 diff)
-
indico/ext/livesync/cern_search/agent.py (modified) (1 diff)
-
indico/htdocs/images/edit_16.png (added)
-
indico/modules/upcoming.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
bin/migration/migrate_0.97_0.98.py
r4e5048 ra5c240 145 145 """bin/migration/CategoryDate.py""" 146 146 147 147 148 def runCategoryConfDictToTreeSet(dbi): 148 149 """ … … 155 156 print categ.getId() 156 157 158 157 159 def runMigration(): 158 tasks = [runPluginMigration, runTaskMigration, 159 runConferenceMigration, migrateCategoryDateIndex, 160 tasks = [runPluginMigration, 161 runTaskMigration, 162 runConferenceMigration, 163 runCategoryDateIndexMigration, 160 164 runCategoryConfDictToTreeSet] 161 165 … … 174 178 print console.colored("Database Migration successful!\n", 175 179 'green', attrs=['bold']) 180 176 181 177 182 def main(): -
indico/MaKaC/webinterface/rh/base.py
r06a6d9 ra5c240 466 466 if retry < 10: 467 467 # notify components that the request is being retried 468 self._notify('requestRetry', 10-retry)468 self._notify('requestRetry', self._req, 10-retry) 469 469 470 470 try: -
indico/ext/livesync/cern_search/agent.py
rb41a57 ra5c240 120 120 tupload = time.time() - (tstart + tgen) 121 121 122 self._logger. info('rec %s result: %s' % (batch, result_data))122 self._logger.debug('rec %s result: %s' % (batch, result_data)) 123 123 124 124 xmlDoc = etree.fromstring(result_data) -
indico/modules/upcoming.py
r90a484a ra5c240 224 224 wrappedObj.getId(), 225 225 date, date + obj.getAdvertisingDelta()) 226 for confId in events: 227 conf = conference.ConferenceHolder().getById(confId) 226 for conf in events: 228 227 self.processEvent(date, conf, obj, objDict) 229 228
Note: See TracChangeset
for help on using the changeset viewer.
