Changeset 8372 for main/waeup.kofa/trunk
- Timestamp:
- 6 May 2012, 20:48:22 (13 years ago)
- Location:
- main/waeup.kofa/trunk/src/waeup/kofa
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.kofa/trunk/src/waeup/kofa/browser/batchprocessing.txt
r8330 r8372 544 544 545 545 >>> sorted(os.listdir(dc_path)) 546 [' finished', 'logs', 'unfinished']546 ['deleted', 'finished', 'logs', 'unfinished'] 547 547 548 548 >>> os.listdir(dc_path + '/unfinished') … … 550 550 551 551 >>> sorted(os.listdir(dc_path + '/finished')) 552 ['certificates_zope.mgr.create.finished.csv', ..., 553 'newfaculties_zope.mgr.create.finished.csv', 552 ['certificates_zope.mgr.create.finished.csv', ..., 553 'newfaculties_zope.mgr.create.finished.csv', 554 554 'newfaculties_zope.mgr.csv'] 555 555 -
main/waeup.kofa/trunk/src/waeup/kofa/browser/browser.txt
r8364 r8372 1197 1197 1198 1198 >>> sorted(os.listdir(uploadpath)) 1199 [' finished', 'logs', 'unfinished']1199 ['deleted', 'finished', 'logs', 'unfinished'] 1200 1200 1201 1201 … … 1238 1238 1239 1239 >>> sorted(os.listdir(uploadpath)) 1240 [' finished', 'logs', 'myfaculties_zope.mgr.csv', 'unfinished']1240 ['deleted', 'finished', 'logs', 'myfaculties_zope.mgr.csv', 'unfinished'] 1241 1241 1242 1242 We create and upload also a CSV file containing departments: -
main/waeup.kofa/trunk/src/waeup/kofa/datacenter.py
r7933 r8372 50 50 """Create standard subdirs. 51 51 """ 52 for name in ['finished', 'unfinished', 'logs' ]:52 for name in ['finished', 'unfinished', 'logs', 'deleted']: 53 53 path = os.path.join(self.storage, name) 54 54 if os.path.exists(path): … … 98 98 raise ValueError('The path given does not exist: %s' % path) 99 99 if move is True: 100 101 100 not_copied = copy_filesystem_tree(self.storage, path, 102 101 overwrite=overwrite) -
main/waeup.kofa/trunk/src/waeup/kofa/datacenter.txt
r7819 r8372 146 146 ... pending_src, mode='create') 147 147 >>> sorted(os.listdir(dc_root)) 148 [' finished', 'logs', 'unfinished']148 ['deleted', 'finished', 'logs', 'unfinished'] 149 149 150 150 >>> sorted(os.listdir(fin_dir)) … … 171 171 ... pending_src, mode='create') 172 172 >>> sorted(os.listdir(dc_root)) 173 [' finished', 'logs', 'mysource.create.pending.csv', 'unfinished']173 ['deleted', 'finished', 'logs', 'mysource.create.pending.csv', 'unfinished'] 174 174 175 175 >>> sorted(os.listdir(fin_dir)) … … 192 192 193 193 >>> sorted(os.listdir(dc_root)) 194 [' finished', 'logs', 'unfinished']194 ['deleted', 'finished', 'logs', 'unfinished'] 195 195 196 196 >>> sorted(os.listdir(fin_dir)) … … 228 228 229 229 >>> sorted(os.listdir(dc_root)) 230 [' finished', 'logs', 'mysource.create.pending.csv', 'unfinished']230 ['deleted', 'finished', 'logs', 'mysource.create.pending.csv', 'unfinished'] 231 231 232 232 >>> sorted(os.listdir(fin_dir)) … … 244 244 245 245 >>> sorted(os.listdir(dc_root)) 246 [' finished', 'logs', 'unfinished']246 ['deleted', 'finished', 'logs', 'unfinished'] 247 247 248 248 >>> sorted(os.listdir(fin_dir))
Note: See TracChangeset for help on using the changeset viewer.