Changeset 7708
- Timestamp:
- 05/11/10 12:15:26 (10 years ago)
- Location:
- TI12-security/trunk/NDGSecurity/python
- Files:
-
- 16 edited
Legend:
- Unmodified
- Added
- Removed
-
TI12-security/trunk/NDGSecurity/python/Tests/esg_integration/test_attributeserviceclient.cfg
r7698 r7708 64 64 65 65 # SSL Context Proxy settings 66 attributeQuery.sslCACertDir = %(here)s/esg_trusted_certificates66 #attributeQuery.sslCACertDir = %(here)s/esg_trusted_certificates 67 67 #attributeQuery.sslCertFilePath = %(here)s/pki/test.crt 68 68 #attributeQuery.sslPriKeyFilePath = %(here)s/pki/test.key -
TI12-security/trunk/NDGSecurity/python/ndg_security/setup.cfg
r7681 r7708 18 18 19 19 [egg_info] 20 tag_build = rc120 #tag_build = rc1 21 21 #tag_svn_revision = true 22 22 -
TI12-security/trunk/NDGSecurity/python/ndg_security/setup.py
r7681 r7708 42 42 setup( 43 43 name = 'ndg_security', 44 version = '2. 0.1',44 version = '2.1.0', 45 45 description = 'NERC DataGrid Security Utilities', 46 46 long_description = _longDescription, -
TI12-security/trunk/NDGSecurity/python/ndg_security_client/setup.cfg
r7681 r7708 16 16 17 17 [egg_info] 18 tag_build = rc118 #tag_build = rc1 19 19 #tag_svn_revision = true 20 20 -
TI12-security/trunk/NDGSecurity/python/ndg_security_client/setup.py
r7681 r7708 46 46 setup( 47 47 name = 'ndg_security_client', 48 version = '2. 0.1',48 version = '2.1.0', 49 49 description = 'NERC DataGrid Security Client side interface', 50 50 long_description = _longDescription, -
TI12-security/trunk/NDGSecurity/python/ndg_security_common/setup.cfg
r7681 r7708 16 16 17 17 [egg_info] 18 tag_build = rc118 #tag_build = rc1 19 19 #tag_svn_revision = true 20 20 -
TI12-security/trunk/NDGSecurity/python/ndg_security_common/setup.py
r7681 r7708 18 18 from setuptools import setup, find_packages 19 19 20 import os,sys20 import sys 21 21 22 22 # Packages needed for NDG Security 23 23 # Note commented out ones fail with PyPI - use explicit link instead 24 # TODO: subdivide these into server and client specific and comon dependencies25 24 _pkgDependencies = [ 26 25 'M2Crypto', … … 59 58 setup( 60 59 name = 'ndg_security_common', 61 version = '2. 0.1',60 version = '2.1.0', 62 61 description = 'NERC DataGrid Security package containing common ' 63 62 'utilities used by both server and client ' -
TI12-security/trunk/NDGSecurity/python/ndg_security_common_utils_openid_dbinterface/setup.cfg
r7078 r7708 9 9 # BSD - See LICENCE file for details 10 10 [egg_info] 11 # tag_build = rc111 ##tag_build = rc1 12 12 #tag_svn_revision = true 13 13 -
TI12-security/trunk/NDGSecurity/python/ndg_security_server/ndg/security/server/wsgi/openid/relyingparty/__init__.py
r7077 r7708 125 125 objectType=SigninInterface, 126 126 classArgs=(app, global_conf), 127 classProperties=classProperties) 127 classProperties=classProperties) 128 128 129 129 # Delete sign in interface middleware settings -
TI12-security/trunk/NDGSecurity/python/ndg_security_server/ndg/security/server/xacml/pip/saml_pip.py
r7705 r7708 452 452 # Check for cached attributes for this subject (i.e. user) 453 453 # If none found send a query to the attribute authority 454 assertions = None 455 attributeIdFoundInCache = False 454 456 if self.cacheSessions: 455 457 attributeIdFoundInCache = False … … 466 468 attributeIdFoundInCache = True 467 469 break 468 else:469 attributeIdFoundInCache = False470 470 471 471 if not attributeIdFoundInCache: -
TI12-security/trunk/NDGSecurity/python/ndg_security_server/setup.cfg
r7681 r7708 15 15 16 16 [egg_info] 17 tag_build = rc117 #tag_build = rc1 18 18 #tag_svn_revision = true 19 19 -
TI12-security/trunk/NDGSecurity/python/ndg_security_server/setup.py
r7681 r7708 66 66 setup( 67 67 name = 'ndg_security_server', 68 version = '2. 0.1',68 version = '2.1.0', 69 69 description = 'Server side components for running NERC DataGrid ' 70 70 'Security Services', -
TI12-security/trunk/NDGSecurity/python/ndg_security_test/ndg/security/test/integration/full_system/securedapp.ini
r7517 r7708 148 148 149 149 [formatter_generic] 150 format = %(asctime)s.%(msecs)03d %(levelname)- 5.5s [%(name)s:%(lineno)s] %(message)s150 format = %(asctime)s.%(msecs)03d %(levelname)-7.7s [%(name)s:%(lineno)s] %(message)s 151 151 datefmt = %Y-%m-%d-%H:%M:%S 152 152 -
TI12-security/trunk/NDGSecurity/python/ndg_security_test/ndg/security/test/integration/full_system/securityservices.ini
r7698 r7708 505 505 506 506 [formatter_generic] 507 format = %(asctime)s.%(msecs)03d %(levelname)- 5.5s [%(name)s:%(lineno)s] %(message)s507 format = %(asctime)s.%(msecs)03d %(levelname)-7.7s [%(name)s:%(lineno)s] %(message)s 508 508 datefmt = %Y-%m-%d %H:%M:%S 509 509 -
TI12-security/trunk/NDGSecurity/python/ndg_security_test/setup.cfg
r7681 r7708 9 9 # BSD - See LICENCE file for details 10 10 [egg_info] 11 tag_build = rc111 #tag_build = rc1 12 12 #tag_svn_revision = true 13 13 -
TI12-security/trunk/NDGSecurity/python/ndg_security_test/setup.py
r7681 r7708 15 15 use_setuptools() 16 16 from setuptools import setup, find_packages 17 import os 18 17 19 18 _longDescription = """\ 20 19 Unit and integration tests package for NDG Security … … 43 42 setup( 44 43 name = 'ndg_security_test', 45 version = '2. 0.1',44 version = '2.1.0', 46 45 description = 'NERC DataGrid Security Unit and Integration tests', 47 46 long_description = _longDescription,
Note: See TracChangeset
for help on using the changeset viewer.