Changeset 7122 for TI12-security/branches/ndg-security-1.5.x
- Timestamp:
- 29/06/10 13:39:34 (9 years ago)
- Location:
- TI12-security/branches/ndg-security-1.5.x
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
TI12-security/branches/ndg-security-1.5.x/ndg_security/setup.py
r6925 r7122 42 42 setup( 43 43 name = 'ndg_security', 44 version = '1.5. 5',44 version = '1.5.6', 45 45 description = 'NERC DataGrid Security Utilities', 46 46 long_description = _longDescription, -
TI12-security/branches/ndg-security-1.5.x/ndg_security_client/setup.py
r6925 r7122 44 44 setup( 45 45 name = 'ndg_security_client', 46 version = '1.5. 5',46 version = '1.5.6', 47 47 description = 'NERC DataGrid Security Client side interface', 48 48 long_description = _longDescription, -
TI12-security/branches/ndg-security-1.5.x/ndg_security_common/setup.py
r6925 r7122 69 69 setup( 70 70 name = 'ndg_security_common', 71 version = '1.5. 5',71 version = '1.5.6', 72 72 description = 'NERC DataGrid Security package containing common ' 73 73 'utilities used by both server and client ' -
TI12-security/branches/ndg-security-1.5.x/ndg_security_server/ndg/security/server/wsgi/openid/provider/__init__.py
r7119 r7122 128 128 @type: defPaths: dict 129 129 130 @cvar FORM_MATCH_TEXT: if the response from the server starts with this 131 text (i.e. it's a HTML form), return the response wrapped in a Javascript/ 132 HTML wrapper which selects from submit onload. This avoids the button 133 appearing on screen and the user having to click on it. 134 @type FORM_MATCH_TEXT: string 135 130 136 @cvar FORM_RESP_WRAPPER_TMPL: If the response to the Relying Party is too 131 137 long it's rendered as form with the POST method instead of query arguments … … 135 141 @type FORM_RESP_WRAPPER_TMPL: basestring""" 136 142 143 FORM_MATCH_TEXT = '<form' 137 144 FORM_RESP_WRAPPER_TMPL = """<html> 138 145 <head> … … 1340 1347 # give consistent answers. Testing based on body content should work 1341 1348 # OK 1342 # if webresponse.body: 1343 if oidResponse.renderAsForm(): 1349 if webresponse.body.startswith( 1350 OpenIDProviderMiddleware.FORM_MATCH_TEXT): 1351 # if oidResponse.renderAsForm(): 1344 1352 # Wrap in HTML with Javascript OnLoad to submit the form 1345 1353 # automatically without user intervention -
TI12-security/branches/ndg-security-1.5.x/ndg_security_server/setup.py
r6925 r7122 64 64 setup( 65 65 name = 'ndg_security_server', 66 version = '1.5. 5',66 version = '1.5.6', 67 67 description = 'Server side components for running NERC DataGrid ' 68 68 'Security Services', -
TI12-security/branches/ndg-security-1.5.x/ndg_security_test/ndg/security/test/integration/pylonsapp/authn/beaker/sessions/container_file/d/dd/dd3f4f49141c6bd2a839ffeb2badb28e.cache
r7121 r7122 7 7 S'https://localhost:7443/openid/philip.kershaw' 8 8 p5 9 sS' _accessed_time'9 sS'openid.ax' 10 10 p6 11 F1277811997.112184 11 (dp7 12 S'username' 13 p8 14 (tsS'city' 15 p9 16 (tsS'uuid' 17 p10 18 (tsS'firstname' 19 p11 20 (S'Philip' 21 tp12 22 sS'middlename' 23 p13 24 (tsS'country' 25 p14 26 (tsS'email' 27 p15 28 (S'pjk@somewhere.ac.uk' 29 tp16 30 sS'state' 31 p17 32 (tsS'lastname' 33 p18 34 (S'Kershaw' 35 tp19 36 sS'organization' 37 p20 38 (tsS'gateway' 39 p21 40 (tssS'sessionManagerURI' 41 p22 42 NsS'sessionId' 43 p23 44 NsS'_accessed_time' 45 p24 46 F1277815004.138315 12 47 sS'_creation_time' 13 p 748 p25 14 49 F1277811962.9224689 15 50 ss. -
TI12-security/branches/ndg-security-1.5.x/ndg_security_test/setup.py
r6925 r7122 20 20 setup( 21 21 name = 'ndg_security_test', 22 version = '1.5. 5',22 version = '1.5.6', 23 23 description = 'NERC DataGrid Security Unit tests', 24 24 long_description = 'Unit tests client - server side',
Note: See TracChangeset
for help on using the changeset viewer.