Changeset 7130
- Timestamp:
- 30/06/10 14:33:07 (11 years ago)
- Location:
- TI12-security/trunk/ndg_saml
- Files:
-
- 7 added
- 26 edited
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
TI12-security/trunk/ndg_saml/LICENSE
- Property svn:keywords set to Id
-
TI12-security/trunk/ndg_saml/ez_setup.py
- Property svn:keywords set to Id
-
TI12-security/trunk/ndg_saml/ndg/__init__.py
- Property svn:keywords set to Id
r6900 r7130 16 16 __license__ = "http://www.apache.org/licenses/LICENSE-2.0" 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/ndg_saml/ndg/saml/__init__.py
- Property svn:keywords set to Id
-
TI12-security/trunk/ndg_saml/ndg/saml/common/__init__.py
- Property svn:keywords set to Id
-
TI12-security/trunk/ndg_saml/ndg/saml/common/xml.py
- Property svn:keywords set to Id
r7129 r7130 28 28 __license__ = "http://www.apache.org/licenses/LICENSE-2.0" 29 29 __contact__ = "Philip.Kershaw@stfc.ac.uk" 30 __revision__ = "$Id :$"30 __revision__ = "$Id$" 31 31 from ndg.saml.xml import XMLConstants 32 32 -
TI12-security/trunk/ndg_saml/ndg/saml/saml2/__init__.py
- Property svn:keywords set to Id
-
TI12-security/trunk/ndg_saml/ndg/saml/saml2/binding/__init__.py
- Property svn:keywords set to Id
-
TI12-security/trunk/ndg_saml/ndg/saml/saml2/binding/soap/__init__.py
- Property svn:keywords set to Id
-
TI12-security/trunk/ndg_saml/ndg/saml/saml2/binding/soap/client/__init__.py
- Property svn:keywords set to Id
r7129 r7130 8 8 __license__ = "http://www.apache.org/licenses/LICENSE-2.0" 9 9 __contact__ = "Philip.Kershaw@stfc.ac.uk" 10 __revision__ = '$Id : __init__.py 7076 2010-06-24 15:33:30Z pjkersha$'10 __revision__ = '$Id$' 11 11 import logging 12 12 log = logging.getLogger(__name__) -
TI12-security/trunk/ndg_saml/ndg/saml/saml2/binding/soap/client/attributequery.py
- Property svn:keywords set to Id
r7129 r7130 8 8 __license__ = "http://www.apache.org/licenses/LICENSE-2.0" 9 9 __contact__ = "Philip.Kershaw@stfc.ac.uk" 10 __revision__ = '$Id : attributequery.py 7076 2010-06-24 15:33:30Z pjkersha$'10 __revision__ = '$Id$' 11 11 import re 12 12 import logging -
TI12-security/trunk/ndg_saml/ndg/saml/saml2/binding/soap/client/authzdecisionquery.py
- Property svn:keywords set to Id
r7129 r7130 9 9 __license__ = "http://www.apache.org/licenses/LICENSE-2.0" 10 10 __contact__ = "Philip.Kershaw@stfc.ac.uk" 11 __revision__ = '$Id : authzdecisionquery.py 7076 2010-06-24 15:33:30Z pjkersha$'11 __revision__ = '$Id$' 12 12 import logging 13 13 log = logging.getLogger(__name__) -
TI12-security/trunk/ndg_saml/ndg/saml/saml2/binding/soap/client/subjectquery.py
- Property svn:keywords set to Id
r7129 r7130 8 8 __license__ = "http://www.apache.org/licenses/LICENSE-2.0" 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/ndg_saml/ndg/saml/saml2/binding/soap/server/__init__.py
- Property svn:keywords set to Id
-
TI12-security/trunk/ndg_saml/ndg/saml/saml2/binding/soap/server/wsgi/__init__.py
- Property svn:keywords set to Id
-
TI12-security/trunk/ndg_saml/ndg/saml/saml2/binding/soap/server/wsgi/queryinterface.py
- Property svn:keywords set to Id
-
TI12-security/trunk/ndg_saml/ndg/saml/saml2/core.py
- Property svn:keywords set to Id
-
TI12-security/trunk/ndg_saml/ndg/saml/test/__init__.py
- Property svn:keywords set to Id
-
TI12-security/trunk/ndg_saml/ndg/saml/test/test_saml.py
- Property svn:keywords set to Id
-
TI12-security/trunk/ndg_saml/ndg/saml/utils/__init__.py
- Property svn:keywords set to Id
-
TI12-security/trunk/ndg_saml/ndg/saml/utils/m2crypto.py
- Property svn:keywords set to Id
-
TI12-security/trunk/ndg_saml/ndg/saml/xml/__init__.py
- Property svn:keywords set to Id
-
TI12-security/trunk/ndg_saml/ndg/saml/xml/etree.py
- Property svn:keywords set to Id
-
TI12-security/trunk/ndg_saml/ndg/soap/__init__.py
- Property svn:keywords set to Id
-
TI12-security/trunk/ndg_saml/ndg/soap/client.py
- Property svn:keywords set to Id
r7129 r7130 8 8 __license__ = "http://www.apache.org/licenses/LICENSE-2.0" 9 9 __contact__ = "Philip.Kershaw@stfc.ac.uk" 10 __revision__ = '$Id :$'10 __revision__ = '$Id$' 11 11 import logging 12 12 log = logging.getLogger(__name__) … … 252 252 253 253 if log.getEffectiveLevel() <= logging.DEBUG: 254 from ndg.s ecurity.common.utils.etree import prettyPrint254 from ndg.soap.utils.etree import prettyPrint 255 255 log.debug("SOAP Request:") 256 256 log.debug("_"*80) -
TI12-security/trunk/ndg_saml/ndg/soap/etree.py
- Property svn:keywords set to Id
r7129 r7130 8 8 __license__ = "http://www.apache.org/licenses/LICENSE-2.0" 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/ndg_saml/setup.cfg
- Property svn:keywords set to Id
Note: See TracChangeset
for help on using the changeset viewer.