/[A3C]/lib/A3C/Model/User.pm
This is repository of my old source code which isn't updated any more. Go to git.rot13.org for current projects!
ViewVC logotype

Diff of /lib/A3C/Model/User.pm

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 14 by dpavlin, Thu Mar 13 16:38:33 2008 UTC revision 15 by dpavlin, Thu Mar 13 17:33:45 2008 UTC
# Line 65  use A3C::Record schema { Line 65  use A3C::Record schema {
65    
66          column hrEduPersonDateOfBirth =>          column hrEduPersonDateOfBirth =>
67                  type is 'date',                  type is 'date',
68                    render as 'date',
69                  label is _('Datum rođenja');                  label is _('Datum rođenja');
70    
71          column hrEduPersonGender =>          column hrEduPersonGender =>
# Line 81  use A3C::Record schema { Line 82  use A3C::Record schema {
82                    
83          column wtAdminType =>          column wtAdminType =>
84                  label is _('Tip administratora'),                  label is _('Tip administratora'),
85                  available are qw( AS AI AR AHU );                  valid are [ '', 'AS', 'AI', 'AR', 'AHU' ];
86    
87          column hrEduPersonProfessionalStatus =>          column hrEduPersonProfessionalStatus =>
88                  label is _('Stručni status'),                  label is _('Stručni status'),
89                  available are qw( DR KV MR NKV PKV SSS VKV VS VSS VŠS );                  valid are [
90                            '',
91                            'NKV',
92                            'PKV',
93                            'KV',
94                            'VKV',
95                            'SSS',
96                            'VS',
97                            'VSS',
98                            'VŠS',
99                            'MR',
100                            'DR',
101                    ],
102                    default is '';
103    
104          column hrEduPersonAcademicStatus =>          column hrEduPersonAcademicStatus =>
105                  label is _('Zvanje'),                  label is _('Zvanje'),
106                  available are [                  valid are [
107                          'asistent',                          '',
                         'asistent - predavač',  
                         'asistent visoke škole',  
                         'docent',  
                         'izvanredni profesor',  
108                          'knjižničar',                          'knjižničar',
109                            'viši knjižničar',
110                          'korepetitor',                          'korepetitor',
111                            'viši korepetitor',
112                          'lektor',                          'lektor',
113                            'viši lektor',
114                            'stručni suradnik',
115                            'asistent visoke škole',
116                            'profesor visoke škole',
117                          'mlađi asistent',                          'mlađi asistent',
118                            'znanstveni novak',
119                            'znanstveni asistent',
120                            'znanstveni suradnik',
121                          'predavač',                          'predavač',
                         'profesor visoke škole',  
                         'redoviti profesor',  
                         'stručni suradnik',  
                         'viši asistent',  
                         'viši knjižničar',  
                         'viši korepetitor',  
                         'viši lektor',  
122                          'viši predavač',                          'viši predavač',
123                          'viši znanstveni suradnik',                          'asistent',
124                          'znanstveni asistent',                          'asistent - predavač',
125                          'znanstveni novak',                          'viši asistent',
126                            'docent',
127                            'izvanredni profesor',
128                            'redoviti profesor',
129                          'znanstveni savjetnik',                          'znanstveni savjetnik',
130                          'znanstveni suradnik',                          'viši znanstveni suradnik',
131                  ];                  ],
132                    default is '';
133    
134          column hrEduPersonScienceArea =>          column hrEduPersonScienceArea =>
135                  label is _('Područje znanosti'),                  label is _('Područje znanosti'),
136                  available are [                  valid are [
137                            '',
138                          'Tehničke znanosti',                          'Tehničke znanosti',
139                          'Prirodne znanosti',                          'Prirodne znanosti',
140                          'Humanističke znanosti',                          'Humanističke znanosti',
141                          'Društvene znanosti',                          'Društvene znanosti',
142                          'Biotehničke znanosti',                          'Biotehničke znanosti',
143                          'Biomedicina i zdravstvo',                          'Biomedicina i zdravstvo',
144                  ];                  ],
145                    default is '';
146    
147          column hrEduPersonAffiliation =>          column hrEduPersonAffiliation =>
148                  label is _('Povezanost s ustanovom'),                  label is _('Povezanost s ustanovom'),
149                  is mandatory,                  is mandatory,
150                  available are [                  valid are [
                         'djelatnik',  
                         'gost',  
                         'korisnik usluge',  
                         'student',  
151                          'učenik',                          'učenik',
152                            'student',
153                            'djelatnik',
154                          'vanjski suradnik',                          'vanjski suradnik',
155                  ];                          'korisnik usluge',
156                            'gost',
157                    ],
158                    default is 'korisnik usluge';
159    
160          column hrEduPersonPrimaryAffiliation =>          column hrEduPersonPrimaryAffiliation =>
161                  label is _('Temeljna povezanost s ustanovom');                  label is _('Temeljna povezanost s ustanovom');
162                  is mandatory,                  is mandatory,
163                  available are [                  valid are [
                         'djelatnik',  
                         'gost',  
                         'korisnik usluge',  
                         'student',  
164                          'učenik',                          'učenik',
165                            'student',
166                            'djelatnik',
167                          'vanjski suradnik',                          'vanjski suradnik',
168                  ];                          'korisnik usluge',
169                            'gost',
170                    ],
171                    default is 'korisnik usluge';
172    
173          column hrEduPersonStudentCategory =>          column hrEduPersonStudentCategory =>
174                  label is 'Vrsta studenta',                  label is 'Vrsta studenta',
175                  available are [                  valid are [
176                          'dodiplomac',                          '',
177                          'osnovnoškolac',                          'osnovnoškolac',
                         'pauzira godinu',  
                         'postdiplomac',  
                         'preddiplomac',  
                         'prekid studija',  
178                          'srednjoškolac',                          'srednjoškolac',
179                          'student stručnog studija',                          'student stručnog studija',
180                  ];                          'preddiplomac',
181                            'postdiplomac',
182                            'dodiplomac',
183                            'pauzira godinu',
184                            'prekid studija',
185                    ],
186                    default is '';
187    
188          column hrEduPersonExpireDate =>          column hrEduPersonExpireDate =>
189                  label is _('Datum isteka temeljne povezanosti'),                  label is _('Datum isteka temeljne povezanosti'),
190                  type is 'date',                  type is 'date',
191                  hint is 'dd.mm.gggg',                  render as 'date',
192                  is mandatory,                  is mandatory,
193    
194          column hrEduPersonTitle =>          column hrEduPersonTitle =>
195                  label is 'Položaj u ustanovi',                  label is 'Položaj u ustanovi',
196                  available are [                  valid are [     # FIXME reorder
197                            '',
198                          'dekan',                          'dekan',
199                          'direktor',                          'direktor',
200                          'pomoćnik ravnatelja',                          'pomoćnik ravnatelja',
# Line 189  use A3C::Record schema { Line 212  use A3C::Record schema {
212                          'voditelj projekta',                          'voditelj projekta',
213                          'zamjenik pročelnika sveučilišn',                          'zamjenik pročelnika sveučilišn',
214                          'zamjenik ravnatelja',                          'zamjenik ravnatelja',
215                  ];                  ],
216                    default is '';
217    
218          column hrEduPersonRole =>          column hrEduPersonRole =>
219                  label is 'Uloga u ustanovi',                  label is 'Uloga u ustanovi',
220                  available are [                  valid are [
221                            '',
222                          'administrator imenika',                          'administrator imenika',
223                          'CARNet koordinator',                          'CARNet koordinator',
224                          'CARNet sistem inženjer',                          'CARNet sistem inženjer',
# Line 203  use A3C::Record schema { Line 228  use A3C::Record schema {
228                          'MS koordinator',                          'MS koordinator',
229                          'MATICA operater',                          'MATICA operater',
230                          'MATICA urednik',                          'MATICA urednik',
231                  ];                  ],
232                    default is '';
233    
234          column hrEduPersonStaffCategory =>          column hrEduPersonStaffCategory =>
235                  label is 'Vrsta posla u ustanovi',                  label is 'Vrsta posla u ustanovi',
236                  available are [                  valid are [
237                          'administrativno osoblje',                          'administrativno osoblje',
238                          'ICT podrška',                          'ICT podrška',
239                          'istraživači',                          'istraživači',

Legend:
Removed from v.14  
changed lines
  Added in v.15

  ViewVC Help
Powered by ViewVC 1.1.26