Changeset 351
- Timestamp:
- 19 Jul 2006, 12:59:03 (18 years ago)
- Location:
- WAeUP_SRP/trunk
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
WAeUP_SRP/trunk/Academics.py
r332 r351 36 36 ## return "AcademicsFolder of %s" % (self.title) 37 37 38 security.declareProtected( View,"loadFacultiesFromCSV")###(38 security.declareProtected(ModifyPortalContent,"loadFacultiesFromCSV")###( 39 39 def loadFacultiesFromCSV(self): 40 40 """install Universityspecific Faculies from CSV values""" -
WAeUP_SRP/trunk/exportimport.py
r350 r351 54 54 site = context.getSite() 55 55 pm = site.portal_membership 56 if hasattr(site,'campus'): 57 pm.setLocalGroupRoles(site.campus,['role:Authenticated',],'SectionReader') 56 pm.setLocalGroupRoles(site,['role:Authenticated',],'SectionReader') 57 ## if hasattr(site,'campus'): 58 ## pm.setLocalGroupRoles(site.campus,['role:Authenticated',],'SectionReader') 58 59 #setupStructure(site,context) 59 60 #import pdb; pdb.set_trace() -
WAeUP_SRP/trunk/skins/waeup_custom/standard_error_message.pt
r349 r351 12 12 <metal:main fill-slot="main"> 13 13 14 <tal:haserror condition=" python: 1 orerror_type">14 <tal:haserror condition="error_type"> 15 15 <tal:NotFound condition="python:error_type == 'NotFound'"> 16 16 <metal:block use-macro="here/error_lib_not_found/macros/not_found" /> … … 21 21 </tal:default> 22 22 23 <tal:debugging condition="python: 1 orcheckPerm('Manage portal', here)">23 <tal:debugging condition="python:checkPerm('Manage portal', here)"> 24 24 <table width="100%" cellpadding="2" cellspacing="2"> 25 25 <tr>
Note: See TracChangeset for help on using the changeset viewer.