Changeset 8990 for main/waeup.fceokene
- Timestamp:
- 12 Jul 2012, 20:59:51 (12 years ago)
- Location:
- main/waeup.fceokene/trunk/src/waeup/fceokene
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.fceokene/trunk/src/waeup/fceokene
- Property svn:mergeinfo changed
/main/waeup.uniben/trunk/src/waeup/uniben merged: 8988
- Property svn:mergeinfo changed
-
main/waeup.fceokene/trunk/src/waeup/fceokene/applicants/tests/test_browser.py
r8933 r8990 345 345 'nysc_year,password,perm_address,phone,pp_school,presently_inst,' 346 346 'reg_number,result_uploaded,screening_date,screening_score,screening_venue,sex,' 347 'state,student_id, '347 'state,student_id,suspended,' 348 348 'container_code' 349 349 in result) … … 352 352 '"Some notice\nin lines.",,,any password,,+234-123-12345,,,' 353 353 '123456,,"Saturday, 16th June 2012 2:00:00 PM",98,Exam Room,f,' 354 'initialized,, dp2011'354 'initialized,,0,dp2011' 355 355 in result) 356 356 # We can import the same file if we ignore some columns. … … 371 371 'reg_number','result_uploaded', 372 372 'screening_date','screening_score','screening_venue','sex', 373 'state','student_id',' container_code'],373 'state','student_id','suspended','container_code'], 374 374 mode='create') 375 375 num_succ, num_fail, finished_path, failed_path = result … … 395 395 'reg_number','result_uploaded','screening_date','screening_score', 396 396 'screening_venue','sex', 397 'state','student_id',' ignore_container_code'],397 'state','student_id','suspended','ignore_container_code'], 398 398 mode='update') 399 399 num_succ, num_fail, finished_path, failed_path = result -
main/waeup.fceokene/trunk/src/waeup/fceokene/students/student.py
r8868 r8990 22 22 from zope.interface import implementedBy 23 23 from waeup.kofa.utils.helpers import attrs_to_fields 24 from waeup.kofa.students.student import Student , StudentFactory24 from waeup.kofa.students.student import StudentFactory 25 25 from waeup.kofa.students.interfaces import IStudentNavigation 26 from kofacustom.nigeria.students.student import NigeriaStudent 26 27 from waeup.fceokene.students.interfaces import ICustomStudent 27 28 28 29 class CustomStudent(Student): 29 class CustomStudent(NigeriaStudent): 30 30 """This is a student container for the various objects 31 31 owned by students.
Note: See TracChangeset for help on using the changeset viewer.