Deployed 1e46466 with MkDocs version: 1.4.0

This commit is contained in:
2022-10-12 13:42:07 +00:00
parent 2b5730c815
commit db1c9e383e
7 changed files with 29 additions and 24 deletions

View File

@ -215,7 +215,7 @@ h1:hover .headerlink, h2:hover .headerlink, h3:hover .headerlink, h4:hover .head
.admonition { .admonition, details {
padding: 15px; padding: 15px;
margin-bottom: 20px; margin-bottom: 20px;
border: 1px solid transparent; border: 1px solid transparent;
@ -223,29 +223,33 @@ h1:hover .headerlink, h2:hover .headerlink, h3:hover .headerlink, h4:hover .head
text-align: left; text-align: left;
} }
.admonition.note { /* csslint allow: adjoining-classes */ .admonition.note, details.note { /* csslint allow: adjoining-classes */
color: #3a87ad; color: #2e6b89;
background-color: #d9edf7; background-color: #e2f0f7;
border-color: #bce8f1; border-color: #bce8f1;
} }
.admonition.warning { /* csslint allow: adjoining-classes */ .admonition.warning, details.warning { /* csslint allow: adjoining-classes */
color: #c09853; color: #7a6032;
background-color: #fcf8e3; background-color: #fffae5;
border-color: #fbeed5; border-color: #fbeed5;
} }
.admonition.danger { /* csslint allow: adjoining-classes */ .admonition.danger, details.danger { /* csslint allow: adjoining-classes */
color: #b94a48; color: #7f3130;
background-color: #f2dede; background-color: #fde3e3;
border-color: #eed3d7; border-color: #eed3d7;
} }
.admonition-title { .admonition-title, summary {
font-weight: bold; font-weight: bold;
text-align: left; text-align: left;
} }
.admonition>p:last-child, details>p:last-child {
margin-bottom: 0;
}
@media (max-width: 991.98px) { @media (max-width: 991.98px) {
.navbar-collapse.show { /* csslint allow: adjoining-classes */ .navbar-collapse.show { /* csslint allow: adjoining-classes */
overflow-y: auto; overflow-y: auto;

View File

@ -371,6 +371,6 @@ int main()
</html> </html>
<!-- <!--
MkDocs version : 1.3.1 MkDocs version : 1.4.0
Build Date UTC : 2022-09-08 21:58:54.213008+00:00 Build Date UTC : 2022-10-12 13:42:07.574014+00:00
--> -->

View File

@ -3456,7 +3456,7 @@ lunr.QueryParser.parseBoost = function (parser) {
} else if (typeof exports === 'object') { } else if (typeof exports === 'object') {
/** /**
* Node. Does not work with strict CommonJS, but * Node. Does not work with strict CommonJS, but
* only CommonJS-like enviroments that support module.exports, * only CommonJS-like environments that support module.exports,
* like Node. * like Node.
*/ */
module.exports = factory() module.exports = factory()

File diff suppressed because one or more lines are too long

View File

@ -2,42 +2,42 @@
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"> <urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
<url> <url>
<loc>None</loc> <loc>None</loc>
<lastmod>2022-09-08</lastmod> <lastmod>2022-10-12</lastmod>
<changefreq>daily</changefreq> <changefreq>daily</changefreq>
</url> </url>
<url> <url>
<loc>None</loc> <loc>None</loc>
<lastmod>2022-09-08</lastmod> <lastmod>2022-10-12</lastmod>
<changefreq>daily</changefreq> <changefreq>daily</changefreq>
</url> </url>
<url> <url>
<loc>None</loc> <loc>None</loc>
<lastmod>2022-09-08</lastmod> <lastmod>2022-10-12</lastmod>
<changefreq>daily</changefreq> <changefreq>daily</changefreq>
</url> </url>
<url> <url>
<loc>None</loc> <loc>None</loc>
<lastmod>2022-09-08</lastmod> <lastmod>2022-10-12</lastmod>
<changefreq>daily</changefreq> <changefreq>daily</changefreq>
</url> </url>
<url> <url>
<loc>None</loc> <loc>None</loc>
<lastmod>2022-09-08</lastmod> <lastmod>2022-10-12</lastmod>
<changefreq>daily</changefreq> <changefreq>daily</changefreq>
</url> </url>
<url> <url>
<loc>None</loc> <loc>None</loc>
<lastmod>2022-09-08</lastmod> <lastmod>2022-10-12</lastmod>
<changefreq>daily</changefreq> <changefreq>daily</changefreq>
</url> </url>
<url> <url>
<loc>None</loc> <loc>None</loc>
<lastmod>2022-09-08</lastmod> <lastmod>2022-10-12</lastmod>
<changefreq>daily</changefreq> <changefreq>daily</changefreq>
</url> </url>
<url> <url>
<loc>None</loc> <loc>None</loc>
<lastmod>2022-09-08</lastmod> <lastmod>2022-10-12</lastmod>
<changefreq>daily</changefreq> <changefreq>daily</changefreq>
</url> </url>
</urlset> </urlset>

Binary file not shown.

View File

@ -658,7 +658,8 @@ server.wait();
<p>For a client, specifying <code>caFile</code> can be used if connecting to a server that uses a self-signed cert, or when using a custom CA in an internal environment.</p> <p>For a client, specifying <code>caFile</code> can be used if connecting to a server that uses a self-signed cert, or when using a custom CA in an internal environment.</p>
<p>For a server, specifying <code>caFile</code> implies that: <p>For a server, specifying <code>caFile</code> implies that:
1. You require clients to present a certificate 1. You require clients to present a certificate
1. It must be signed by one of the trusted roots in the file</p></div> 1. It must be signed by one of the trusted roots in the file</p>
<p>By default, a destination's hostname is always validated against the certificate that it presents. To accept certificates with any hostname, set <code>ix::SocketTLSOptions::disable_hostname_validation</code> to <code>true</code>.</p></div>
</div> </div>
</div> </div>