From 35951ac17b70c1c96f362e2bb03a9f71bec6c360 Mon Sep 17 00:00:00 2001 From: Alden Weddleton Date: Wed, 8 Aug 2018 10:11:37 -0400 Subject: [PATCH 1/2] Fix mismatched list items Item one was displaying with a "1)" while item two shows up as "2." --- security/guard_authentication.rst | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/security/guard_authentication.rst b/security/guard_authentication.rst index 9a946133697..3504c932613 100644 --- a/security/guard_authentication.rst +++ b/security/guard_authentication.rst @@ -562,10 +562,8 @@ The problem occurs when your browser-based authenticator tries to authenticate the user on *every* request - like in the IP address-based example above. There are two possible fixes: -1) If you do *not* need authentication to be stored in the session, set ``stateless: true`` -under your firewall. - -2) Update your authenticator to avoid authentication if the user is already authenticated: +1. If you do *not* need authentication to be stored in the session, set ``stateless: true`` under your firewall. +2. Update your authenticator to avoid authentication if the user is already authenticated: .. code-block:: diff From 94750d43324d467df3568b5fb4c4ab474de28d17 Mon Sep 17 00:00:00 2001 From: Javier Eguiluz Date: Wed, 8 Aug 2018 17:34:27 +0200 Subject: [PATCH 2/2] Wrap long lines --- security/guard_authentication.rst | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/security/guard_authentication.rst b/security/guard_authentication.rst index 3504c932613..7f5cf7af22d 100644 --- a/security/guard_authentication.rst +++ b/security/guard_authentication.rst @@ -562,8 +562,10 @@ The problem occurs when your browser-based authenticator tries to authenticate the user on *every* request - like in the IP address-based example above. There are two possible fixes: -1. If you do *not* need authentication to be stored in the session, set ``stateless: true`` under your firewall. -2. Update your authenticator to avoid authentication if the user is already authenticated: +1. If you do *not* need authentication to be stored in the session, set + ``stateless: true`` under your firewall. +2. Update your authenticator to avoid authentication if the user is already + authenticated: .. code-block:: diff