Changeset 6162 for main/waeup.sirp/trunk/src/waeup/sirp/university
- Timestamp:
- 20 May 2011, 11:02:42 (14 years ago)
- Location:
- main/waeup.sirp/trunk/src/waeup/sirp/university
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.sirp/trunk/src/waeup/sirp/university/department.py
r6160 r6162 15 15 @property # Make this method read_only and looking like an attr. 16 16 def local_roles(cls): 17 return { 18 'waeup.local.DepartmentOfficer':'Department Officer', 19 } 17 return ['waeup.local.DepartmentOfficer'] 20 18 21 19 # A simple counter for ids. -
main/waeup.sirp/trunk/src/waeup/sirp/university/faculty.py
r6160 r6162 16 16 @property # Make this method read_only and looking like an attr. 17 17 def local_roles(cls): 18 return { 19 'waeup.local.DepartmentOfficer':'Department Officer', 20 } 18 return ['waeup.local.DepartmentOfficer'] 21 19 22 20 def __init__(self,
Note: See TracChangeset for help on using the changeset viewer.