Changeset 4893 for waeup/trunk/src
- Timestamp:
- 25 Jan 2010, 08:32:19 (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
waeup/trunk/src/waeup/browser.txt
r4876 r4893 754 754 ... os.unlink(os.path.join(uploadpath, filename)) 755 755 756 The new upload directory is now empty, except from the logs dir, which757 iscreated automatically:758 759 >>> os.listdir(uploadpath)760 [' logs']756 The new upload directory is now empty, except from the logs and other 757 standard dirs, which are created automatically: 758 759 >>> sorted(os.listdir(uploadpath)) 760 ['finished', 'logs', 'pending'] 761 761 762 762 … … 798 798 The file was indeed uploaded, with the current userid inserted: 799 799 800 >>> os.listdir(uploadpath)801 [' logs', 'myfaculties_zope.mgr.csv']800 >>> sorted(os.listdir(uploadpath)) 801 ['finished', 'logs', 'myfaculties_zope.mgr.csv', 'pending'] 802 802 803 803 We create and upload also a CSV file containing departments:
Note: See TracChangeset for help on using the changeset viewer.