[8810] | 1 | ## $Id: interfaces.py 10255 2013-05-30 14:12:05Z henrik $
|
---|
| 2 | ##
|
---|
| 3 | ## Copyright (C) 2011 Uli Fouquet & Henrik Bettermann
|
---|
| 4 | ## This program is free software; you can redistribute it and/or modify
|
---|
| 5 | ## it under the terms of the GNU General Public License as published by
|
---|
| 6 | ## the Free Software Foundation; either version 2 of the License, or
|
---|
| 7 | ## (at your option) any later version.
|
---|
| 8 | ##
|
---|
| 9 | ## This program is distributed in the hope that it will be useful,
|
---|
| 10 | ## but WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
| 11 | ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
---|
| 12 | ## GNU General Public License for more details.
|
---|
| 13 | ##
|
---|
| 14 | ## You should have received a copy of the GNU General Public License
|
---|
| 15 | ## along with this program; if not, write to the Free Software
|
---|
| 16 | ## Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
---|
| 17 | ##
|
---|
| 18 |
|
---|
| 19 | import zope.i18nmessageid
|
---|
| 20 | from zope import schema
|
---|
| 21 | from zc.sourcefactory.basic import BasicSourceFactory
|
---|
| 22 | from waeup.kofa.interfaces import (SimpleKofaVocabulary,
|
---|
| 23 | ISessionConfiguration, academic_sessions_vocab)
|
---|
| 24 | from kofacustom.nigeria.utils.lgas import LGAS
|
---|
| 25 |
|
---|
[9854] | 26 | _ = MessageFactory = zope.i18nmessageid.MessageFactory('kofacustom.nigeria')
|
---|
[8810] | 27 |
|
---|
| 28 | high_qual = SimpleKofaVocabulary(
|
---|
| 29 | ('National Certificate of Education','nce'),
|
---|
| 30 | ('Pre Degree Programme','pre'),
|
---|
| 31 | ('Diploma Programme','dip'),
|
---|
| 32 | ('Ordinary National Diploma','ond'),
|
---|
| 33 | ('Bachelors Degree','bd'),
|
---|
| 34 | ('Masters Degree','md'),
|
---|
| 35 | ('Professional Qualification','pq'),
|
---|
| 36 | ('Other Certification','oc'),
|
---|
| 37 | ('Higher National Diploma','hnd'),
|
---|
| 38 | ('Post Graduate Diploma','pgd'),
|
---|
| 39 | ('NCE AL OTH','nce_al_oth'),
|
---|
| 40 | ('National Defence Academy','nda'),
|
---|
| 41 | ('Awaiting Results','a_rslt'),
|
---|
| 42 | ('RMC','rmc'),
|
---|
[10153] | 43 | ('Ph.D.(Doctor of Philosophy)','phd'),
|
---|
[10255] | 44 | ('M.Phil (Master of Philosophy)','mphil'),
|
---|
[8810] | 45 | )
|
---|
| 46 |
|
---|
| 47 | high_grade = SimpleKofaVocabulary(
|
---|
| 48 | ('Upper Credit','upper_credit'),
|
---|
| 49 | ('Distinction','distinction'),
|
---|
| 50 | ('Credit','credit'),
|
---|
| 51 | ('Merit','merit'),
|
---|
| 52 | ('Lower Credit','lower_credit'),
|
---|
| 53 | ('First Class','first_class'),
|
---|
| 54 | ('Second Class Upper','second_class_upper'),
|
---|
| 55 | ('Second Class Lower','second_class_lower'),
|
---|
| 56 | ('Third Class','third_class'),
|
---|
| 57 | ('Pass','pass'),
|
---|
| 58 | ('Awaiting Results','a_rslt'),
|
---|
| 59 | ('A Levels','al'),
|
---|
[10135] | 60 | ('Unclassified Certificate', 'uc'),
|
---|
[8810] | 61 | )
|
---|
| 62 |
|
---|
| 63 | exam_types = SimpleKofaVocabulary(
|
---|
| 64 | ('SSCE','ssce'),
|
---|
| 65 | ('WAEC','waec'),
|
---|
| 66 | ('GCE O\' LEVEL','gce_o_level'),
|
---|
| 67 | ('TC II','tc_ii'),
|
---|
| 68 | ('RSA','rsa'),
|
---|
| 69 | ('NABTEB','nabteb'),
|
---|
| 70 | ('NECO','neco'),
|
---|
| 71 | ('ACE','ace'),
|
---|
| 72 | ('GCE A\' LEVEL','gce_a_level'),
|
---|
| 73 | ('IGCSE','igcse'),
|
---|
| 74 | )
|
---|
| 75 |
|
---|
| 76 | #lgas_vocab = SimpleKofaVocabulary(
|
---|
| 77 | # *sorted([(x[1],x[0]) for x in LGAS]))
|
---|
| 78 |
|
---|
| 79 | class LGASource(BasicSourceFactory):
|
---|
| 80 | """A source for school subjects used in exam documentation.
|
---|
| 81 | """
|
---|
| 82 | lga_dict = dict(LGAS)
|
---|
| 83 |
|
---|
| 84 | def getValues(self):
|
---|
| 85 | return sorted(self.lga_dict.keys())
|
---|
| 86 |
|
---|
| 87 | def getToken(self, value):
|
---|
| 88 | return str(value)
|
---|
| 89 |
|
---|
| 90 | def getTitle(self, value):
|
---|
| 91 | return self.lga_dict.get(value,
|
---|
| 92 | _('Invalid key: ${a}', mapping = {'a':value}))
|
---|