Deployed 6d8495b with MkDocs version: 1.3.0
This commit is contained in:
parent
af5d1cbb55
commit
397cee1d36
@ -95,6 +95,10 @@
|
|||||||
|
|
||||||
<li class="nav-item" data-level="1"><a href="#changelog" class="nav-link">Changelog</a>
|
<li class="nav-item" data-level="1"><a href="#changelog" class="nav-link">Changelog</a>
|
||||||
<ul class="nav flex-column">
|
<ul class="nav flex-column">
|
||||||
|
<li class="nav-item" data-level="2"><a href="#1141-2022-04-23" class="nav-link">[11.4.1] - 2022-04-23</a>
|
||||||
|
<ul class="nav flex-column">
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
<li class="nav-item" data-level="2"><a href="#1140-2022-01-05" class="nav-link">[11.4.0] - 2022-01-05</a>
|
<li class="nav-item" data-level="2"><a href="#1140-2022-01-05" class="nav-link">[11.4.0] - 2022-01-05</a>
|
||||||
<ul class="nav flex-column">
|
<ul class="nav flex-column">
|
||||||
</ul>
|
</ul>
|
||||||
@ -1196,6 +1200,8 @@
|
|||||||
|
|
||||||
<h1 id="changelog">Changelog</h1>
|
<h1 id="changelog">Changelog</h1>
|
||||||
<p>All changes to this project will be documented in this file.</p>
|
<p>All changes to this project will be documented in this file.</p>
|
||||||
|
<h2 id="1141-2022-04-23">[11.4.1] - 2022-04-23</h2>
|
||||||
|
<p>vckpg + cmake fix, to handle zlib as a dependency better</p>
|
||||||
<h2 id="1140-2022-01-05">[11.4.0] - 2022-01-05</h2>
|
<h2 id="1140-2022-01-05">[11.4.0] - 2022-01-05</h2>
|
||||||
<p>(Windows) Use wsa select event, which should lead to a much better behavior on Windows in general, and also when sending large payloads (#342)
|
<p>(Windows) Use wsa select event, which should lead to a much better behavior on Windows in general, and also when sending large payloads (#342)
|
||||||
Fix "HTTP/1.1 400 Illegal character CNTL=0xf" caused by serverMaxWindowBits/clientMaxWindowBits being uint8_t (signed char). (#341)
|
Fix "HTTP/1.1 400 Illegal character CNTL=0xf" caused by serverMaxWindowBits/clientMaxWindowBits being uint8_t (signed char). (#341)
|
||||||
|
@ -371,6 +371,6 @@ int main()
|
|||||||
</html>
|
</html>
|
||||||
|
|
||||||
<!--
|
<!--
|
||||||
MkDocs version : 1.2.3
|
MkDocs version : 1.3.0
|
||||||
Build Date UTC : 2022-02-01 05:55:02.497335+00:00
|
Build Date UTC : 2022-04-24 05:53:57.450773+00:00
|
||||||
-->
|
-->
|
||||||
|
@ -21,8 +21,15 @@ function joinUrl (base, path) {
|
|||||||
return base + "/" + path;
|
return base + "/" + path;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function escapeHtml (value) {
|
||||||
|
return value.replace(/&/g, '&')
|
||||||
|
.replace(/"/g, '"')
|
||||||
|
.replace(/</g, '<')
|
||||||
|
.replace(/>/g, '>');
|
||||||
|
}
|
||||||
|
|
||||||
function formatResult (location, title, summary) {
|
function formatResult (location, title, summary) {
|
||||||
return '<article><h3><a href="' + joinUrl(base_url, location) + '">'+ title + '</a></h3><p>' + summary +'</p></article>';
|
return '<article><h3><a href="' + joinUrl(base_url, location) + '">'+ escapeHtml(title) + '</a></h3><p>' + escapeHtml(summary) +'</p></article>';
|
||||||
}
|
}
|
||||||
|
|
||||||
function displayResults (results) {
|
function displayResults (results) {
|
||||||
|
File diff suppressed because one or more lines are too long
16
sitemap.xml
16
sitemap.xml
@ -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-02-01</lastmod>
|
<lastmod>2022-04-24</lastmod>
|
||||||
<changefreq>daily</changefreq>
|
<changefreq>daily</changefreq>
|
||||||
</url>
|
</url>
|
||||||
<url>
|
<url>
|
||||||
<loc>None</loc>
|
<loc>None</loc>
|
||||||
<lastmod>2022-02-01</lastmod>
|
<lastmod>2022-04-24</lastmod>
|
||||||
<changefreq>daily</changefreq>
|
<changefreq>daily</changefreq>
|
||||||
</url>
|
</url>
|
||||||
<url>
|
<url>
|
||||||
<loc>None</loc>
|
<loc>None</loc>
|
||||||
<lastmod>2022-02-01</lastmod>
|
<lastmod>2022-04-24</lastmod>
|
||||||
<changefreq>daily</changefreq>
|
<changefreq>daily</changefreq>
|
||||||
</url>
|
</url>
|
||||||
<url>
|
<url>
|
||||||
<loc>None</loc>
|
<loc>None</loc>
|
||||||
<lastmod>2022-02-01</lastmod>
|
<lastmod>2022-04-24</lastmod>
|
||||||
<changefreq>daily</changefreq>
|
<changefreq>daily</changefreq>
|
||||||
</url>
|
</url>
|
||||||
<url>
|
<url>
|
||||||
<loc>None</loc>
|
<loc>None</loc>
|
||||||
<lastmod>2022-02-01</lastmod>
|
<lastmod>2022-04-24</lastmod>
|
||||||
<changefreq>daily</changefreq>
|
<changefreq>daily</changefreq>
|
||||||
</url>
|
</url>
|
||||||
<url>
|
<url>
|
||||||
<loc>None</loc>
|
<loc>None</loc>
|
||||||
<lastmod>2022-02-01</lastmod>
|
<lastmod>2022-04-24</lastmod>
|
||||||
<changefreq>daily</changefreq>
|
<changefreq>daily</changefreq>
|
||||||
</url>
|
</url>
|
||||||
<url>
|
<url>
|
||||||
<loc>None</loc>
|
<loc>None</loc>
|
||||||
<lastmod>2022-02-01</lastmod>
|
<lastmod>2022-04-24</lastmod>
|
||||||
<changefreq>daily</changefreq>
|
<changefreq>daily</changefreq>
|
||||||
</url>
|
</url>
|
||||||
<url>
|
<url>
|
||||||
<loc>None</loc>
|
<loc>None</loc>
|
||||||
<lastmod>2022-02-01</lastmod>
|
<lastmod>2022-04-24</lastmod>
|
||||||
<changefreq>daily</changefreq>
|
<changefreq>daily</changefreq>
|
||||||
</url>
|
</url>
|
||||||
</urlset>
|
</urlset>
|
BIN
sitemap.xml.gz
BIN
sitemap.xml.gz
Binary file not shown.
Loading…
x
Reference in New Issue
Block a user