Changeset 181 for waeup_product/trunk
- Timestamp:
- 16 Nov 2005, 20:25:54 (19 years ago)
- Location:
- waeup_product/trunk
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
waeup_product/trunk/Extensions/install.py
r179 r181 110 110 waeup_ptypes = "'University','StudentsFolder','Student','Jamb','Faculty','Department','Course'" 111 111 waeup_ptypes += ",'AccoFolder','Accommodation','StudentPersonal','AcademicsFolder'" 112 waeup_ptypes += ",'StudyLevel','Semester','CourseTicket','StudentDocuments' "112 waeup_ptypes += ",'StudyLevel','Semester','CourseTicket','StudentDocuments','StudentEligibility'" 113 113 if CPSSubscriptions: ###( 114 114 -
waeup_product/trunk/Students.py
r179 r181 197 197 security = ClassSecurityInfo() 198 198 199 security.declareProtected(View,"Title") 200 def Title(self): 201 """compose title""" 202 return "Eligibility Data" 203 199 204 200 205 InitializeClass(StudentEligibility) … … 206 211 207 212 ###) 208 213 209 214 studentdocuments_fti = { ###( 210 215 'title': 'WAeUP StudentDocuments', -
waeup_product/trunk/skins/waeup_default/getWAeUPTypes.py
r179 r181 471 471 'permission': (ModifyPortalContent,), 472 472 'category': 'object', 473 'visible': True,},473 'visible': False,}, 474 474 {'id': 'metadata', 475 475 'name': 'action_metadata', 476 476 'action': 'cpsdocument_metadata', 477 477 'condition': "python:member and 'Manager' in member.getRoles()", 478 'permissions': (UniversityManage,)}, 478 'permissions': (UniversityManage,), 479 'visible': False,}, 479 480 ) 480 481 }
Note: See TracChangeset for help on using the changeset viewer.