
humbedooh at apache
Apr 27, 2012, 1:38 PM
Post #1 of 1
(25 views)
Permalink
|
|
svn commit: r1331584 - in /httpd/httpd/trunk/docs/manual: caching.xml.fr caching.xml.tr content-negotiation.html.en content-negotiation.xml howto/cgi.xml.fr howto/cgi.xml.ja howto/cgi.xml.ko
|
|
Author: humbedooh Date: Fri Apr 27 20:38:25 2012 New Revision: 1331584 URL: http://svn.apache.org/viewvc?rev=1331584&view=rev Log: Update syntax highlight for content-neg Modified: httpd/httpd/trunk/docs/manual/caching.xml.fr httpd/httpd/trunk/docs/manual/caching.xml.tr httpd/httpd/trunk/docs/manual/content-negotiation.html.en httpd/httpd/trunk/docs/manual/content-negotiation.xml httpd/httpd/trunk/docs/manual/howto/cgi.xml.fr httpd/httpd/trunk/docs/manual/howto/cgi.xml.ja httpd/httpd/trunk/docs/manual/howto/cgi.xml.ko Modified: httpd/httpd/trunk/docs/manual/caching.xml.fr URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/caching.xml.fr?rev=1331584&r1=1331583&r2=1331584&view=diff ============================================================================== --- httpd/httpd/trunk/docs/manual/caching.xml.fr (original) +++ httpd/httpd/trunk/docs/manual/caching.xml.fr Fri Apr 27 20:38:25 2012 @@ -3,7 +3,7 @@ <?xml-stylesheet type="text/xsl" href="style/manual.fr.xsl"?> <!-- French translation : Lucien GENTIS --> <!-- Reviewed by : Vincent Deffontaines --> -<!-- English Revision: 1291840:1330883 (outdated) --> +<!-- English Revision: 1291840:1331581 (outdated) --> <!-- Licensed to the Apache Software Foundation (ASF) under one or more Modified: httpd/httpd/trunk/docs/manual/caching.xml.tr URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/caching.xml.tr?rev=1331584&r1=1331583&r2=1331584&view=diff ============================================================================== --- httpd/httpd/trunk/docs/manual/caching.xml.tr [utf-8] (original) +++ httpd/httpd/trunk/docs/manual/caching.xml.tr [utf-8] Fri Apr 27 20:38:25 2012 @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="UTF-8" ?> <!DOCTYPE manualpage SYSTEM "style/manualpage.dtd"> <?xml-stylesheet type="text/xsl" href="style/manual.tr.xsl"?> -<!-- English Revision: 1291840:1330883 (outdated) --> +<!-- English Revision: 1291840:1331581 (outdated) --> <!-- ===================================================== Translated by: Nilgün Belma Bugüner <nilgun belgeler.org> Reviewed by: Orhan Berent <berent belgeler.org> Modified: httpd/httpd/trunk/docs/manual/content-negotiation.html.en URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/content-negotiation.html.en?rev=1331584&r1=1331583&r2=1331584&view=diff ============================================================================== --- httpd/httpd/trunk/docs/manual/content-negotiation.html.en (original) +++ httpd/httpd/trunk/docs/manual/content-negotiation.html.en Fri Apr 27 20:38:25 2012 @@ -134,7 +134,8 @@ Negotiation</a></li> defines a file suffix as <code>type-map</code>; this is best done with</p> -<div class="example"><p><code>AddHandler type-map .var</code></p></div> +<pre class="prettyprint lang-config">AddHandler type-map .var</pre> + <p>in the server configuration file.</p> @@ -231,7 +232,8 @@ Negotiation</a></li> named by the <code class="directive"><a href="./mod/mod_dir.html#directoryindex">DirectoryIndex</a></code> directive, if the server is trying to index a directory. If the configuration files specify</p> -<div class="example"><p><code>DirectoryIndex index</code></p></div> +<pre class="prettyprint lang-config">DirectoryIndex index</pre> + <p>then the server will arbitrate between <code>index.html</code> and <code>index.html3</code> if both are present. If neither are present, and <code>index.cgi</code> is there, the server @@ -516,10 +518,11 @@ Negotiation</a></li> try to select a matching variant. If there's no such variant, the normal negotiation process applies.</p> - <div class="example"><h3>Example</h3><p><code> - SetEnvIf Cookie "language=(.+)" prefer-language=$1<br /> - Header append Vary cookie - </code></p></div> + <div class="example"><h3>Example</h3><pre class="prettyprint lang-config"> +SetEnvIf Cookie "language=(.+)" prefer-language=$1 +Header append Vary cookie + </pre> +</div> </div><div class="top"><a href="#page-header"><img alt="top" src="./images/up.gif" /></a></div> <div class="section"> Modified: httpd/httpd/trunk/docs/manual/content-negotiation.xml URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/content-negotiation.xml?rev=1331584&r1=1331583&r2=1331584&view=diff ============================================================================== --- httpd/httpd/trunk/docs/manual/content-negotiation.xml (original) +++ httpd/httpd/trunk/docs/manual/content-negotiation.xml Fri Apr 27 20:38:25 2012 @@ -120,7 +120,7 @@ defines a file suffix as <code>type-map</code>; this is best done with</p> -<example>AddHandler type-map .var</example> +<highlight language="config">AddHandler type-map .var</highlight> <p>in the server configuration file.</p> @@ -223,7 +223,7 @@ module="mod_dir">DirectoryIndex</directive> directive, if the server is trying to index a directory. If the configuration files specify</p> -<example>DirectoryIndex index</example> +<highlight language="config">DirectoryIndex index</highlight> <p>then the server will arbitrate between <code>index.html</code> and <code>index.html3</code> if both are present. If neither are present, and <code>index.cgi</code> is there, the server @@ -512,8 +512,10 @@ the normal negotiation process applies.</p> <example><title>Example</title> - SetEnvIf Cookie "language=(.+)" prefer-language=$1<br /> - Header append Vary cookie + <highlight language="config"> +SetEnvIf Cookie "language=(.+)" prefer-language=$1 +Header append Vary cookie + </highlight> </example> </section> </section> Modified: httpd/httpd/trunk/docs/manual/howto/cgi.xml.fr URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/howto/cgi.xml.fr?rev=1331584&r1=1331583&r2=1331584&view=diff ============================================================================== --- httpd/httpd/trunk/docs/manual/howto/cgi.xml.fr (original) +++ httpd/httpd/trunk/docs/manual/howto/cgi.xml.fr Fri Apr 27 20:38:25 2012 @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="ISO-8859-1" ?> <!DOCTYPE manualpage SYSTEM "../style/manualpage.dtd"> <?xml-stylesheet type="text/xsl" href="../style/manual.fr.xsl"?> -<!-- English Revision: 1174747:1330165 (outdated) --> +<!-- English Revision: 1174747:1331576 (outdated) --> <!-- French translation : Lucien GENTIS --> <!-- Reviewed by : Vincent Deffontaines --> Modified: httpd/httpd/trunk/docs/manual/howto/cgi.xml.ja URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/howto/cgi.xml.ja?rev=1331584&r1=1331583&r2=1331584&view=diff ============================================================================== --- httpd/httpd/trunk/docs/manual/howto/cgi.xml.ja [utf-8] (original) +++ httpd/httpd/trunk/docs/manual/howto/cgi.xml.ja [utf-8] Fri Apr 27 20:38:25 2012 @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="UTF-8" ?> <!DOCTYPE manualpage SYSTEM "../style/manualpage.dtd"> <?xml-stylesheet type="text/xsl" href="../style/manual.ja.xsl"?> -<!-- English Revision: 545841:1330165 (outdated) --> +<!-- English Revision: 545841:1331576 (outdated) --> <!-- Licensed to the Apache Software Foundation (ASF) under one or more Modified: httpd/httpd/trunk/docs/manual/howto/cgi.xml.ko URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/howto/cgi.xml.ko?rev=1331584&r1=1331583&r2=1331584&view=diff ============================================================================== --- httpd/httpd/trunk/docs/manual/howto/cgi.xml.ko [euc-kr] (original) +++ httpd/httpd/trunk/docs/manual/howto/cgi.xml.ko [euc-kr] Fri Apr 27 20:38:25 2012 @@ -1,7 +1,7 @@ <?xml version='1.0' encoding='EUC-KR' ?> <!DOCTYPE manualpage SYSTEM "../style/manualpage.dtd"> <?xml-stylesheet type="text/xsl" href="../style/manual.ko.xsl"?> -<!-- English Revision: 105989:1330165 (outdated) --> +<!-- English Revision: 105989:1331576 (outdated) --> <!-- Licensed to the Apache Software Foundation (ASF) under one or more
|