Changeset 6038


Ignore:
Timestamp:
10 May 2011, 23:58:44 (13 years ago)
Author:
uli
Message:

Start ripping out JAMB related stuff.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • main/waeup.sirp/trunk/src/waeup/sirp/applicants/interfaces.py

    r6034 r6038  
    204204        required = False,
    205205        )
    206     jamb_age = schema.Int(
    207         title = u'Age (provided by JAMB)',
    208         required = False,
    209         )
    210206    date_of_birth = schema.Date(
    211207        title = u'Date of Birth',
    212         required = False,
    213         )
    214     jamb_state = schema.TextLine(
    215         title = u'State (provided by JAMB)',
    216         required = False,
    217         )
    218     jamb_lga = schema.TextLine(
    219         title = u'LGA (provided by JAMB)',
    220208        required = False,
    221209        )
     
    239227        required = False,
    240228        )
    241     #passport = schema.Bool(
    242     #    title = u'Passport Photograph',
    243     #    default = True,
    244     #    required = False,
    245     #    )
    246229    passport = ImageFile(
    247230        title = u'Passport Photograph',
     
    524507        )
    525508    #
    526     # JAMB scores
    527     #
    528    
    529     #
    530509    # Application Data
    531510    #
     
    573552        readonly = True,
    574553        )
    575     reg_no = schema.TextLine(
    576         title = u'JAMB Registration Number',
    577         readonly = True,
    578         )
    579554    access_code = schema.TextLine(
    580555        title = u'Access Code',
     
    595570    lastname = schema.TextLine(
    596571        title = u'Name',
    597         readonly = True,
    598         )
    599     jamb_age = schema.Int(
    600         title = u'Age',
    601572        readonly = True,
    602573        )
     
    605576        required = True,
    606577        )
    607     jamb_state = schema.TextLine(
    608         title = u'State (provided by JAMB)',
    609         readonly = True,
    610         )
    611     jamb_lga = schema.TextLine(
    612         title = u'LGA (provided by JAMB)',
    613         readonly = True,
    614         )
    615578    lga = schema.TextLine(
    616579        # XXX: should be choice
     
    663626        readonly = True,
    664627        )
    665     #passport = schema.Bool(
    666     #    title = u'Passport Photograph',
    667     #    default = True,
    668     #    required = False,
    669     #    ),
    670     #passport = schema.Bytes(
    671     #    title = u'Passport Photograph',
    672     #    required = True,
    673     #    )
    674     #passport = schema.Object(
    675     #    title = u'Passport Photograph',
    676     #    required = True,
    677     #    schema = IImage)
    678628    passport = ImageFile(
    679629        title = u'Passport Photograph',
     
    701651    requires also an `id` and other attributes defined there.
    702652    """
    703     reg_no = schema.TextLine(
    704         title = u'Registration number',
    705         description = u'The JAMB registration number',
    706         required = True,
    707         readonly = True)
    708 
    709653    access_code = schema.TextLine(
    710654        title = u'Access Code',
Note: See TracChangeset for help on using the changeset viewer.