Changeset 6628
- Timestamp:
- 24/02/10 14:22:35 (11 years ago)
- Location:
- TI12-security/trunk/NDGSecurity/python
- Files:
-
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
TI12-security/trunk/NDGSecurity/python/.project
r6570 r6628 4 4 <comment></comment> 5 5 <projects> 6 <project>ndg_security_saml</project>7 6 </projects> 8 7 <buildSpec> -
TI12-security/trunk/NDGSecurity/python/.pydevproject
r6615 r6628 5 5 <pydev_property name="org.python.pydev.PYTHON_PROJECT_VERSION">python 2.5</pydev_property> 6 6 <pydev_property name="org.python.pydev.PYTHON_PROJECT_INTERPRETER">Default</pydev_property> 7 <pydev_pathproperty name="org.python.pydev.PROJECT_SOURCE_PATH">8 <path>/ndg_security_python/ndg_security_client</path>9 <path>/ndg_security_python/ndg_security_common</path>10 <path>/ndg_security_python/ndg_security_server</path>11 </pydev_pathproperty>12 <pydev_pathproperty name="org.python.pydev.PROJECT_EXTERNAL_SOURCE_PATH">13 <path>/home/pjkersha/workspace/AuthKit/trunk</path>14 <path>/home/pjkersha/workspace/ndg_saml</path>15 </pydev_pathproperty>16 7 </pydev_project> -
TI12-security/trunk/NDGSecurity/python/ndg_security/setup.py
r6441 r6628 42 42 setup( 43 43 name = 'ndg_security', 44 version = '1.5 ',44 version = '1.5.1', 45 45 description = 'NERC DataGrid Security Utilities', 46 46 long_description = _longDescription, -
TI12-security/trunk/NDGSecurity/python/ndg_security_client/setup.py
r6441 r6628 44 44 setup( 45 45 name = 'ndg_security_client', 46 version = '1.5 ',46 version = '1.5.1', 47 47 description = 'NERC DataGrid Security Client side interface', 48 48 long_description = _longDescription, -
TI12-security/trunk/NDGSecurity/python/ndg_security_common/setup.py
r6441 r6628 69 69 setup( 70 70 name = 'ndg_security_common', 71 version = '1.5 ',71 version = '1.5.1', 72 72 description = 'NERC DataGrid Security package containing common ' 73 73 'utilities used by both server and client ' -
TI12-security/trunk/NDGSecurity/python/ndg_security_server/ndg/security/server/wsgi/authn.py
r6447 r6628 335 335 "AuthKitSSLAuthnMiddleware upstream of " 336 336 "this middleware") 337 337 _sslAuthnSucceeded = lambda self: self.environ.get( 338 AuthKitSSLAuthnMiddleware.AUTHN_SUCCEEDED_ENVIRON_KEYNAME, 339 False) 340 341 sslAuthnSucceeded = property(fget=_sslAuthnSucceeded, 342 doc="Boolean indicating SSL authentication " 343 "has succeeded in " 344 "AuthKitSSLAuthnMiddleware upstream of " 345 "this middleware") 346 338 347 @NDGSecurityMiddlewareBase.initCall 339 348 def __call__(self, environ, start_response): -
TI12-security/trunk/NDGSecurity/python/ndg_security_server/setup.py
r6441 r6628 64 64 setup( 65 65 name = 'ndg_security_server', 66 version = '1.5 ',66 version = '1.5.1', 67 67 description = 'Server side components for running NERC DataGrid ' 68 68 'Security Services', -
TI12-security/trunk/NDGSecurity/python/ndg_security_test/setup.py
r6441 r6628 20 20 setup( 21 21 name = 'ndg_security_test', 22 version = '1.5 ',22 version = '1.5.1', 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.