[rs-commit] r134 - in /rs-manual/trunk/src/site/xhtml5: hooks.xhtml5 mod/mod_ca_crl.xhtml5 mod/mod_ca_disk.xhtml5 mod/mod_ca_engine.xhtml5 mod/mod_ca_ldap.xhtml5 mod/mod_ca_simple.xhtml5
rs-commit at redwax.eu
rs-commit at redwax.eu
Sat Nov 2 01:47:33 CET 2019
Author: minfrin at redwax.eu
Date: Sat Nov 2 01:47:32 2019
New Revision: 134
Log:
Alphabetise the hook implemetations to make them easier to document.
Modified:
rs-manual/trunk/src/site/xhtml5/hooks.xhtml5
rs-manual/trunk/src/site/xhtml5/mod/mod_ca_crl.xhtml5
rs-manual/trunk/src/site/xhtml5/mod/mod_ca_disk.xhtml5
rs-manual/trunk/src/site/xhtml5/mod/mod_ca_engine.xhtml5
rs-manual/trunk/src/site/xhtml5/mod/mod_ca_ldap.xhtml5
rs-manual/trunk/src/site/xhtml5/mod/mod_ca_simple.xhtml5
Modified: rs-manual/trunk/src/site/xhtml5/hooks.xhtml5
==============================================================================
--- rs-manual/trunk/src/site/xhtml5/hooks.xhtml5 (original)
+++ rs-manual/trunk/src/site/xhtml5/hooks.xhtml5 Sat Nov 2 01:47:32 2019
@@ -33,13 +33,13 @@
</p>
<dl>
- <dt><a href="mod/mod_ca_crl.html#hook-ca_getcrl">Get Certificate Revocation List From Disk</a></dt>
+ <dt><a href="mod/mod_ca_crl.html#hook-ca_getcrlcrl">Get Certificate Revocation List From Disk</a></dt>
<dd>
<p>
Returns the certificate revocation list from a file on disk.
</p>
</dd>
- <dt><a href="mod/mod_ca_disk.html#hook-ca_disk_sign">Sign Request Save To Disk</a></dt>
+ <dt><a href="mod/mod_ca_disk.html#hook-ca_sign_disk">Sign Request Save To Disk</a></dt>
<dd>
<p>
Saves the certificate revocation list to a directory
Modified: rs-manual/trunk/src/site/xhtml5/mod/mod_ca_crl.xhtml5
==============================================================================
--- rs-manual/trunk/src/site/xhtml5/mod/mod_ca_crl.xhtml5 (original)
+++ rs-manual/trunk/src/site/xhtml5/mod/mod_ca_crl.xhtml5 Sat Nov 2 01:47:32 2019
@@ -98,7 +98,7 @@
<tbody>
<tr>
<td>
- <a href="mod_ca_crl.html#hook-ca_getcrl">Get Certificate Revocation List From Disk</a>
+ <a href="mod_ca_crl.html#hook-ca_getcrl_crl">Get Certificate Revocation List From Disk</a>
</td>
<td>Returns the certificate revocation list from a file on disk.</td>
</tr>
@@ -137,7 +137,7 @@
<tbody>
<tr>
<td>
- <a href="mod_ca_crl.html#hook-ca_getcertstatus">Get Certificate Status From Disk</a>
+ <a href="mod_ca_crl.html#hook-ca_getcertstatus_crl">Get Certificate Status From Disk</a>
</td>
<td>Check the certificate status against the certificate sign request from disk.</td>
</tr>
@@ -207,7 +207,7 @@
</p>
<div class="index align-left">
- <section id="hook-ca_getcrl">
+ <section id="hook-ca_getcrl_crl">
<header>
<h3>Get Certificate Revocation List From Disk</h3>
</header>
@@ -226,7 +226,7 @@
</div>
</section>
- <section id="hook-ca_getcertstatus">
+ <section id="hook-ca_getcertstatus_crl">
<header>
<h3>Get Certificate Status From Disk</h3>
</header>
Modified: rs-manual/trunk/src/site/xhtml5/mod/mod_ca_disk.xhtml5
==============================================================================
--- rs-manual/trunk/src/site/xhtml5/mod/mod_ca_disk.xhtml5 (original)
+++ rs-manual/trunk/src/site/xhtml5/mod/mod_ca_disk.xhtml5 Sat Nov 2 01:47:32 2019
@@ -109,7 +109,7 @@
<tbody>
<tr>
<td>
- <a href="mod_ca_disk.html#hook-ca_disk_sign">Sign Request Save To Disk</a>
+ <a href="mod_ca_disk.html#hook-ca_sign_disk">Sign Request Save To Disk</a>
</td>
<td>Saves the certificate revocation list to a directory
on disk for later processing.</td>
@@ -168,7 +168,7 @@
<tbody>
<tr>
<td>
- <a href="mod_ca_disk.html#hook-ca_disk_certstore">Certificate Storage Save To Disk</a>
+ <a href="mod_ca_disk.html#hook-ca_certstore_disk">Certificate Storage Save To Disk</a>
</td>
<td>Saves the newly generated certificate to a directory.</td>
</tr>
@@ -234,7 +234,7 @@
<tbody>
<tr>
<td>
- <a href="mod_ca_disk.html#hook-ca_disk_getcert">Get Certificate From Disk</a>
+ <a href="mod_ca_disk.html#hook-ca_getcert_disk">Get Certificate From Disk</a>
</td>
<td>Returns the certificate from a directory on disk written during earlier
processing. This hook implementation will trigger the
@@ -285,7 +285,7 @@
<tbody>
<tr>
<td>
- <a href="mod_ca_disk.html#hook-ca_disk_makeserialnext">Make Next Serial From Disk</a>
+ <a href="mod_ca_disk.html#hook-ca_makeserial_disk">Make Next Serial From Disk</a>
</td>
<td>Returns the next serial number from the contents of a file on disk.</td>
</tr>
@@ -299,7 +299,7 @@
<tbody>
<tr>
<td>
- <a href="mod_ca_engine.html#hook-ca_engine_sign">mod_ca_engine</a>
+ <a href="mod_ca_engine.html#hook-ca_sign_engine">mod_ca_engine</a>
</td>
<td>This hook signs a given certificate sign request using an
OpenSSL provided crypto engine such as a smartcard, using the
@@ -307,7 +307,7 @@
</tr>
<tr>
<td>
- <a href="mod_ca_simple.html#hook-ca_simple_sign">mod_ca_simple</a>
+ <a href="mod_ca_simple.html#hook-ca_sign_simple">mod_ca_simple</a>
</td>
<td>This hook signs a given certificate sign request, using the
serial number returned by this module.</td>
@@ -404,7 +404,7 @@
</p>
<div class="index align-left">
- <section id="hook-ca_disk_sign">
+ <section id="hook-ca_sign_disk">
<header>
<h3><a href="mod_ca.html#ca_sign">Sign Request Save To Disk</a></h3>
</header>
@@ -423,7 +423,7 @@
</div>
</section>
- <section id="hook-ca_disk_certstore">
+ <section id="hook-ca_certstore_disk">
<header>
<h3><a href="mod_ca.html#ca_certstore">Certificate Storage Save To Disk</a></h3>
</header>
@@ -454,7 +454,7 @@
</div>
</section>
- <section id="hook-ca_disk_getcert">
+ <section id="hook-ca_getcert_disk">
<header>
<h3><a href="mod_ca.html#ca_getcert">Get Certificate From Disk</a></h3>
</header>
@@ -491,7 +491,7 @@
</div>
</section>
- <section id="hook-ca_disk_makeserialnext">
+ <section id="hook-ca_makeserial_disk">
<header>
<h3><a href="mod_ca.html#ca_makeserial">Make Next Serial From Disk</a></h3>
</header>
Modified: rs-manual/trunk/src/site/xhtml5/mod/mod_ca_engine.xhtml5
==============================================================================
--- rs-manual/trunk/src/site/xhtml5/mod/mod_ca_engine.xhtml5 (original)
+++ rs-manual/trunk/src/site/xhtml5/mod/mod_ca_engine.xhtml5 Sat Nov 2 01:47:32 2019
@@ -103,7 +103,7 @@
<tbody>
<tr>
<td>
- <a href="mod_ca_engine.html#hook-ca_engine_sign">Engine Sign Request</a>
+ <a href="mod_ca_engine.html#hook-ca_sign_engine">Engine Sign Request</a>
</td>
<td>Signs the certificate sign request using a key stored on an HSM
or smartcard.</td>
@@ -176,7 +176,7 @@
<tbody>
<tr>
<td>
- <a href="mod_ca_engine.html#hook-ca_engine_sign">mod_ca_engine</a>
+ <a href="mod_ca_engine.html#hook-ca_sign_engine">mod_ca_engine</a>
</td>
<td>This hook signs a given certificate sign request using an
OpenSSL provided crypto engine such as a smartcard, using the
@@ -184,7 +184,7 @@
</tr>
<tr>
<td>
- <a href="mod_ca_simple.html#hook-ca_simple_sign">mod_ca_simple</a>
+ <a href="mod_ca_simple.html#hook-ca_sign_simple">mod_ca_simple</a>
</td>
<td>This hook signs a given certificate sign request, using the
serial number returned by this module.</td>
@@ -212,20 +212,20 @@
<tbody>
<tr>
<td>
- <a href="mod_ca_disk.html#hook-ca_disk_makeserialnext">Make Next Serial From Disk</a>
+ <a href="mod_ca_disk.html#hook-ca_makeserial_disk">Make Next Serial From Disk</a>
</td>
<td>Returns the next serial number from the contents of a file on disk.</td>
</tr>
<tr>
<td>
- <a href="mod_ca_simple.html#hook-ca_simple_makeserial_subject">Simple Make Serial From Subject</a>
+ <a href="mod_ca_simple.html#hook-ca_makeserial_simple_subject">Simple Make Serial From Subject</a>
</td>
<td>Returns the serial number from that embedded within the subject of the
certificate sign request.</td>
</tr>
<tr>
<td>
- <a href="mod_ca_simple.html#hook-ca_simple_makeserial_random">Simple Make Random Serial</a>
+ <a href="mod_ca_simple.html#hook-ca_makeserial_simple_random">Simple Make Random Serial</a>
</td>
<td>Returns a random serial number.</td>
</tr>
@@ -239,7 +239,7 @@
<tbody>
<tr>
<td>
- <a href="mod_ca_engine.html#hook-ca_engine_sign">mod_ca_engine</a>
+ <a href="mod_ca_engine.html#hook-ca_sign_engine">mod_ca_engine</a>
</td>
<td>This hook signs a given certificate sign request using an
OpenSSL provided crypto engine such as a smartcard, using the
@@ -247,7 +247,7 @@
</tr>
<tr>
<td>
- <a href="mod_ca_simple.html#hook-ca_simple_sign">mod_ca_simple</a>
+ <a href="mod_ca_simple.html#hook-ca_sign_simple">mod_ca_simple</a>
</td>
<td>This hook signs a given certificate sign request, using the
serial number returned by this module.</td>
@@ -280,7 +280,7 @@
<tbody>
<tr>
<td>
- <a href="mod_ca_simple.html#hook-ca_gettime">mod_ca_simple</a>
+ <a href="mod_ca_simple.html#hook-ca_gettime_simple">mod_ca_simple</a>
</td>
<td>This hook returns the time to be used to sign a certificate sign
request, derived from the system time.</td>
@@ -295,7 +295,7 @@
<tbody>
<tr>
<td>
- <a href="mod_ca_engine.html#hook-ca_engine_sign">mod_ca_engine</a>
+ <a href="mod_ca_engine.html#hook-ca_sign_engine">mod_ca_engine</a>
</td>
<td>This hook signs a given certificate sign request using an
OpenSSL provided crypto engine such as a smartcard, using the
@@ -303,7 +303,7 @@
</tr>
<tr>
<td>
- <a href="mod_ca_simple.html#hook-ca_simple_sign">mod_ca_simple</a>
+ <a href="mod_ca_simple.html#hook-ca_sign_simple">mod_ca_simple</a>
</td>
<td>This hook signs a given certificate sign request, using the
serial number returned by this module.</td>
@@ -486,7 +486,7 @@
</p>
<div class="index align-left">
- <section id="hook-ca_engine_sign">
+ <section id="hook-ca_sign_engine">
<header>
<h3><a href="mod_ca.html#ca_sign">Engine Sign Request</a></h3>
</header>
@@ -515,7 +515,7 @@
</div>
</section>
- <section id="hook-ca_engine_getca">
+ <section id="hook-ca_getca_engine">
<header>
<h3><a href="mod_ca.html#ca_getca">Engine Get Certificate Authority</a></h3>
</header>
@@ -536,7 +536,7 @@
</div>
</section>
- <section id="hook-ca_engine_getnextca">
+ <section id="hook-ca_getnextca_engine">
<header>
<h3><a href="mod_ca.html#ca_getnextca">Engine Get Next Certificate Authority</a></h3>
</header>
@@ -557,7 +557,7 @@
</div>
</section>
- <section id="hook-ca_engine_getchain">
+ <section id="hook-ca_getchain_engine">
<header>
<h3><a href="mod_ca.html#ca_getchain">Engine Get Chain</a></h3>
</header>
Modified: rs-manual/trunk/src/site/xhtml5/mod/mod_ca_ldap.xhtml5
==============================================================================
--- rs-manual/trunk/src/site/xhtml5/mod/mod_ca_ldap.xhtml5 (original)
+++ rs-manual/trunk/src/site/xhtml5/mod/mod_ca_ldap.xhtml5 Sat Nov 2 01:47:32 2019
@@ -103,7 +103,7 @@
<tbody>
<tr>
<td>
- <a href="mod_ca_ldap.html#hook-ca_ldap_reqauthz">LDAP Request Authorization</a>
+ <a href="mod_ca_ldap.html#hook-ca_reqauthz_ldap">LDAP Request Authorization</a>
</td>
<td>Verifies authorization against an LDAP directory.</td>
</tr>
@@ -163,7 +163,7 @@
<tbody>
<tr>
<td>
- <a href="mod_ca_ldap.html#hook-ca_ldap_certstore">LDAP Certificate Storage</a>
+ <a href="mod_ca_ldap.html#hook-ca_certstore_ldap">LDAP Certificate Storage</a>
</td>
<td>Stores a generated certificate in an LDAP directory.</td>
</tr>
@@ -321,7 +321,7 @@
</p>
<div class="index align-left">
- <section id="hook-ca_ldap_reqauthz">
+ <section id="hook-ca_reqauthz_ldap">
<header>
<h3><a href="mod_ca.html#ca_reqauthz">LDAP Request Authorization</a></h3>
</header>
@@ -354,7 +354,7 @@
</div>
</section>
- <section id="hook-ca_ldap_certstore">
+ <section id="hook-ca_certstore_ldap">
<header>
<h3><a href="mod_ca.html#ca_certstore">LDAP Certificate Storage</a></h3>
</header>
@@ -367,7 +367,7 @@
<p>
This optional hook implementation extends and depends on the
- <a href="#hook-ca_ldap_reqauthz">LDAP Request Authorization</a> hook
+ <a href="#hook-ca_reqauthz_ldap">LDAP Request Authorization</a> hook
implementation above.
</p>
Modified: rs-manual/trunk/src/site/xhtml5/mod/mod_ca_simple.xhtml5
==============================================================================
--- rs-manual/trunk/src/site/xhtml5/mod/mod_ca_simple.xhtml5 (original)
+++ rs-manual/trunk/src/site/xhtml5/mod/mod_ca_simple.xhtml5 Sat Nov 2 01:47:32 2019
@@ -110,7 +110,7 @@
<tbody>
<tr>
<td>
- <a href="mod_ca_simple.html#hook-ca_simple_sign">Simple Sign Request</a>
+ <a href="mod_ca_simple.html#hook-ca_sign_simple">Simple Sign Request</a>
</td>
<td>Signs the certificate sign request using a key stored on disk.</td>
</tr>
@@ -169,7 +169,7 @@
<tbody>
<tr>
<td>
- <a href="mod_ca_simple.html#hook-ca_simple_getchain">Simple Get Chain</a>
+ <a href="mod_ca_simple.html#hook-ca_getchain_simple">Simple Get Chain</a>
</td>
<td>Returns the chain of certificates used to sign the request.</td>
</tr>
@@ -182,7 +182,7 @@
<tbody>
<tr>
<td>
- <a href="mod_ca_engine.html#hook-ca_engine_sign">mod_ca_engine</a>
+ <a href="mod_ca_engine.html#hook-ca_sign_engine">mod_ca_engine</a>
</td>
<td>This hook signs a given certificate sign request using an
OpenSSL provided crypto engine such as a smartcard, using the
@@ -190,7 +190,7 @@
</tr>
<tr>
<td>
- <a href="mod_ca_simple.html#hook-ca_simple_sign">mod_ca_simple</a>
+ <a href="mod_ca_simple.html#hook-ca_sign_simple">mod_ca_simple</a>
</td>
<td>Signs the certificate sign request using a key stored on disk.</td>
</tr>
@@ -216,14 +216,14 @@
<tbody>
<tr>
<td>
- <a href="mod_ca_simple.html#hook-ca_simple_makeserial_subject">Simple Make Serial From Subject</a>
+ <a href="mod_ca_simple.html#hook-ca_makeserial_simple_subject">Simple Make Serial From Subject</a>
</td>
<td>Returns the serial number from that embedded within the subject of the
certificate sign request.</td>
</tr>
<tr>
<td>
- <a href="mod_ca_simple.html#hook-ca_simple_makeserial_random">Simple Make Random Serial</a>
+ <a href="mod_ca_simple.html#hook-ca_makeserial_simple_random">Simple Make Random Serial</a>
</td>
<td>Returns a random serial number.</td>
</tr>
@@ -237,7 +237,7 @@
<tbody>
<tr>
<td>
- <a href="mod_ca_engine.html#hook-ca_engine_sign">mod_ca_engine</a>
+ <a href="mod_ca_engine.html#hook-ca_sign_engine">mod_ca_engine</a>
</td>
<td>This hook signs a given certificate sign request using an
OpenSSL provided crypto engine such as a smartcard, using the
@@ -245,7 +245,7 @@
</tr>
<tr>
<td>
- <a href="mod_ca_simple.html#hook-ca_simple_sign">mod_ca_simple</a>
+ <a href="mod_ca_simple.html#hook-ca_sign_simple">mod_ca_simple</a>
</td>
<td>Signs the certificate sign request using a key stored on disk.</td>
</tr>
@@ -276,7 +276,7 @@
<tbody>
<tr>
<td>
- <a href="mod_ca_simple.html#hook-ca_simple_gettime">Simple Get Time</a>
+ <a href="mod_ca_simple.html#hook-ca_gettime_simple">Simple Get Time</a>
</td>
<td>This hook returns the time to be used to sign a certificate sign
request, derived from the system time.</td>
@@ -291,7 +291,7 @@
<tbody>
<tr>
<td>
- <a href="mod_ca_engine.html#hook-ca_engine_sign">mod_ca_engine</a>
+ <a href="mod_ca_engine.html#hook-ca_sign_engine">mod_ca_engine</a>
</td>
<td>This hook signs a given certificate sign request using an
OpenSSL provided crypto engine such as a smartcard, using the
@@ -299,7 +299,7 @@
</tr>
<tr>
<td>
- <a href="mod_ca_simple.html#hook-ca_simple_sign">mod_ca_simple</a>
+ <a href="mod_ca_simple.html#hook-ca_sign_engine">mod_ca_simple</a>
</td>
<td>Signs the certificate sign request using a key stored on disk.</td>
</tr>
@@ -338,7 +338,7 @@
<tbody>
<tr>
<td>
- <a href="mod_ca_simple.html#hook-ca_simple_getca">Simple Get Certificate Authority</a>
+ <a href="mod_ca_simple.html#hook-ca_getca_simple">Simple Get Certificate Authority</a>
</td>
<td>Returns the certificate authority certificate used to sign the request.</td>
</tr>
@@ -383,7 +383,7 @@
<tbody>
<tr>
<td>
- <a href="mod_ca_simple.html#hook-ca_simple_getnextca">Simple Get Next Certificate Authority</a>
+ <a href="mod_ca_simple.html#hook-ca_getnextca_simple">Simple Get Next Certificate Authority</a>
</td>
<td>Returns the next certificate authority certificate that will be used to sign
future requests.</td>
@@ -431,7 +431,7 @@
<tbody>
<tr>
<td>
- <a href="mod_ca_simple.html#hook-ca_simple_makekey">Simple Make Key</a>
+ <a href="mod_ca_simple.html#hook-ca_makekey_simple">Simple Make Key</a>
</td>
<td>Returns a generated public/private key pair.</td>
</tr>
@@ -517,7 +517,7 @@
</p>
<div class="index align-left">
- <section id="hook-ca_simple_sign">
+ <section id="hook-ca_sign_simple">
<header>
<h3><a href="mod_ca.html#ca_sign">Simple Sign Request</a></h3>
</header>
@@ -546,7 +546,7 @@
</div>
</section>
- <section id="hook-ca_simple_getca">
+ <section id="hook-ca_getca_simple">
<header>
<h3><a href="mod_ca.html#ca_getca">Simple Get Certificate Authority</a></h3>
</header>
@@ -567,7 +567,7 @@
</div>
</section>
- <section id="hook-ca_simple_getnextca">
+ <section id="hook-ca_getnextca_simple">
<header>
<h3><a href="mod_ca.html#ca_getnextca">Simple Get Next Certificate Authority</a></h3>
</header>
@@ -588,7 +588,7 @@
</div>
</section>
- <section id="hook-ca_simple_getchain">
+ <section id="hook-ca_getchain_simple">
<header>
<h3><a href="mod_ca.html#ca_getchain">Simple Get Chain</a></h3>
</header>
@@ -609,7 +609,7 @@
</div>
</section>
- <section id="hook-ca_simple_makeserial_subject">
+ <section id="hook-ca_makeserial_simple_subject">
<header>
<h3><a href="mod_ca.html#ca_makeserial">Simple Make Serial From Subject</a></h3>
</header>
@@ -637,7 +637,7 @@
</div>
</section>
- <section id="hook-ca_simple_makeserial_random">
+ <section id="hook-ca_makeserial_simple_random">
<header>
<h3><a href="mod_ca.html#ca_makeserial">Simple Make Random Serial</a></h3>
</header>
@@ -662,7 +662,7 @@
</div>
</section>
- <section id="hook-ca_simple_makekey">
+ <section id="hook-ca_makekey_simple">
<header>
<h3><a href="mod_ca.html#ca_makekey">Simple Make Key</a></h3>
</header>
@@ -691,7 +691,7 @@
</div>
</section>
- <section id="hook-ca_simple_gettime">
+ <section id="hook-ca_gettime_simple">
<header>
<h3><a href="mod_ca.html#ca_gettime">Simple Get Time</a></h3>
</header>
More information about the rs-commit
mailing list