Changeset 5404 for main/waeup.sirp/trunk/src
- Timestamp:
- 9 Aug 2010, 09:14:38 (14 years ago)
- Location:
- main/waeup.sirp/trunk/src/waeup/sirp
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.sirp/trunk/src/waeup/sirp/authentication.txt
r4921 r5404 52 52 200 Ok 53 53 54 There is a login form on the front page sidebar: 54 We have to go to one of the login pages first: 55 56 >>> browser.open('http://localhost/app/@@loginstaff') 57 >>> print browser.headers['Status'] 58 200 Ok 59 60 There is a login form on tis page: 55 61 56 62 >>> 'form.login' in browser.contents … … 83 89 84 90 >>> logout.click() 91 >>> print browser.contents 92 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"... 93 ...Staff Login 94 ... 85 95 86 Now we are logged out again:87 88 >>> 'form.login' in browser.contents89 True -
main/waeup.sirp/trunk/src/waeup/sirp/browser/viewlets.py
r5396 r5404 217 217 """ 218 218 grok.viewletmanager(LeftSidebar) 219 grok.context(I University)220 grok.view( UniversityPage)219 grok.context(IWAeUPObject) 220 grok.view(Interface) 221 221 grok.order(2) 222 222
Note: See TracChangeset for help on using the changeset viewer.