You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by rb...@apache.org on 2001/08/25 20:46:16 UTC

cvs commit: httpd-2.0/docs/manual/mod directives.html mod_mime.html

rbowen      01/08/25 11:46:16

  Modified:    docs/manual/mod directives.html mod_mime.html
  Log:
  Added documentation of RemoveCharset, RemoveLanguage to mod_mime.html.
  Added links to directives.html.
  
  Revision  Changes    Path
  1.83      +4 -0      httpd-2.0/docs/manual/mod/directives.html
  
  Index: directives.html
  ===================================================================
  RCS file: /home/cvs/httpd-2.0/docs/manual/mod/directives.html,v
  retrieving revision 1.82
  retrieving revision 1.83
  diff -u -r1.82 -r1.83
  --- directives.html	2001/08/19 01:31:24	1.82
  +++ directives.html	2001/08/25 18:46:16	1.83
  @@ -205,7 +205,11 @@
   <LI><A HREF="mod_alias.html#redirectmatch">RedirectMatch</A>
   <LI><A HREF="mod_alias.html#redirectperm">RedirectPermanent</A>
   <LI><A HREF="mod_alias.html#redirecttemp">RedirectTemp</A>
  +<LI><A HREF="mod_mime.html#removecharset">RemoveCharset</A>
  +<LI><A HREF="mod_mime.html#removeencoding">RemoveEncoding</A>
   <LI><A HREF="mod_mime.html#removehandler">RemoveHandler</A>
  +<LI><A HREF="mod_mime.html#removelanguage">RemoveLanguage</A>
  +<LI><A HREF="mod_mime.html#removetype">RemoveType</A>
   <LI><A HREF="mod_headers.html#requestheader">RequestHeader</A>
   <LI><A HREF="core.html#require">Require</A>
   <LI><A HREF="mod_rewrite.html#RewriteBase">RewriteBase</A>
  
  
  
  1.46      +78 -1     httpd-2.0/docs/manual/mod/mod_mime.html
  
  Index: mod_mime.html
  ===================================================================
  RCS file: /home/cvs/httpd-2.0/docs/manual/mod/mod_mime.html,v
  retrieving revision 1.45
  retrieving revision 1.46
  diff -u -r1.45 -r1.46
  --- mod_mime.html	2001/08/25 13:27:12	1.45
  +++ mod_mime.html	2001/08/25 18:46:16	1.46
  @@ -72,8 +72,10 @@
   <li><a href="#addtype">AddType</a>
   <li><a href="#defaultlanguage">DefaultLanguage</a>
   <li><a href="#forcetype">ForceType</a>
  +<li><a href="#removecharset">RemoveCharset</a>
   <li><a href="#removeencoding">RemoveEncoding</a>
   <li><a href="#removehandler">RemoveHandler</a>
  +<li><a href="#removelanguage">RemoveLanguage</a>
   <li><a href="#removetype">RemoveType</a>
   <li><a href="#sethandler">SetHandler</a>
   <li><a href="#typesconfig">TypesConfig</a>
  @@ -162,7 +164,7 @@
   what language a particular document is in, and in what character set
   the file should be displayed. For example, the document might be
   written in the Vietnamese alphabet, or in Cyrillic, and should be
  -displayed as such. This information, also, is transmitted in MIME
  +displayed as such. This information, also, is transmitted in HTTP
   headers.<p>
   
   While the character set is useful for the browser, in order to
  @@ -580,6 +582,44 @@
   <P>Note that this will override any filename extensions that might determine
   the media type.</P><hr>
   
  +<h2><a name="removecharset">RemoveCharset</a> directive</h2>
  +
  +<a
  + href="directive-dict.html#Syntax"
  + rel="Help"
  +><strong>Syntax:</strong></a> RemoveCharset <em>extension</em>
  +     [<em>extension</em>] ...<br>
  +<a
  + href="directive-dict.html#Context"
  + rel="Help"
  +><strong>Context:</strong></a> directory, .htaccess<br>
  +<a
  + href="directive-dict.html#Status"
  + rel="Help"
  +><strong>Status:</strong></a> Base<br>
  +<a
  + href="directive-dict.html#Module"
  + rel="Help"
  +><strong>Module:</strong></a> mod_mime<br>
  +<a
  + href="directive-dict.html#Compatibility"
  + rel="Help"
  +><strong>Compatibility:</strong></a> RemoveCharset is only available in Apache
  +2.0.24 and later.<P>
  +
  +<P>
  +The <samp>RemoveCharset</samp> directive removes any
  +character set associations for files with the given extensions.
  +This allows <code>.htaccess</code> files in subdirectories to undo
  +any associations inherited from parent directories or the server
  +config files.
  +</P>
  +<p>The <em>extension</em> argument is case-insensitive, and can
  +be specified with or without a leading dot.</p>
  +
  +<hr>
  +
  +
   <h2><a name="removeencoding">RemoveEncoding</a> directive</h2>
   
   <a
  @@ -681,6 +721,43 @@
   <samp>/foo/bar</samp> directory to being treated as normal
   files, rather than as candidates for parsing (see the
   <a href="mod_include.html"><samp>mod_include</samp></a> module).
  +</P>
  +<p>The <em>extension</em> argument is case-insensitive, and can
  +be specified with or without a leading dot.</p>
  +
  +<hr>
  +
  +<h2><a name="removelanguage">RemoveLanguage</a> directive</h2>
  +
  +<a
  + href="directive-dict.html#Syntax"
  + rel="Help"
  +><strong>Syntax:</strong></a> RemoveLanguage <em>extension</em>
  +     [<em>extension</em>] ...<br>
  +<a
  + href="directive-dict.html#Context"
  + rel="Help"
  +><strong>Context:</strong></a> directory, .htaccess<br>
  +<a
  + href="directive-dict.html#Status"
  + rel="Help"
  +><strong>Status:</strong></a> Base<br>
  +<a
  + href="directive-dict.html#Module"
  + rel="Help"
  +><strong>Module:</strong></a> mod_mime<br>
  +<a
  + href="directive-dict.html#Compatibility"
  + rel="Help"
  +><strong>Compatibility:</strong></a> RemoveLanguage is only available in 
  +Apache 2.0.24 and later.<P>
  +
  +<P>
  +The <samp>RemoveLanguage</samp> directive removes any
  +language associations for files with the given extensions.
  +This allows <code>.htaccess</code> files in subdirectories to undo
  +any associations inherited from parent directories or the server
  +config files.
   </P>
   <p>The <em>extension</em> argument is case-insensitive, and can
   be specified with or without a leading dot.</p>