Changeset 1474
- Timestamp:
- 23 Feb 2007, 08:47:29 (18 years ago)
- Location:
- WAeUP_SRP/trunk
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
WAeUP_SRP/trunk/profiles/default/actionicons.xml
r1338 r1474 278 278 title="Request Transfer" priority="6" 279 279 icon_expr="arrow_switch.png"/> 280 <action-icon category="student" action_id="change_password" 281 title="Change Password" priority="7" 282 icon_expr="actionicon_user_preferences.png"/> 280 283 281 284 <action-icon category="global" action_id="members" -
WAeUP_SRP/trunk/profiles/default/actions.xml
r1427 r1474 175 175 <permission>View</permission> 176 176 </action> 177 177 <action title="Change Password" action_id="change_password" 178 category="student" condition_expr="member" 179 url_expr="string:${portal_url}/change_password" visible="True"> 180 <permission>View</permission> 181 </action> 178 182 <action title="Home" action_id="students_home" category="student_navigation" 179 183 condition_expr="not:member" url_expr="string:${portal_url}" visible="True"> -
WAeUP_SRP/trunk/profiles/default/layouts/student_change_password.xml
r1467 r1474 21 21 <property name="password_widget"></property> 22 22 <property name="check_digit">False</property> 23 <property name="size_min">6</property> 23 <property name="size_min">3</property> 24 <property name="size_max">10</property> 24 25 </widget> 25 26 <widget name="password" meta_type="Password Widget"> … … 36 37 <property name="check_digit">False</property> 37 38 <property name="size_min">6</property> 39 <property name="size_max">10</property> 38 40 </widget> 39 41 <widget name="repeat_password" meta_type="Password Widget"> … … 51 53 <property name="check_digit">True</property> 52 54 <property name="size_min">6</property> 55 <property name="size_max">10</property> 53 56 </widget> 54 57 <table> -
WAeUP_SRP/trunk/skins/waeup_student/change_password.py
r1467 r1474 12 12 def set_trace(): 13 13 pass 14 14 15 15 current = DateTime.DateTime() 16 16 #pr = context.portal_registration -
WAeUP_SRP/trunk/skins/waeup_student/getAccommodationInfo.py
r1470 r1474 64 64 info['email']=s_brain.email 65 65 info['level']=s_brain.level 66 info['verdict']=s_brain.verdict 66 info['verdict']=getattr(s_brain,"verdict","N/A") 67 67 68 68 69 students_object = context.portal_url.getPortalObject().campus.students
Note: See TracChangeset for help on using the changeset viewer.