Skip to content

Commit ea06c6e

Browse files
committed
docs: Replace <strong>Note:</strong> with <note> per style guide
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1933850 13f79535-47bb-0310-9956-ffa450edef68
1 parent 5aae06d commit ea06c6e

5 files changed

Lines changed: 12 additions & 12 deletions

File tree

docs/manual/developer/lua.xml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -97,11 +97,10 @@ pool, and if it has high usage, use the <code>thread</code> setting. As your ser
9797
load increases, so will the number of states being actively used, and having your scope
9898
set to <code>once/request/conn</code> will stop being beneficial to your memory footprint.
9999
</p>
100-
<p>
101-
<strong>Note:</strong> The <code>min</code> and <code>max</code> settings for the
100+
<note>The <code>min</code> and <code>max</code> settings for the
102101
<code>server</code> scope denotes the minimum and maximum states to keep in a pool per
103102
server <em>process</em>, so keep this below your <code>ThreadsPerChild</code> limit.
104-
</p>
103+
</note>
105104
</section>
106105

107106
<section><title>Using code caching</title>

docs/manual/mod/mod_dir.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -102,10 +102,10 @@ a directory</description>
102102
literally if it has any arguments before or after it, even if they are "disabled"
103103
as well.</p>
104104

105-
<p><strong>Note:</strong> Multiple <directive>DirectoryIndex</directive>
105+
<note>Multiple <directive>DirectoryIndex</directive>
106106
directives within the <a href="../sections.html"><em>same context</em></a> will add
107107
to the list of resources to look for rather than replace:
108-
</p>
108+
</note>
109109
<highlight language="config">
110110
# Example A: Set index.html as an index page, then add index.php to that list as well.
111111
&lt;Directory "/foo"&gt;

docs/manual/mod/mod_proxy.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -943,10 +943,10 @@ expressions</description>
943943
the socket is local, the hostname used (in this case <code>localhost</code>)
944944
is moot, but it is passed as the Host: header value of the request.</p>
945945

946-
<note><strong>Note:</strong> The path associated with the <code>unix:</code>
946+
<note>The path associated with the <code>unix:</code>
947947
URL is <directive>DefaultRuntimeDir</directive> aware.</note>
948948

949-
<note><strong>Note:</strong> <directive>RewriteRule</directive> requires
949+
<note><directive>RewriteRule</directive> requires
950950
the <code>[P,NE]</code> option to prevent the <code>'|'</code> character
951951
from being escaped.</note>
952952

@@ -1594,7 +1594,7 @@ when the <var>url</var> parameter contains backreference(s) (see note below).
15941594
matches, the server will substitute any parenthesized matches into the given
15951595
string and use it as a new <var>url</var>.</p>
15961596

1597-
<note><strong>Note: </strong>This directive cannot be used within a
1597+
<note>This directive cannot be used within a
15981598
<code>&lt;Directory&gt;</code> context.</note>
15991599

16001600
<note type="warning"><title>Worker matching with backreferences</title>

docs/manual/mod/mod_proxy_html.xml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -106,8 +106,9 @@ still be configured using regular filter directives, this will not support
106106
i18n at all. Instead, a new directive <directive>ProxyHTMLEnable</directive>
107107
has been introduced to configure both mod_proxy_html's filter and mod_xml2enc.
108108
It is recommended that you always use ProxyHTMLEnable even where i18n
109-
support is not required. <strong>Note that this is a change from earlier
110-
versions where filter directives were used to activate mod_proxy_html.</strong></p>
109+
support is not required.</p>
110+
<note>This is a change from earlier
111+
versions where filter directives were used to activate mod_proxy_html.</note>
111112

112113
</section>
113114

docs/manual/mod/mod_request.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,13 +65,13 @@ mod_include.</description>
6565
into the URL space from another server using
6666
<module>mod_proxy</module>.</p>
6767

68-
<p><strong>Note:</strong> Each request set aside has to be set
68+
<note>Each request set aside has to be set
6969
aside in temporary RAM until the request is complete. As a result,
7070
care should be taken to ensure sufficient RAM is available on the
7171
server to support the intended load. Use of this directive
7272
should be limited to where needed on targeted parts of your
7373
URL space, and with the lowest possible value that is still big
74-
enough to hold a request body.</p>
74+
enough to hold a request body.</note>
7575

7676
<p>If the request size sent by the client exceeds the maximum
7777
size allocated by this directive, the server will return

0 commit comments

Comments
 (0)