]> granicus.if.org Git - apache/commitdiff
Adds an example of constructing a type-map file.
authorRich Bowen <rbowen@apache.org>
Thu, 7 Apr 2011 03:14:15 +0000 (03:14 +0000)
committerRich Bowen <rbowen@apache.org>
Thu, 7 Apr 2011 03:14:15 +0000 (03:14 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1089716 13f79535-47bb-0310-9956-ffa450edef68

docs/manual/mod/mod_negotiation.html.en
docs/manual/mod/mod_negotiation.xml
docs/manual/mod/mod_negotiation.xml.ja

index dd88482e871a6d0022eed6983b3df09a31da2213..1cf3b7f5a938eefb17f748fddbcefa1aa56a8c3b 100644 (file)
@@ -158,6 +158,45 @@ Negotiation</a></li>
       </code></p></div>
       </dd>
     </dl>
+
+    <p>Consider, for example, a resource called
+    <code>document.html</code> which is available in English, French,
+    and German. The files for each of these are called
+    <code>document.html.en</code>, <code>document.html.fr</code>, and
+    <code>document.html.de</code>, respectively. The type map file will
+    be called <code>index.html.var</code>, and will contain the
+    following:</p>
+    
+    <div class="example"><h3>index.html.var</h3><p><code>
+
+    Content-language: en<br />
+    Content-type: text/html<br />
+    URI: document.html.en<br />
+    <br />
+    Content-language: fr<br />
+    Content-type: text/html<br />
+    URI: document.html.fr<br />
+    <br />
+    Content-language: de<br />
+    Content-type: text/html<br />
+    URI: document.html.de<br />
+    <br />
+
+    </code></p></div>
+
+    <p>All four of these files should be placed in the same directory,
+    and the <code>.var</code> file should be associated with the
+    <code>type-map</code> handler with an <code class="directive"><a href="../mod/mod_mime.html#addhandler">AddHandler</a></code> directive:</p>
+
+    <div class="example"><p><code>
+    AddHandler type-map .var
+    </code></p></div>
+
+    <p>A request for <code>document.html</code> in this directory will
+    result in <code>document.html.var</code> being consulted, and the
+    variant chosen which most closely matches the language preference
+    specified in the user's <code>Accept-Language</code> request
+    header.</p>
 </div><div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
 <div class="section">
 <h2><a name="multiviews" id="multiviews">Multiviews</a></h2>
index 4bec7943b9ff42792a879d28de6962187868c5cd..5762a76fd44898590f707240036b8b8f127a7839 100644 (file)
@@ -178,7 +178,7 @@ Negotiation</a></seealso>
 
     <example>
     AddHandler type-map .var
-    <example>
+    </example>
 
     <p>A request for <code>document.html</code> in this directory will
     result in <code>document.html.var</code> being consulted, and the
index fd67e25735c8329ad5a2c85bb551dc3d20e59d05..f67e74118855a4e9c40f75bf452e3a640dfa1abf 100644 (file)
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="UTF-8" ?>
 <!DOCTYPE modulesynopsis SYSTEM "../style/modulesynopsis.dtd">
 <?xml-stylesheet type="text/xsl" href="../style/manual.ja.xsl"?>
-<!-- English Revision: 420990:1066440 (outdated) -->
+<!-- English Revision: 420990:1089714 (outdated) -->
 
 <!--
  Licensed to the Apache Software Foundation (ASF) under one or more