Changeset 1082 for WAeUP_SRP/trunk/skins
- Timestamp:
- 18 Dec 2006, 21:25:01 (18 years ago)
- Location:
- WAeUP_SRP/trunk/skins
- Files:
-
- 10 edited
Legend:
- Unmodified
- Added
- Removed
-
WAeUP_SRP/trunk/skins/waeup_custom/logged_in.py
r1021 r1082 16 16 current = DateTime.DateTime() 17 17 import logging 18 logger = logging.getLogger(' Student.Login')18 logger = logging.getLogger('Member.Login') 19 19 20 20 … … 106 106 else: 107 107 to_member_home, to_workspaces = checkRedirect(portal, mtool) 108 108 109 if (not to_member_home) and (not to_workspaces): 109 110 redirect_to_portal = True … … 124 125 elif to_member_home: 125 126 redirect_url = mtool.getHomeFolder().absolute_url() 127 logger.info('"%s", "logged in"' % (member)) 126 128 elif to_workspaces: 127 129 redirect_url = portal.workspaces.absolute_url() 130 logger.info('"%s", "logged in"' % (member)) 128 131 elif redirect_to_portal: 129 132 redirect_url = portal_absolute_url 133 logger.info('"%s", "logged in"' % (member)) 130 134 131 135 REQUEST = context.REQUEST -
WAeUP_SRP/trunk/skins/waeup_custom/logout.py
r1067 r1082 10 10 # notify the event service that the user has logged out 11 11 import logging 12 logger = logging.getLogger(' Logout')12 logger = logging.getLogger('Member.Logout') 13 13 user = context.portal_membership.getAuthenticatedMember() 14 14 if user: -
WAeUP_SRP/trunk/skins/waeup_pins/disable_pins.py
r1062 r1082 15 15 current = DateTime.DateTime().strftime("%d-%m-%y_%H_%M_%S") 16 16 import logging 17 logger = logging.getLogger(' getStudentInfo')17 logger = logging.getLogger('Pin.Disable') 18 18 19 19 request = REQUEST -
WAeUP_SRP/trunk/skins/waeup_pins/enable_pins.py
r1062 r1082 15 15 current = DateTime.DateTime().strftime("%d-%m-%y_%H_%M_%S") 16 16 import logging 17 logger = logging.getLogger(' getStudentInfo')17 logger = logging.getLogger('Pin.Enable') 18 18 19 19 request = REQUEST -
WAeUP_SRP/trunk/skins/waeup_student/application_view.pt
r911 r1082 1 1 <metal:html tal:define="info context/getStudentInfo"> 2 <span tal:condition="not: info"> 3 <metal:block use-macro="here/illegal_view/macros/illegal_view" /> 4 </span> 5 <metal:block tal:condition="info"> 2 6 <metal:body use-macro="here/waeup_content_master/macros/master"> 3 7 <metal:main fill-slot="main"> … … 28 32 </metal:main> 29 33 </metal:body> 34 </metal:block> 30 35 </metal:html> -
WAeUP_SRP/trunk/skins/waeup_student/clearance_edit.py
r1073 r1082 16 16 current = DateTime.DateTime() 17 17 import logging 18 logger = logging.getLogger('Student.Clearance ')18 logger = logging.getLogger('Student.Clearance.Edit') 19 19 20 20 cpsdocument_edit_button = REQUEST.has_key('cpsdocument_edit_button') -
WAeUP_SRP/trunk/skins/waeup_student/getApplicationInfo.py
r1078 r1082 13 13 """ 14 14 import logging 15 logger = logging.getLogger(' getApplicationInfo')15 logger = logging.getLogger('Student.Application.Info') 16 16 17 17 request = context.REQUEST -
WAeUP_SRP/trunk/skins/waeup_student/getClearanceInfo.py
r1078 r1082 13 13 """ 14 14 import logging 15 logger = logging.getLogger(' getClearanceInfo')15 logger = logging.getLogger('Student.Clearance.Info') 16 16 17 17 request = context.REQUEST -
WAeUP_SRP/trunk/skins/waeup_student/getStudentInfo.py
r1067 r1082 21 21 22 22 import logging 23 logger = logging.getLogger(' getStudentInfo')23 logger = logging.getLogger('Student.Info') 24 24 25 25 info = {} -
WAeUP_SRP/trunk/skins/waeup_student/raise_objection.py
r1077 r1082 14 14 import DateTime 15 15 import logging 16 logger = logging.getLogger(' raise_objection')16 logger = logging.getLogger('Student.Objection') 17 17 18 18 wf = context.portal_workflow
Note: See TracChangeset for help on using the changeset viewer.