Changeset 68 for waeup_product/trunk/skins/waeup_default/getWAeUPSchemas.py
- Timestamp:
- 21 Oct 2005, 11:40:21 (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
waeup_product/trunk/skins/waeup_default/getWAeUPSchemas.py
r57 r68 3 3 4 4 university_schema = { ###( 5 ## 'allow_discussion': { 6 ## 'type': 'CPS Int Field', 7 ## 'data': { 8 ## 'default_expr': 'python:0', 9 ## 'is_searchabletext': 0, 10 ## }, 11 ## }, 12 } 13 5 } 14 6 ###) 15 7 16 8 students_folder_schema = { ###( 17 ## 'allow_discussion': { 18 ## 'type': 'CPS Int Field', 19 ## 'data': { 20 ## 'default_expr': 'python:0', 21 ## 'is_searchabletext': 0, 22 ## }, 23 ## }, 24 } 25 9 } 26 10 ###) 27 11 28 12 student_schema = { ###( 29 ## 'allow_discussion': {30 ## 'type': 'CPS Int Field',31 ## 'data': {32 ## 'default_expr': 'python:0',33 ## 'is_searchabletext': 0,34 ## },35 ## },36 13 'jamb_is_admitted': { 37 14 'type': 'CPS Boolean Field', … … 75 52 76 53 student_personal_schema = { ###( 77 ## 'allow_discussion': {78 ## 'type': 'CPS Int Field',79 ## 'data': {80 ## 'default_expr': 'python:0',81 ## 'is_searchabletext': 0,82 ## },83 ## },84 54 'firstname': { 85 55 'type': 'CPS String Field', … … 102 72 'sex': { 103 73 'type': 'CPS Boolean Field', 74 'default_expr': 'python:True', 104 75 'data': { 105 76 'is_searchabletext': 1, … … 128 99 129 100 jamb_schema = { ###( 130 'allow_discussion': {131 'type': 'CPS Int Field',132 'data': {133 'default_expr': 'python:0',134 'is_searchabletext': 0,135 },136 },137 101 'reg_nr': { 138 102 'type': 'CPS String Field', … … 267 231 268 232 ###) 233 234 faculty_schema = { ###( 235 }###) 236 237 department_schema = { ###( 238 }###) 239 240 course_schema = { ###( 241 'level': { 242 'type': 'CPS String Field', 243 'data': { 244 'default_expr': 'string:', 245 'is_searchabletext': True, 246 }, 247 }, 248 'code': { 249 'type': 'CPS String Field', 250 'data': { 251 'default_expr': 'string:', 252 'is_searchabletext': True, 253 }, 254 }, 255 'semester': { 256 'type': 'CPS Boolean Field', 257 'data': { 258 'default_expr': 'python:True', 259 'is_searchabletext': False, 260 }, 261 }, 262 'credit': { 263 'type': 'CPS Int Field', 264 'data': { 265 'default_expr': 'string:', 266 'is_searchabletext': False, 267 }, 268 }, 269 'core_elective': { 270 'type': 'CPS Boolean Field', 271 'data': { 272 'default_expr': 'python:True', 273 'is_searchabletext': False, 274 }, 275 }, 276 }###) 269 277 270 278 ##scratch_card = { ###( … … 321 329 schemas['student_personal'] = student_personal_schema 322 330 schemas['jamb'] = jamb_schema 331 schemas['course'] = course_schema 323 332 #schemas['scratch_card'] = scratch_card 324 333
Note: See TracChangeset for help on using the changeset viewer.