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 / F278308_mod_imap.xml < prev    next >
Extensible Markup Language  |  2004-04-17  |  14KB  |  359 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.3.2.5 $ -->
  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_imap.xml.meta">
  23.  
  24. <name>mod_imap</name>
  25. <description>Server-side imagemap processing</description>
  26. <status>Base</status>
  27. <sourcefile>mod_imap.c</sourcefile>
  28. <identifier>imap_module</identifier>
  29.  
  30. <summary>
  31.     <p>This module processes <code>.map</code> files, thereby
  32.     replacing the functionality of the <code>imagemap</code> CGI
  33.     program. Any directory or document type configured to use the
  34.     handler <code>imap-file</code> (using either 
  35.     <directive module="mod_mime">AddHandler</directive> or
  36.     <directive module="core">SetHandler</directive>)
  37.     will be processed by this module.</p>
  38.  
  39.     <p>The following directive will activate files ending with
  40.     <code>.map</code> as imagemap files:</p>
  41.  
  42.     <example>AddHandler imap-file map</example>
  43.  
  44.     <p>Note that the following is still supported:</p>
  45.  
  46.     <example>AddType application/x-httpd-imap map</example>
  47.  
  48.     <p>However, we are trying to phase out "magic MIME types" so we
  49.     are deprecating this method.</p>
  50. </summary>
  51.  
  52. <section id="features"><title>New Features</title>
  53.  
  54.     <p>The imagemap module adds some new features that were not
  55.     possible with previously distributed imagemap programs.</p>
  56.  
  57.     <ul>
  58.       <li>URL references relative to the Referer: information.</li>
  59.  
  60.       <li>Default <code><base></code> assignment through a new map
  61.       directive <code>base</code>.</li>
  62.  
  63.       <li>No need for <code>imagemap.conf</code> file.</li>
  64.  
  65.       <li>Point references.</li>
  66.  
  67.       <li>Configurable generation of imagemap menus.</li>
  68.     </ul>
  69. </section>
  70.  
  71. <section id="imapfile"><title>Imagemap File</title>
  72.  
  73.     <p>The lines in the imagemap files can have one of several
  74.     formats:</p>
  75.  
  76.     <example>
  77.       directive value [<var>x</var>,<var>y</var> ...]<br />
  78.       directive value "<var>Menu text</var>" [<var>x</var>,<var>y</var>
  79.       ...]<br />
  80.       directive value <var>x</var>,<var>y</var> ... "<var>Menu text</var>"
  81.     </example>
  82.  
  83.     <p>The directive is one of <code>base</code>,
  84.     <code>default</code>, <code>poly</code>, <code>circle</code>,
  85.     <code>rect</code>, or <code>point</code>. The value is an
  86.     absolute or relative URL, or one of the special values listed
  87.     below. The coordinates are <code><var>x</var>,<var>y</var></code>
  88.     pairs separated by whitespace. The quoted text is used as the text of
  89.     the link if a imagemap menu is generated. Lines beginning with '#' are
  90.     comments.</p>
  91.  
  92.     <section id="imapfile.directives"><title>Imagemap File Directives</title>
  93.       <p>There are six directives allowed in the imagemap file. The
  94.       directives can come in any order, but are processed in the
  95.       order they are found in the imagemap file.</p>
  96.  
  97.       <dl>
  98.       <dt><code>base</code> Directive</dt>
  99.  
  100.       <dd><p>Has the effect of <code><base href="<var>value</var>">
  101.       </code>. The non-absolute URLs of the map-file are taken relative
  102.       to this value. The <code>base</code> directive overrides
  103.       <directive module="mod_imap">ImapBase</directive> as set in a
  104.       <code>.htaccess</code> file or in the server configuration files.
  105.       In the absence of an <directive>ImapBase</directive> configuration
  106.       directive, <code>base</code> defaults to
  107.       <code>http://server_name/</code>.</p>
  108.       <p><code>base_uri</code> is synonymous with <code>base</code>.
  109.       Note that a trailing slash on the URL is significant.</p></dd>
  110.  
  111.       <dt><code>default</code> Directive</dt>
  112.  
  113.       <dd>The action taken if the coordinates given do not fit any
  114.       of the <code>poly</code>, <code>circle</code> or
  115.       <code>rect</code> directives, and there are no
  116.       <code>point</code> directives. Defaults to <code>nocontent</code>
  117.       in the absence of an <directive module="mod_imap"
  118.       >ImapDefault</directive> configuration setting, causing a status
  119.       code of <code>204 No Content</code> to be returned. The client
  120.       should keep the same page displayed.</dd>
  121.  
  122.       <dt><code>poly</code> Directive</dt>
  123.  
  124.       <dd>Takes three to one-hundred points, and is obeyed if the
  125.       user selected coordinates fall within the polygon defined by
  126.       these points.</dd>
  127.  
  128.       <dt><code>circle</code></dt>
  129.  
  130.       <dd>Takes the center coordinates of a circle and a point on
  131.       the circle. Is obeyed if the user selected point is with the
  132.       circle.</dd>
  133.  
  134.       <dt><code>rect</code> Directive</dt>
  135.  
  136.       <dd>Takes the coordinates of two opposing corners of a
  137.       rectangle. Obeyed if the point selected is within this
  138.       rectangle.</dd>
  139.  
  140.       <dt><code>point</code> Directive</dt>
  141.  
  142.       <dd>Takes a single point. The point directive closest to the
  143.       user selected point is obeyed if no other directives are
  144.       satisfied. Note that <code>default</code> will not be
  145.       followed if a <code>point</code> directive is present and
  146.       valid coordinates are given.</dd>
  147.       </dl>
  148.     </section>
  149.  
  150.     <section id="imapfile.values"><title>Values</title>
  151.  
  152.       <p>The values for each of the directives can any of the following:</p>
  153.  
  154.       <dl>
  155.       <dt>a URL</dt>
  156.  
  157.       <dd><p>The URL can be relative or absolute URL. Relative URLs
  158.       can contain '..' syntax and will be resolved relative to the
  159.       <code>base</code> value.</p>
  160.       <p><code>base</code> itself will not resolved according to the
  161.       current value. A statement <code>base mailto:</code> will
  162.       work properly, though.</p></dd>
  163.  
  164.       <dt><code>map</code></dt>
  165.  
  166.       <dd>Equivalent to the URL of the imagemap file itself. No
  167.       coordinates are sent with this, so a menu will be generated
  168.       unless <directive module="mod_imap">ImapMenu</directive> is set to
  169.       <code>none</code>.</dd>
  170.  
  171.       <dt><code>menu</code></dt>
  172.       <dd>Synonymous with <code>map</code>.</dd>
  173.  
  174.       <dt><code>referer</code></dt>
  175.  
  176.       <dd>Equivalent to the URL of the referring document. Defaults
  177.       to <code>http://servername/</code> if no <code>Referer:</code>
  178.       header was present.</dd>
  179.  
  180.       <dt><code>nocontent</code></dt>
  181.  
  182.       <dd>Sends a status code of <code>204 No Content</code>,
  183.       telling the client to keep the same page displayed. Valid for
  184.       all but <code>base</code>.</dd>
  185.  
  186.       <dt><code>error</code></dt>
  187.  
  188.       <dd>Fails with a <code>500 Server Error</code>. Valid for all
  189.       but <code>base</code>, but sort of silly for anything but
  190.       <code>default</code>.</dd>
  191.       </dl>
  192.     </section>
  193.  
  194.     <section id="imapfile.coords"><title>Coordinates</title>
  195.  
  196.       <dl>
  197.       <dt><code>0,0 200,200</code></dt>
  198.  
  199.       <dd>A coordinate consists of an <var>x</var> and a <var>y</var>
  200.       value separated by a comma. The coordinates are separated
  201.       from each other by whitespace. To accommodate the way Lynx
  202.       handles imagemaps, should a user select the coordinate
  203.       <code>0,0</code>, it is as if no coordinate had been
  204.       selected.</dd>
  205.       </dl>
  206.  
  207.     </section>
  208.  
  209.     <section id="imapfile.quotedtext"><title>Quoted Text</title>
  210.  
  211.       <dl>
  212.       <dt><code>"<var>Menu Text</var>"</code></dt>
  213.  
  214.       <dd><p>After the value or after the coordinates, the line
  215.       optionally may contain text within double quotes. This string
  216.       is used as the text for the link if a menu is
  217.       generated:</p>
  218.  
  219.       <example>
  220.         <a href="http://foo.com/"><var>Menu text</var></a>
  221.       </example>
  222.  
  223.       <p>If no quoted text is present, the name of the link will be
  224.       used as the text:</p>
  225.  
  226.       <example>
  227.         <a href="http://foo.com/">http://foo.com</a>
  228.       </example>
  229.  
  230.       <p>If you want to use double quotes within this text, you have to
  231.       write them as <code>&quot;</code>.</p></dd>
  232.       </dl>
  233.  
  234.     </section>
  235. </section>
  236.  
  237. <section id="example"><title>Example Mapfile</title>
  238.  
  239.     <example>
  240.       #Comments are printed in a 'formatted' or 'semiformatted' menu.<br />
  241.       #And can contain html tags. <hr><br />
  242.       base referer<br />
  243.       poly map "Could I have a menu, please?" 0,0 0,10 10,10 10,0<br />
  244.       rect .. 0,0 77,27 "the directory of the referer"<br />
  245.       circle http://www.inetnebr.com/lincoln/feedback/ 195,0 305,27<br />
  246.       rect another_file "in same directory as referer" 306,0 419,27<br />
  247.       point http://www.zyzzyva.com/ 100,100<br />
  248.       point http://www.tripod.com/ 200,200<br />
  249.       rect mailto:nate@tripod.com 100,150 200,0 "Bugs?"<br />
  250.     </example>
  251.  
  252. </section>
  253.  
  254. <section id="referencing"><title>Referencing your mapfile</title>
  255.  
  256.     <example><title>HTML example</title>
  257.       <a href="/maps/imagemap1.map"><br />
  258.       <indent>
  259.         <img ismap src="/images/imagemap1.gif"><br />
  260.       </indent>
  261.       </a>
  262.     </example>
  263.  
  264.     <example><title>XHTML example</title>
  265.       <a href="/maps/imagemap1.map"><br />
  266.       <indent>
  267.         <img ismap="ismap" src="/images/imagemap1.gif" /><br />
  268.       </indent>
  269.       </a>
  270.     </example>
  271.  
  272. </section>
  273.  
  274. <directivesynopsis>
  275. <name>ImapMenu</name>
  276. <description>Action if no coordinates are given when calling
  277. an imagemap</description>
  278. <syntax>ImapMenu none|formatted|semiformatted|unformatted</syntax>
  279. <contextlist><context>server config</context><context>virtual host</context>
  280. <context>directory</context><context>.htaccess</context></contextlist>
  281. <override>Indexes</override>
  282.  
  283. <usage>
  284.     <p>The <directive>ImapMenu</directive> directive determines the
  285.     action taken if an imagemap file is called without valid
  286.     coordinates.</p>
  287.  
  288.     <dl>
  289.       <dt><code>none</code></dt>
  290.       <dd>If ImapMenu is <code>none</code>, no menu is generated,
  291.       and the <code>default</code> action is performed.</dd>
  292.  
  293.       <dt><code>formatted</code></dt>
  294.       <dd>A <code>formatted</code> menu is the simplest menu.
  295.       Comments in the imagemap file are ignored. A level one header
  296.       is printed, then an hrule, then the links each on a separate
  297.       line. The menu has a consistent, plain look close to that of
  298.       a directory listing.</dd>
  299.  
  300.       <dt><code>semiformatted</code></dt>
  301.       <dd>In the <code>semiformatted</code> menu, comments are
  302.       printed where they occur in the imagemap file. Blank lines
  303.       are turned into HTML breaks. No header or hrule is printed,
  304.       but otherwise the menu is the same as a
  305.       <code>formatted</code> menu.</dd>
  306.  
  307.       <dt><code>unformatted</code></dt>
  308.       <dd>Comments are printed, blank lines are ignored. Nothing is
  309.       printed that does not appear in the imagemap file. All breaks
  310.       and headers must be included as comments in the imagemap
  311.       file. This gives you the most flexibility over the appearance
  312.       of your menus, but requires you to treat your map files as
  313.       HTML instead of plaintext.</dd>
  314.     </dl>
  315. </usage>
  316. </directivesynopsis>
  317.  
  318. <directivesynopsis>
  319. <name>ImapDefault</name>
  320. <description>Default action when an imagemap is called with coordinates
  321. that are not explicitly mapped</description>
  322. <syntax>ImapDefault error|nocontent|map|referer|<var>URL</var></syntax>
  323. <default>ImapDefault nocontent</default>
  324. <contextlist><context>server config</context><context>virtual host</context>
  325. <context>directory</context><context>.htaccess</context></contextlist>
  326. <override>Indexes</override>
  327.  
  328. <usage>
  329.     <p>The <directive>ImapDefault</directive> directive sets the default
  330.     <code>default</code> used in the imagemap files. Its value is
  331.     overridden by a <code>default</code> directive within the
  332.     imagemap file. If not present, the <code>default</code> action
  333.     is <code>nocontent</code>, which means that a <code>204 No
  334.     Content</code> is sent to the client. In this case, the client
  335.     should continue to display the original page.</p>
  336. </usage>
  337. </directivesynopsis>
  338.  
  339. <directivesynopsis>
  340. <name>ImapBase</name>
  341. <description>Default <code>base</code> for imagemap files</description>
  342. <syntax>ImapBase map|referer|<var>URL</var></syntax>
  343. <default>ImapBase http://servername/</default>
  344. <contextlist><context>server config</context><context>virtual host</context>
  345. <context>directory</context><context>.htaccess</context></contextlist>
  346. <override>Indexes</override>
  347.  
  348. <usage>
  349.     <p>The <directive>ImapBase</directive> directive sets the default
  350.     <code>base</code> used in the imagemap files. Its value is
  351.     overridden by a <code>base</code> directive within the imagemap
  352.     file. If not present, the <code>base</code> defaults to
  353.     <code>http://<var>servername</var>/</code>.</p>
  354. </usage>
  355. <seealso><directive module="core">UseCanonicalName</directive></seealso>
  356. </directivesynopsis>
  357.  
  358. </modulesynopsis>
  359.