[doc] do some documentation fixing

This commit is contained in:
Benjamin Dauvergne 2011-12-22 18:21:12 +01:00
parent 26b341a276
commit 3dca5c2afa
5 changed files with 8 additions and 6 deletions

View File

@ -213,7 +213,7 @@ the <ulink url="http://lasso.entrouvert.org/license">GNU General Public License<
<chapter id="saml2"> <chapter id="saml2">
<title>SAML 2.0 Single Sign On profiles</title> <title>SAML 2.0 Single Sign On profiles</title>
<para> <para>
The profile <link linkend="lasso-LassoLogin">LassoLogin</link> and <link linkend="lasso-LassoLogout">LassoLogout</link> are shared between SAML The profile <link linkend="lasso-login">LassoLogin</link> and <link linkend="lasso-LassoLogout">LassoLogout</link> are shared between SAML
2.0 and ID-FF 1.2, depending on the declared protocol support, 2.0 and ID-FF 1.2, depending on the declared protocol support,
Lasso will create request respecting the chosen standard. Beware Lasso will create request respecting the chosen standard. Beware
that initialization of the <link linkend="lasso-LassoLogin">LassoLogin</link> object, after construction, that initialization of the <link linkend="lasso-LassoLogin">LassoLogin</link> object, after construction,

View File

@ -220,7 +220,6 @@ LASSO_LECP_GET_CLASS
<SECTION> <SECTION>
<FILE>login</FILE> <FILE>login</FILE>
LassoLoginProtocolProfile
<TITLE>LassoLogin</TITLE> <TITLE>LassoLogin</TITLE>
LassoLogin LassoLogin
lasso_login_new lasso_login_new

View File

@ -675,7 +675,7 @@ lasso_profile_set_soap_fault_response(LassoProfile *profile, const char *faultco
* *
* Return value: #LASSO_PROVIDER_ROLE_NONE if nothing can be said, #LASSO_PROVIDER_ROLE_SP if a * Return value: #LASSO_PROVIDER_ROLE_NONE if nothing can be said, #LASSO_PROVIDER_ROLE_SP if a
* federation qualifier by @remote_provider_id exists or #LASSO_PROVIDER_ROLE_IDP if a federation * federation qualifier by @remote_provider_id exists or #LASSO_PROVIDER_ROLE_IDP if a federation
* qualifier by our own #LassoProvider.providerID exists. * qualifier by our own #LassoProvider.ProviderID exists.
*/ */
LassoProviderRole lasso_profile_sso_role_with(LassoProfile *profile, const char *remote_provider_id) LassoProviderRole lasso_profile_sso_role_with(LassoProfile *profile, const char *remote_provider_id)
{ {

View File

@ -139,6 +139,9 @@ typedef enum {
* HTTP-Post binding), the body of the POST will be in this field, * HTTP-Post binding), the body of the POST will be in this field,
* @msg_relayState: put there the relaystate to put in the genereated URL for HTTP-Redirect or * @msg_relayState: put there the relaystate to put in the genereated URL for HTTP-Redirect or
* HTTP-Get binding. * HTTP-Get binding.
* @signature_status: result of the last signature validation.
* @identity: the state of federation linking for the current user.
* @session: the state of global SSO session for the current user.
* *
* #LassoProfile, child class of #LassoNode is the basis object of profiles object like #LassoLogin, #LassoLogout, * #LassoProfile, child class of #LassoNode is the basis object of profiles object like #LassoLogin, #LassoLogout,
* #LassoDefederation, #LassoNameIdentifierMapping, #LassoNameRegistration, #LassoNameIdManagement * #LassoDefederation, #LassoNameIdentifierMapping, #LassoNameRegistration, #LassoNameIdManagement

View File

@ -626,7 +626,7 @@
* LASSO_LIB_NAME_IDENTIFIER_FORMAT_FEDERATED: * LASSO_LIB_NAME_IDENTIFIER_FORMAT_FEDERATED:
* *
* <emphasis>Federated</emphasis> name identifier constant, used in * <emphasis>Federated</emphasis> name identifier constant, used in
* #LassoNameIdentifier. It implies the name identifier belongs to * #LassoSamlNameIdentifier. It implies the name identifier belongs to
* a federation established between SP and IdP. * a federation established between SP and IdP.
*/ */
#define LASSO_LIB_NAME_IDENTIFIER_FORMAT_FEDERATED "urn:liberty:iff:nameid:federated" #define LASSO_LIB_NAME_IDENTIFIER_FORMAT_FEDERATED "urn:liberty:iff:nameid:federated"
@ -634,14 +634,14 @@
/** /**
* LASSO_LIB_NAME_IDENTIFIER_FORMAT_ONE_TIME: * LASSO_LIB_NAME_IDENTIFIER_FORMAT_ONE_TIME:
* *
* "One-time" name identifier constant, used in #LassoNameIdentifier. * "One-time" name identifier constant, used in #LassoSamlNameIdentifier.
*/ */
#define LASSO_LIB_NAME_IDENTIFIER_FORMAT_ONE_TIME "urn:liberty:iff:nameid:one-time" #define LASSO_LIB_NAME_IDENTIFIER_FORMAT_ONE_TIME "urn:liberty:iff:nameid:one-time"
/** /**
* LASSO_LIB_NAME_IDENTIFIER_FORMAT_ENCRYPTED: * LASSO_LIB_NAME_IDENTIFIER_FORMAT_ENCRYPTED:
* *
* "Encrypted" name identifier constant, used in #LassoNameIdentifier. * "Encrypted" name identifier constant, used in #LassoSamlNameIdentifier.
*/ */
#define LASSO_LIB_NAME_IDENTIFIER_FORMAT_ENCRYPTED "urn:liberty:iff:nameid:encrypted" #define LASSO_LIB_NAME_IDENTIFIER_FORMAT_ENCRYPTED "urn:liberty:iff:nameid:encrypted"
#define LASSO_LIB_NAME_IDENTIFIER_FORMAT_ENTITYID "urn:liberty:iff:nameid:entityID" #define LASSO_LIB_NAME_IDENTIFIER_FORMAT_ENTITYID "urn:liberty:iff:nameid:entityID"