summaryrefslogtreecommitdiffstats
path: root/python/xml
diff options
context:
space:
mode:
Diffstat (limited to 'python/xml')
-rw-r--r--python/xml/.cvsignore4
-rw-r--r--python/xml/Makefile.am43
-rw-r--r--python/xml/py_lib_authentication_statement.c68
-rw-r--r--python/xml/py_lib_authentication_statement.h42
-rw-r--r--python/xml/py_lib_authn_request.c158
-rw-r--r--python/xml/py_lib_authn_request.h47
-rw-r--r--python/xml/py_lib_authn_response.c69
-rw-r--r--python/xml/py_lib_authn_response.h42
-rw-r--r--python/xml/py_lib_federation_termination_notification.c68
-rw-r--r--python/xml/py_lib_federation_termination_notification.h42
-rw-r--r--python/xml/py_lib_logout_request.c140
-rw-r--r--python/xml/py_lib_logout_request.h46
-rw-r--r--python/xml/py_lib_logout_response.c50
-rw-r--r--python/xml/py_lib_logout_response.h41
-rw-r--r--python/xml/py_lib_name_identifier_mapping_request.c68
-rw-r--r--python/xml/py_lib_name_identifier_mapping_request.h42
-rw-r--r--python/xml/py_lib_name_identifier_mapping_response.c50
-rw-r--r--python/xml/py_lib_name_identifier_mapping_response.h42
-rw-r--r--python/xml/py_lib_register_name_identifier_request.c68
-rw-r--r--python/xml/py_lib_register_name_identifier_request.h42
-rw-r--r--python/xml/py_saml_assertion.c91
-rw-r--r--python/xml/py_saml_assertion.h43
-rw-r--r--python/xml/py_saml_authentication_statement.c50
-rw-r--r--python/xml/py_saml_authentication_statement.h41
-rw-r--r--python/xml/py_saml_name_identifier.c94
-rw-r--r--python/xml/py_saml_name_identifier.h43
-rw-r--r--python/xml/py_samlp_response.c67
-rw-r--r--python/xml/py_samlp_response.h42
-rw-r--r--python/xml/py_xml.c213
-rw-r--r--python/xml/py_xml.h50
30 files changed, 0 insertions, 1906 deletions
diff --git a/python/xml/.cvsignore b/python/xml/.cvsignore
deleted file mode 100644
index 09653e95..00000000
--- a/python/xml/.cvsignore
+++ /dev/null
@@ -1,4 +0,0 @@
-.deps
-Makefile
-Makefile.in
-
diff --git a/python/xml/Makefile.am b/python/xml/Makefile.am
deleted file mode 100644
index 6e8c0521..00000000
--- a/python/xml/Makefile.am
+++ /dev/null
@@ -1,43 +0,0 @@
-XMLSOURCES = \
- py_lib_authentication_statement.c \
- py_lib_authn_request.c \
- py_lib_federation_termination_notification.c \
- py_lib_logout_request.c \
- py_lib_logout_response.c \
- py_lib_name_identifier_mapping_request.c \
- py_lib_name_identifier_mapping_response.c \
- py_lib_register_name_identifier_request.c \
- py_saml_assertion.c \
- py_saml_authentication_statement.c \
- py_saml_name_identifier.c \
- py_samlp_response.c \
- py_xml.c
-
-noinst_LTLIBRARIES = libxml.la
-libxml_la_SOURCES = $(XMLSOURCES)
-
-INCLUDES = \
- -DPACKAGE=\"@PACKAGE@\" \
- -I$(top_srcdir) \
- -I$(top_srcdir)/lasso \
- $(LASSO_DEFINES) \
- $(LASSO_CFLAGS) \
- $(PY_CFLAGS) \
- $(NULL)
-
-EXTRA_DIST = \
- $(XMLSOURCES) \
- py_lib_authentication_statement.h \
- py_lib_authn_request.h \
- py_lib_federation_termination_notification.h \
- py_lib_logout_request.h \
- py_lib_logout_response.h \
- py_lib_name_identifier_mapping_request.h \
- py_lib_name_identifier_mapping_response.h \
- py_lib_register_name_identifier_request.h \
- py_saml_assertion.h \
- py_saml_authentication_statement.h \
- py_saml_name_identifier.h \
- py_samlp_response.h \
- py_xml.h
-
diff --git a/python/xml/py_lib_authentication_statement.c b/python/xml/py_lib_authentication_statement.c
deleted file mode 100644
index c647f79c..00000000
--- a/python/xml/py_lib_authentication_statement.c
+++ /dev/null
@@ -1,68 +0,0 @@
-/* $Id$
- *
- * PyLasso -- Python bindings for Lasso library
- *
- * Copyright (C) 2004 Entr'ouvert
- * http://lasso.entrouvert.org
- *
- * Authors: Nicolas Clapies <nclapies@entrouvert.com>
- * Valery Febvre <vfebvre@easter-eggs.com>
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- */
-
-#include "../lassomod.h"
-
-#include "py_lib_authentication_statement.h"
-
-PyObject *LassoLibAuthenticationStatement_wrap(LassoLibAuthenticationStatement *node) {
- PyObject *ret;
-
- if (node == NULL) {
- Py_INCREF(Py_None);
- return (Py_None);
- }
- ret = PyCObject_FromVoidPtrAndDesc((void *) node,
- (char *) "LassoLibAuthenticationStatement *", NULL);
- return (ret);
-}
-
-/******************************************************************************/
-
-PyObject *lib_authentication_statement_new(PyObject *self, PyObject *args) {
- LassoNode *node;
-
- node = lasso_lib_authentication_statement_new();
-
- return (LassoLibAuthenticationStatement_wrap(LASSO_LIB_AUTHENTICATION_STATEMENT(node)));
-}
-
-PyObject *lib_authentication_statement_set_sessionIndex(PyObject *self, PyObject *args) {
- PyObject *node_obj;
- const xmlChar *sessionIndex;
-
- if (CheckArgs(args, "OS:lib_authentication_statement_set_sessionIndex")) {
- if(!PyArg_ParseTuple(args, (char *) "Os:lib_authentication_statement_set_sessionIndex",
- &node_obj, &sessionIndex))
- return NULL;
- }
- else return NULL;
-
- lasso_lib_authentication_statement_set_sessionIndex(LassoLibAuthenticationStatement_get(node_obj),
- sessionIndex);
-
- Py_INCREF(Py_None);
- return (Py_None);
-}
diff --git a/python/xml/py_lib_authentication_statement.h b/python/xml/py_lib_authentication_statement.h
deleted file mode 100644
index 087af4b7..00000000
--- a/python/xml/py_lib_authentication_statement.h
+++ /dev/null
@@ -1,42 +0,0 @@
-/* $Id$
- *
- * PyLasso -- Python bindings for Lasso library
- *
- * Copyright (C) 2004 Entr'ouvert
- * http://lasso.entrouvert.org
- *
- * Authors: Nicolas Clapies <nclapies@entrouvert.com>
- * Valery Febvre <vfebvre@easter-eggs.com>
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- */
-
-#ifndef __PYLASSO_PY_LIB_AUTHENTICATION_STATEMENT_H__
-#define __PYLASSO_PY_LIB_AUTHENTICATION_STATEMENT_H__
-
-#include <lasso/xml/lib_authentication_statement.h>
-
-typedef struct {
- PyObject_HEAD
- LassoLibAuthenticationStatement *obj;
-} LassoLibAuthenticationStatement_object;
-
-#define LassoLibAuthenticationStatement_get(v) (((v) == Py_None) ? NULL : (((LassoLibAuthenticationStatement_object *)(PyObject_GetAttr(v, PyString_FromString("_o"))))->obj))
-PyObject *LassoLibAuthenticationStatement_wrap(LassoLibAuthenticationStatement *statement);
-
-PyObject *lib_authentication_statement_new(PyObject *self, PyObject *args);
-PyObject *lib_authentication_statement_set_sessionIndex(PyObject *self, PyObject *args);
-
-#endif /* __PYLASSO_PY_LIB_AUTHENTICATION_STATEMENT_H__ */
diff --git a/python/xml/py_lib_authn_request.c b/python/xml/py_lib_authn_request.c
deleted file mode 100644
index 81c80da3..00000000
--- a/python/xml/py_lib_authn_request.c
+++ /dev/null
@@ -1,158 +0,0 @@
-/* $Id$
- *
- * PyLasso -- Python bindings for Lasso library
- *
- * Copyright (C) 2004 Entr'ouvert
- * http://lasso.entrouvert.org
- *
- * Authors: Nicolas Clapies <nclapies@entrouvert.com>
- * Valery Febvre <vfebvre@easter-eggs.com>
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- */
-
-#include "../lassomod.h"
-
-#include "py_lib_authn_request.h"
-
-PyObject *LassoLibAuthnRequest_wrap(LassoLibAuthnRequest *request) {
- PyObject *ret;
-
- if (request == NULL) {
- Py_INCREF(Py_None);
- return (Py_None);
- }
- ret = PyCObject_FromVoidPtrAndDesc((void *) request,
- (char *) "LassoLibAuthnRequest *", NULL);
- return (ret);
-}
-
-/******************************************************************************/
-
-PyObject *lib_authn_request_new(PyObject *self, PyObject *args) {
- LassoNode *request;
-
- request = lasso_lib_authn_request_new();
-
- return (LassoLibAuthnRequest_wrap(LASSO_LIB_AUTHN_REQUEST(request)));
-}
-
-PyObject *lib_authn_request_set_consent(PyObject *self, PyObject *args) {
- PyObject *node_obj;
- const xmlChar *consent;
-
- if (CheckArgs(args, "OS:lib_authn_request_set_consent")) {
- if(!PyArg_ParseTuple(args, (char *) "Os:lib_authn_request_set_forceAuthn",
- &node_obj, &consent))
- return NULL;
- }
- else return NULL;
-
- lasso_lib_authn_request_set_consent(LassoLibAuthnRequest_get(node_obj),
- consent);
-
- Py_INCREF(Py_None);
- return (Py_None);
-}
-
-PyObject *lib_authn_request_set_forceAuthn(PyObject *self, PyObject *args) {
- PyObject *node_obj;
- gint forceAuthn;
-
- if (CheckArgs(args, "OI:lib_authn_request_set_forceAuthn")) {
- if(!PyArg_ParseTuple(args, (char *) "Oi:lib_authn_request_set_forceAuthn",
- &node_obj, &forceAuthn))
- return NULL;
- }
- else return NULL;
-
- lasso_lib_authn_request_set_forceAuthn(LassoLibAuthnRequest_get(node_obj),
- forceAuthn);
-
- Py_INCREF(Py_None);
- return (Py_None);
-}
-
-PyObject *lib_authn_request_set_isPassive(PyObject *self, PyObject *args) {
- PyObject *node_obj;
- gint isPassive;
-
- if (CheckArgs(args, "OI:lib_authn_request_set_isPassive")) {
- if(!PyArg_ParseTuple(args, (char *) "Oi:lib_authn_request_set_isPassive",
- &node_obj, &isPassive))
- return NULL;
- }
- else return NULL;
-
- lasso_lib_authn_request_set_isPassive(LassoLibAuthnRequest_get(node_obj),
- isPassive);
-
- Py_INCREF(Py_None);
- return (Py_None);
-}
-
-PyObject *lib_authn_request_set_nameIDPolicy(PyObject *self, PyObject *args) {
- PyObject *node_obj;
- const xmlChar *nameIDPolicy;
-
- if (CheckArgs(args, "OS:lib_authn_request_set_nameIDPolicy")) {
- if(!PyArg_ParseTuple(args, (char *) "Os:lib_authn_request_set_nameIDPolicy",
- &node_obj, &nameIDPolicy))
- return NULL;
- }
- else return NULL;
-
- lasso_lib_authn_request_set_nameIDPolicy(LassoLibAuthnRequest_get(node_obj),
- nameIDPolicy);
-
- Py_INCREF(Py_None);
- return (Py_None);
-}
-
-PyObject *lib_authn_request_set_protocolProfile(PyObject *self, PyObject *args) {
- PyObject *node_obj;
- const xmlChar *protocolProfile;
-
- if (CheckArgs(args, "OS:lib_authn_request_set_protocolProfile")) {
- if(!PyArg_ParseTuple(args, (char *) "Os:lib_authn_request_set_protocolProfile",
- &node_obj, &protocolProfile))
- return NULL;
- }
- else return NULL;
-
- lasso_lib_authn_request_set_protocolProfile(LassoLibAuthnRequest_get(node_obj),
- protocolProfile);
-
- Py_INCREF(Py_None);
- return (Py_None);
-}
-
-PyObject *lib_authn_request_set_relayState(PyObject *self, PyObject *args) {
- PyObject *node_obj;
- const xmlChar *relayState;
-
- if (CheckArgs(args, "OS:lib_authn_request_set_relayState")) {
- if(!PyArg_ParseTuple(args, (char *) "Os:lib_authn_request_set_relayState",
- &node_obj, &relayState))
- return NULL;
- }
- else return NULL;
-
- lasso_lib_authn_request_set_relayState(LassoLibAuthnRequest_get(node_obj),
- relayState);
-
- Py_INCREF(Py_None);
- return (Py_None);
-}
diff --git a/python/xml/py_lib_authn_request.h b/python/xml/py_lib_authn_request.h
deleted file mode 100644
index 604cb9be..00000000
--- a/python/xml/py_lib_authn_request.h
+++ /dev/null
@@ -1,47 +0,0 @@
-/* $Id$
- *
- * PyLasso -- Python bindings for Lasso library
- *
- * Copyright (C) 2004 Entr'ouvert
- * http://lasso.entrouvert.org
- *
- * Authors: Nicolas Clapies <nclapies@entrouvert.com>
- * Valery Febvre <vfebvre@easter-eggs.com>
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- */
-
-#ifndef __PYLASSO_PY_LIB_AUTHN_REQUEST_H__
-#define __PYLASSO_PY_LIB_AUTHN_REQUEST_H__
-
-#include <lasso/xml/lib_authn_request.h>
-
-typedef struct {
- PyObject_HEAD
- LassoLibAuthnRequest *obj;
-} LassoLibAuthnRequest_object;
-
-#define LassoLibAuthnRequest_get(v) (((v) == Py_None) ? NULL : (((LassoLibAuthnRequest_object *)(PyObject_GetAttr(v, PyString_FromString("_o"))))->obj))
-PyObject *LassoLibAuthnRequest_wrap(LassoLibAuthnRequest *request);
-
-PyObject *lib_authn_request_new(PyObject *self, PyObject *args);
-PyObject *lib_authn_request_set_consent(PyObject *self, PyObject *args);
-PyObject *lib_authn_request_set_forceAuthn(PyObject *self, PyObject *args);
-PyObject *lib_authn_request_set_isPassive(PyObject *self, PyObject *args);
-PyObject *lib_authn_request_set_nameIDPolicy(PyObject *self, PyObject *args);
-PyObject *lib_authn_request_set_protocolProfile(PyObject *self, PyObject *args);
-PyObject *lib_authn_request_set_relayState(PyObject *self, PyObject *args);
-
-#endif /* __PYLASSO_PY_LIB_AUTHN_REQUEST_H__ */
diff --git a/python/xml/py_lib_authn_response.c b/python/xml/py_lib_authn_response.c
deleted file mode 100644
index b94f9ffc..00000000
--- a/python/xml/py_lib_authn_response.c
+++ /dev/null
@@ -1,69 +0,0 @@
-/* $Id$
- *
- * PyLasso -- Python bindings for Lasso library
- *
- * Copyright (C) 2004 Entr'ouvert
- * http://lasso.entrouvert.org
- *
- * Authors: Nicolas Clapies <nclapies@entrouvert.com>
- * Valery Febvre <vfebvre@easter-eggs.com>
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- */
-
-
-#include "../lassomod.h"
-
-#include "py_lib_authn_response.h"
-
-PyObject *LassoLibAuthnResponse_wrap(LassoLibAuthnResponse *response) {
- PyObject *ret;
-
- if (response == NULL) {
- Py_INCREF(Py_None);
- return (Py_None);
- }
- ret = PyCObject_FromVoidPtrAndDesc((void *) response,
- (char *) "LassoLibAuthnResponse *", NULL);
- return (ret);
-}
-
-/******************************************************************************/
-
-PyObject *lib_authn_response_new(PyObject *self, PyObject *args) {
- LassoNode *response;
-
- response = lasso_lib_authn_response_new();
-
- return (LassoLibAuthnResponse_wrap(LASSO_LIB_AUTHN_RESPONSE(response)));
-}
-
-PyObject *lib_authn_response_set_relayState(PyObject *self, PyObject *args) {
- PyObject *node_obj;
- const xmlChar *relayState;
-
- if (CheckArgs(args, "OS:lib_authn_response_set_relayState")) {
- if(!PyArg_ParseTuple(args, (char *) "Os:lib_authn_response_set_relayState",
- &node_obj, &relayState))
- return NULL;
- }
- else return NULL;
-
- lasso_lib_authn_response_set_relayState(LassoLibAuthnResponse_get(node_obj),
- relayState);
-
- Py_INCREF(Py_None);
- return (Py_None);
-}
diff --git a/python/xml/py_lib_authn_response.h b/python/xml/py_lib_authn_response.h
deleted file mode 100644
index 9fd2d4c8..00000000
--- a/python/xml/py_lib_authn_response.h
+++ /dev/null
@@ -1,42 +0,0 @@
-/* $Id$
- *
- * PyLasso -- Python bindings for Lasso library
- *
- * Copyright (C) 2004 Entr'ouvert
- * http://lasso.entrouvert.org
- *
- * Authors: Nicolas Clapies <nclapies@entrouvert.com>
- * Valery Febvre <vfebvre@easter-eggs.com>
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- */
-
-#ifndef __PYLASSO_PY_LIB_AUTHN_RESPONSE_H__
-#define __PYLASSO_PY_LIB_AUTHN_RESPONSE_H__
-
-#include <lasso/xml/lib_authn_response.h>
-
-typedef struct {
- PyObject_HEAD
- LassoLibAuthnResponse *obj;
-} LassoLibAuthnResponse_object;
-
-#define LassoLibAuthnResponse_get(v) (((v) == Py_None) ? NULL : (((LassoLibAuthnResponse_object *)(PyObject_GetAttr(v, PyString_FromString("_o"))))->obj))
-PyObject *LassoLibAuthnResponse_wrap(LassoLibAuthnResponse *response);
-
-PyObject *lib_authn_response_new(PyObject *self, PyObject *args);
-PyObject *lib_authn_response_add_assertion(PyObject *self, PyObject *args);
-
-#endif /* __PYLASSO_PY_LIB_AUTHN_RESPONSE_H__ */
diff --git a/python/xml/py_lib_federation_termination_notification.c b/python/xml/py_lib_federation_termination_notification.c
deleted file mode 100644
index 3efd5ee8..00000000
--- a/python/xml/py_lib_federation_termination_notification.c
+++ /dev/null
@@ -1,68 +0,0 @@
-/* $Id$
- *
- * PyLasso -- Python bindings for Lasso library
- *
- * Copyright (C) 2004 Entr'ouvert
- * http://lasso.entrouvert.org
- *
- * Author: Valery Febvre <vfebvre@easter-eggs.com>
- * Nicolas Clapies <nclapies@entrouvert.com>
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- */
-
-#include "../lassomod.h"
-
-#include "py_lib_federation_termination_notification.h"
-
-PyObject *LassoLibFederationTerminationNotification_wrap(LassoLibFederationTerminationNotification *notification) {
- PyObject *ret;
-
- if (notification == NULL) {
- Py_INCREF(Py_None);
- return (Py_None);
- }
- ret = PyCObject_FromVoidPtrAndDesc((void *) notification,
- (char *) "LassoLibFederationTerminationNotification *", NULL);
- return (ret);
-}
-
-/******************************************************************************/
-
-PyObject *lib_federation_termination_notification_new(PyObject *self, PyObject *args) {
- LassoNode *node;
-
- node = lasso_lib_federation_termination_notification_new();
-
- return (LassoLibFederationTerminationNotification_wrap(LASSO_LIB_FEDERATION_TERMINATION_NOTIFICATION(node)));
-}
-
-PyObject *lib_federation_termination_notification_set_consent(PyObject *self, PyObject *args) {
- PyObject *node_obj;
- const xmlChar *consent;
-
- if (CheckArgs(args, "OS:lib_federation_termination_notification_set_consent")) {
- if(!PyArg_ParseTuple(args, (char *) "Os:lib_federation_termination_notification_set_consent",
- &node_obj, &consent))
- return NULL;
- }
- else return NULL;
-
- lasso_lib_federation_termination_notification_set_consent(LassoLibFederationTerminationNotification_get(node_obj),
- consent);
-
- Py_INCREF(Py_None);
- return (Py_None);
-}
diff --git a/python/xml/py_lib_federation_termination_notification.h b/python/xml/py_lib_federation_termination_notification.h
deleted file mode 100644
index 33a8e452..00000000
--- a/python/xml/py_lib_federation_termination_notification.h
+++ /dev/null
@@ -1,42 +0,0 @@
-/* $Id$
- *
- * PyLasso -- Python bindings for Lasso library
- *
- * Copyright (C) 2004 Entr'ouvert
- * http://lasso.entrouvert.org
- *
- * Author: Valery Febvre <vfebvre@easter-eggs.com>
- * Nicolas Clapies <nclapies@entrouvert.com>
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- */
-
-#ifndef __PYLASSO_PY_LIB_FEDERATION_TERMINATION_NOTIFICATION_H__
-#define __PYLASSO_PY_LIB_FEDERATION_TERMINATION_NOTIFICATION_H__
-
-#include <lasso/xml/lib_federation_termination_notification.h>
-
-typedef struct {
- PyObject_HEAD
- LassoLibFederationTerminationNotification *obj;
-} LassoLibFederationTerminationNotification_object;
-
-#define LassoLibFederationTerminationNotification_get(v) (((v) == Py_None) ? NULL : (((LassoLibFederationTerminationNotification_object *)(PyObject_GetAttr(v, PyString_FromString("_o"))))->obj))
-PyObject *LassoLibFederationTerminationNotification_wrap(LassoLibFederationTerminationNotification *notification);
-
-PyObject *lib_federation_termination_notification_new(PyObject *self, PyObject *args);
-PyObject *lib_federation_termination_notification_set_consent(PyObject *self, PyObject *args);
-
-#endif /* __PYLASSO_PY_LIB_FEDERATION_TERMINATION_NOTIFICATION_H__ */
diff --git a/python/xml/py_lib_logout_request.c b/python/xml/py_lib_logout_request.c
deleted file mode 100644
index b88bc4cb..00000000
--- a/python/xml/py_lib_logout_request.c
+++ /dev/null
@@ -1,140 +0,0 @@
-/* $Id$
- *
- * PyLasso -- Python bindings for Lasso library
- *
- * Copyright (C) 2004 Entr'ouvert
- * http://lasso.entrouvert.org
- *
- * Authors: Nicolas Clapies <nclapies@entrouvert.com>
- * Valery Febvre <vfebvre@easter-eggs.com>
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- */
-
-#include "../lassomod.h"
-
-#include "py_lib_logout_request.h"
-#include "py_saml_name_identifier.h"
-
-PyObject *LassoLibLogoutRequest_wrap(LassoLibLogoutRequest *request) {
- PyObject *ret;
-
- if (request == NULL) {
- Py_INCREF(Py_None);
- return (Py_None);
- }
- ret = PyCObject_FromVoidPtrAndDesc((void *) request,
- (char *) "LassoLibLogoutRequest *", NULL);
- return (ret);
-}
-
-/******************************************************************************/
-
-PyObject *lib_logout_request_new(PyObject *self, PyObject *args) {
- LassoNode *request;
-
- request = lasso_lib_logout_request_new();
-
- return (LassoLibLogoutRequest_wrap(LASSO_LIB_LOGOUT_REQUEST(request)));
-}
-
-PyObject *lib_logout_request_set_consent(PyObject *self, PyObject *args) {
- PyObject *node_obj;
- const xmlChar *consent;
-
- if (CheckArgs(args, "OS:lib_logout_request_set_consent")) {
- if(!PyArg_ParseTuple(args, (char *) "Os:lib_logout_request_set_consent",
- &node_obj, &consent))
- return NULL;
- }
- else return NULL;
-
- lasso_lib_logout_request_set_consent(LassoLibLogoutRequest_get(node_obj),
- consent);
-
- Py_INCREF(Py_None);
- return (Py_None);
-}
-
-PyObject *lib_logout_request_set_nameIdentifier(PyObject *self, PyObject *args) {
- PyObject *node_obj, *nameIdentifier_obj;
-
- if (CheckArgs(args, "OO:lib_logout_request_set_nameIdentifier")) {
- if(!PyArg_ParseTuple(args, (char *) "OO:lib_logout_request_set_nameIdentifier",
- &node_obj, &nameIdentifier_obj))
- return NULL;
- }
- else return NULL;
-
- lasso_lib_logout_request_set_nameIdentifier(LassoLibLogoutRequest_get(node_obj),
- LassoSamlNameIdentifier_get(nameIdentifier_obj));
-
- Py_INCREF(Py_None);
- return (Py_None);
-}
-
-PyObject *lib_logout_request_set_providerID(PyObject *self, PyObject *args) {
- PyObject *node_obj;
- const xmlChar *providerID;
-
- if (CheckArgs(args, "OS:lib_logout_request_set_providerID")) {
- if(!PyArg_ParseTuple(args, (char *) "Os:lib_logout_request_set_providerID",
- &node_obj, &providerID))
- return NULL;
- }
- else return NULL;
-
- lasso_lib_logout_request_set_providerID(LassoLibLogoutRequest_get(node_obj),
- providerID);
-
- Py_INCREF(Py_None);
- return (Py_None);
-}
-
-PyObject *lib_logout_request_set_relayState(PyObject *self, PyObject *args) {
- PyObject *node_obj;
- const xmlChar *relayState;
-
- if (CheckArgs(args, "OS:lib_logout_request_set_relayState")) {
- if(!PyArg_ParseTuple(args, (char *) "Os:lib_logout_request_set_relayState",
- &node_obj, &relayState))
- return NULL;
- }
- else return NULL;
-
- lasso_lib_logout_request_set_relayState(LassoLibLogoutRequest_get(node_obj),
- relayState);
-
- Py_INCREF(Py_None);
- return (Py_None);
-}
-
-PyObject *lib_logout_request_set_sessionIndex(PyObject *self, PyObject *args) {
- PyObject *node_obj;
- const xmlChar *sessionIndex;
-
- if (CheckArgs(args, "OS:lib_logout_request_set_sessionIndex")) {
- if(!PyArg_ParseTuple(args, (char *) "Os:lib_logout_request_set_sessionIndex",
- &node_obj, &sessionIndex))
- return NULL;
- }
- else return NULL;
-
- lasso_lib_logout_request_set_sessionIndex(LassoLibLogoutRequest_get(node_obj),
- sessionIndex);
-
- Py_INCREF(Py_None);
- return (Py_None);
-}
diff --git a/python/xml/py_lib_logout_request.h b/python/xml/py_lib_logout_request.h
deleted file mode 100644
index 6c665d7b..00000000
--- a/python/xml/py_lib_logout_request.h
+++ /dev/null
@@ -1,46 +0,0 @@
-/* $Id$
- *
- * PyLasso -- Python bindings for Lasso library
- *
- * Copyright (C) 2004 Entr'ouvert
- * http://lasso.entrouvert.org
- *
- * Authors: Nicolas Clapies <nclapies@entrouvert.com>
- * Valery Febvre <vfebvre@easter-eggs.com>
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- */
-
-#ifndef __PYLASSO_PY_LIB_LOGOUT_REQUEST_H__
-#define __PYLASSO_PY_LIB_LOGOUT_REQUEST_H__
-
-#include <lasso/xml/lib_logout_request.h>
-
-typedef struct {
- PyObject_HEAD
- LassoLibLogoutRequest *obj;
-} LassoLibLogoutRequest_object;
-
-#define LassoLibLogoutRequest_get(v) (((v) == Py_None) ? NULL : (((LassoLibLogoutRequest_object *)(PyObject_GetAttr(v, PyString_FromString("_o"))))->obj))
-PyObject *LassoLibLogoutRequest_wrap(LassoLibLogoutRequest *request);
-
-PyObject *lib_logout_request_new(PyObject *self, PyObject *args);
-PyObject *lib_logout_request_set_consent(PyObject *self, PyObject *args);
-PyObject *lib_logout_request_set_nameIdentifier(PyObject *self, PyObject *args);
-PyObject *lib_logout_request_set_providerID(PyObject *self, PyObject *args);
-PyObject *lib_logout_request_set_relayState(PyObject *self, PyObject *args);
-PyObject *lib_logout_request_set_sessionIndex(PyObject *self, PyObject *args);
-
-#endif /* __PYLASSO_PY_LIB_LOGOUT_REQUEST_H__ */
diff --git a/python/xml/py_lib_logout_response.c b/python/xml/py_lib_logout_response.c
deleted file mode 100644
index 74c41ec8..00000000
--- a/python/xml/py_lib_logout_response.c
+++ /dev/null
@@ -1,50 +0,0 @@
-/* $Id$
- *
- * PyLasso -- Python bindings for Lasso library
- *
- * Copyright (C) 2004 Entr'ouvert
- * http://lasso.entrouvert.org
- *
- * Authors: Nicolas Clapies <nclapies@entrouvert.com>
- * Valery Febvre <vfebvre@easter-eggs.com>
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- */
-
-#include "../lassomod.h"
-
-#include "py_lib_logout_response.h"
-
-PyObject *LassoLibLogoutResponse_wrap(LassoLibLogoutResponse *response) {
- PyObject *ret;
-
- if (response == NULL) {
- Py_INCREF(Py_None);
- return (Py_None);
- }
- ret = PyCObject_FromVoidPtrAndDesc((void *) response,
- (char *) "LassoLibLogoutResponse *", NULL);
- return (ret);
-}
-
-/******************************************************************************/
-
-PyObject *lib_logout_response_new(PyObject *self, PyObject *args) {
- LassoNode *response;
-
- response = lasso_lib_logout_response_new();
-
- return (LassoLibLogoutResponse_wrap(LASSO_LIB_LOGOUT_RESPONSE(response)));
-}
diff --git a/python/xml/py_lib_logout_response.h b/python/xml/py_lib_logout_response.h
deleted file mode 100644
index fabcf871..00000000
--- a/python/xml/py_lib_logout_response.h
+++ /dev/null
@@ -1,41 +0,0 @@
-/* $Id$
- *
- * PyLasso -- Python bindings for Lasso library
- *
- * Copyright (C) 2004 Entr'ouvert
- * http://lasso.entrouvert.org
- *
- * Authors: Nicolas Clapies <nclapies@entrouvert.com>
- * Valery Febvre <vfebvre@easter-eggs.com>
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- */
-
-#ifndef __PYLASSO_PY_LIB_LOGOUT_RESPONSE_H__
-#define __PYLASSO_PY_LIB_LOGOUT_RESPONSE_H__
-
-#include <lasso/xml/lib_logout_response.h>
-
-typedef struct {
- PyObject_HEAD
- LassoLibLogoutResponse *obj;
-} LassoLibLogoutResponse_object;
-
-#define LassoLibLogoutResponse_get(v) (((v) == Py_None) ? NULL : (((LassoLibLogoutResponse_object *)(PyObject_GetAttr(v, PyString_FromString("_o"))))->obj))
-PyObject *LassoLibLogoutResponse_wrap(LassoLibLogoutResponse *response);
-
-PyObject *lib_logout_response_new(PyObject *self, PyObject *args);
-
-#endif /* __PYLASSO_PY_LIB_LOGOUT_RESPONSE_H__ */
diff --git a/python/xml/py_lib_name_identifier_mapping_request.c b/python/xml/py_lib_name_identifier_mapping_request.c
deleted file mode 100644
index 36c48808..00000000
--- a/python/xml/py_lib_name_identifier_mapping_request.c
+++ /dev/null
@@ -1,68 +0,0 @@
-/* $Id$
- *
- * PyLasso -- Python bindings for Lasso library
- *
- * Copyright (C) 2004 Entr'ouvert
- * http://lasso.entrouvert.org
- *
- * Author: Valery Febvre <vfebvre@easter-eggs.com>
- * Nicolas Clapies <nclapies@entrouvert.com>
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- */
-
-#include "../lassomod.h"
-
-#include "py_lib_name_identifier_mapping_request.h"
-
-PyObject *LassoLibNameIdentifierMappingRequest_wrap(LassoLibNameIdentifierMappingRequest *request) {
- PyObject *ret;
-
- if (request == NULL) {
- Py_INCREF(Py_None);
- return (Py_None);
- }
- ret = PyCObject_FromVoidPtrAndDesc((void *) request,
- (char *) "LassoLibNameIdentifierMappingRequest *", NULL);
- return (ret);
-}
-
-/******************************************************************************/
-
-PyObject *lib_name_identifier_mapping_request_new(PyObject *self, PyObject *args) {
- LassoNode *node;
-
- node = lasso_lib_name_identifier_mapping_request_new();
-
- return (LassoLibNameIdentifierMappingRequest_wrap(LASSO_LIB_NAME_IDENTIFIER_MAPPING_REQUEST(node)));
-}
-
-PyObject *lib_name_identifier_mapping_request_set_consent(PyObject *self, PyObject *args) {
- PyObject *node_obj;
- const xmlChar *consent;
-
- if (CheckArgs(args, "OS:lib_name_identifier_mapping_request_set_consent")) {
- if(!PyArg_ParseTuple(args, (char *) "Os:lib_name_identifier_mapping_request_set_consent",
- &node_obj, &consent))
- return NULL;
- }
- else return NULL;
-
- lasso_lib_name_identifier_mapping_request_set_consent(LassoLibNameIdentifierMappingRequest_get(node_obj),
- consent);
-
- Py_INCREF(Py_None);
- return (Py_None);
-}
diff --git a/python/xml/py_lib_name_identifier_mapping_request.h b/python/xml/py_lib_name_identifier_mapping_request.h
deleted file mode 100644
index b37649d9..00000000
--- a/python/xml/py_lib_name_identifier_mapping_request.h
+++ /dev/null
@@ -1,42 +0,0 @@
-/* $Id$
- *
- * PyLasso -- Python bindings for Lasso library
- *
- * Copyright (C) 2004 Entr'ouvert
- * http://lasso.entrouvert.org
- *
- * Author: Valery Febvre <vfebvre@easter-eggs.com>
- * Nicolas Clapies <nclapies@entrouvert.com>
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- */
-
-#ifndef __PYLASSO_PY_LIB_NAME_IDENTIFIER_MAPPING_REQUEST_H__
-#define __PYLASSO_PY_LIB_NAME_IDENTIFIER_MAPPING_REQUEST_H__
-
-#include <lasso/xml/lib_name_identifier_mapping_request.h>
-
-typedef struct {
- PyObject_HEAD
- LassoLibNameIdentifierMappingRequest *obj;
-} LassoLibNameIdentifierMappingRequest_object;
-
-#define LassoLibNameIdentifierMappingRequest_get(v) (((v) == Py_None) ? NULL : (((LassoLibNameIdentifierMappingRequest_object *)(PyObject_GetAttr(v, PyString_FromString("_o"))))->obj))
-PyObject *LassoLibNameIdentifierMappingRequest_wrap(LassoLibNameIdentifierMappingRequest *request);
-
-PyObject *lib_name_identifier_mapping_request_new(PyObject *self, PyObject *args);
-PyObject *lib_name_identifier_mapping_request_set_consent(PyObject *self, PyObject *args);
-
-#endif /* __PYLASSO_PY_LIB_NAME_IDENTIFIER_MAPPING_REQUEST_H__ */
diff --git a/python/xml/py_lib_name_identifier_mapping_response.c b/python/xml/py_lib_name_identifier_mapping_response.c
deleted file mode 100644
index 239185a0..00000000
--- a/python/xml/py_lib_name_identifier_mapping_response.c
+++ /dev/null
@@ -1,50 +0,0 @@
-/* $Id$
- *
- * PyLasso -- Python bindings for Lasso library
- *
- * Copyright (C) 2004 Entr'ouvert
- * http://lasso.entrouvert.org
- *
- * Authors: Nicolas Clapies <nclapies@entrouvert.com>
- * Valery Febvre <vfebvre@easter-eggs.com>
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- */
-
-#include "../lassomod.h"
-
-#include "py_lib_name_identifier_mapping_response.h"
-
-PyObject *LassoLibNameIdentifierMappingResponse_wrap(LassoLibNameIdentifierMappingResponse *response) {
- PyObject *ret;
-
- if (response == NULL) {
- Py_INCREF(Py_None);
- return (Py_None);
- }
- ret = PyCObject_FromVoidPtrAndDesc((void *) response,
- (char *) "LassoLibNameIdentifierMappingResponse *", NULL);
- return (ret);
-}
-
-/******************************************************************************/
-
-PyObject *lib_name_identifier_mapping_response_new(PyObject *self, PyObject *args) {
- LassoNode *response;
-
- response = lasso_lib_name_identifier_mapping_response_new();
-
- return (LassoLibNameIdentifierMappingResponse_wrap(LASSO_LIB_NAME_IDENTIFIER_MAPPING_RESPONSE(response)));
-}
diff --git a/python/xml/py_lib_name_identifier_mapping_response.h b/python/xml/py_lib_name_identifier_mapping_response.h
deleted file mode 100644
index 88ea30ca..00000000
--- a/python/xml/py_lib_name_identifier_mapping_response.h
+++ /dev/null
@@ -1,42 +0,0 @@
-/* $Id$
- *
- * PyLasso -- Python bindings for Lasso library
- *
- * Copyright (C) 2004 Entr'ouvert
- * http://lasso.entrouvert.org
- *
- * Author: Valery Febvre <vfebvre@easter-eggs.com>
- * Nicolas Clapies <nclapies@entrouvert.com>
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- */
-
-#ifndef __PYLASSO_PY_LIB_NAME_IDENTIFIER_MAPPING_RESPONSE_H__
-#define __PYLASSO_PY_LIB_NAME_IDENTIFIER_MAPPING_RESPONSE_H__
-
-#include <lasso/xml/lib_name_identifier_mapping_response.h>
-
-typedef struct {
- PyObject_HEAD
- LassoLibNameIdentifierMappingResponse *obj;
-} LassoLibNameIdentifierMappingResponse_object;
-
-#define LassoLibNameIdentifierMappingResponse_get(v) (((v) == Py_None) ? NULL : (((LassoLibNameIdentifierMappingResponse_object *)(PyObject_GetAttr(v, PyString_FromString("_o"))))->obj))
-PyObject *LassoLibNameIdentifierMappingResponse_wrap(LassoLibNameIdentifierMappingResponse *response);
-
-PyObject *lib_name_identifier_mapping_response_new(PyObject *self, PyObject *args);
-PyObject *lib_name_identifier_mapping_response_set_consent(PyObject *self, PyObject *args);
-
-#endif /* __PYLASSO_PY_LIB_NAME_IDENTIFIER_MAPPING_RESPONSE_H__ */
diff --git a/python/xml/py_lib_register_name_identifier_request.c b/python/xml/py_lib_register_name_identifier_request.c
deleted file mode 100644
index e5498163..00000000
--- a/python/xml/py_lib_register_name_identifier_request.c
+++ /dev/null
@@ -1,68 +0,0 @@
-/* $Id$
- *
- * PyLasso -- Python bindings for Lasso library
- *
- * Copyright (C) 2004 Entr'ouvert
- * http://lasso.entrouvert.org
- *
- * Author: Valery Febvre <vfebvre@easter-eggs.com>
- * Nicolas Clapies <nclapies@entrouvert.com>
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- */
-
-#include "../lassomod.h"
-
-#include "py_lib_register_name_identifier_request.h"
-
-PyObject *LassoLibRegisterNameIdentifierRequest_wrap(LassoLibRegisterNameIdentifierRequest *request) {
- PyObject *ret;
-
- if (request == NULL) {
- Py_INCREF(Py_None);
- return (Py_None);
- }
- ret = PyCObject_FromVoidPtrAndDesc((void *) request,
- (char *) "LassoLibRegisterNameIdentifierRequest *", NULL);
- return (ret);
-}
-
-/******************************************************************************/
-
-PyObject *lib_register_name_identifier_request_new(PyObject *self, PyObject *args) {
- LassoNode *node;
-
- node = lasso_lib_register_name_identifier_request_new();
-
- return (LassoLibRegisterNameIdentifierRequest_wrap(LASSO_LIB_REGISTER_NAME_IDENTIFIER_REQUEST(node)));
-}
-
-PyObject *lib_register_name_identifier_request_set_relayState(PyObject *self, PyObject *args) {
- PyObject *node_obj;
- const xmlChar *relayState;
-
- if (CheckArgs(args, "OS:lib_register_name_identifier_request_set_relayState")) {
- if(!PyArg_ParseTuple(args, (char *) "Os:lib_register_name_identifier_request_set_relayState",
- &node_obj, &relayState))
- return NULL;
- }
- else return NULL;
-
- lasso_lib_register_name_identifier_request_set_relayState(LassoLibRegisterNameIdentifierRequest_get(node_obj),
- relayState);
-
- Py_INCREF(Py_None);
- return (Py_None);
-}
diff --git a/python/xml/py_lib_register_name_identifier_request.h b/python/xml/py_lib_register_name_identifier_request.h
deleted file mode 100644
index 64684edb..00000000
--- a/python/xml/py_lib_register_name_identifier_request.h
+++ /dev/null
@@ -1,42 +0,0 @@
-/* $Id$
- *
- * PyLasso -- Python bindings for Lasso library
- *
- * Copyright (C) 2004 Entr'ouvert
- * http://lasso.entrouvert.org
- *
- * Author: Valery Febvre <vfebvre@easter-eggs.com>
- * Nicolas Clapies <nclapies@entrouvert.com>
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- */
-
-#ifndef __PYLASSO_PY_LIB_REGISTER_NAME_IDENTIFIER_REQUEST_H__
-#define __PYLASSO_PY_LIB_REGISTER_NAME_IDENTIFIER_REQUEST_H__
-
-#include <lasso/xml/lib_register_name_identifier_request.h>
-
-typedef struct {
- PyObject_HEAD
- LassoLibRegisterNameIdentifierRequest *obj;
-} LassoLibRegisterNameIdentifierRequest_object;
-
-#define LassoLibRegisterNameIdentifierRequest_get(v) (((v) == Py_None) ? NULL : (((LassoLibRegisterNameIdentifierRequest_object *)(PyObject_GetAttr(v, PyString_FromString("_o"))))->obj))
-PyObject *LassoLibRegisterNameIdentifierRequest_wrap(LassoLibRegisterNameIdentifierRequest *request);
-
-PyObject *lib_register_name_identifier_request_new(PyObject *self, PyObject *args);
-PyObject *lib_register_name_identifier_request_set_relayState(PyObject *self, PyObject *args);
-
-#endif /* __PYLASSO_PY_LIB_REGISTER_NAME_IDENTIFIER_REQUEST_H__ */
diff --git a/python/xml/py_saml_assertion.c b/python/xml/py_saml_assertion.c
deleted file mode 100644
index 7faa0c59..00000000
--- a/python/xml/py_saml_assertion.c
+++ /dev/null
@@ -1,91 +0,0 @@
-/* $Id$
- *
- * PyLasso -- Python bindings for Lasso library
- *
- * Copyright (C) 2004 Entr'ouvert
- * http://lasso.entrouvert.org
- *
- * Authors: Nicolas Clapies <nclapies@entrouvert.com>
- * Valery Febvre <vfebvre@easter-eggs.com>
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- */
-
-#include "../lassomod.h"
-
-#include "py_saml_assertion.h"
-#include "py_saml_authentication_statement.h"
-
-PyObject *LassoSamlAssertion_wrap(LassoSamlAssertion *node) {
- PyObject *ret;
-
- if (node == NULL) {
- Py_INCREF(Py_None);
- return (Py_None);
- }
- ret = PyCObject_FromVoidPtrAndDesc((void *) node,
- (char *) "LassoSamlAssertion *", NULL);
- return (ret);
-}
-
-/******************************************************************************/
-
-PyObject *saml_assertion_new(PyObject *self, PyObject *args) {
- LassoNode *node;
-
- node = lasso_saml_assertion_new();
-
- return (LassoSamlAssertion_wrap(LASSO_SAML_ASSERTION(node)));
-}
-
-PyObject *saml_assertion_add_authenticationStatement(PyObject *self, PyObject *args) {
- PyObject *node_obj, *authenticationStatement_obj;
-
- if (CheckArgs(args, "OO:saml_assertion_add_authenticationStatement")) {
- if(!PyArg_ParseTuple(args, (char *) "OO:saml_assertion_add_authenticationStatement",
- &node_obj, &authenticationStatement_obj))
- return NULL;
- }
- else return NULL;
-
- lasso_saml_assertion_add_authenticationStatement(LassoSamlAssertion_get(node_obj),
- LassoSamlAuthenticationStatement_get(authenticationStatement_obj));
-
- Py_INCREF(Py_None);
- return (Py_None);
-}
-
-PyObject *saml_assertion_set_signature(PyObject *self, PyObject *args) {
- PyObject *node_obj;
- gint sign_method;
- const xmlChar *private_key_file;
- const xmlChar *certificate_file;
- int ret;
-
- if (CheckArgs(args, "OISS:saml_assertion_set_signature")) {
- if(!PyArg_ParseTuple(args, (char *) "Oiss:saml_assertion_set_signature",
- &node_obj, &sign_method, &private_key_file,
- &certificate_file))
- return NULL;
- }
- else return NULL;
-
- ret = lasso_saml_assertion_set_signature(LassoSamlAssertion_get(node_obj),
- sign_method,
- private_key_file, certificate_file);
-
- Py_INCREF(Py_None);
- return (Py_None);
-}
diff --git a/python/xml/py_saml_assertion.h b/python/xml/py_saml_assertion.h
deleted file mode 100644
index a71eddf3..00000000
--- a/python/xml/py_saml_assertion.h
+++ /dev/null
@@ -1,43 +0,0 @@
-/* $Id$
- *
- * PyLasso -- Python bindings for Lasso library
- *
- * Copyright (C) 2004 Entr'ouvert
- * http://lasso.entrouvert.org
- *
- * Authors: Nicolas Clapies <nclapies@entrouvert.com>
- * Valery Febvre <vfebvre@easter-eggs.com>
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- */
-
-#ifndef __PYLASSO_PY_SAML_ASSERTION_H__
-#define __PYLASSO_PY_SAML_ASSERTION_H__
-
-#include <lasso/xml/saml_assertion.h>
-
-typedef struct {
- PyObject_HEAD
- LassoSamlAssertion *obj;
-} LassoSamlAssertion_object;
-
-#define LassoSamlAssertion_get(v) (((v) == Py_None) ? NULL : (((LassoSamlAssertion_object *)(PyObject_GetAttr(v, PyString_FromString("_o"))))->obj))
-PyObject *LassoSamlAssertion_wrap(LassoSamlAssertion *assertion);
-
-PyObject *saml_assertion_new(PyObject *self, PyObject *args);
-PyObject *saml_assertion_add_authenticationStatement(PyObject *self, PyObject *args);
-PyObject *saml_assertion_set_signature(PyObject *self, PyObject *args);
-
-#endif /* __PYLASSO_PY_SAML_ASSERTION_H__ */
diff --git a/python/xml/py_saml_authentication_statement.c b/python/xml/py_saml_authentication_statement.c
deleted file mode 100644
index 2a0a6af3..00000000
--- a/python/xml/py_saml_authentication_statement.c
+++ /dev/null
@@ -1,50 +0,0 @@
-/* $Id$
- *
- * PyLasso -- Python bindings for Lasso library
- *
- * Copyright (C) 2004 Entr'ouvert
- * http://lasso.entrouvert.org
- *
- * Authors: Nicolas Clapies <nclapies@entrouvert.com>
- * Valery Febvre <vfebvre@easter-eggs.com>
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- */
-
-#include "../lassomod.h"
-
-#include "py_saml_authentication_statement.h"
-
-PyObject *LassoSamlAuthenticationStatement_wrap(LassoSamlAuthenticationStatement *node) {
- PyObject *ret;
-
- if (node == NULL) {
- Py_INCREF(Py_None);
- return (Py_None);
- }
- ret = PyCObject_FromVoidPtrAndDesc((void *) node,
- (char *) "LassoSamlAuthenticationStatement *", NULL);
- return (ret);
-}
-
-/******************************************************************************/
-
-PyObject *saml_authentication_statement_new(PyObject *self, PyObject *args) {
- LassoNode *node;
-
- node = lasso_saml_authentication_statement_new();
-
- return (LassoSamlAuthenticationStatement_wrap(LASSO_SAML_AUTHENTICATION_STATEMENT(node)));
-}
diff --git a/python/xml/py_saml_authentication_statement.h b/python/xml/py_saml_authentication_statement.h
deleted file mode 100644
index a0da8f9c..00000000
--- a/python/xml/py_saml_authentication_statement.h
+++ /dev/null
@@ -1,41 +0,0 @@
-/* $Id$
- *
- * PyLasso -- Python bindings for Lasso library
- *
- * Copyright (C) 2004 Entr'ouvert
- * http://lasso.entrouvert.org
- *
- * Authors: Nicolas Clapies <nclapies@entrouvert.com>
- * Valery Febvre <vfebvre@easter-eggs.com>
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- */
-
-#ifndef __PYLASSO_PY_SAML_AUTHENTICATION_STATEMENT_H__
-#define __PYLASSO_PY_SAML_AUTHENTICATION_STATEMENT_H__
-
-#include <lasso/xml/saml_authentication_statement.h>
-
-typedef struct {
- PyObject_HEAD
- LassoSamlAuthenticationStatement *obj;
-} LassoSamlAuthenticationStatement_object;
-
-#define LassoSamlAuthenticationStatement_get(v) (((v) == Py_None) ? NULL : (((LassoSamlAuthenticationStatement_object *)(PyObject_GetAttr(v, PyString_FromString("_o"))))->obj))
-PyObject *LassoSamlAuthenticationStatement_wrap(LassoSamlAuthenticationStatement *statement);
-
-PyObject *saml_authentication_statement_new(PyObject *self, PyObject *args);
-
-#endif /* __PYLASSO_PY_SAML_AUTHENTICATION_STATEMENT_H__ */
diff --git a/python/xml/py_saml_name_identifier.c b/python/xml/py_saml_name_identifier.c
deleted file mode 100644
index 90a4027f..00000000
--- a/python/xml/py_saml_name_identifier.c
+++ /dev/null
@@ -1,94 +0,0 @@
-/* $Id$
- *
- * PyLasso -- Python bindings for Lasso library
- *
- * Copyright (C) 2004 Entr'ouvert
- * http://lasso.entrouvert.org
- *
- * Authors: Nicolas Clapies <nclapies@entrouvert.com>
- * Valery Febvre <vfebvre@easter-eggs.com>
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- */
-
-#include "../lassomod.h"
-
-#include "py_saml_name_identifier.h"
-
-PyObject *LassoSamlNameIdentifier_wrap(LassoSamlNameIdentifier *node) {
- PyObject *ret;
-
- if (node == NULL) {
- Py_INCREF(Py_None);
- return (Py_None);
- }
- ret = PyCObject_FromVoidPtrAndDesc((void *) node,
- (char *) "LassoSamlNameIdentifier *", NULL);
- return (ret);
-}
-
-/******************************************************************************/
-
-PyObject *saml_name_identifier_new(PyObject *self, PyObject *args) {
- xmlChar *content;
- LassoNode *node;
-
- if (CheckArgs(args, "S:saml_name_identifier_new")) {
- if(!PyArg_ParseTuple(args, (char *) "s:saml_name_identifier_new",
- &content))
- return NULL;
- }
- else return NULL;
-
- node = lasso_saml_name_identifier_new(content);
-
- return (LassoSamlNameIdentifier_wrap(LASSO_SAML_NAME_IDENTIFIER(node)));
-}
-
-PyObject *saml_name_identifier_set_format(PyObject *self, PyObject *args) {
- PyObject *node_obj;
- const xmlChar *format;
-
- if (CheckArgs(args, "OS:saml_name_identifier_set_format")) {
- if(!PyArg_ParseTuple(args, (char *) "Os:saml_name_identifier_set_format",
- &node_obj, &format))
- return NULL;
- }
- else return NULL;
-
- lasso_saml_name_identifier_set_format(LASSO_SAML_NAME_IDENTIFIER(node_obj),
- format);
-
- Py_INCREF(Py_None);
- return (Py_None);
-}
-
-PyObject *saml_name_identifier_set_nameQualifier(PyObject *self, PyObject *args) {
- PyObject *node_obj;
- const xmlChar *nameQualifier;
-
- if (CheckArgs(args, "OS:saml_name_identifier_set_nameQualifier")) {
- if(!PyArg_ParseTuple(args, (char *) "Os:saml_name_identifier_set_nameQualifier",
- &node_obj, &nameQualifier))
- return NULL;
- }
- else return NULL;
-
- lasso_saml_name_identifier_set_nameQualifier(LASSO_SAML_NAME_IDENTIFIER(node_obj),
- nameQualifier);
-
- Py_INCREF(Py_None);
- return (Py_None);
-}
diff --git a/python/xml/py_saml_name_identifier.h b/python/xml/py_saml_name_identifier.h
deleted file mode 100644
index 410c0474..00000000
--- a/python/xml/py_saml_name_identifier.h
+++ /dev/null
@@ -1,43 +0,0 @@
-/* $Id$
- *
- * PyLasso -- Python bindings for Lasso library
- *
- * Copyright (C) 2004 Entr'ouvert
- * http://lasso.entrouvert.org
- *
- * Authors: Nicolas Clapies <nclapies@entrouvert.com>
- * Valery Febvre <vfebvre@easter-eggs.com>
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- */
-
-#ifndef __PYLASSO_PY_SAML_NAME_IDENTIFIER_H__
-#define __PYLASSO_PY_SAML_NAME_IDENTIFIER_H__
-
-#include <lasso/xml/saml_name_identifier.h>
-
-typedef struct {
- PyObject_HEAD
- LassoSamlNameIdentifier *obj;
-} LassoSamlNameIdentifier_object;
-
-#define LassoSamlNameIdentifier_get(v) (((v) == Py_None) ? NULL : (((LassoSamlNameIdentifier_object *)(PyObject_GetAttr(v, PyString_FromString("_o"))))->obj))
-PyObject *LassoSamlNameIdentifier_wrap(LassoSamlNameIdentifier *identifier);
-
-PyObject *saml_name_identifier_new(PyObject *self, PyObject *args);
-PyObject *saml_name_identifier_set_format(PyObject *self, PyObject *args);
-PyObject *saml_name_identifier_set_nameQualifier(PyObject *self, PyObject *args);
-
-#endif /* __PYLASSO_PY_SAML_NAME_IDENTIFIER_H__ */
diff --git a/python/xml/py_samlp_response.c b/python/xml/py_samlp_response.c
deleted file mode 100644
index c1dab9bd..00000000
--- a/python/xml/py_samlp_response.c
+++ /dev/null
@@ -1,67 +0,0 @@
-/* $Id$
- *
- * PyLasso -- Python bindings for Lasso library
- *
- * Copyright (C) 2004 Entr'ouvert
- * http://lasso.entrouvert.org
- *
- * Authors: Nicolas Clapies <nclapies@entrouvert.com>
- * Valery Febvre <vfebvre@easter-eggs.com>
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- */
-
-#include "../lassomod.h"
-
-#include "py_samlp_response.h"
-
-PyObject *LassoSamlpResponse_wrap(LassoSamlpResponse *node) {
- PyObject *ret;
-
- if (node == NULL) {
- Py_INCREF(Py_None);
- return (Py_None);
- }
- ret = PyCObject_FromVoidPtrAndDesc((void *) node,
- (char *) "LassoSamlpResponse *", NULL);
- return (ret);
-}
-
-/******************************************************************************/
-
-PyObject *samlp_response_new(PyObject *self, PyObject *args) {
- LassoNode *node;
-
- node = lasso_samlp_response_new();
-
- return (LassoSamlpResponse_wrap(LASSO_SAMLP_RESPONSE(node)));
-}
-
-PyObject *samlp_response_add_assertion(PyObject *self, PyObject *args) {
- PyObject *node_obj, *assertion_obj;
-
- if (CheckArgs(args, "OO:samlp_response_add_assertion")) {
- if(!PyArg_ParseTuple(args, (char *) "OO:samlp_response_add_assertion",
- &node_obj, &assertion_obj))
- return NULL;
- }
- else return NULL;
-
- lasso_samlp_response_add_assertion(LassoSamlpResponse_get(node_obj),
- gpointer_get(assertion_obj));
-
- Py_INCREF(Py_None);
- return (Py_None);
-}
diff --git a/python/xml/py_samlp_response.h b/python/xml/py_samlp_response.h
deleted file mode 100644
index 9232e7ca..00000000
--- a/python/xml/py_samlp_response.h
+++ /dev/null
@@ -1,42 +0,0 @@
-/* $Id$
- *
- * PyLasso -- Python bindings for Lasso library
- *
- * Copyright (C) 2004 Entr'ouvert
- * http://lasso.entrouvert.org
- *
- * Authors: Nicolas Clapies <nclapies@entrouvert.com>
- * Valery Febvre <vfebvre@easter-eggs.com>
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- */
-
-#ifndef __PYLASSO_PY_SAMLP_RESPONSE_H__
-#define __PYLASSO_PY_SAMLP_RESPONSE_H__
-
-#include <lasso/xml/samlp_response.h>
-
-typedef struct {
- PyObject_HEAD
- LassoSamlpResponse *obj;
-} LassoSamlpResponse_object;
-
-#define LassoSamlpResponse_get(v) (((v) == Py_None) ? NULL : (((LassoSamlpResponse_object *)(PyObject_GetAttr(v, PyString_FromString("_o"))))->obj))
-PyObject *LassoSamlpResponse_wrap(LassoSamlpResponse *response);
-
-PyObject *samlp_response_new(PyObject *self, PyObject *args);
-PyObject *samlp_response_add_assertion(PyObject *self, PyObject *args);
-
-#endif /* __PYLASSO_PY_SAMLP_RESPONSE_H__ */
diff --git a/python/xml/py_xml.c b/python/xml/py_xml.c
deleted file mode 100644
index 83636187..00000000
--- a/python/xml/py_xml.c
+++ /dev/null
@@ -1,213 +0,0 @@
-/* $Id$
- *
- * PyLasso -- Python bindings for Lasso library
- *
- * Copyright (C) 2004 Entr'ouvert
- * http://lasso.entrouvert.org
- *
- * Authors: Nicolas Clapies <nclapies@entrouvert.com>
- * Valery Febvre <vfebvre@easter-eggs.com>
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- */
-
-#include "../lassomod.h"
-
-#include "py_xml.h"
-
-PyObject *LassoNode_wrap(LassoNode *node) {
- PyObject *ret;
-
- if (node == NULL) {
- Py_INCREF(Py_None);
- return (Py_None);
- }
- ret = PyCObject_FromVoidPtrAndDesc((void *) node,
- (char *) "LassoNode *", NULL);
- return (ret);
-}
-
-/******************************************************************************/
-/* LassoNode */
-/******************************************************************************/
-
-PyObject *node_destroy(PyObject *self, PyObject *args) {
- PyObject *node_obj;
-
- if (CheckArgs(args, "O:node_destroy")) {
- if(!PyArg_ParseTuple(args, (char *) "O:node_destroy", &node_obj))
- return NULL;
- }
- else return NULL;
-
- lasso_node_destroy(LassoNode_get(node_obj));
-
- Py_INCREF(Py_None);
- return (Py_None);
-}
-
-PyObject *node_dump(PyObject *self, PyObject *args) {
- PyObject *node_obj;
- xmlChar *encoding;
- int format;
- xmlChar *ret;
-
- if (CheckArgs(args, "OSI:node_dump")) {
- if(!PyArg_ParseTuple(args, (char *) "Osi:node_dump",
- &node_obj, &encoding, &format))
- return NULL;
- }
- else return NULL;
-
- ret = lasso_node_dump(LassoNode_get(node_obj), encoding, format);
-
- return (xmlCharPtr_wrap(ret));
-}
-
-PyObject *node_export(PyObject *self, PyObject *args) {
- PyObject *node_obj;
- xmlChar *ret;
-
- if (CheckArgs(args, "O:node_export")) {
- if(!PyArg_ParseTuple(args, (char *) "O:node_export", &node_obj))
- return NULL;
- }
- else return NULL;
-
- ret = lasso_node_export(LassoNode_get(node_obj));
-
- return (xmlCharPtr_wrap(ret));
-}
-
-PyObject *node_export_to_base64(PyObject *self, PyObject *args) {
- PyObject *node_obj;
- xmlChar *ret;
-
- if (CheckArgs(args, "O:node_export_to_base64")) {
- if(!PyArg_ParseTuple(args, (char *) "O:node_export_to_base64", &node_obj))
- return NULL;
- }
- else return NULL;
-
- ret = lasso_node_export_to_base64(LassoNode_get(node_obj));
-
- return (xmlCharPtr_wrap(ret));
-}
-
-PyObject *node_export_to_query(PyObject *self, PyObject *args) {
- PyObject *node_obj;
- guint sign_method;
- const gchar *private_key_file;
- gchar *ret;
-
- if (CheckArgs(args, "Ois:node_export_to_query")) {
- if(!PyArg_ParseTuple(args, (char *) "Oiz:node_export_to_query",
- &node_obj, &sign_method, &private_key_file))
- return NULL;
- }
- else return NULL;
-
- ret = lasso_node_export_to_query(LassoNode_get(node_obj),
- sign_method, private_key_file);
-
- return (charPtr_wrap(ret));
-}
-
-PyObject *node_export_to_soap(PyObject *self, PyObject *args) {
- PyObject *node_obj;
- gchar *ret;
-
- if (CheckArgs(args, "O:node_export_to_soap")) {
- if(!PyArg_ParseTuple(args, (char *) "O:node_export_to_soap",
- &node_obj))
- return NULL;
- }
- else return NULL;
-
- ret = lasso_node_export_to_soap(LassoNode_get(node_obj));
-
- return (xmlCharPtr_wrap(ret));
-}
-
-PyObject *node_get_attr_value(PyObject *self, PyObject *args) {
- PyObject *node_obj;
- const xmlChar *name;
- xmlChar *ret = NULL;
-
- if (CheckArgs(args, "OS:node_get_attr_value")) {
- if(!PyArg_ParseTuple(args, (char *) "Os:node_get_attr_value",
- &node_obj, &name))
- return NULL;
- }
- else return NULL;
-
- ret = lasso_node_get_attr_value(LassoNode_get(node_obj), name, NULL);
- /* FIXME generate an exception here */
-
- return (xmlCharPtr_wrap(ret));
-}
-
-PyObject *node_get_child(PyObject *self, PyObject *args) {
- PyObject *node_obj;
- const xmlChar *name, *href;
- LassoNode *ret;
-
- if (CheckArgs(args, "OSs:node_get_child")) {
- if(!PyArg_ParseTuple(args, (char *) "Osz:node_get_child",
- &node_obj, &name, &href))
- return NULL;
- }
- else return NULL;
-
- ret = lasso_node_get_child(LassoNode_get(node_obj), name, href, NULL);
- /* FIXME generate an exception here */
-
- return (LassoNode_wrap(ret));
-}
-
-PyObject *node_get_content(PyObject *self, PyObject *args) {
- PyObject *node_obj;
- xmlChar *ret;
-
- if (CheckArgs(args, "O:node_get_content")) {
- if(!PyArg_ParseTuple(args, (char *) "O:node_get_content",
- &node_obj))
- return NULL;
- }
- else return NULL;
-
- ret = lasso_node_get_content(LassoNode_get(node_obj), NULL);
- /* FIXME generate an exception here */
-
- return (xmlCharPtr_wrap(ret));
-}
-
-PyObject *node_verify_signature(PyObject *self, PyObject *args) {
- PyObject *node_obj;
- const gchar *certificate_file;
- gint ret;
-
- if (CheckArgs(args, "OS:node_verify_signature")) {
- if(!PyArg_ParseTuple(args, (char *) "Os:node_verify_signature",
- &node_obj, &certificate_file))
- return NULL;
- }
- else return NULL;
-
- ret = lasso_node_verify_signature(LassoNode_get(node_obj),
- certificate_file);
-
- return (int_wrap(ret));
-}
diff --git a/python/xml/py_xml.h b/python/xml/py_xml.h
deleted file mode 100644
index 6bf4a62b..00000000
--- a/python/xml/py_xml.h
+++ /dev/null
@@ -1,50 +0,0 @@
-/* $Id$
- *
- * PyLasso -- Python bindings for Lasso library
- *
- * Copyright (C) 2004 Entr'ouvert
- * http://lasso.entrouvert.org
- *
- * Authors: Nicolas Clapies <nclapies@entrouvert.com>
- * Valery Febvre <vfebvre@easter-eggs.com>
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- */
-
-#ifndef __PYLASSO_PY_XML_H__
-#define __PYLASSO_PY_XML_H__
-
-#include "../../lasso/xml/xml.h"
-
-typedef struct {
- PyObject_HEAD
- LassoNode *obj;
-} LassoNode_object;
-
-#define LassoNode_get(v) (((v) == Py_None) ? NULL : (((LassoNode_object *)(PyObject_GetAttr(v, PyString_FromString("_o"))))->obj))
-PyObject *LassoNode_wrap(LassoNode *node);
-
-PyObject *node_destroy(PyObject *self, PyObject *args);
-PyObject *node_dump(PyObject *self, PyObject *args);
-PyObject *node_export(PyObject *self, PyObject *args);
-PyObject *node_export_to_base64(PyObject *self, PyObject *args);
-PyObject *node_export_to_query(PyObject *self, PyObject *args);
-PyObject *node_export_to_soap(PyObject *self, PyObject *args);
-PyObject *node_get_attr_value(PyObject *self, PyObject *args);
-PyObject *node_get_child(PyObject *self, PyObject *args);
-PyObject *node_get_content(PyObject *self, PyObject *args);
-PyObject *node_verify_signature(PyObject *self, PyObject *args);
-
-#endif /* __PYLASSO_PY_XML_H__ */