Author: brane
Date: Wed Sep 17 09:26:10 2025
New Revision: 1928536
Log:
Minor site tweaks: Correct heading case, make a nicer subproject list
and align the first navigation heading with the first content heading.
Modified:
apr/site/trunk/docs/index.html
apr/site/trunk/docs/style.css
apr/site/trunk/xdocs/index.xml
Modified: apr/site/trunk/docs/index.html
==============================================================================
--- apr/site/trunk/docs/index.html Wed Sep 17 09:25:40 2025 (r1928535)
+++ apr/site/trunk/docs/index.html Wed Sep 17 09:26:10 2025 (r1928536)
@@ -80,7 +80,7 @@ or features.</p>
</blockquote>
</div>
<div class="h1" id="recommended">
- <h1>Recommended releases</h1>
+ <h1>Recommended Releases</h1>
<blockquote>
<p>The recommended releases of the several Apache Portable Runtime
libraries are</p>
@@ -152,41 +152,48 @@ developer's mailing list.</a></p>
</blockquote>
</div>
<div class="h1" id="Subprojects">
- <h1>APR subprojects</h1>
+ <h1>APR Subprojects</h1>
<blockquote>
<p>The following is a list of supported development projects under the APR
Project. All of the development happens on the indicated mailing lists. See
<a href="mailing-lists.html">mailing lists</a> to learn how to take part in
these discussions. Or, check the <a href="mail/">archives</a>.</p>
-<p>apr - a portable runtime library</p>
-<ul>
- <li>Source: <a href="https://svn.apache.org/repos/asf/apr/apr/">apr</a></li>
- <li>Mailing list: <a href="mailto:[email protected]">[email protected]</a></li>
- <li>Releases: <a href="download.cgi#apr1">apr releases</a></li>
- <li>API Documentation: <a href="docs/apr/1.7/">apr docs</a> (current stable branch),
- <a href="https://svn.apache.org/repos/asf/apr/apr/trunk/docs/pool-design.html">Using APR Pools</a></li>
- <li>Tutorial: <a href="apr2_0intro/apr2_0intro.htm">An Introduction to APR</a> covers the structure and basic concepts.
- See <a href="apr2_0intro/">sample code</a>.</li>
- <li>Test Coverage: <a href="coverage">apr test coverage</a></li>
-</ul>
-<p>apr-util - a companion library to APR</p>
-<ul>
- <li>Source: <a href="https://svn.apache.org/repos/asf/apr/apr-util/">apr-util</a></li>
- <li>Mailing list: <a href="mailto:[email protected]">[email protected]</a></li>
- <li>Releases: <a href="download.cgi#aprutil1">apr-util releases</a></li>
- <li>API Documentation: <a href="docs/apr-util/1.6/">apr-util docs</a> (current stable branch)</li>
-</ul>
-<p>apr-iconv - a portable implementation of the iconv() library</p>
-<ul>
- <li>Source: <a href="https://svn.apache.org/repos/asf/apr/apr-iconv/">apr-iconv</a></li>
- <li>Releases: <a href="download.cgi#apriconv1">apr-iconv releases</a></li>
- <li>Mailing list: <a href="mailto:[email protected]">[email protected]</a></li>
- <li>API Documentation: <a href="docs/apr-iconv/trunk/">apr-iconv docs</a> (current stable branch)</li>
-</ul>
+<dl>
+ <dt>APR</dt>
+ <dd>a portable runtime library</dd>
+ <ul>
+ <li>Source: <a href="https://svn.apache.org/repos/asf/apr/apr/">apr</a></li>
+ <li>Mailing list: <a href="mailto:[email protected]">[email protected]</a></li>
+ <li>Releases: <a href="download.cgi#apr1">apr releases</a></li>
+ <li>API Documentation: <a href="docs/apr/1.7/">apr docs</a> (current stable branch),
+ <a href="https://svn.apache.org/repos/asf/apr/apr/trunk/docs/pool-design.html">Using APR Pools</a></li>
+ <li>Tutorial: <a href="apr2_0intro/apr2_0intro.htm">An Introduction to APR</a> covers the structure and basic concepts.
+ See <a href="apr2_0intro/">sample code</a>.</li>
+ <li>Test Coverage: <a href="coverage">apr test coverage</a></li>
+ </ul>
+
+ <dt>APR-util</dt>
+ <dd>a companion library to APR</dd>
+ <ul>
+ <li>Source: <a href="https://svn.apache.org/repos/asf/apr/apr-util/">apr-util</a></li>
+ <li>Mailing list: <a href="mailto:[email protected]">[email protected]</a></li>
+ <li>Releases: <a href="download.cgi#aprutil1">apr-util releases</a></li>
+ <li>API Documentation: <a href="docs/apr-util/1.6/">apr-util docs</a> (current stable branch)</li>
+ </ul>
+
+ <dt>APR-iconv</dt>
+ <dd>a portable implementation of the iconv() library</dd>
+ <ul>
+ <li>Source: <a href="https://svn.apache.org/repos/asf/apr/apr-iconv/">apr-iconv</a></li>
+ <li>Releases: <a href="download.cgi#apriconv1">apr-iconv releases</a></li>
+ <li>Mailing list: <a href="mailto:[email protected]">[email protected]</a></li>
+ <li>API Documentation: <a href="docs/apr-iconv/trunk/">apr-iconv docs</a> (current stable branch)</li>
+ </ul>
+</dl>
</blockquote>
</div>
<div class="h1" id="Start">
- <h1>How to start developing with APR</h1>
+ <h1>How to Start Developing with APR</h1>
<blockquote>
<p>We hope this website starts you in the right direction. Please read the
docs and tutorials for the project you are interested in. If you have
Modified: apr/site/trunk/docs/style.css
==============================================================================
--- apr/site/trunk/docs/style.css Wed Sep 17 09:25:40 2025 (r1928535)
+++ apr/site/trunk/docs/style.css Wed Sep 17 09:26:10 2025 (r1928536)
@@ -32,6 +32,21 @@ p.note {
border-style: double;
padding: 5px;
}
+dt {
+ display: inline-block;
+ margin-block-start: 1em;
+ margin-block-end: 1em;
+ margin-inline-start: 0px;
+ margin-inline-end: 0px;
+}
+dd {
+ display: inline-block;
+ margin-inline-start: 0px;
+ /* Prepend an m-dash and space */
+ &::before {
+ content: "\002014\20";
+ }
+}
table {
width: 100%;
}
@@ -64,7 +79,6 @@ td {
width: 15em;
}
#site-content {
- margin-top: 10px;
margin-left: 15.1em;
}
#footer {
@@ -88,11 +102,14 @@ h1, h2 {
padding: 0.25em;
padding-left: 0.5em;
}
-#site-nav-menu > h1,
-#site-nav-menu > h2 {
- background: var(--apr-bg);
- color: var(--apr-fg);
- padding: 0;
+
+#site-nav-menu {
+ padding-top: 0.25em;
+ >h1, >h2 {
+ background: var(--apr-bg);
+ color: var(--apr-fg);
+ padding: 0px;
+ }
}
@media screen {
Modified: apr/site/trunk/xdocs/index.xml
==============================================================================
--- apr/site/trunk/xdocs/index.xml Wed Sep 17 09:25:40 2025 (r1928535)
+++ apr/site/trunk/xdocs/index.xml Wed Sep 17 09:26:10 2025 (r1928536)
@@ -18,7 +18,7 @@ or features.</p>
</section>
<section id="recommended">
-<title>Recommended releases</title>
+<title>Recommended Releases</title>
<p>The recommended releases of the several Apache Portable Runtime
libraries are</p>
@@ -106,45 +106,50 @@ developer's mailing list.</a></p>
</section>
<section id="Subprojects">
-<title>APR subprojects</title>
+<title>APR Subprojects</title>
<p>The following is a list of supported development projects under the APR
Project. All of the development happens on the indicated mailing lists. See
<a href="mailing-lists.html">mailing lists</a> to learn how to take part in
these discussions. Or, check the <a href="mail/">archives</a>.</p>
-<p>apr - a portable runtime library</p>
-<ul>
- <li>Source: <a href="https://svn.apache.org/repos/asf/apr/apr/">apr</a></li>
- <li>Mailing list: <a href="mailto:[email protected]">[email protected]</a></li>
- <li>Releases: <a href="download.cgi#apr1">apr releases</a></li>
- <li>API Documentation: <a href="docs/apr/1.7/">apr docs</a> (current stable branch),
- <a href="https://svn.apache.org/repos/asf/apr/apr/trunk/docs/pool-design.html">Using APR Pools</a></li>
- <li>Tutorial: <a href="apr2_0intro/apr2_0intro.htm"
- >An Introduction to APR</a> covers the structure and basic concepts.
- See <a href="apr2_0intro/">sample code</a>.</li>
- <li>Test Coverage: <a href="coverage">apr test coverage</a></li>
-</ul>
-
-<p>apr-util - a companion library to APR</p>
-<ul>
- <li>Source: <a href="https://svn.apache.org/repos/asf/apr/apr-util/">apr-util</a></li>
- <li>Mailing list: <a href="mailto:[email protected]">[email protected]</a></li>
- <li>Releases: <a href="download.cgi#aprutil1">apr-util releases</a></li>
- <li>API Documentation: <a href="docs/apr-util/1.6/">apr-util docs</a> (current stable branch)</li>
-</ul>
-
-<p>apr-iconv - a portable implementation of the iconv() library</p>
-<ul>
- <li>Source: <a href="https://svn.apache.org/repos/asf/apr/apr-iconv/">apr-iconv</a></li>
- <li>Releases: <a href="download.cgi#apriconv1">apr-iconv releases</a></li>
- <li>Mailing list: <a href="mailto:[email protected]">[email protected]</a></li>
- <li>API Documentation: <a href="docs/apr-iconv/trunk/">apr-iconv docs</a> (current stable branch)</li>
-</ul>
+<dl>
+ <dt>APR</dt>
+ <dd>a portable runtime library</dd>
+ <ul>
+ <li>Source: <a href="https://svn.apache.org/repos/asf/apr/apr/">apr</a></li>
+ <li>Mailing list: <a href="mailto:[email protected]">[email protected]</a></li>
+ <li>Releases: <a href="download.cgi#apr1">apr releases</a></li>
+ <li>API Documentation: <a href="docs/apr/1.7/">apr docs</a> (current stable branch),
+ <a href="https://svn.apache.org/repos/asf/apr/apr/trunk/docs/pool-design.html">Using APR Pools</a></li>
+ <li>Tutorial: <a href="apr2_0intro/apr2_0intro.htm"
+ >An Introduction to APR</a> covers the structure and basic concepts.
+ See <a href="apr2_0intro/">sample code</a>.</li>
+ <li>Test Coverage: <a href="coverage">apr test coverage</a></li>
+ </ul>
+
+ <dt>APR-util</dt>
+ <dd>a companion library to APR</dd>
+ <ul>
+ <li>Source: <a href="https://svn.apache.org/repos/asf/apr/apr-util/">apr-util</a></li>
+ <li>Mailing list: <a href="mailto:[email protected]">[email protected]</a></li>
+ <li>Releases: <a href="download.cgi#aprutil1">apr-util releases</a></li>
+ <li>API Documentation: <a href="docs/apr-util/1.6/">apr-util docs</a> (current stable branch)</li>
+ </ul>
+
+ <dt>APR-iconv</dt>
+ <dd>a portable implementation of the iconv() library</dd>
+ <ul>
+ <li>Source: <a href="https://svn.apache.org/repos/asf/apr/apr-iconv/">apr-iconv</a></li>
+ <li>Releases: <a href="download.cgi#apriconv1">apr-iconv releases</a></li>
+ <li>Mailing list: <a href="mailto:[email protected]">[email protected]</a></li>
+ <li>API Documentation: <a href="docs/apr-iconv/trunk/">apr-iconv docs</a> (current stable branch)</li>
+ </ul>
+</dl>
</section>
<section id="Start">
-<title>How to start developing with APR</title>
+<title>How To Start Developing with APR</title>
<p>We hope this website starts you in the right direction. Please read the
docs and tutorials for the project you are interested in. If you have
lmpx.com only provides a reader for public news (NNTP) servers. It is not
affiliated with the servers or forums shown here and is not responsible for
the content of articles, which is written by their respective authors.