summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorRoland Hedberg <roland.hedberg@adm.umu.se>2015-09-01 12:22:21 +0200
committerRoland Hedberg <roland.hedberg@adm.umu.se>2015-09-01 12:22:21 +0200
commit0a83d585ca4b52c43e005c905cc565dd02b0cb23 (patch)
treeeef27941d95b1b85849d93904e2a08ee60fb3509 /doc
parente341cdc5fe2f0a0c47b94c1a58d38ac03786db34 (diff)
downloadpysaml2-0a83d585ca4b52c43e005c905cc565dd02b0cb23.tar.gz
Some configuration parameters values should be True/False not "true"/"false".
Diffstat (limited to 'doc')
-rw-r--r--doc/howto/config.rst12
1 files changed, 6 insertions, 6 deletions
diff --git a/doc/howto/config.rst b/doc/howto/config.rst
index 56ea147b..2d08979d 100644
--- a/doc/howto/config.rst
+++ b/doc/howto/config.rst
@@ -351,13 +351,13 @@ by default. This can be overriden by application code for a specific call.
This sets the AuthnRequestsSigned attribute of the SPSSODescriptor node
of the metadata so the IdP will know this SP preference.
-Valid values are "true" or "false". Default value is "false".
+Valid values are True or False. Default value is True.
Example::
"service": {
"sp": {
- "authn_requests_signed": "true",
+ "authn_requests_signed": True,
}
}
@@ -419,13 +419,13 @@ Indicates if this SP wants the IdP to send the assertions signed. This
sets the WantAssertionsSigned attribute of the SPSSODescriptor node
of the metadata so the IdP will know this SP preference.
-Valid values are "true" or "false". Default value is "true".
+Valid values are True or False. Default value is True.
Example::
"service": {
"sp": {
- "want_assertions_signed": "true",
+ "want_assertions_signed": True,
}
}
@@ -475,13 +475,13 @@ Indicates if this entity will sign the Logout Requests originated from it.
This can be overriden by application code for a specific call.
-Valid values are "true" or "false". Default value is "false".
+Valid values are True or False. Default value is False.
Example::
"service": {
"sp": {
- "logout_requests_signed": "true",
+ "logout_requests_signed": False,
}
}