[47] | 1 | #-*- mode: python; mode: fold -*- |
---|
| 2 | # $Id: getWAeUPSchemas.py 96 2005-10-27 06:51:08Z joachim $ |
---|
| 3 | |
---|
| 4 | university_schema = { ###( |
---|
[45] | 5 | } |
---|
[47] | 6 | ###) |
---|
| 7 | |
---|
| 8 | students_folder_schema = { ###( |
---|
[45] | 9 | } |
---|
[47] | 10 | ###) |
---|
| 11 | |
---|
| 12 | student_schema = { ###( |
---|
[19] | 13 | 'jamb_is_admitted': { |
---|
| 14 | 'type': 'CPS Boolean Field', |
---|
| 15 | 'data': { |
---|
| 16 | 'default_expr': 'python:False', |
---|
| 17 | 'is_searchabletext': 0, |
---|
| 18 | 'acl_read_permissions': '', |
---|
| 19 | 'acl_read_roles': '', |
---|
| 20 | 'acl_read_expr': '', |
---|
| 21 | 'acl_write_permissions': '', |
---|
| 22 | 'acl_write_roles': '', |
---|
| 23 | 'acl_write_expr': '', |
---|
| 24 | 'read_ignore_storage': False, |
---|
| 25 | 'read_process_expr': '', |
---|
| 26 | 'read_process_dependent_fields': (), |
---|
| 27 | 'write_ignore_storage': False, |
---|
| 28 | 'write_process_expr': '', |
---|
| 29 | }, |
---|
| 30 | }, |
---|
| 31 | 'faculty': { |
---|
| 32 | 'type': 'CPS String Field', |
---|
| 33 | 'data': { |
---|
| 34 | 'default_expr': 'string:', |
---|
| 35 | 'is_searchabletext': True, |
---|
| 36 | 'acl_read_permissions': '', |
---|
| 37 | 'acl_read_roles': '', |
---|
| 38 | 'acl_read_expr': '', |
---|
| 39 | 'acl_write_permissions': '', |
---|
| 40 | 'acl_write_roles': '', |
---|
| 41 | 'acl_write_expr': '', |
---|
| 42 | 'read_ignore_storage': False, |
---|
| 43 | 'read_process_expr': '', |
---|
| 44 | 'read_process_dependent_fields': (), |
---|
| 45 | 'write_ignore_storage': False, |
---|
| 46 | 'write_process_expr': '', |
---|
| 47 | }, |
---|
| 48 | }, |
---|
[47] | 49 | } |
---|
| 50 | # |
---|
| 51 | ###) |
---|
| 52 | |
---|
| 53 | student_personal_schema = { ###( |
---|
| 54 | 'firstname': { |
---|
| 55 | 'type': 'CPS String Field', |
---|
| 56 | 'data': { |
---|
| 57 | 'is_searchabletext': 1, |
---|
| 58 | }, |
---|
[20] | 59 | }, |
---|
[47] | 60 | 'middlename': { |
---|
| 61 | 'type': 'CPS String Field', |
---|
| 62 | 'data': { |
---|
| 63 | 'is_searchabletext': 1, |
---|
| 64 | }, |
---|
| 65 | }, |
---|
| 66 | 'lastname': { |
---|
| 67 | 'type': 'CPS String Field', |
---|
| 68 | 'data': { |
---|
| 69 | 'is_searchabletext': 1, |
---|
| 70 | }, |
---|
| 71 | }, |
---|
| 72 | 'sex': { |
---|
| 73 | 'type': 'CPS Boolean Field', |
---|
[68] | 74 | 'default_expr': 'python:True', |
---|
[47] | 75 | 'data': { |
---|
| 76 | 'is_searchabletext': 1, |
---|
| 77 | }, |
---|
| 78 | }, |
---|
| 79 | 'birthday': { |
---|
| 80 | 'type': 'CPS DateTime Field', |
---|
| 81 | 'data': { |
---|
| 82 | 'is_searchabletext': 1, |
---|
| 83 | }, |
---|
| 84 | }, |
---|
[57] | 85 | 'age': { |
---|
| 86 | 'type': 'CPS DateTime Field', |
---|
| 87 | 'data': { |
---|
| 88 | 'is_searchabletext': 1, |
---|
| 89 | }, |
---|
| 90 | }, |
---|
| 91 | 'state': { |
---|
| 92 | 'type': 'CPS DateTime Field', |
---|
| 93 | 'data': { |
---|
| 94 | 'is_searchabletext': 1, |
---|
| 95 | }, |
---|
| 96 | }, |
---|
[19] | 97 | } |
---|
[47] | 98 | ###) |
---|
| 99 | |
---|
| 100 | jamb_schema = { ###( |
---|
[19] | 101 | 'reg_nr': { |
---|
| 102 | 'type': 'CPS String Field', |
---|
| 103 | 'data': { |
---|
| 104 | 'default_expr': 'string:', |
---|
| 105 | 'is_searchabletext': True, |
---|
| 106 | }, |
---|
| 107 | }, |
---|
[47] | 108 | 'admission_sc_id': { |
---|
[19] | 109 | 'type': 'CPS String Field', |
---|
| 110 | 'data': { |
---|
| 111 | 'is_searchabletext': True, |
---|
| 112 | }, |
---|
| 113 | }, |
---|
[47] | 114 | 'admission_sc_pin': { |
---|
| 115 | 'type': 'CPS String Field', |
---|
[19] | 116 | 'data': { |
---|
[47] | 117 | 'is_searchabletext': True, |
---|
[19] | 118 | }, |
---|
| 119 | }, |
---|
[47] | 120 | 'admission_sc_pin_usage': { |
---|
| 121 | 'type': 'CPS Int Field', |
---|
[19] | 122 | 'data': { |
---|
[29] | 123 | 'default_expr': 'python:0', |
---|
[19] | 124 | 'is_searchabletext': False, |
---|
[57] | 125 | }, |
---|
| 126 | }, |
---|
| 127 | 'firstname': { |
---|
| 128 | 'type': 'CPS String Field', |
---|
| 129 | 'data': { |
---|
| 130 | 'is_searchabletext': 1, |
---|
[19] | 131 | }, |
---|
| 132 | }, |
---|
[57] | 133 | 'middlename': { |
---|
[19] | 134 | 'type': 'CPS String Field', |
---|
| 135 | 'data': { |
---|
[57] | 136 | 'is_searchabletext': 1, |
---|
[19] | 137 | }, |
---|
| 138 | }, |
---|
[57] | 139 | 'lastname': { |
---|
| 140 | 'type': 'CPS String Field', |
---|
| 141 | 'data': { |
---|
| 142 | 'is_searchabletext': 1, |
---|
| 143 | }, |
---|
| 144 | }, |
---|
[47] | 145 | 'age': { |
---|
| 146 | 'type': 'CPS Int Field', |
---|
[19] | 147 | 'data': { |
---|
[47] | 148 | 'default_expr': 'python:20', |
---|
| 149 | 'is_searchabletext': False, |
---|
[19] | 150 | }, |
---|
| 151 | }, |
---|
[47] | 152 | 'sex': { |
---|
| 153 | 'type': 'CPS Boolean Field', |
---|
[19] | 154 | 'data': { |
---|
[47] | 155 | 'default_expr': 'python:0', |
---|
[19] | 156 | 'is_searchabletext': False, |
---|
| 157 | }, |
---|
| 158 | }, |
---|
[57] | 159 | 'state': { |
---|
[19] | 160 | 'type': 'CPS String Field', |
---|
| 161 | 'data': { |
---|
| 162 | 'default_expr': 'string:', |
---|
[57] | 163 | 'is_searchabletext': False, |
---|
[19] | 164 | }, |
---|
| 165 | }, |
---|
[47] | 166 | 'exam_results': { |
---|
[19] | 167 | 'type': 'CPS String Field', |
---|
| 168 | 'data': { |
---|
| 169 | 'default_expr': 'string:', |
---|
| 170 | }, |
---|
| 171 | }, |
---|
[47] | 172 | 'aggregate': { |
---|
| 173 | 'type': 'CPS String Field', |
---|
[25] | 174 | 'data': { |
---|
[47] | 175 | 'default_expr': 'string:', |
---|
| 176 | 'is_searchabletext': False, |
---|
[25] | 177 | }, |
---|
[47] | 178 | }, |
---|
[57] | 179 | 'faculty': { |
---|
[25] | 180 | 'type': 'CPS String Field', |
---|
| 181 | 'data': { |
---|
[47] | 182 | 'default_expr': 'string:', |
---|
| 183 | 'is_searchabletext': False, |
---|
[25] | 184 | }, |
---|
| 185 | }, |
---|
[57] | 186 | 'listing_date': { |
---|
| 187 | 'type': 'CPS DateTime Field', |
---|
[25] | 188 | 'data': { |
---|
[57] | 189 | 'is_searchabletext': False, |
---|
[25] | 190 | }, |
---|
| 191 | }, |
---|
[57] | 192 | ## '2nd_choice': { ###( |
---|
| 193 | ## 'type': 'CPS String Field', |
---|
| 194 | ## 'data': { |
---|
| 195 | ## 'default_expr': 'string:', |
---|
| 196 | ## 'is_searchabletext': False, |
---|
| 197 | ## 'acl_read_permissions': '', |
---|
| 198 | ## 'acl_read_roles': '', |
---|
| 199 | ## 'acl_read_expr': '', |
---|
| 200 | ## 'acl_write_permissions': '', |
---|
| 201 | ## 'acl_write_roles': '', |
---|
| 202 | ## 'acl_write_expr': '', |
---|
| 203 | ## 'read_ignore_storage': False, |
---|
| 204 | ## 'read_process_expr': '', |
---|
| 205 | ## 'read_process_dependent_fields': (), |
---|
| 206 | ## 'write_ignore_storage': False, |
---|
| 207 | ## 'write_process_expr': '', |
---|
| 208 | ## }, |
---|
| 209 | ## }, |
---|
| 210 | ## '3rd_choice': { |
---|
| 211 | ## 'type': 'CPS String Field', |
---|
| 212 | ## 'data': { |
---|
| 213 | ## 'default_expr': 'string:', |
---|
| 214 | ## 'is_searchabletext': True, |
---|
| 215 | ## 'acl_read_permissions': '', |
---|
| 216 | ## 'acl_read_roles': '', |
---|
| 217 | ## 'acl_read_expr': '', |
---|
| 218 | ## 'acl_write_permissions': '', |
---|
| 219 | ## 'acl_write_roles': '', |
---|
| 220 | ## 'acl_write_expr': '', |
---|
| 221 | ## 'read_ignore_storage': False, |
---|
| 222 | ## 'read_process_expr': '', |
---|
| 223 | ## 'read_process_dependent_fields': (), |
---|
| 224 | ## 'write_ignore_storage': False, |
---|
| 225 | ## 'write_process_expr': '', |
---|
| 226 | ## }, |
---|
| 227 | ## }, |
---|
| 228 | ###) |
---|
[25] | 229 | } |
---|
[47] | 230 | |
---|
[57] | 231 | |
---|
[47] | 232 | ###) |
---|
| 233 | |
---|
[68] | 234 | faculty_schema = { ###( |
---|
| 235 | }###) |
---|
| 236 | |
---|
| 237 | department_schema = { ###( |
---|
| 238 | }###) |
---|
| 239 | |
---|
| 240 | course_schema = { ###( |
---|
[96] | 241 | 'heading': { |
---|
| 242 | 'type': 'CPS String Field', |
---|
| 243 | 'data': { |
---|
| 244 | 'default_expr': 'string:', |
---|
| 245 | 'is_searchabletext': True, |
---|
| 246 | }, |
---|
| 247 | }, |
---|
| 248 | 'text': { |
---|
| 249 | 'type': 'CPS String Field', |
---|
| 250 | 'data': { |
---|
| 251 | 'default_expr': 'string:', |
---|
| 252 | 'is_searchabletext': True, |
---|
| 253 | }, |
---|
| 254 | }, |
---|
[68] | 255 | 'level': { |
---|
| 256 | 'type': 'CPS String Field', |
---|
| 257 | 'data': { |
---|
| 258 | 'default_expr': 'string:', |
---|
| 259 | 'is_searchabletext': True, |
---|
| 260 | }, |
---|
| 261 | }, |
---|
| 262 | 'code': { |
---|
| 263 | 'type': 'CPS String Field', |
---|
| 264 | 'data': { |
---|
| 265 | 'default_expr': 'string:', |
---|
| 266 | 'is_searchabletext': True, |
---|
| 267 | }, |
---|
| 268 | }, |
---|
| 269 | 'semester': { |
---|
| 270 | 'type': 'CPS Boolean Field', |
---|
| 271 | 'data': { |
---|
| 272 | 'default_expr': 'python:True', |
---|
| 273 | 'is_searchabletext': False, |
---|
| 274 | }, |
---|
| 275 | }, |
---|
| 276 | 'credit': { |
---|
| 277 | 'type': 'CPS Int Field', |
---|
| 278 | 'data': { |
---|
| 279 | 'default_expr': 'string:', |
---|
| 280 | 'is_searchabletext': False, |
---|
| 281 | }, |
---|
| 282 | }, |
---|
| 283 | 'core_elective': { |
---|
| 284 | 'type': 'CPS Boolean Field', |
---|
| 285 | 'data': { |
---|
| 286 | 'default_expr': 'python:True', |
---|
| 287 | 'is_searchabletext': False, |
---|
| 288 | }, |
---|
| 289 | }, |
---|
| 290 | }###) |
---|
| 291 | |
---|
[47] | 292 | ##scratch_card = { ###( |
---|
| 293 | #### 'allow_discussion': { |
---|
| 294 | #### 'type': 'CPS Int Field', |
---|
| 295 | #### 'data': { |
---|
| 296 | #### 'default_expr': 'python:0', |
---|
| 297 | #### 'is_searchabletext': 0, |
---|
| 298 | #### }, |
---|
| 299 | #### }, |
---|
| 300 | ## 'sc_id': { |
---|
| 301 | ## 'type': 'CPS String Field', |
---|
| 302 | ## 'data': { |
---|
| 303 | ## 'default_expr': '', |
---|
| 304 | ## 'is_searchabletext': 0, |
---|
| 305 | ## 'acl_read_permissions': '', |
---|
| 306 | ## 'acl_read_roles': '', |
---|
| 307 | ## 'acl_read_expr': '', |
---|
| 308 | ## 'acl_write_permissions': '', |
---|
| 309 | ## 'acl_write_roles': '', |
---|
| 310 | ## 'acl_write_expr': '', |
---|
| 311 | ## 'read_ignore_storage': False, |
---|
| 312 | ## 'read_process_expr': '', |
---|
| 313 | ## 'read_process_dependent_fields': (), |
---|
| 314 | ## 'write_ignore_storage': False, |
---|
| 315 | ## 'write_process_expr': '', |
---|
| 316 | ## }, |
---|
| 317 | ## }, |
---|
| 318 | ## 'sc_pin': { |
---|
| 319 | ## 'type': 'CPS String Field', |
---|
| 320 | ## 'data': { |
---|
| 321 | ## 'default_expr': '', |
---|
| 322 | ## 'is_searchabletext': 0, |
---|
| 323 | ## 'acl_read_permissions': '', |
---|
| 324 | ## 'acl_read_roles': '', |
---|
| 325 | ## 'acl_read_expr': '', |
---|
| 326 | ## 'acl_write_permissions': '', |
---|
| 327 | ## 'acl_write_roles': '', |
---|
| 328 | ## 'acl_write_expr': '', |
---|
| 329 | ## 'read_ignore_storage': False, |
---|
| 330 | ## 'read_process_expr': '', |
---|
| 331 | ## 'read_process_dependent_fields': (), |
---|
| 332 | ## 'write_ignore_storage': False, |
---|
| 333 | ## 'write_process_expr': '', |
---|
| 334 | ## }, |
---|
| 335 | ## }, |
---|
| 336 | ##} |
---|
[19] | 337 | schemas = {} |
---|
[47] | 338 | ###) |
---|
| 339 | |
---|
[45] | 340 | schemas['university'] = university_schema |
---|
| 341 | schemas['students'] = students_folder_schema |
---|
[19] | 342 | schemas['student'] = student_schema |
---|
[47] | 343 | schemas['student_personal'] = student_personal_schema |
---|
[19] | 344 | schemas['jamb'] = jamb_schema |
---|
[78] | 345 | #schemas['scratch_card'] = scratch_card |
---|
| 346 | schemas['faculty'] = faculty_schema |
---|
| 347 | schemas['department'] = department_schema |
---|
[68] | 348 | schemas['course'] = course_schema |
---|
[19] | 349 | |
---|
| 350 | return schemas |
---|