Changeset 6069 for TI12-security
- Timestamp:
- 30/11/09 16:59:11 (10 years ago)
- Location:
- TI12-security/trunk/python
- Files:
-
- 195 edited
Legend:
- Unmodified
- Added
- Removed
-
TI12-security/trunk/python/MyProxyClient/myproxy/__init__.py
r5048 r6069 9 9 __license__ = """BSD - See LICENSE file in top-level directory""" 10 10 __contact__ = "Philip.Kershaw@stfc.ac.uk" 11 __revision__ = '$Id $'11 __revision__ = '$Id: $' -
TI12-security/trunk/python/MyProxyClient/myproxy/client.py
r5048 r6069 19 19 certain rights.""" 20 20 __contact__ = "Philip.Kershaw@stfc.ac.uk" 21 __revision__ = '$Id $'21 __revision__ = '$Id: $' 22 22 import logging 23 23 log = logging.getLogger(__name__) -
TI12-security/trunk/python/MyProxyClient/myproxy/utils/__init__.py
r5048 r6069 9 9 __license__ = """BSD - See LICENSE file in top-level directory""" 10 10 __contact__ = "Philip.Kershaw@stfc.ac.uk" 11 __revision__ = '$Id $'11 __revision__ = '$Id: $' -
TI12-security/trunk/python/MyProxyClient/setup.py
r5049 r6069 16 16 certain rights.""" 17 17 __contact__ = "Philip.Kershaw@stfc.ac.uk" 18 __revision__ = '$Id $'18 __revision__ = '$Id: $' 19 19 20 20 # Bootstrap setuptools if necessary. -
TI12-security/trunk/python/Tests/Echo/wsSecurity.py
r4855 r6069 11 11 """ 12 12 13 __revision__ = '$Id $'13 __revision__ = '$Id: $' 14 14 15 15 import re -
TI12-security/trunk/python/Tests/SimpleCA/wsSecurity.py
r4855 r6069 11 11 """ 12 12 13 __revision__ = '$Id $'13 __revision__ = '$Id: $' 14 14 15 15 import re -
TI12-security/trunk/python/Tests/configparser/configparser.py
r5971 r6069 9 9 __license__ = "BSD - see LICENSE file in top-level directory" 10 10 __contact__ = "Philip.Kershaw@stfc.ac.uk" 11 __revision__ = '$Id $'11 __revision__ = '$Id: $' 12 12 13 13 from ndg.security.common.utils.configfileparsers import ( -
TI12-security/trunk/python/Tests/dewsGatekeeper/wsSecurity.py
r4855 r6069 11 11 """ 12 12 13 __revision__ = '$Id $'13 __revision__ = '$Id: $' 14 14 15 15 import re -
TI12-security/trunk/python/Tests/etreewss/__init__.py
r4840 r6069 8 8 __license__ = "BSD - see LICENSE file in top-level directory" 9 9 __contact__ = "Philip.Kershaw@stfc.ac.uk" 10 __revision__ = '$Id $'10 __revision__ = '$Id: $' -
TI12-security/trunk/python/Tests/etreewss/client/__init__.py
r4840 r6069 8 8 __license__ = "BSD - see LICENSE file in top-level directory" 9 9 __contact__ = "Philip.Kershaw@stfc.ac.uk" 10 __revision__ = '$Id $'10 __revision__ = '$Id: $' -
TI12-security/trunk/python/Tests/etreewss/server/__init__.py
r4840 r6069 8 8 __license__ = "BSD - see LICENSE file in top-level directory" 9 9 __contact__ = "Philip.Kershaw@stfc.ac.uk" 10 __revision__ = '$Id $'10 __revision__ = '$Id: $' -
TI12-security/trunk/python/Tests/pylonsAttributeAuthority/ndgsecurity/ndgsecurity/config/soap.py
r4855 r6069 8 8 __copyright__ = "(C) 2009 Science and Technology Facilities Council" 9 9 __contact__ = "Philip.Kershaw@stfc.ac.uk" 10 __revision__ = "$Id $"10 __revision__ = "$Id: $" 11 11 import logging 12 12 log = logging.getLogger(__name__) -
TI12-security/trunk/python/Tests/urllib2secure_request/test_urllib2request.py
r5355 r6069 9 9 __license__ = "BSD - see LICENSE file in top-level directory" 10 10 __contact__ = "Philip.Kershaw@stfc.ac.uk" 11 __revision__ = '$Id $'11 __revision__ = '$Id: $' 12 12 import logging 13 13 logging.basicConfig(level=logging.DEBUG) -
TI12-security/trunk/python/Tests/wsgiStack/test_multihandler.py
r5766 r6069 9 9 __license__ = "BSD - see LICENSE file in top-level directory" 10 10 __contact__ = "Philip.Kershaw@stfc.ac.uk" 11 __revision__ = "$Id $"11 __revision__ = "$Id: $" 12 12 13 13 import logging -
TI12-security/trunk/python/Tests/xmlsec/WS-Security/wsClient.py
r4855 r6069 11 11 """ 12 12 13 __revision__ = '$Id $'13 __revision__ = '$Id: $' 14 14 15 15 import sys, socket -
TI12-security/trunk/python/Tests/xmlsec/WS-Security/wsInterface.py
r4855 r6069 9 9 """ 10 10 11 __revision__ = '$Id $'11 __revision__ = '$Id: $' 12 12 13 13 import ZSI -
TI12-security/trunk/python/Tests/xmlsec/WS-Security/wsSecurity.py
r4855 r6069 11 11 """ 12 12 13 __revision__ = '$Id $'13 __revision__ = '$Id: $' 14 14 15 15 import re -
TI12-security/trunk/python/Tests/xmlsec/WS-Security/wsServer.py
r4855 r6069 11 11 """ 12 12 13 __revision__ = '$Id $'13 __revision__ = '$Id: $' 14 14 15 15 import sys -
TI12-security/trunk/python/ndg_security/setup.cfg
r6009 r6069 18 18 19 19 [egg_info] 20 tag_build = 20 tag_build = rc1 21 21 tag_svn_revision = true 22 22 -
TI12-security/trunk/python/ndg_security_client/setup.cfg
r6009 r6069 16 16 17 17 [egg_info] 18 tag_build = 18 tag_build = rc1 19 19 tag_svn_revision = true 20 20 -
TI12-security/trunk/python/ndg_security_common/ndg/security/common/authz/msi.py
r6064 r6069 9 9 __license__ = "BSD - see LICENSE file in top-level directory" 10 10 __contact__ = "Philip.Kershaw@stfc.ac.uk" 11 __revision__ = "$Id $"11 __revision__ = "$Id: $" 12 12 13 13 import logging -
TI12-security/trunk/python/ndg_security_common/ndg/security/common/authz/pdp/__init__.py
r5037 r6069 14 14 __license__ = "BSD - see LICENSE file in top-level directory" 15 15 __contact__ = "Philip.Kershaw@stfc.ac.uk" 16 __revision__ = "$Id $"16 __revision__ = "$Id: $" 17 17 18 18 import logging -
TI12-security/trunk/python/ndg_security_common/ndg/security/common/authz/pdp/browse.py
r4900 r6069 11 11 __license__ = "BSD - see LICENSE file in top-level directory" 12 12 __contact__ = "Philip.Kershaw@stfc.ac.uk" 13 __revision__ = "$Id $"13 __revision__ = "$Id: $" 14 14 15 15 import logging -
TI12-security/trunk/python/ndg_security_common/ndg/security/common/authz/pep.py
r4840 r6069 12 12 __license__ = "BSD - see LICENSE file in top-level directory" 13 13 __contact__ = "Philip.Kershaw@stfc.ac.uk" 14 __revision__ = "$Id $"14 __revision__ = "$Id: $" 15 15 16 16 import logging -
TI12-security/trunk/python/ndg_security_common/ndg/security/common/authz/xacml/__init__.py
r5712 r6069 42 42 __license__ = "BSD - see LICENSE file in top-level directory" 43 43 __contact__ = "Philip.Kershaw@stfc.ac.uk" 44 __revision__ = "$Id $"44 __revision__ = "$Id: $" 45 45 46 46 import logging -
TI12-security/trunk/python/ndg_security_common/ndg/security/common/authz/xacml/attr.py
r5712 r6069 42 42 __license__ = "BSD - see LICENSE file in top-level directory" 43 43 __contact__ = "Philip.Kershaw@stfc.ac.uk" 44 __revision__ = "$Id $"44 __revision__ = "$Id: $" 45 45 46 46 import logging -
TI12-security/trunk/python/ndg_security_common/ndg/security/common/authz/xacml/cond/__init__.py
r5712 r6069 42 42 __license__ = "BSD - see LICENSE file in top-level directory" 43 43 __contact__ = "Philip.Kershaw@stfc.ac.uk" 44 __revision__ = "$Id $"44 __revision__ = "$Id: $" 45 45 import logging 46 46 log = logging.getLogger(__name__) -
TI12-security/trunk/python/ndg_security_common/ndg/security/common/authz/xacml/cond/eval.py
r5397 r6069 42 42 __license__ = "BSD - see LICENSE file in top-level directory" 43 43 __contact__ = "Philip.Kershaw@stfc.ac.uk" 44 __revision__ = "$Id $"44 __revision__ = "$Id: $" 45 45 import logging 46 46 log = logging.getLogger(__name__) -
TI12-security/trunk/python/ndg_security_common/ndg/security/common/authz/xacml/ctx.py
r5712 r6069 42 42 __license__ = "BSD - see LICENSE file in top-level directory" 43 43 __contact__ = "Philip.Kershaw@stfc.ac.uk" 44 __revision__ = "$Id $"44 __revision__ = "$Id: $" 45 45 46 46 import logging -
TI12-security/trunk/python/ndg_security_common/ndg/security/common/authz/xacml/exceptions.py
r5395 r6069 42 42 __license__ = "BSD - see LICENSE file in top-level directory" 43 43 __contact__ = "Philip.Kershaw@stfc.ac.uk" 44 __revision__ = "$Id $"44 __revision__ = "$Id: $" 45 45 46 46 class UnknownIdentifierException(Exception): -
TI12-security/trunk/python/ndg_security_common/ndg/security/common/saml_utils/__init__.py
r5681 r6069 9 9 __license__ = "BSD - see LICENSE file in top-level directory" 10 10 __contact__ = "Philip.Kershaw@stfc.ac.uk" 11 __revision__ = '$Id $'11 __revision__ = '$Id: $' -
TI12-security/trunk/python/ndg_security_common/ndg/security/common/saml_utils/bindings.py
r6067 r6069 8 8 __license__ = "BSD - see LICENSE file in top-level directory" 9 9 __contact__ = "Philip.Kershaw@stfc.ac.uk" 10 __revision__ = '$Id $'10 __revision__ = '$Id: $' 11 11 import logging 12 12 log = logging.getLogger(__name__) -
TI12-security/trunk/python/ndg_security_common/ndg/security/common/saml_utils/esg/__init__.py
r6050 r6069 8 8 __license__ = "BSD - see LICENSE file in top-level directory" 9 9 __contact__ = "Philip.Kershaw@stfc.ac.uk" 10 __revision__ = '$Id $'10 __revision__ = '$Id: $' 11 11 from saml.saml2.core import XSStringAttributeValue, AttributeValue, Attribute 12 12 from saml.common.xml import QName, SAMLConstants -
TI12-security/trunk/python/ndg_security_common/ndg/security/common/saml_utils/esg/xml/__init__.py
r5982 r6069 8 8 __license__ = "BSD - see LICENSE file in top-level directory" 9 9 __contact__ = "Philip.Kershaw@stfc.ac.uk" 10 __revision__ = '$Id $'10 __revision__ = '$Id: $' -
TI12-security/trunk/python/ndg_security_common/ndg/security/common/saml_utils/esg/xml/etree.py
r6034 r6069 8 8 __license__ = "BSD - see LICENSE file in top-level directory" 9 9 __contact__ = "Philip.Kershaw@stfc.ac.uk" 10 __revision__ = '$Id $'10 __revision__ = '$Id: $' 11 11 import logging 12 12 log = logging.getLogger(__name__) -
TI12-security/trunk/python/ndg_security_common/ndg/security/common/soap.py
r5589 r6069 11 11 __license__ = "BSD - see LICENSE file in top-level directory" 12 12 __contact__ = "Philip.Kershaw@stfc.ac.uk" 13 __revision__ = '$Id $'13 __revision__ = '$Id: $' 14 14 import logging 15 15 log = logging.getLogger(__name__) -
TI12-security/trunk/python/ndg_security_common/ndg/security/common/soap/__init__.py
r5521 r6069 13 13 __license__ = "BSD - see LICENSE file in top-level directory" 14 14 __contact__ = "Philip.Kershaw@stfc.ac.uk" 15 __revision__ = '$Id $'15 __revision__ = '$Id: $' 16 16 import logging 17 17 log = logging.getLogger(__name__) -
TI12-security/trunk/python/ndg_security_common/ndg/security/common/utils/classfactory.py
r6018 r6069 8 8 __license__ = "BSD - see LICENSE file in top-level directory" 9 9 __contact__ = "Philip.Kershaw@stfc.ac.uk" 10 __revision__ = '$Id $'10 __revision__ = '$Id: $' 11 11 import traceback 12 12 import logging, os, sys -
TI12-security/trunk/python/ndg_security_common/ndg/security/common/utils/configfileparsers.py
r4840 r6069 8 8 __license__ = "BSD - see LICENSE file in top-level directory" 9 9 __contact__ = "Philip.Kershaw@stfc.ac.uk" 10 __revision__ = '$Id $'10 __revision__ = '$Id: $' 11 11 12 12 from ConfigParser import SafeConfigParser, InterpolationMissingOptionError, \ -
TI12-security/trunk/python/ndg_security_common/ndg/security/common/wssecurity/__init__.py
r5441 r6069 9 9 __license__ = "BSD - see LICENSE file in top-level directory" 10 10 __contact__ = "Philip.Kershaw@stfc.ac.uk" 11 __revision__ = "$Id $"11 __revision__ = "$Id: $" 12 12 import logging 13 13 log = logging.getLogger(__name__) -
TI12-security/trunk/python/ndg_security_common/ndg/security/common/wssecurity/encryptionhandler/__init__.py
r5357 r6069 8 8 __license__ = "BSD - see LICENSE file in top-level directory" 9 9 __contact__ = "Philip.Kershaw@stfc.ac.uk" 10 __revision__ = '$Id $'10 __revision__ = '$Id: $' 11 11 from ZSI.wstools.Namespaces import ENCRYPTION 12 12 -
TI12-security/trunk/python/ndg_security_common/ndg/security/common/wssecurity/signaturehandler/etree.py
r5357 r6069 8 8 __license__ = "BSD - see LICENSE file in top-level directory" 9 9 __contact__ = "Philip.Kershaw@stfc.ac.uk" 10 __revision__ = '$Id $'10 __revision__ = '$Id: $' 11 11 import base64 12 12 import os -
TI12-security/trunk/python/ndg_security_common/ndg/security/common/xmlsec/__init__.py
r4840 r6069 9 9 __license__ = "BSD - see LICENSE file in top-level directory" 10 10 __contact__ = "Philip.Kershaw@stfc.ac.uk" 11 __revision__ = "$Id $"11 __revision__ = "$Id: $" -
TI12-security/trunk/python/ndg_security_common/ndg/security/common/xmlsec/dom.py
r4840 r6069 9 9 __license__ = "BSD - see LICENSE file in top-level directory" 10 10 __contact__ = "Philip.Kershaw@stfc.ac.uk" 11 __revision__ = "$Id $"11 __revision__ = "$Id: $" 12 12 13 13 # For backwards compatibility import from odl XMLSec module. -
TI12-security/trunk/python/ndg_security_common/ndg/security/common/xmlsec/etree.py
r4840 r6069 9 9 __license__ = "BSD - see LICENSE file in top-level directory" 10 10 __contact__ = "Philip.Kershaw@stfc.ac.uk" 11 __revision__ = "$Id $"11 __revision__ = "$Id: $" 12 12 import logging 13 13 log = logging.getLogger(__name__) -
TI12-security/trunk/python/ndg_security_common/ndg/security/common/zsi/__init__.py
r4855 r6069 9 9 __copyright__ = "(C) 2009 Science and Technology Facilities Council" 10 10 __contact__ = "Philip.Kershaw@stfc.ac.uk" 11 __revision__ = "$Id $"11 __revision__ = "$Id: $" -
TI12-security/trunk/python/ndg_security_common/ndg/security/common/zsi/attributeauthority/__init__.py
r4855 r6069 8 8 __copyright__ = "(C) 2009 Science and Technology Facilities Council" 9 9 __contact__ = "Philip.Kershaw@stfc.ac.uk" 10 __revision__ = "$Id $"10 __revision__ = "$Id: $" -
TI12-security/trunk/python/ndg_security_common/ndg/security/common/zsi/httpproxy.py
r4840 r6069 11 11 __license__ = "BSD - see LICENSE file in top-level directory" 12 12 __contact__ = "Philip.Kershaw@stfc.ac.uk" 13 __revision__ = '$Id $'13 __revision__ = '$Id: $' 14 14 import httplib, os 15 15 import urlparse -
TI12-security/trunk/python/ndg_security_common/ndg/security/common/zsi/sessionmanager/__init__.py
r4855 r6069 8 8 __copyright__ = "(C) 2009 Science and Technology Facilities Council" 9 9 __contact__ = "Philip.Kershaw@stfc.ac.uk" 10 __revision__ = "$Id $"10 __revision__ = "$Id: $" -
TI12-security/trunk/python/ndg_security_common/setup.cfg
r6009 r6069 16 16 17 17 [egg_info] 18 tag_build = 18 tag_build = rc1 19 19 tag_svn_revision = true 20 20 -
TI12-security/trunk/python/ndg_security_common_utils_openid_dbinterface/ndg/__init__.py
r5722 r6069 16 16 __license__ = "BSD - see LICENSE file in top-level directory" 17 17 __contact__ = "Philip.Kershaw@stfc.ac.uk" 18 __revision__ = '$Id $'18 __revision__ = '$Id: $' 19 19 20 20 __import__('pkg_resources').declare_namespace(__name__) -
TI12-security/trunk/python/ndg_security_common_utils_openid_dbinterface/ndg/security/__init__.py
r5722 r6069 16 16 __license__ = "BSD - see LICENSE file in top-level directory" 17 17 __contact__ = "Philip.Kershaw@stfc.ac.uk" 18 __revision__ = '$Id $'18 __revision__ = '$Id: $' 19 19 20 20 __import__('pkg_resources').declare_namespace(__name__) -
TI12-security/trunk/python/ndg_security_common_utils_openid_dbinterface/ndg/security/common/__init__.py
r5722 r6069 16 16 __license__ = "BSD - see LICENSE file in top-level directory" 17 17 __contact__ = "Philip.Kershaw@stfc.ac.uk" 18 __revision__ = '$Id $'18 __revision__ = '$Id: $' 19 19 20 20 __import__('pkg_resources').declare_namespace(__name__) -
TI12-security/trunk/python/ndg_security_common_utils_openid_dbinterface/ndg/security/common/utils/__init__.py
r5722 r6069 16 16 __license__ = "BSD - see LICENSE file in top-level directory" 17 17 __contact__ = "Philip.Kershaw@stfc.ac.uk" 18 __revision__ = '$Id $'18 __revision__ = '$Id: $' 19 19 20 20 __import__('pkg_resources').declare_namespace(__name__) -
TI12-security/trunk/python/ndg_security_common_utils_openid_dbinterface/ndg/security/common/utils/openid/__init__.py
r5722 r6069 8 8 __license__ = "BSD - see LICENSE file in top-level directory" 9 9 __contact__ = "Philip.Kershaw@stfc.ac.uk" 10 __revision__ = '$Id $'10 __revision__ = '$Id: $' -
TI12-security/trunk/python/ndg_security_common_utils_openid_dbinterface/ndg/security/common/utils/openid/dbinterface.py
r5935 r6069 9 9 __license__ = "BSD - see LICENSE file in top-level directory" 10 10 __contact__ = "Philip.Kershaw@stfc.ac.uk" 11 __revision__ = '$Id $'11 __revision__ = '$Id: $' 12 12 import re 13 13 import urllib -
TI12-security/trunk/python/ndg_security_common_utils_openid_dbinterface/setup.py
r5873 r6069 9 9 __license__ = "BSD - see LICENSE file in top-level directory" 10 10 __contact__ = "Philip.Kershaw@stfc.ac.uk" 11 __revision__ = '$Id $'11 __revision__ = '$Id: $' 12 12 13 13 # Bootstrap setuptools if necessary. -
TI12-security/trunk/python/ndg_security_saml/saml/__init__.py
r5599 r6069 26 26 __license__ = "BSD - see LICENSE file in top-level directory" 27 27 __contact__ = "Philip.Kershaw@stfc.ac.uk" 28 __revision__ = "$Id $"28 __revision__ = "$Id: $" -
TI12-security/trunk/python/ndg_security_saml/saml/common/__init__.py
r5663 r6069 28 28 __license__ = "BSD - see LICENSE file in top-level directory" 29 29 __contact__ = "Philip.Kershaw@stfc.ac.uk" 30 __revision__ = "$Id $"30 __revision__ = "$Id: $" 31 31 32 32 class SAMLObject(object): -
TI12-security/trunk/python/ndg_security_saml/saml/common/xml.py
r5663 r6069 28 28 __license__ = "BSD - see LICENSE file in top-level directory" 29 29 __contact__ = "Philip.Kershaw@stfc.ac.uk" 30 __revision__ = "$Id $"30 __revision__ = "$Id: $" 31 31 from saml.xml import XMLConstants 32 32 -
TI12-security/trunk/python/ndg_security_saml/saml/saml2/__init__.py
r5597 r6069 28 28 __license__ = "BSD - see LICENSE file in top-level directory" 29 29 __contact__ = "Philip.Kershaw@stfc.ac.uk" 30 __revision__ = "$Id $"30 __revision__ = "$Id: $" -
TI12-security/trunk/python/ndg_security_saml/saml/saml2/core.py
r6062 r6069 28 28 __license__ = "BSD - see LICENSE file in top-level directory" 29 29 __contact__ = "Philip.Kershaw@stfc.ac.uk" 30 __revision__ = "$Id $"30 __revision__ = "$Id: $" 31 31 from datetime import datetime 32 32 -
TI12-security/trunk/python/ndg_security_saml/saml/test/__init__.py
r5513 r6069 9 9 __license__ = "BSD - see LICENSE file in top-level directory" 10 10 __contact__ = "Philip.Kershaw@stfc.ac.uk" 11 __revision__ = '$Id $'11 __revision__ = '$Id: $' -
TI12-security/trunk/python/ndg_security_saml/saml/test/test_saml.py
r5982 r6069 8 8 __license__ = "BSD - see LICENSE file in top-level directory" 9 9 __contact__ = "Philip.Kershaw@stfc.ac.uk" 10 __revision__ = '$Id $'10 __revision__ = '$Id: $' 11 11 import logging 12 12 logging.basicConfig(level=logging.DEBUG) -
TI12-security/trunk/python/ndg_security_saml/saml/xml/__init__.py
r6062 r6069 26 26 __license__ = "BSD - see LICENSE file in top-level directory" 27 27 __contact__ = "Philip.Kershaw@stfc.ac.uk" 28 __revision__ = "$Id $"28 __revision__ = "$Id: $" 29 29 import logging 30 30 log = logging.getLogger(__name__) -
TI12-security/trunk/python/ndg_security_saml/saml/xml/etree.py
r6062 r6069 27 27 __license__ = "BSD - see LICENSE file in top-level directory" 28 28 __contact__ = "Philip.Kershaw@stfc.ac.uk" 29 __revision__ = "$Id $"29 __revision__ = "$Id: $" 30 30 import logging 31 31 log = logging.getLogger(__name__) -
TI12-security/trunk/python/ndg_security_server/ndg/security/server/initCredReposDb.py
r4840 r6069 13 13 __contact__ = "Philip.Kershaw@stfc.ac.uk" 14 14 __author__ = "P J Kershaw" 15 __revision__ = "$Id $"15 __revision__ = "$Id: $" 16 16 17 17 # Command line processing -
TI12-security/trunk/python/ndg_security_server/ndg/security/server/myproxy/__init__.py
r5907 r6069 8 8 __license__ = "BSD - see LICENSE file in top-level directory" 9 9 __contact__ = "Philip.Kershaw@stfc.ac.uk" 10 __revision__ = '$Id $'10 __revision__ = '$Id: $' -
TI12-security/trunk/python/ndg_security_server/ndg/security/server/myproxy/certificate_extapp/__init__.py
r5898 r6069 16 16 __license__ = "BSD - see LICENSE file in top-level directory" 17 17 __contact__ = "Philip.Kershaw@stfc.ac.uk" 18 __revision__ = '$Id $'18 __revision__ = '$Id: $' 19 19 20 20 __import__('pkg_resources').declare_namespace(__name__) -
TI12-security/trunk/python/ndg_security_server/ndg/security/server/sso/sso/controllers/login.py
r5181 r6069 8 8 __license__ = "BSD - see LICENSE file in top-level directory" 9 9 __contact__ = "Philip.Kershaw@stfc.ac.uk" 10 __revision__ = '$Id $'10 __revision__ = '$Id: $' 11 11 import logging 12 12 log = logging.getLogger(__name__) -
TI12-security/trunk/python/ndg_security_server/ndg/security/server/sso/sso/controllers/logout.py
r5181 r6069 8 8 __license__ = "BSD - see LICENSE file in top-level directory" 9 9 __contact__ = "Philip.Kershaw@stfc.ac.uk" 10 __revision__ = '$Id $'10 __revision__ = '$Id: $' 11 11 from ndg.security.server.sso.sso.lib.base import * 12 12 from ndg.security.common.pylons.security_util import SecuritySession -
TI12-security/trunk/python/ndg_security_server/ndg/security/server/wsgi/__init__.py
r5843 r6069 7 7 __license__ = "BSD - see LICENSE file in top-level directory" 8 8 __contact__ = "Philip.Kershaw@stfc.ac.uk" 9 __revision__ = '$Id $'9 __revision__ = '$Id: $' 10 10 import logging 11 11 log = logging.getLogger(__name__) -
TI12-security/trunk/python/ndg_security_server/ndg/security/server/wsgi/attributeauthority.py
r5738 r6069 8 8 __contact__ = "Philip.Kershaw@stfc.ac.uk" 9 9 __license__ = "BSD - see LICENSE file in top-level directory" 10 __revision__ = "$Id $"10 __revision__ = "$Id: $" 11 11 import logging 12 12 log = logging.getLogger(__name__) -
TI12-security/trunk/python/ndg_security_server/ndg/security/server/wsgi/authn.py
r5843 r6069 12 12 __license__ = "BSD - see LICENSE file in top-level directory" 13 13 __contact__ = "Philip.Kershaw@stfc.ac.uk" 14 __revision__ = "$Id $"14 __revision__ = "$Id: $" 15 15 import logging 16 16 log = logging.getLogger(__name__) -
TI12-security/trunk/python/ndg_security_server/ndg/security/server/wsgi/authz.py
r6062 r6069 7 7 __copyright__ = "(C) 2009 Science and Technology Facilities Council" 8 8 __contact__ = "Philip.Kershaw@stfc.ac.uk" 9 __revision__ = "$Id $"9 __revision__ = "$Id: $" 10 10 __license__ = "BSD - see LICENSE file in top-level directory" 11 11 import logging -
TI12-security/trunk/python/ndg_security_server/ndg/security/server/wsgi/myproxy/__init__.py
r5843 r6069 8 8 __license__ = "BSD - see LICENSE file in top-level directory" 9 9 __contact__ = "Philip.Kershaw@stfc.ac.uk" 10 __revision__ = "$Id $"10 __revision__ = "$Id: $" 11 11 import logging 12 12 log = logging.getLogger(__name__) -
TI12-security/trunk/python/ndg_security_server/ndg/security/server/wsgi/openid/__init__.py
r5037 r6069 8 8 __license__ = "BSD - see LICENSE file in top-level directory" 9 9 __contact__ = "Philip.Kershaw@stfc.ac.uk" 10 __revision__ = '$Id $'10 __revision__ = '$Id: $' -
TI12-security/trunk/python/ndg_security_server/ndg/security/server/wsgi/openid/provider/__init__.py
r5984 r6069 10 10 __license__ = "BSD - see top-level directory for LICENSE file" 11 11 __contact__ = "Philip.Kershaw@stfc.ac.uk" 12 __revision__ = "$Id $"12 __revision__ = "$Id: $" 13 13 import httplib 14 14 import sys -
TI12-security/trunk/python/ndg_security_server/ndg/security/server/wsgi/openid/provider/authninterface/__init__.py
r6009 r6069 8 8 __license__ = "BSD - see LICENSE file in top-level directory" 9 9 __contact__ = "Philip.Kershaw@stfc.ac.uk" 10 __revision__ = '$Id $'10 __revision__ = '$Id: $' 11 11 import logging 12 12 log = logging.getLogger(__name__) -
TI12-security/trunk/python/ndg_security_server/ndg/security/server/wsgi/openid/provider/authninterface/basic.py
r5786 r6069 13 13 __copyright__ = "(C) 2009 Science and Technology Facilities Council" 14 14 __contact__ = "Philip.Kershaw@stfc.ac.uk" 15 __revision__ = "$Id $"15 __revision__ = "$Id: $" 16 16 import logging 17 17 log = logging.getLogger(__name__) -
TI12-security/trunk/python/ndg_security_server/ndg/security/server/wsgi/openid/provider/authninterface/sessionmanager.py
r5786 r6069 12 12 __license__ = "BSD - see LICENSE file in top-level directory" 13 13 __contact__ = "Philip.Kershaw@stfc.ac.uk" 14 __revision__ = "$Id $"14 __revision__ = "$Id: $" 15 15 import logging 16 16 log = logging.getLogger(__name__) -
TI12-security/trunk/python/ndg_security_server/ndg/security/server/wsgi/openid/provider/axinterface/__init__.py
r6034 r6069 8 8 __license__ = "BSD - see LICENSE file in top-level directory" 9 9 __contact__ = "Philip.Kershaw@stfc.ac.uk" 10 __revision__ = '$Id $'10 __revision__ = '$Id: $' 11 11 from ndg.security.server.wsgi.openid.provider import IdentityMapping 12 12 -
TI12-security/trunk/python/ndg_security_server/ndg/security/server/wsgi/openid/provider/axinterface/csv.py
r6067 r6069 10 10 __license__ = "BSD - see LICENSE file in top-level directory" 11 11 __contact__ = "Philip.Kershaw@stfc.ac.uk" 12 __revision__ = "$Id $"12 __revision__ = "$Id: $" 13 13 import logging 14 14 log = logging.getLogger(__name__) -
TI12-security/trunk/python/ndg_security_server/ndg/security/server/wsgi/openid/provider/axinterface/sessionmanager.py
r5782 r6069 12 12 __license__ = "BSD - see LICENSE file in top-level directory" 13 13 __contact__ = "Philip.Kershaw@stfc.ac.uk" 14 __revision__ = "$Id $"14 __revision__ = "$Id: $" 15 15 import logging 16 16 log = logging.getLogger(__name__) -
TI12-security/trunk/python/ndg_security_server/ndg/security/server/wsgi/openid/provider/axinterface/sqlalchemy_ax.py
r6064 r6069 9 9 __license__ = "BSD - see LICENSE file in top-level directory" 10 10 __contact__ = "Philip.Kershaw@stfc.ac.uk" 11 __revision__ = "$Id $"11 __revision__ = "$Id: $" 12 12 import logging 13 13 log = logging.getLogger(__name__) -
TI12-security/trunk/python/ndg_security_server/ndg/security/server/wsgi/openid/provider/renderinginterface/__init__.py
r4840 r6069 8 8 __license__ = "BSD - see LICENSE file in top-level directory" 9 9 __contact__ = "Philip.Kershaw@stfc.ac.uk" 10 __revision__ = '$Id $'10 __revision__ = '$Id: $' -
TI12-security/trunk/python/ndg_security_server/ndg/security/server/wsgi/openid/provider/renderinginterface/buffet/__init__.py
r6009 r6069 8 8 __copyright__ = "(C) 2009 Science and Technology Facilities Council" 9 9 __contact__ = "Philip.Kershaw@stfc.ac.uk" 10 __revision__ = "$Id $"10 __revision__ = "$Id: $" 11 11 __license__ = "BSD - see LICENSE file in top-level directory" 12 12 import logging -
TI12-security/trunk/python/ndg_security_server/ndg/security/server/wsgi/openid/provider/renderinginterface/demo.py
r5087 r6069 9 9 __copyright__ = "(C) 2009 Science and Technology Facilities Council" 10 10 __contact__ = "Philip.Kershaw@stfc.ac.uk" 11 __revision__ = "$Id $"11 __revision__ = "$Id: $" 12 12 __license__ = "BSD - see LICENSE file in top-level directory" 13 13 import logging -
TI12-security/trunk/python/ndg_security_server/ndg/security/server/wsgi/openid/provider/renderinginterface/genshi/__init__.py
r6064 r6069 8 8 __copyright__ = "(C) 2009 Science and Technology Facilities Council" 9 9 __contact__ = "Philip.Kershaw@stfc.ac.uk" 10 __revision__ = "$Id $"10 __revision__ = "$Id: $" 11 11 __license__ = "BSD - see LICENSE file in top-level directory" 12 12 import logging -
TI12-security/trunk/python/ndg_security_server/ndg/security/server/wsgi/openid/provider/renderinginterface/genshi/templates/__init__.py
r5984 r6069 8 8 __license__ = "BSD - see LICENSE file in top-level directory" 9 9 __contact__ = "Philip.Kershaw@stfc.ac.uk" 10 __revision__ = '$Id $'10 __revision__ = '$Id: $' -
TI12-security/trunk/python/ndg_security_server/ndg/security/server/wsgi/openid/relyingparty/__init__.py
r5786 r6069 10 10 __license__ = "BSD - see top-level directory for LICENSE file" 11 11 __contact__ = "Philip.Kershaw@stfc.ac.uk" 12 __revision__ = "$Id $"12 __revision__ = "$Id: $" 13 13 import logging 14 14 log = logging.getLogger(__name__) -
TI12-security/trunk/python/ndg_security_server/ndg/security/server/wsgi/openid/relyingparty/signin_interface/__init__.py
r4863 r6069 8 8 __copyright__ = "(C) 2009 Science and Technology Facilities Council" 9 9 __contact__ = "Philip.Kershaw@stfc.ac.uk" 10 __revision__ = "$Id $"10 __revision__ = "$Id: $" 11 11 __license__ = "BSD - see LICENSE file in top-level directory" -
TI12-security/trunk/python/ndg_security_server/ndg/security/server/wsgi/openid/relyingparty/signin_interface/buffet/__init__.py
r5577 r6069 8 8 __license__ = "BSD - see top-level directory for LICENSE file" 9 9 __contact__ = "Philip.Kershaw@stfc.ac.uk" 10 __revision__ = "$Id $"10 __revision__ = "$Id: $" 11 11 import logging 12 12 log = logging.getLogger(__name__) -
TI12-security/trunk/python/ndg_security_server/ndg/security/server/wsgi/openid/relyingparty/signin_interface/buffet/templates/__init__.py
r4863 r6069 8 8 __copyright__ = "(C) 2009 Science and Technology Facilities Council" 9 9 __contact__ = "Philip.Kershaw@stfc.ac.uk" 10 __revision__ = "$Id $"10 __revision__ = "$Id: $" 11 11 __license__ = "BSD - see LICENSE file in top-level directory" -
TI12-security/trunk/python/ndg_security_server/ndg/security/server/wsgi/openid/relyingparty/signin_interface/genshi/__init__.py
r5984 r6069 8 8 __license__ = "BSD - see top-level directory for LICENSE file" 9 9 __contact__ = "Philip.Kershaw@stfc.ac.uk" 10 __revision__ = "$Id $"10 __revision__ = "$Id: $" 11 11 import logging 12 12 log = logging.getLogger(__name__) -
TI12-security/trunk/python/ndg_security_server/ndg/security/server/wsgi/openid/relyingparty/signin_interface/genshi/templates/__init__.py
r5984 r6069 8 8 __copyright__ = "(C) 2009 Science and Technology Facilities Council" 9 9 __contact__ = "Philip.Kershaw@stfc.ac.uk" 10 __revision__ = "$Id $"10 __revision__ = "$Id: $" 11 11 __license__ = "BSD - see LICENSE file in top-level directory" -
TI12-security/trunk/python/ndg_security_server/ndg/security/server/wsgi/openid/relyingparty/validation.py
r6062 r6069 13 13 __license__ = "BSD - see top-level directory for LICENSE file" 14 14 __contact__ = "Philip.Kershaw@stfc.ac.uk" 15 __revision__ = "$Id $"15 __revision__ = "$Id: $" 16 16 import logging 17 17 log = logging.getLogger(__name__) -
TI12-security/trunk/python/ndg_security_server/ndg/security/server/wsgi/saml/__init__.py
r6034 r6069 7 7 __copyright__ = "(C) 2009 Science and Technology Facilities Council" 8 8 __contact__ = "Philip.Kershaw@stfc.ac.uk" 9 __revision__ = "$Id $"9 __revision__ = "$Id: $" 10 10 __license__ = "BSD - see LICENSE file in top-levle directory" 11 11 import logging -
TI12-security/trunk/python/ndg_security_server/ndg/security/server/wsgi/soap.py
r5678 r6069 9 9 __contact__ = "Philip.Kershaw@stfc.ac.uk" 10 10 __license__ = "BSD - see LICENSE file in top-level directory" 11 __revision__ = "$Id $"11 __revision__ = "$Id: $" 12 12 import logging 13 13 log = logging.getLogger(__name__) -
TI12-security/trunk/python/ndg_security_server/ndg/security/server/wsgi/ssl.py
r5864 r6069 12 12 __copyright__ = "(C) 2009 Science and Technology Facilities Council" 13 13 __contact__ = "Philip.Kershaw@stfc.ac.uk" 14 __revision__ = "$Id $"14 __revision__ = "$Id: $" 15 15 __license__ = "BSD - see top-level directory for LICENSE file" 16 16 import logging -
TI12-security/trunk/python/ndg_security_server/ndg/security/server/wsgi/utils/__init__.py
r4840 r6069 8 8 __license__ = "BSD - see LICENSE file in top-level directory" 9 9 __contact__ = "Philip.Kershaw@stfc.ac.uk" 10 __revision__ = '$Id $'10 __revision__ = '$Id: $' -
TI12-security/trunk/python/ndg_security_server/ndg/security/server/wsgi/utils/attributeauthorityclient.py
r5181 r6069 11 11 __contact__ = "Philip.Kershaw@stfc.ac.uk" 12 12 __license__ = "BSD - see LICENSE file in top-level directory" 13 __revision__ = "$Id $"13 __revision__ = "$Id: $" 14 14 import logging 15 15 log = logging.getLogger(__name__) -
TI12-security/trunk/python/ndg_security_server/ndg/security/server/wsgi/utils/clientbase.py
r5181 r6069 10 10 __license__ = "BSD - see LICENSE file in top-level directory" 11 11 __contact__ = "Philip.Kershaw@stfc.ac.uk" 12 __revision__ = "$Id $"12 __revision__ = "$Id: $" 13 13 import logging 14 14 log = logging.getLogger(__name__) -
TI12-security/trunk/python/ndg_security_server/ndg/security/server/wsgi/utils/sessionmanagerclient.py
r5182 r6069 10 10 __license__ = "BSD - see LICENSE file in top-level directory" 11 11 __contact__ = "Philip.Kershaw@stfc.ac.uk" 12 __revision__ = "$Id $"12 __revision__ = "$Id: $" 13 13 import logging 14 14 log = logging.getLogger(__name__) -
TI12-security/trunk/python/ndg_security_server/ndg/security/server/wsgi/wssecurity.py
r5678 r6069 9 9 __license__ = "BSD - see LICENSE file in top-level directory" 10 10 __contact__ = "Philip.Kershaw@stfc.ac.uk" 11 __revision__ = '$Id $'11 __revision__ = '$Id: $' 12 12 13 13 import logging -
TI12-security/trunk/python/ndg_security_server/ndg/security/server/wsgi/zsi.py
r5705 r6069 9 9 __contact__ = "Philip.Kershaw@stfc.ac.uk" 10 10 __license__ = "BSD - see LICENSE file in top-level directory" 11 __revision__ = "$Id $"11 __revision__ = "$Id: $" 12 12 import logging 13 13 log = logging.getLogger(__name__) -
TI12-security/trunk/python/ndg_security_server/ndg/security/server/zsi/__init__.py
r4840 r6069 7 7 __license__ = "BSD - see LICENSE file in top-level directory" 8 8 __contact__ = "Philip.Kershaw@stfc.ac.uk" 9 __revision__ = '$Id $'9 __revision__ = '$Id: $' -
TI12-security/trunk/python/ndg_security_server/ndg/security/server/zsi/attributeauthority/__init__.py
r5738 r6069 7 7 __license__ = "BSD - see LICENSE file in top-level directory" 8 8 __contact__ = "Philip.Kershaw@stfc.ac.uk" 9 __revision__ = '$Id $'9 __revision__ = '$Id: $' 10 10 import os 11 11 import sys -
TI12-security/trunk/python/ndg_security_server/ndg/security/server/zsi/sessionmanager/__init__.py
r5063 r6069 7 7 __license__ = "BSD - see LICENSE file in top-level directory" 8 8 __contact__ = "Philip.Kershaw@stfc.ac.uk" 9 __revision__ = '$Id $'9 __revision__ = '$Id: $' 10 10 import os, sys 11 11 import base64 -
TI12-security/trunk/python/ndg_security_server/ndg/security/server/zsi/twisted/__init__.py
r4840 r6069 10 10 __license__ = "BSD - see LICENSE file in top-level directory" 11 11 __contact__ = "Philip.Kershaw@stfc.ac.uk" 12 __revision__ = '$Id $'12 __revision__ = '$Id: $' 13 13 14 14 """WS-Security digital signature handler for Twisted framework -
TI12-security/trunk/python/ndg_security_server/ndg/security/server/zsi/twisted/attributeauthority/__init__.py
r4840 r6069 11 11 __license__ = "BSD - see LICENSE file in top-level directory" 12 12 __contact__ = "Philip.Kershaw@stfc.ac.uk" 13 __revision__ = '$Id $'13 __revision__ = '$Id: $' -
TI12-security/trunk/python/ndg_security_server/ndg/security/server/zsi/twisted/sessionmanager/__init__.py
r4840 r6069 11 11 __license__ = "BSD - see LICENSE file in top-level directory" 12 12 __contact__ = "Philip.Kershaw@stfc.ac.uk" 13 __revision__ = '$Id $'13 __revision__ = '$Id: $' -
TI12-security/trunk/python/ndg_security_server/setup.cfg
r6009 r6069 15 15 16 16 [egg_info] 17 tag_build = 17 tag_build = rc1 18 18 tag_svn_revision = true 19 19 -
TI12-security/trunk/python/ndg_security_test/ndg/security/test/config/attributeauthority/sitea/siteAServerApp.py
r5738 r6069 9 9 __copyright__ = "(C) 2009 Science and Technology Facilities Council" 10 10 __contact__ = "Philip.Kershaw@stfc.ac.uk" 11 __revision__ = "$Id $"11 __revision__ = "$Id: $" 12 12 import os 13 13 from os.path import dirname, abspath, join -
TI12-security/trunk/python/ndg_security_test/ndg/security/test/config/attributeauthority/siteb/siteBServerApp.py
r5739 r6069 9 9 __copyright__ = "(C) 2009 Science and Technology Facilities Council" 10 10 __contact__ = "Philip.Kershaw@stfc.ac.uk" 11 __revision__ = "$Id $"11 __revision__ = "$Id: $" 12 12 import os 13 13 from os.path import dirname, abspath, join -
TI12-security/trunk/python/ndg_security_test/ndg/security/test/config/sessionmanager/sessionManagerServerApp.py
r5739 r6069 9 9 __copyright__ = "(C) 2009 Science and Technology Facilities Council" 10 10 __contact__ = "Philip.Kershaw@stfc.ac.uk" 11 __revision__ = "$Id $"11 __revision__ = "$Id: $" 12 12 import os 13 13 from os.path import dirname, abspath, join -
TI12-security/trunk/python/ndg_security_test/ndg/security/test/integration/__init__.py
r5655 r6069 8 8 __license__ = "BSD - see top-level directory for LICENSE file" 9 9 __contact__ = "Philip.Kershaw@stfc.ac.uk" 10 __revision__ = "$Id $"10 __revision__ = "$Id: $" 11 11 12 12 class AuthZTestApp(object): -
TI12-security/trunk/python/ndg_security_test/ndg/security/test/integration/authz/__init__.py
r4909 r6069 8 8 __license__ = "BSD - see top-level directory for LICENSE file" 9 9 __contact__ = "Philip.Kershaw@stfc.ac.uk" 10 __revision__ = "$Id $"10 __revision__ = "$Id: $" -
TI12-security/trunk/python/ndg_security_test/ndg/security/test/integration/authz/attributeinterface.py
r5454 r6069 13 13 __license__ = "BSD - see LICENSE file in top-level directory" 14 14 __contact__ = "Philip.Kershaw@stfc.ac.uk" 15 __revision__ = '$Id $'15 __revision__ = '$Id: $' 16 16 from ndg.security.server.attributeauthority import AttributeInterface 17 17 -
TI12-security/trunk/python/ndg_security_test/ndg/security/test/integration/authz/openidrelyingparty/templates/__init__.py
r4909 r6069 8 8 __copyright__ = "(C) 2009 Science and Technology Facilities Council" 9 9 __contact__ = "Philip.Kershaw@stfc.ac.uk" 10 __revision__ = "$Id $"10 __revision__ = "$Id: $" 11 11 __license__ = "BSD - see LICENSE file in top-level directory" -
TI12-security/trunk/python/ndg_security_test/ndg/security/test/integration/authz/securedapp.py
r5739 r6069 10 10 __license__ = "BSD - See top-level directory for LICENSE file" 11 11 __contact__ = "Philip.Kershaw@stfc.ac.uk" 12 __revision__ = "$Id $"12 __revision__ = "$Id: $" 13 13 14 14 -
TI12-security/trunk/python/ndg_security_test/ndg/security/test/integration/authz/securityservicesapp.py
r5739 r6069 9 9 __copyright__ = "(C) 2009 Science and Technology Facilities Council" 10 10 __contact__ = "Philip.Kershaw@stfc.ac.uk" 11 __revision__ = "$Id $"11 __revision__ = "$Id: $" 12 12 import os 13 13 from os.path import dirname, abspath, join -
TI12-security/trunk/python/ndg_security_test/ndg/security/test/integration/authz_lite/__init__.py
r5447 r6069 8 8 __license__ = "BSD - see top-level directory for LICENSE file" 9 9 __contact__ = "Philip.Kershaw@stfc.ac.uk" 10 __revision__ = "$Id $"10 __revision__ = "$Id: $" -
TI12-security/trunk/python/ndg_security_test/ndg/security/test/integration/authz_lite/attributeinterface.py
r5771 r6069 13 13 __license__ = "BSD - see LICENSE file in top-level directory" 14 14 __contact__ = "Philip.Kershaw@stfc.ac.uk" 15 __revision__ = '$Id $'15 __revision__ = '$Id: $' 16 16 from ndg.security.server.attributeauthority import AttributeInterface 17 17 -
TI12-security/trunk/python/ndg_security_test/ndg/security/test/integration/authz_lite/openidrelyingparty/templates/__init__.py
r5447 r6069 8 8 __copyright__ = "(C) 2009 Science and Technology Facilities Council" 9 9 __contact__ = "Philip.Kershaw@stfc.ac.uk" 10 __revision__ = "$Id $"10 __revision__ = "$Id: $" 11 11 __license__ = "BSD - see LICENSE file in top-level directory" -
TI12-security/trunk/python/ndg_security_test/ndg/security/test/integration/authz_lite/securedapp.py
r5739 r6069 10 10 __license__ = "BSD - See top-level directory for LICENSE file" 11 11 __contact__ = "Philip.Kershaw@stfc.ac.uk" 12 __revision__ = "$Id $"12 __revision__ = "$Id: $" 13 13 14 14 -
TI12-security/trunk/python/ndg_security_test/ndg/security/test/integration/authz_lite/securityservicesapp.py
r6067 r6069 9 9 __copyright__ = "(C) 2009 Science and Technology Facilities Council" 10 10 __contact__ = "Philip.Kershaw@stfc.ac.uk" 11 __revision__ = "$Id $"11 __revision__ = "$Id: $" 12 12 import os 13 13 from os.path import dirname, abspath, join -
TI12-security/trunk/python/ndg_security_test/ndg/security/test/integration/combinedservices/serverapp.py
r5290 r6069 10 10 __copyright__ = "(C) 2009 Science and Technology Facilities Council" 11 11 __contact__ = "Philip.Kershaw@stfc.ac.uk" 12 __revision__ = "$Id $"12 __revision__ = "$Id: $" 13 13 import os 14 14 from os.path import dirname, abspath, join -
TI12-security/trunk/python/ndg_security_test/ndg/security/test/integration/openid/__init__.py
r5046 r6069 8 8 __license__ = "BSD - see top-level directory for LICENSE file" 9 9 __contact__ = "Philip.Kershaw@stfc.ac.uk" 10 __revision__ = "$Id $"10 __revision__ = "$Id: $" -
TI12-security/trunk/python/ndg_security_test/ndg/security/test/integration/openid/openidrelyingparty/templates/__init__.py
r5046 r6069 8 8 __copyright__ = "(C) 2009 Science and Technology Facilities Council" 9 9 __contact__ = "Philip.Kershaw@stfc.ac.uk" 10 __revision__ = "$Id $"10 __revision__ = "$Id: $" 11 11 __license__ = "BSD - see LICENSE file in top-level directory" -
TI12-security/trunk/python/ndg_security_test/ndg/security/test/integration/openid/securedapp.py
r5739 r6069 10 10 __license__ = "BSD - See top-level directory for LICENSE file." 11 11 __contact__ = "Philip.Kershaw@stfc.ac.uk" 12 __revision__ = "$Id $"12 __revision__ = "$Id: $" 13 13 14 14 class TestOpenIDMiddleware(object): -
TI12-security/trunk/python/ndg_security_test/ndg/security/test/integration/openid/securityservicesapp.py
r5739 r6069 10 10 __license__ = "BSD - See top-level directory for LICENSE file." 11 11 __contact__ = "Philip.Kershaw@stfc.ac.uk" 12 __revision__ = "$Id $"12 __revision__ = "$Id: $" 13 13 import os 14 14 from os.path import dirname, abspath, join -
TI12-security/trunk/python/ndg_security_test/ndg/security/test/integration/openidprovider/__init__.py
r5067 r6069 8 8 __license__ = "BSD - see top-level directory for LICENSE file" 9 9 __contact__ = "Philip.Kershaw@stfc.ac.uk" 10 __revision__ = "$Id $"10 __revision__ = "$Id: $" -
TI12-security/trunk/python/ndg_security_test/ndg/security/test/integration/openidprovider/securityservicesapp.py
r5739 r6069 10 10 __license__ = "BSD - See top-level directory for LICENSE file." 11 11 __contact__ = "Philip.Kershaw@stfc.ac.uk" 12 __revision__ = "$Id $"12 __revision__ = "$Id: $" 13 13 import os 14 14 from os.path import dirname, abspath, join -
TI12-security/trunk/python/ndg_security_test/ndg/security/test/integration/openidrelyingparty/__init__.py
r5038 r6069 8 8 __license__ = "BSD - see top-level directory for LICENSE file" 9 9 __contact__ = "Philip.Kershaw@stfc.ac.uk" 10 __revision__ = "$Id $"10 __revision__ = "$Id: $" -
TI12-security/trunk/python/ndg_security_test/ndg/security/test/integration/openidrelyingparty/openidrelyingparty/templates/__init__.py
r5038 r6069 8 8 __copyright__ = "(C) 2009 Science and Technology Facilities Council" 9 9 __contact__ = "Philip.Kershaw@stfc.ac.uk" 10 __revision__ = "$Id $"10 __revision__ = "$Id: $" 11 11 __license__ = "BSD - see LICENSE file in top-level directory" -
TI12-security/trunk/python/ndg_security_test/ndg/security/test/integration/openidrelyingparty/securityservicesapp.py
r5739 r6069 9 9 __copyright__ = "(C) 2009 Science and Technology Facilities Council" 10 10 __contact__ = "Philip.Kershaw@stfc.ac.uk" 11 __revision__ = "$Id $"11 __revision__ = "$Id: $" 12 12 import os 13 13 from os.path import dirname, abspath, join -
TI12-security/trunk/python/ndg_security_test/ndg/security/test/integration/openidrelyingparty_withapp/__init__.py
r5541 r6069 8 8 __license__ = "BSD - see top-level directory for LICENSE file" 9 9 __contact__ = "Philip.Kershaw@stfc.ac.uk" 10 __revision__ = "$Id $"10 __revision__ = "$Id: $" -
TI12-security/trunk/python/ndg_security_test/ndg/security/test/integration/openidrelyingparty_withapp/attributeinterface.py
r5541 r6069 13 13 __license__ = "BSD - see LICENSE file in top-level directory" 14 14 __contact__ = "Philip.Kershaw@stfc.ac.uk" 15 __revision__ = '$Id $'15 __revision__ = '$Id: $' 16 16 from ndg.security.server.attributeauthority import AttributeInterface 17 17 -
TI12-security/trunk/python/ndg_security_test/ndg/security/test/integration/openidrelyingparty_withapp/openidrelyingparty/templates/__init__.py
r5541 r6069 8 8 __copyright__ = "(C) 2009 Science and Technology Facilities Council" 9 9 __contact__ = "Philip.Kershaw@stfc.ac.uk" 10 __revision__ = "$Id $"10 __revision__ = "$Id: $" 11 11 __license__ = "BSD - see LICENSE file in top-level directory" -
TI12-security/trunk/python/ndg_security_test/ndg/security/test/integration/openidrelyingparty_withapp/securedapp.py
r5739 r6069 10 10 __license__ = "BSD - See top-level directory for LICENSE file" 11 11 __contact__ = "Philip.Kershaw@stfc.ac.uk" 12 __revision__ = "$Id $"12 __revision__ = "$Id: $" 13 13 14 14 -
TI12-security/trunk/python/ndg_security_test/ndg/security/test/integration/openidrelyingparty_withapp/securityservicesapp.py
r5739 r6069 9 9 __copyright__ = "(C) 2009 Science and Technology Facilities Council" 10 10 __contact__ = "Philip.Kershaw@stfc.ac.uk" 11 __revision__ = "$Id $"11 __revision__ = "$Id: $" 12 12 import os 13 13 from os.path import dirname, abspath, join -
TI12-security/trunk/python/ndg_security_test/ndg/security/test/unit/attributeauthority/test_attributeauthority.py
r6062 r6069 9 9 __license__ = "BSD - see LICENSE file in top-level directory" 10 10 __contact__ = "Philip.Kershaw@stfc.ac.uk" 11 __revision__ = '$Id $'11 __revision__ = '$Id: $' 12 12 13 13 import unittest -
TI12-security/trunk/python/ndg_security_test/ndg/security/test/unit/authz/msi/__init__.py
r6022 r6069 8 8 __license__ = "BSD - see LICENSE file in top-level directory" 9 9 __contact__ = "Philip.Kershaw@stfc.ac.uk" 10 __revision__ = '$Id $'10 __revision__ = '$Id: $' -
TI12-security/trunk/python/ndg_security_test/ndg/security/test/unit/authz/msi/test_msi.py
r6044 r6069 8 8 __license__ = "BSD - see LICENSE file in top-level directory" 9 9 __contact__ = "Philip.Kershaw@stfc.ac.uk" 10 __revision__ = '$Id $'10 __revision__ = '$Id: $' 11 11 from os import path 12 12 from ndg.security.test.unit import BaseTestCase -
TI12-security/trunk/python/ndg_security_test/ndg/security/test/unit/authz/pdp/__init__.py
r6033 r6069 8 8 __license__ = "BSD - see LICENSE file in top-level directory" 9 9 __contact__ = "Philip.Kershaw@stfc.ac.uk" 10 __revision__ = '$Id $'10 __revision__ = '$Id: $' -
TI12-security/trunk/python/ndg_security_test/ndg/security/test/unit/authz/pdp/browse/testBrowse.py
r4840 r6069 10 10 __license__ = "BSD - see LICENSE file in top-level directory" 11 11 __contact__ = "Philip.Kershaw@stfc.ac.uk" 12 __revision__ = '$Id $'12 __revision__ = '$Id: $' 13 13 14 14 import unittest -
TI12-security/trunk/python/ndg_security_test/ndg/security/test/unit/authz/pdp/test_proftp_pdp.py
r4840 r6069 11 11 __license__ = "BSD - see LICENSE file in top-level directory" 12 12 __contact__ = "Philip.Kershaw@stfc.ac.uk" 13 __revision__ = '$Id $'13 __revision__ = '$Id: $' 14 14 15 15 import unittest -
TI12-security/trunk/python/ndg_security_test/ndg/security/test/unit/configfileparsers/__init__.py
r4840 r6069 8 8 __license__ = "BSD - see LICENSE file in top-level directory" 9 9 __contact__ = "Philip.Kershaw@stfc.ac.uk" 10 __revision__ = '$Id $'10 __revision__ = '$Id: $' -
TI12-security/trunk/python/ndg_security_test/ndg/security/test/unit/configfileparsers/test_configfileparsers.py
r4840 r6069 9 9 __license__ = "BSD - see LICENSE file in top-level directory" 10 10 __contact__ = "Philip.Kershaw@stfc.ac.uk" 11 __revision__ = '$Id $'11 __revision__ = '$Id: $' 12 12 13 13 import unittest -
TI12-security/trunk/python/ndg_security_test/ndg/security/test/unit/credentialwallet/__init__.py
r4840 r6069 8 8 __license__ = "BSD - see LICENSE file in top-level directory" 9 9 __contact__ = "Philip.Kershaw@stfc.ac.uk" 10 __revision__ = '$Id $'10 __revision__ = '$Id: $' -
TI12-security/trunk/python/ndg_security_test/ndg/security/test/unit/credentialwallet/test_credentialwallet.py
r6063 r6069 9 9 __license__ = "BSD - see LICENSE file in top-level directory" 10 10 __contact__ = "Philip.Kershaw@stfc.ac.uk" 11 __revision__ = '$Id $'11 __revision__ = '$Id: $' 12 12 13 13 import unittest -
TI12-security/trunk/python/ndg_security_test/ndg/security/test/unit/myproxy/certificate_extapp/__init__.py
r6033 r6069 8 8 __license__ = "BSD - see LICENSE file in top-level directory" 9 9 __contact__ = "Philip.Kershaw@stfc.ac.uk" 10 __revision__ = '$Id $'10 __revision__ = '$Id: $' -
TI12-security/trunk/python/ndg_security_test/ndg/security/test/unit/nosetests.py
r5774 r6069 11 11 __license__ = "BSD - see top level directory for license file" 12 12 __contact__ = "Philip.Kershaw@stfc.ac.uk" 13 __revision__ = "$Id $"13 __revision__ = "$Id: $" 14 14 ''' 15 15 import nose -
TI12-security/trunk/python/ndg_security_test/ndg/security/test/unit/openid/__init__.py
r5491 r6069 8 8 __license__ = "BSD - see LICENSE file in top-level directory" 9 9 __contact__ = "Philip.Kershaw@stfc.ac.uk" 10 __revision__ = '$Id $'10 __revision__ = '$Id: $' -
TI12-security/trunk/python/ndg_security_test/ndg/security/test/unit/openid/provider/__init__.py
r6008 r6069 8 8 __license__ = "BSD - see LICENSE file in top-level directory" 9 9 __contact__ = "Philip.Kershaw@stfc.ac.uk" 10 __revision__ = '$Id $'10 __revision__ = '$Id: $' -
TI12-security/trunk/python/ndg_security_test/ndg/security/test/unit/openid/provider/authninterface/__init__.py
r6008 r6069 8 8 __license__ = "BSD - see LICENSE file in top-level directory" 9 9 __contact__ = "Philip.Kershaw@stfc.ac.uk" 10 __revision__ = '$Id $'10 __revision__ = '$Id: $' -
TI12-security/trunk/python/ndg_security_test/ndg/security/test/unit/openid/provider/authninterface/test_authninterface.py
r6009 r6069 8 8 __license__ = "BSD - see LICENSE file in top-level directory" 9 9 __contact__ = "Philip.Kershaw@stfc.ac.uk" 10 __revision__ = '$Id $'10 __revision__ = '$Id: $' 11 11 from os import path 12 12 import unittest -
TI12-security/trunk/python/ndg_security_test/ndg/security/test/unit/openid/provider/axinterface/__init__.py
r6008 r6069 8 8 __license__ = "BSD - see LICENSE file in top-level directory" 9 9 __contact__ = "Philip.Kershaw@stfc.ac.uk" 10 __revision__ = '$Id $'10 __revision__ = '$Id: $' -
TI12-security/trunk/python/ndg_security_test/ndg/security/test/unit/openid/provider/axinterface/test_axinterface.py
r6067 r6069 8 8 __license__ = "BSD - see LICENSE file in top-level directory" 9 9 __contact__ = "Philip.Kershaw@stfc.ac.uk" 10 __revision__ = '$Id $'10 __revision__ = '$Id: $' 11 11 from os import path 12 12 -
TI12-security/trunk/python/ndg_security_test/ndg/security/test/unit/openid/relyingparty/__init__.py
r5491 r6069 8 8 __license__ = "BSD - see LICENSE file in top-level directory" 9 9 __contact__ = "Philip.Kershaw@stfc.ac.uk" 10 __revision__ = '$Id $'10 __revision__ = '$Id: $' -
TI12-security/trunk/python/ndg_security_test/ndg/security/test/unit/openid/relyingparty/validation/__init__.py
r5491 r6069 8 8 __license__ = "BSD - see LICENSE file in top-level directory" 9 9 __contact__ = "Philip.Kershaw@stfc.ac.uk" 10 __revision__ = '$Id $'10 __revision__ = '$Id: $' -
TI12-security/trunk/python/ndg_security_test/ndg/security/test/unit/openid/relyingparty/validation/test_validation.py
r5828 r6069 8 8 __license__ = "BSD - see LICENSE file in top-level directory" 9 9 __contact__ = "Philip.Kershaw@stfc.ac.uk" 10 __revision__ = '$Id $'10 __revision__ = '$Id: $' 11 11 import logging 12 12 logging.basicConfig(level=logging.DEBUG) -
TI12-security/trunk/python/ndg_security_test/ndg/security/test/unit/saml/test_samlinterface.py
r6039 r6069 8 8 __license__ = "BSD - see LICENSE file in top-level directory" 9 9 __contact__ = "Philip.Kershaw@stfc.ac.uk" 10 __revision__ = '$Id $'10 __revision__ = '$Id: $' 11 11 import logging 12 12 logging.basicConfig(level=logging.DEBUG) -
TI12-security/trunk/python/ndg_security_test/ndg/security/test/unit/sessionmanager/test_sessionmanager.py
r5779 r6069 11 11 __license__ = "BSD - see LICENSE file in top-level directory" 12 12 __contact__ = "Philip.Kershaw@stfc.ac.uk" 13 __revision__ = '$Id $'13 __revision__ = '$Id: $' 14 14 import logging 15 15 logging.basicConfig(level=logging.DEBUG) -
TI12-security/trunk/python/ndg_security_test/ndg/security/test/unit/soap/__init__.py
r5526 r6069 9 9 __license__ = "BSD - see LICENSE file in top-level directory" 10 10 __contact__ = "Philip.Kershaw@stfc.ac.uk" 11 __revision__ = "$Id $"11 __revision__ = "$Id: $" -
TI12-security/trunk/python/ndg_security_test/ndg/security/test/unit/soap/soap_server.py
r5527 r6069 9 9 __license__ = "BSD - see LICENSE file in top-level directory" 10 10 __contact__ = "Philip.Kershaw@stfc.ac.uk" 11 __revision__ = "$Id $"11 __revision__ = "$Id: $" 12 12 from ndg.security.test.unit.soap.test_soap import SOAPBindingMiddleware 13 13 from paste.httpserver import serve -
TI12-security/trunk/python/ndg_security_test/ndg/security/test/unit/soap/test_soap.py
r5838 r6069 10 10 __license__ = "BSD - see LICENSE file in top-level directory" 11 11 __contact__ = "Philip.Kershaw@stfc.ac.uk" 12 __revision__ = "$Id $"12 __revision__ = "$Id: $" 13 13 import logging 14 14 logging.basicConfig(level=logging.DEBUG) -
TI12-security/trunk/python/ndg_security_test/ndg/security/test/unit/sslclientauthnmiddleware/test_sslclientauthn.py
r5290 r6069 9 9 __license__ = "BSD - see LICENSE file in top-level directory" 10 10 __contact__ = "Philip.Kershaw@stfc.ac.uk" 11 __revision__ = '$Id $'11 __revision__ = '$Id: $' 12 12 import logging 13 13 logging.basicConfig(level=logging.DEBUG) -
TI12-security/trunk/python/ndg_security_test/ndg/security/test/unit/wsgi/__init__.py
r6040 r6069 8 8 __license__ = "BSD - see LICENSE file in top-level directory" 9 9 __contact__ = "Philip.Kershaw@stfc.ac.uk" 10 __revision__ = '$Id $'10 __revision__ = '$Id: $' 11 11 12 12 import paste.httpserver -
TI12-security/trunk/python/ndg_security_test/ndg/security/test/unit/wsgi/attributeauthority/test_attributeauthority.py
r5644 r6069 8 8 __contact__ = "Philip.Kershaw@stfc.ac.uk" 9 9 __license__ = "BSD - see LICENSE file in top-level directory" 10 __revision__ = "$Id $"10 __revision__ = "$Id: $" 11 11 import logging 12 12 log = logging.getLogger(__name__) -
TI12-security/trunk/python/ndg_security_test/ndg/security/test/unit/wsgi/authn/__init__.py
r5015 r6069 8 8 __license__ = "BSD - see LICENSE file in top-level directory" 9 9 __contact__ = "Philip.Kershaw@stfc.ac.uk" 10 __revision__ = '$Id $'10 __revision__ = '$Id: $' -
TI12-security/trunk/python/ndg_security_test/ndg/security/test/unit/wsgi/authn/test_authn.py
r5779 r6069 9 9 __license__ = "BSD - see LICENSE file in top-level directory" 10 10 __contact__ = "Philip.Kershaw@stfc.ac.uk" 11 __revision__ = '$Id $'11 __revision__ = '$Id: $' 12 12 import logging 13 13 -
TI12-security/trunk/python/ndg_security_test/ndg/security/test/unit/wsgi/authn/test_httpbasicauth.py
r5843 r6069 9 9 __license__ = "BSD - see LICENSE file in top-level directory" 10 10 __contact__ = "Philip.Kershaw@stfc.ac.uk" 11 __revision__ = '$Id $'11 __revision__ = '$Id: $' 12 12 import logging 13 13 logging.basicConfig(level=logging.DEBUG) -
TI12-security/trunk/python/ndg_security_test/ndg/security/test/unit/wsgi/authz/__init__.py
r5329 r6069 8 8 __license__ = "BSD - see LICENSE file in top-level directory" 9 9 __contact__ = "Philip.Kershaw@stfc.ac.uk" 10 __revision__ = '$Id $'10 __revision__ = '$Id: $' -
TI12-security/trunk/python/ndg_security_test/ndg/security/test/unit/wsgi/authz/test_authz.py
r6062 r6069 9 9 __license__ = "BSD - see LICENSE file in top-level directory" 10 10 __contact__ = "Philip.Kershaw@stfc.ac.uk" 11 __revision__ = '$Id $'11 __revision__ = '$Id: $' 12 12 import logging 13 13 -
TI12-security/trunk/python/ndg_security_test/ndg/security/test/unit/wsgi/myproxy/__init__.py
r5843 r6069 8 8 __license__ = "BSD - see LICENSE file in top-level directory" 9 9 __contact__ = "Philip.Kershaw@stfc.ac.uk" 10 __revision__ = '$Id $'10 __revision__ = '$Id: $' -
TI12-security/trunk/python/ndg_security_test/ndg/security/test/unit/wsgi/myproxy/test_myproxy.py
r5843 r6069 9 9 __license__ = "BSD - see LICENSE file in top-level directory" 10 10 __contact__ = "Philip.Kershaw@stfc.ac.uk" 11 __revision__ = '$Id $'11 __revision__ = '$Id: $' 12 12 import logging 13 13 logging.basicConfig(level=logging.DEBUG) -
TI12-security/trunk/python/ndg_security_test/ndg/security/test/unit/wsgi/saml/__init__.py
r5656 r6069 8 8 __license__ = "BSD - see LICENSE file in top-level directory" 9 9 __contact__ = "Philip.Kershaw@stfc.ac.uk" 10 __revision__ = '$Id $'10 __revision__ = '$Id: $' -
TI12-security/trunk/python/ndg_security_test/ndg/security/test/unit/wsgi/saml/test_soapattributeinterface.py
r6034 r6069 9 9 __license__ = "BSD - see LICENSE file in top-level directory" 10 10 __contact__ = "Philip.Kershaw@stfc.ac.uk" 11 __revision__ = '$Id $'11 __revision__ = '$Id: $' 12 12 import unittest 13 13 import os -
TI12-security/trunk/python/ndg_security_test/ndg/security/test/unit/wsgi/ssl/test_ssl.py
r5757 r6069 9 9 __license__ = "BSD - see LICENSE file in top-level directory" 10 10 __contact__ = "Philip.Kershaw@stfc.ac.uk" 11 __revision__ = '$Id $'11 __revision__ = '$Id: $' 12 12 import logging 13 13 -
TI12-security/trunk/python/ndg_security_test/ndg/security/test/unit/wssecurity/__init__.py
r4840 r6069 8 8 __license__ = "BSD - see LICENSE file in top-level directory" 9 9 __contact__ = "Philip.Kershaw@stfc.ac.uk" 10 __revision__ = '$Id $'10 __revision__ = '$Id: $' -
TI12-security/trunk/python/ndg_security_test/ndg/security/test/unit/wssecurity/dom/client/__init__.py
r5054 r6069 8 8 __license__ = "BSD - see LICENSE file in top-level directory" 9 9 __contact__ = "Philip.Kershaw@stfc.ac.uk" 10 __revision__ = '$Id $'10 __revision__ = '$Id: $' -
TI12-security/trunk/python/ndg_security_test/ndg/security/test/unit/wssecurity/dom/client/test_echoclient.py
r5441 r6069 9 9 __license__ = "BSD - see LICENSE file in top-level directory" 10 10 __contact__ = "Philip.Kershaw@stfc.ac.uk" 11 __revision__ = '$Id $'11 __revision__ = '$Id: $' 12 12 import logging 13 13 logging.basicConfig(level=logging.DEBUG) -
TI12-security/trunk/python/ndg_security_test/ndg/security/test/unit/wssecurity/dom/server/__init__.py
r5054 r6069 8 8 __license__ = "BSD - see LICENSE file in top-level directory" 9 9 __contact__ = "Philip.Kershaw@stfc.ac.uk" 10 __revision__ = '$Id $'10 __revision__ = '$Id: $' -
TI12-security/trunk/python/ndg_security_test/ndg/security/test/unit/wssecurity/foursuite/client/__init__.py
r5053 r6069 8 8 __license__ = "BSD - see LICENSE file in top-level directory" 9 9 __contact__ = "Philip.Kershaw@stfc.ac.uk" 10 __revision__ = '$Id $'10 __revision__ = '$Id: $' -
TI12-security/trunk/python/ndg_security_test/ndg/security/test/unit/wssecurity/foursuite/client/test_echoclient.py
r5441 r6069 9 9 __license__ = "BSD - see LICENSE file in top-level directory" 10 10 __contact__ = "Philip.Kershaw@stfc.ac.uk" 11 __revision__ = '$Id $'11 __revision__ = '$Id: $' 12 12 import logging 13 13 logging.basicConfig(level=logging.DEBUG) -
TI12-security/trunk/python/ndg_security_test/ndg/security/test/unit/wssecurity/foursuite/server/__init__.py
r5053 r6069 8 8 __license__ = "BSD - see LICENSE file in top-level directory" 9 9 __contact__ = "Philip.Kershaw@stfc.ac.uk" 10 __revision__ = '$Id $'10 __revision__ = '$Id: $' -
TI12-security/trunk/python/ndg_security_test/ndg/security/test/unit/x509/__init__.py
r4840 r6069 8 8 __license__ = "BSD - see LICENSE file in top-level directory" 9 9 __contact__ = "Philip.Kershaw@stfc.ac.uk" 10 __revision__ = '$Id $'10 __revision__ = '$Id: $' -
TI12-security/trunk/python/ndg_security_test/ndg/security/test/unit/xacml/test_xacml.py
r5712 r6069 9 9 __license__ = "BSD - see LICENSE file in top-level directory" 10 10 __contact__ = "Philip.Kershaw@stfc.ac.uk" 11 __revision__ = '$Id $'11 __revision__ = '$Id: $' 12 12 import logging 13 13 -
TI12-security/trunk/python/ndg_security_test/ndg/security/test/unit/xmlsec/__init__.py
r4840 r6069 9 9 __license__ = "BSD - see LICENSE file in top-level directory" 10 10 __contact__ = "Philip.Kershaw@stfc.ac.uk" 11 __revision__ = '$Id $'11 __revision__ = '$Id: $' -
TI12-security/trunk/python/ndg_security_test/ndg/security/test/unit/xmlsec/dom/__init__.py
r4840 r6069 12 12 __license__ = "BSD - see LICENSE file in top-level directory" 13 13 __contact__ = "Philip.Kershaw@stfc.ac.uk" 14 __revision__ = '$Id $'14 __revision__ = '$Id: $' -
TI12-security/trunk/python/ndg_security_test/ndg/security/test/unit/xmlsec/etree/test_etree.py
r5290 r6069 9 9 __license__ = "BSD - see LICENSE file in top-level directory" 10 10 __contact__ = "Philip.Kershaw@stfc.ac.uk" 11 __revision__ = '$Id $'11 __revision__ = '$Id: $' 12 12 import logging 13 13 logging.basicConfig(level=logging.DEBUG) -
TI12-security/trunk/python/ndg_security_test/setup.cfg
r6009 r6069 9 9 # BSD - See LICENCE file for details 10 10 [egg_info] 11 tag_build = 11 tag_build = rc1 12 12 tag_svn_revision = true 13 13 -
TI12-security/trunk/python/nosetests.py
r5779 r6069 11 11 __license__ = "BSD - see top level directory for license file" 12 12 __contact__ = "Philip.Kershaw@stfc.ac.uk" 13 __revision__ = "$Id $"13 __revision__ = "$Id: $" 14 14 ''' 15 15 import nose
Note: See TracChangeset
for help on using the changeset viewer.