This commit is contained in:
Roland Hedberg
2012-12-14 10:57:09 +01:00
3 changed files with 5 additions and 5 deletions

4
README
View File

@@ -3,7 +3,7 @@ README for PySAML2
Dependencies Dependencies
------------ ------------
Pylint should be compatible with any python >= 2.6 not 3.X yet. PySAML2 should be compatible with any python >= 2.6 not 3.X yet.
To be able to sign/verify, encrypt/decrypt you need xmlsec1. To be able to sign/verify, encrypt/decrypt you need xmlsec1.
The repoze stuff works best together with repoze.who . The repoze stuff works best together with repoze.who .
@@ -39,7 +39,7 @@ Comments, support, bug reports
Project page on : Project page on :
https://code.launchpad.net/~roland-hedberg/pysaml2/main https://github.com/rohe/pysaml2
Use the Pysaml2@uma.es mailing list. Since we do not have Use the Pysaml2@uma.es mailing list. Since we do not have
publicly available bug tracker yet, bug reports should be emailed publicly available bug tracker yet, bug reports should be emailed

View File

@@ -4,7 +4,7 @@ PySAML2 - SAML2 in Python
************************* *************************
:Author: Roland Hedberg :Author: Roland Hedberg
:Version: 0.3 :Version: 1.0.0
PySAML2 is a pure python implementation of a SAML2 service provider and to PySAML2 is a pure python implementation of a SAML2 service provider and to
some extend also the identity provider. Originally written to work in a WSGI some extend also the identity provider. Originally written to work in a WSGI

View File

@@ -74,7 +74,7 @@ def get_xmlsec_binary(paths=None):
if os.name == "posix": if os.name == "posix":
bin_name = "xmlsec1" bin_name = "xmlsec1"
elif os.name == "nt": elif os.name == "nt":
bin_name = "xmlsec" bin_name = "xmlsec1.exe"
else: # Default !? else: # Default !?
bin_name = "xmlsec1" bin_name = "xmlsec1"
@@ -87,7 +87,7 @@ def get_xmlsec_binary(paths=None):
except Exception: except Exception:
pass pass
for path in os.environ["PATH"].split(":"): for path in os.environ["PATH"].split(os.pathsep):
fil = os.path.join(path, bin_name) fil = os.path.join(path, bin_name)
try: try:
if os.lstat(fil): if os.lstat(fil):