Commit d88afdf9 authored by Ken Coar's avatar Ken Coar
Browse files

	Fix some typos and inaccuracies and incorrectnesses.

PR:		3016
Submitted by:	Youichirou Koga <y-koga@jp.FreeBSD.org>


git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@82061 13f79535-47bb-0310-9956-ffa450edef68
parent aa895181
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -422,7 +422,7 @@ different naming conventions, because files can have more than one
extension, and the order of the extensions is normally irrelevant
(see <A HREF="mod/mod_mime.html">mod_mime</A> documentation for details).
<P>
A typical file has a mime-type extension (e.g. <SAMP>html</SAMP>),
A typical file has a MIME-type extension (e.g. <SAMP>html</SAMP>),
maybe an encoding extension (e.g. <SAMP>gz</SAMP> and of course a
language extension (e.g. <SAMP>en</SAMP>) when we have different
language variants of this file.
@@ -496,9 +496,9 @@ to <SAMP>shtml</SAMP> or <SAMP>cgi</SAMP> without changing any
hyperlink references.

<P>
If you want to continue to use a mime-type in your hyperlinks (e.g.
If you want to continue to use a MIME-type in your hyperlinks (e.g.
<SAMP>foo.html</SAMP>) the language extension (including an encoding extension
if there is one) must be on the right hand side of the mime-type extension
if there is one) must be on the right hand side of the MIME-type extension
(e.g. <SAMP>foo.html.en</SAMP>).


+3 −3
Original line number Diff line number Diff line
@@ -422,7 +422,7 @@ different naming conventions, because files can have more than one
extension, and the order of the extensions is normally irrelevant
(see <A HREF="mod/mod_mime.html">mod_mime</A> documentation for details).
<P>
A typical file has a mime-type extension (e.g. <SAMP>html</SAMP>),
A typical file has a MIME-type extension (e.g. <SAMP>html</SAMP>),
maybe an encoding extension (e.g. <SAMP>gz</SAMP> and of course a
language extension (e.g. <SAMP>en</SAMP>) when we have different
language variants of this file.
@@ -496,9 +496,9 @@ to <SAMP>shtml</SAMP> or <SAMP>cgi</SAMP> without changing any
hyperlink references.

<P>
If you want to continue to use a mime-type in your hyperlinks (e.g.
If you want to continue to use a MIME-type in your hyperlinks (e.g.
<SAMP>foo.html</SAMP>) the language extension (including an encoding extension
if there is one) must be on the right hand side of the mime-type extension
if there is one) must be on the right hand side of the MIME-type extension
(e.g. <SAMP>foo.html.en</SAMP>).


+4 −4
Original line number Diff line number Diff line
@@ -513,7 +513,7 @@ it in a different location.<P><HR>
<A
 HREF="directive-dict.html#Syntax"
 REL="Help"
><STRONG>Syntax:</STRONG></A> DefaultType <EM>mime-type</EM><BR>
><STRONG>Syntax:</STRONG></A> DefaultType <EM>MIME-type</EM><BR>
<A
 HREF="directive-dict.html#Default"
 REL="Help"
@@ -1213,7 +1213,7 @@ simple multiple-module tests.
<P> <HR>

<H2><A NAME="include">Include directive</A></H2>
<STRONG>Syntax: (Apache 1.2)</STRONG> Include <EM>filename</EM><BR>
<STRONG>Syntax:</STRONG> Include <EM>filename</EM><BR>
<A
 HREF="directive-dict.html#Context"
 REL="Help"
@@ -2074,7 +2074,7 @@ virtual hosts should be used, e.g.

<STRONG>See also:</STRONG>
<A HREF="../vhosts/index.html">Apache Virtual Host documentation</A>

<HR>
<H2><A NAME="options">Options directive</A></H2>
<!--%plaintext &lt;?INDEX {\tt Options} directive&gt; -->
<A
@@ -2887,7 +2887,7 @@ Standalone is the most common setting for ServerType since
it is far more efficient. The server is started once, and services all
subsequent connections. If you intend running Apache to serve a busy site,
standalone will probably be your only option.<P>

<HR>
<H2><A NAME="startservers">StartServers directive</A></H2>
<!--%plaintext &lt;?INDEX {\tt StartServers} directive&gt; -->
<A
+2 −2
Original line number Diff line number Diff line
@@ -39,7 +39,7 @@ process files.
<A
 HREF="directive-dict.html#Syntax"
 REL="Help"
><STRONG>Syntax:</STRONG></A> Action <EM>mime-type cgi-script</EM><BR>
><STRONG>Syntax:</STRONG></A> Action <EM>MIME-type cgi-script</EM><BR>
<A
 HREF="directive-dict.html#Context"
 REL="Help"
@@ -65,7 +65,7 @@ and later
</P>
<P>
This directive adds an action, which will activate <EM>cgi-script</EM> when
a file of content type <EM>mime-type</EM> is requested. It sends the
a file of content type <EM>MIME-type</EM> is requested. It sends the
URL and file path of the requested document using the standard
CGI PATH_INFO and PATH_TRANSLATED environment variables.
</P>
+2 −1
Original line number Diff line number Diff line
@@ -211,7 +211,8 @@ the function <CODE>send_error_response</CODE> in http_protocol.c).
<A
 HREF="directive-dict.html#Syntax"
 REL="Help"
><STRONG>Syntax:</STRONG></A> RedirectMatch [<EM>status</EM> <EM>regex url</EM>
><STRONG>Syntax:</STRONG></A>
    RedirectMatch [<EM>status</EM>] <EM>regex url</EM>
<BR>
<A
 HREF="directive-dict.html#Context"
Loading