Changeset 210 for waeup_product/trunk/exportimport.py
- Timestamp:
- 18 May 2006, 19:19:33 (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
waeup_product/trunk/exportimport.py
r206 r210 66 66 def installFaculties( academics): ###( 67 67 """install Universityspecific Faculies with Departments""" 68 faculties = [ 68 faculties = [ ###( 69 69 {'id': 'agriculture', ###( 70 70 'Title': 'Agriculture', … … 75 75 ], 76 76 },###) 77 ###) 77 78 {'id': 'arts', ###( 78 79 'Title': 'Arts', … … 83 84 ], 84 85 },###) 85 { 'id': 'science', 86 ###) 87 {'id': 'BasicMedicalSciences', ###( 88 'Title': 'Basic Medical Sciences', 89 'departments': [ 90 ## { 'id': 'dep1', ###( 91 ## 'Title': 'One', 92 ## }, 93 ], 94 },###) 95 ###) 96 {'id': 'science', ###( 86 97 'Title': 'Science', 87 98 'departments': [ … … 119 130 },###) 120 131 ]###) 132 133 ###) 134 121 135 for faculty in faculties: 122 136 fid = faculty['id'] … … 154 168 """ 155 169 site = context.getSite() 170 import pdb; settrace() 156 171 setupStructure(site) 157 172 pass
Note: See TracChangeset for help on using the changeset viewer.