瀏覽代碼

Minor updates to x509 doc and update of remember-me doc (no longer part of auto-config)

Luke Taylor 16 年之前
父節點
當前提交
4a12b80470

+ 0 - 1
docs/manual/src/docbook/remember-me-authentication.xml

@@ -58,7 +58,6 @@
   </http>
   </http>
   ]]>
   ]]>
                 </programlisting>
                 </programlisting>
-            It is automatically enabled for you if you are using the <link xlink:href="ns-auto-config">auto-config</link> setting.
             The <interfacename>UserDetailsService</interfacename> will normally be selected automatically. If you have more than one in
             The <interfacename>UserDetailsService</interfacename> will normally be selected automatically. If you have more than one in
             your application context, you need to specify which one should be used with the <literal>user-service-ref</literal> attribute,
             your application context, you need to specify which one should be used with the <literal>user-service-ref</literal> attribute,
             where the value is the name of your <interfacename>UserDetailsService</interfacename> bean.
             where the value is the name of your <interfacename>UserDetailsService</interfacename> bean.

+ 5 - 6
docs/manual/src/docbook/x509-auth-provider.xml

@@ -1,4 +1,5 @@
-<chapter xmlns="http://docbook.org/ns/docbook" version="5.0" xml:id="x509"><info><title>X.509 Authentication</title></info>
+<chapter xmlns="http://docbook.org/ns/docbook" version="5.0" xml:id="x509">
+    <info><title>X.509 Authentication</title></info>
     
     
     <section xml:id="x509-overview"><info><title>Overview</title></info>
     <section xml:id="x509-overview"><info><title>Overview</title></info>
         
         
@@ -9,13 +10,11 @@
             maintains.</para>
             maintains.</para>
         <para>You can also use SSL with <quote>mutual authentication</quote>; the server will then
         <para>You can also use SSL with <quote>mutual authentication</quote>; the server will then
             request a valid certificate from the client as part of the SSL handshake. The server
             request a valid certificate from the client as part of the SSL handshake. The server
-            will authenticate the client by checking that it's certificate is signed by an
+            will authenticate the client by checking that its certificate is signed by an
             acceptable authority. If a valid certificate has been provided, it can be obtained
             acceptable authority. If a valid certificate has been provided, it can be obtained
             through the servlet API in an application. Spring Security X.509 module extracts the
             through the servlet API in an application. Spring Security X.509 module extracts the
-            certificate using a filter and passes it to the configured X.509 authentication provider
-            to allow any additional application-specific checks to be applied. It also maps the
-            certificate to an application user and loads that user's set of granted authorities for
-            use with the standard Spring Security infrastructure.</para>
+            certificate using a filter. It maps the certificate to an application user and loads that 
+            user's set of granted authorities for use with the standard Spring Security infrastructure.</para>
         <para>You should be familiar with using certificates and setting up client authentication
         <para>You should be familiar with using certificates and setting up client authentication
             for your servlet container before attempting to use it with Spring Security. Most of the
             for your servlet container before attempting to use it with Spring Security. Most of the
             work is in creating and installing suitable certificates and keys. For example, if
             work is in creating and installing suitable certificates and keys. For example, if