home *** CD-ROM | disk | FTP | other *** search
/ Chip 2004 November / CMCD1104.ISO / Software / Complet / Apache / apache_2.0.52-win32-x86-no_ssl.msi / Data.Cab / F278338_mod_mime_magic.xml < prev    next >
Extensible Markup Language  |  2004-04-17  |  11KB  |  271 lines

  1. <?xml version="1.0"?>
  2. <!DOCTYPE modulesynopsis SYSTEM "../style/modulesynopsis.dtd">
  3. <?xml-stylesheet type="text/xsl" href="../style/manual.en.xsl"?>
  4. <!-- $Revision: 1.4.2.6 $ -->
  5.  
  6. <!--
  7.  Copyright 2002-2004 The Apache Software Foundation
  8.  
  9.  Licensed under the Apache License, Version 2.0 (the "License");
  10.  you may not use this file except in compliance with the License.
  11.  You may obtain a copy of the License at
  12.  
  13.      http://www.apache.org/licenses/LICENSE-2.0
  14.  
  15.  Unless required by applicable law or agreed to in writing, software
  16.  distributed under the License is distributed on an "AS IS" BASIS,
  17.  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  18.  See the License for the specific language governing permissions and
  19.  limitations under the License.
  20. -->
  21.  
  22. <modulesynopsis metafile="mod_mime_magic.xml.meta">
  23.  
  24. <name>mod_mime_magic</name>
  25. <description>Determines the MIME type of a file
  26.     by looking at a few bytes of its contents</description>
  27. <status>Extension</status>
  28. <sourcefile>mod_mime_magic.c</sourcefile>
  29. <identifier>mime_magic_module</identifier>
  30.  
  31. <summary>
  32.     <p>This module determines the MIME type of files in the same
  33.     way the Unix <code>file(1)</code> command works: it looks at the first
  34.     few bytes of the file. It is intended as a "second line of defense"
  35.     for cases that <module>mod_mime</module> can't resolve.</p>
  36.  
  37.     <p>This module is derived from a free version of the
  38.     <code>file(1)</code> command for Unix, which uses "magic
  39.     numbers" and other hints from a file's contents to figure out
  40.     what the contents are. This module is active only if the magic
  41.     file is specified by the <directive module="mod_mime_magic"
  42.     >MimeMagicFile</directive> directive.</p>
  43. </summary>
  44.  
  45. <section id="format"><title>Format of the Magic File</title>
  46.  
  47.     <p>The contents of the file are plain ASCII text in 4-5
  48.     columns. Blank lines are allowed but ignored. Commented lines
  49.     use a hash mark (<code>#</code>). The remaining lines are parsed for
  50.     the following columns:</p>
  51.  
  52.     <table style="zebra" border="1">
  53.     <columnspec><column width=".15"/><column width=".8"/></columnspec>
  54.     <tr><th>Column</th><th>Description</th></tr>
  55.     <tr><td>1</td>
  56.         <td>byte number to begin checking from<br />
  57.          "<code>></code>" indicates a dependency upon the previous
  58.          non-"<code>></code>" line</td></tr>
  59.  
  60.     <tr><td>2</td>
  61.         <td><p>type of data to match</p>
  62.         <table border="1">
  63.         <columnspec><column width=".2"/><column width=".7"/></columnspec>
  64.         <tr><td><code>byte</code></td>
  65.             <td>single character</td></tr>
  66.         <tr><td><code>short</code></td>
  67.             <td>machine-order 16-bit integer</td></tr>
  68.         <tr><td><code>long</code></td>
  69.             <td>machine-order 32-bit integer</td></tr>
  70.         <tr><td><code>string</code></td>
  71.             <td>arbitrary-length string</td></tr>
  72.         <tr><td><code>date</code></td>
  73.             <td>long integer date (seconds since Unix epoch/1970)</td></tr>
  74.         <tr><td><code>beshort</code></td>
  75.             <td>big-endian 16-bit integer</td></tr>
  76.         <tr><td><code>belong</code></td>
  77.             <td>big-endian 32-bit integer</td></tr>
  78.         <tr><td><code>bedate</code></td>
  79.             <td>big-endian 32-bit integer date</td></tr>
  80.         <tr><td><code>leshort</code></td>
  81.             <td>little-endian 16-bit integer</td></tr>
  82.         <tr><td><code>lelong</code></td>
  83.             <td>little-endian 32-bit integer</td></tr>
  84.         <tr><td><code>ledate</code></td>
  85.             <td>little-endian 32-bit integer date</td></tr>
  86.         </table></td></tr>
  87.  
  88.     <tr><td>3</td>
  89.         <td>contents of data to match</td></tr>
  90.  
  91.     <tr><td>4</td>
  92.         <td>MIME type if matched</td></tr>
  93.  
  94.     <tr><td>5</td>
  95.         <td>MIME encoding if matched (optional)</td></tr>
  96.     </table>
  97.  
  98.     <p>For example, the following magic file lines would recognize
  99.     some audio formats:</p>
  100.  
  101.     <example>
  102. <pre># Sun/NeXT audio data
  103. 0      string      .snd
  104. >12    belong      1       audio/basic
  105. >12    belong      2       audio/basic
  106. >12    belong      3       audio/basic
  107. >12    belong      4       audio/basic
  108. >12    belong      5       audio/basic
  109. >12    belong      6       audio/basic
  110. >12    belong      7       audio/basic
  111. >12    belong     23       audio/x-adpcm</pre>
  112.     </example>
  113.  
  114.     <p>Or these would recognize the difference between <code>*.doc</code>
  115.     files containing Microsoft Word or FrameMaker documents. (These are
  116.     incompatible file formats which use the same file suffix.)</p>
  117.  
  118.     <example>
  119. <pre># Frame
  120. 0  string  \<MakerFile        application/x-frame
  121. 0  string  \<MIFFile          application/x-frame
  122. 0  string  \<MakerDictionary  application/x-frame
  123. 0  string  \<MakerScreenFon   application/x-frame
  124. 0  string  \<MML              application/x-frame
  125. 0  string  \<Book             application/x-frame
  126. 0  string  \<Maker            application/x-frame
  127.  
  128. # MS-Word
  129. 0  string  \376\067\0\043            application/msword
  130. 0  string  \320\317\021\340\241\261  application/msword
  131. 0  string  \333\245-\0\0\0           application/msword</pre>
  132.     </example>
  133.  
  134.     <p>An optional MIME encoding can be included as a fifth column.
  135.     For example, this can recognize gzipped files and set the
  136.     encoding for them.</p>
  137.  
  138.     <example>
  139. <pre># gzip (GNU zip, not to be confused with
  140. #       [Info-ZIP/PKWARE] zip archiver)
  141.  
  142. 0  string  \037\213  application/octet-stream  x-gzip</pre>
  143.     </example>
  144. </section>
  145.  
  146. <section id="performance"><title>Performance Issues</title>
  147.     <p>This module is not for every system. If your system is barely
  148.     keeping up with its load or if you're performing a web server
  149.     benchmark, you may not want to enable this because the
  150.     processing is not free.</p>
  151.  
  152.     <p>However, an effort was made to improve the performance of
  153.     the original <code>file(1)</code> code to make it fit in a busy web
  154.     server. It was designed for a server where there are thousands of users
  155.     who publish their own documents. This is probably very common
  156.     on intranets. Many times, it's helpful if the server can make
  157.     more intelligent decisions about a file's contents than the
  158.     file name allows ...even if just to reduce the "why doesn't my
  159.     page work" calls when users improperly name their own files.
  160.     You have to decide if the extra work suits your
  161.     environment.</p>
  162. </section>
  163.  
  164. <section id="notes"><title>Notes</title>
  165.     <p>The following notes apply to the <module>mod_mime_magic</module>
  166.     module and are included here for compliance with contributors'
  167.     copyright restrictions that require their acknowledgment.</p>
  168.  
  169.     <note>
  170.       <p>mod_mime_magic: MIME type lookup via file magic numbers<br />
  171.       Copyright (c) 1996-1997 Cisco Systems, Inc.</p>
  172.  
  173.       <p>This software was submitted by Cisco Systems to the Apache Group
  174.       in July 1997. Future revisions and derivatives of this source code
  175.       must acknowledge Cisco Systems as the original contributor of this
  176.       module. All other licensing and usage conditions are those of the
  177.       Apache Group.</p>
  178.  
  179.       <p>Some of this code is derived from the free version of the file
  180.       command originally posted to comp.sources.unix. Copyright info for
  181.       that program is included below as required.</p>
  182.     </note>
  183.  
  184.     <note>
  185.       <p> - Copyright (c) Ian F. Darwin, 1987. Written by Ian F. Darwin.</p>
  186.  
  187.       <p>This software is not subject to any license of the American
  188.       Telephone and Telegraph Company or of the Regents of the University
  189.       of California.</p>
  190.  
  191.       <p>Permission is granted to anyone to use this software for any
  192.       purpose on any computer system, and to alter it and redistribute it
  193.       freely, subject to the following restrictions:</p>
  194.  
  195.       <ol>
  196.         <li>The author is not responsible for the consequences of use of
  197.         this software, no matter how awful, even if they arise from flaws
  198.         in it.</li>
  199.  
  200.         <li>The origin of this software must not be misrepresented, either
  201.         by explicit claim or by omission. Since few users ever read
  202.         sources, credits must appear in the documentation.</li>
  203.  
  204.         <li>Altered versions must be plainly marked as such, and must not
  205.         be misrepresented as being the original software. Since few users
  206.         ever read sources, credits must appear in the documentation.</li>
  207.  
  208.         <li>This notice may not be removed or altered.</li>
  209.       </ol>
  210.     </note>
  211.  
  212.     <note>
  213.       <p>For compliance with Mr Darwin's terms: this has been very
  214.       significantly modified from the free "file" command.</p>
  215.  
  216.       <ul>
  217.         <li>all-in-one file for compilation convenience when moving from
  218.         one version of Apache to the next.</li>
  219.  
  220.         <li>Memory allocation is done through the Apache API's pool
  221.         structure.</li>
  222.  
  223.         <li>All functions have had necessary Apache API request or server
  224.         structures passed to them where necessary to call other Apache API
  225.         routines. (<em>i.e.</em>, usually for logging, files, or memory
  226.         allocation in itself or a called function.)</li>
  227.  
  228.         <li>struct magic has been converted from an array to a single-ended
  229.         linked list because it only grows one record at a time, it's only
  230.         accessed sequentially, and the Apache API has no equivalent of
  231.         <code>realloc()</code>.</li>
  232.  
  233.         <li>Functions have been changed to get their parameters from the
  234.         server configuration instead of globals.  (It should be reentrant
  235.         now but has not been tested in a threaded environment.)</li>
  236.  
  237.         <li>Places where it used to print results to stdout now saves them
  238.         in a list where they're used to set the MIME type in the Apache
  239.         request record.</li>
  240.  
  241.         <li>Command-line flags have been removed since they will never be
  242.         used here.</li>
  243.       </ul>
  244.     </note>
  245. </section>
  246.  
  247. <directivesynopsis>
  248. <name>MimeMagicFile</name>
  249. <description>Enable MIME-type determination based on file contents
  250. using the specified magic file</description>
  251. <syntax>MimeMagicFile <var>file-path</var></syntax>
  252. <contextlist><context>server config</context><context>virtual host</context>
  253. </contextlist>
  254.  
  255. <usage>
  256.     <p>The <directive>MimeMagicFile</directive> directive can be used to
  257.     enable this module, the default file is distributed at
  258.     <code>conf/magic</code>. Non-rooted paths are relative to the
  259.     <directive module="core">ServerRoot</directive>. Virtual hosts will use
  260.     the same file as the main server unless a more specific setting is
  261.     used, in which case the more specific setting overrides the main
  262.     server's file.</p>
  263.  
  264.     <example><title>Example</title>
  265.       MimeMagicFile conf/magic
  266.     </example>
  267. </usage>
  268. </directivesynopsis>
  269.  
  270. </modulesynopsis>
  271.