You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by jo...@apache.org on 2005/08/31 11:50:57 UTC

svn commit: r264993 - in /httpd/httpd/branches/2.2.x/docs/manual/mod: mod_setenvif.html.en mod_setenvif.xml mod_setenvif.xml.ja mod_setenvif.xml.ko mod_setenvif.xml.meta

Author: jorton
Date: Wed Aug 31 02:50:53 2005
New Revision: 264993

URL: http://svn.apache.org/viewcvs?rev=264993&view=rev
Log:
Revert r220310 and r220312 to bring mod_setenvif docs in line with
code.

Reviewed by: colm, jorton, trawick, jerenkrantz

Modified:
    httpd/httpd/branches/2.2.x/docs/manual/mod/mod_setenvif.html.en
    httpd/httpd/branches/2.2.x/docs/manual/mod/mod_setenvif.xml
    httpd/httpd/branches/2.2.x/docs/manual/mod/mod_setenvif.xml.ja
    httpd/httpd/branches/2.2.x/docs/manual/mod/mod_setenvif.xml.ko
    httpd/httpd/branches/2.2.x/docs/manual/mod/mod_setenvif.xml.meta

Modified: httpd/httpd/branches/2.2.x/docs/manual/mod/mod_setenvif.html.en
URL: http://svn.apache.org/viewcvs/httpd/httpd/branches/2.2.x/docs/manual/mod/mod_setenvif.html.en?rev=264993&r1=264992&r2=264993&view=diff
==============================================================================
--- httpd/httpd/branches/2.2.x/docs/manual/mod/mod_setenvif.html.en (original)
+++ httpd/httpd/branches/2.2.x/docs/manual/mod/mod_setenvif.html.en Wed Aug 31 02:50:53 2005
@@ -141,7 +141,7 @@
 </table>
     <p>The <code class="directive">SetEnvIf</code> directive defines
     environment variables based on attributes of the request. The
-    <em>attribute</em> specified in the first argument can be one of four
+    <em>attribute</em> specified in the first argument can be one of three
     things:</p>
 
 <ol>
@@ -187,15 +187,6 @@
 Environment variables will be considered only if there was no match
 among request characteristics and a regular expression was not
 used for the <em>attribute</em>.</li>
-
-<li>
- A reference to an extension of an SSL client certificate, located by
- its object id <em>oid</em>.
- If a non-SSL request, or in absense of the configured <em>oid</em>,
- no variable will be set. If the <em>oid</em> is found multiple times,
- the individual strings will be concatenated, separated by a comma <code>','</code>.
- The <em>oid</em> should reference a string-valued extension.
-</li>
 </ol>
 
 <p>The second argument (<em>regex</em>) is a <a href="http://www.pcre.org/">Perl compatible regular expression</a>.
@@ -233,8 +224,6 @@
         :<br />
    SetEnvIf object_is_image xbm XBIT_PROCESSING=1<br />
         :<br />
-   SetEnvIf OID("2.16.840.1.113730.1.13") "(.*)" NetscapeComment=$1<br />
-        :<br />
    SetEnvIf ^TS*  ^[a-z].*  HAVE_TS<br />
 </code></p></div>
 
@@ -243,10 +232,6 @@
     file, and the fourth sets <code>intra_site_referral</code> if
     the referring page was somewhere on the
     <code>www.mydomain.com</code> Web site.</p>
-
-    <p>The sixth example will set the <code>NetscapeComment</code>
-    environment variable to the string found in the corresponding
-    SSL client certificate field (if found).</p>
 
     <p>The last example will set environment variable
     <code>HAVE_TS</code> if the request contains any headers that

Modified: httpd/httpd/branches/2.2.x/docs/manual/mod/mod_setenvif.xml
URL: http://svn.apache.org/viewcvs/httpd/httpd/branches/2.2.x/docs/manual/mod/mod_setenvif.xml?rev=264993&r1=264992&r2=264993&view=diff
==============================================================================
--- httpd/httpd/branches/2.2.x/docs/manual/mod/mod_setenvif.xml (original)
+++ httpd/httpd/branches/2.2.x/docs/manual/mod/mod_setenvif.xml Wed Aug 31 02:50:53 2005
@@ -135,7 +135,7 @@
 <usage>
     <p>The <directive>SetEnvIf</directive> directive defines
     environment variables based on attributes of the request. The
-    <em>attribute</em> specified in the first argument can be one of four
+    <em>attribute</em> specified in the first argument can be one of three
     things:</p>
 
 <ol>
@@ -182,15 +182,6 @@
 Environment variables will be considered only if there was no match
 among request characteristics and a regular expression was not
 used for the <em>attribute</em>.</li>
-
-<li>
- A reference to an extension of an SSL client certificate, located by
- its object id <em>oid</em>.
- If a non-SSL request, or in absense of the configured <em>oid</em>,
- no variable will be set. If the <em>oid</em> is found multiple times,
- the individual strings will be concatenated, separated by a comma <code>','</code>.
- The <em>oid</em> should reference a string-valued extension.
-</li>
 </ol>
 
 <p>The second argument (<em>regex</em>) is a <a
@@ -229,8 +220,6 @@
         :<br />
    SetEnvIf object_is_image xbm XBIT_PROCESSING=1<br />
         :<br />
-   SetEnvIf OID("2.16.840.1.113730.1.13") "(.*)" NetscapeComment=$1<br />
-        :<br />
    SetEnvIf ^TS*  ^[a-z].*  HAVE_TS<br />
 </example>
 
@@ -239,10 +228,6 @@
     file, and the fourth sets <code>intra_site_referral</code> if
     the referring page was somewhere on the
     <code>www.mydomain.com</code> Web site.</p>
-
-    <p>The sixth example will set the <code>NetscapeComment</code>
-    environment variable to the string found in the corresponding
-    SSL client certificate field (if found).</p>
 
     <p>The last example will set environment variable
     <code>HAVE_TS</code> if the request contains any headers that

Modified: httpd/httpd/branches/2.2.x/docs/manual/mod/mod_setenvif.xml.ja
URL: http://svn.apache.org/viewcvs/httpd/httpd/branches/2.2.x/docs/manual/mod/mod_setenvif.xml.ja?rev=264993&r1=264992&r2=264993&view=diff
==============================================================================
--- httpd/httpd/branches/2.2.x/docs/manual/mod/mod_setenvif.xml.ja [iso-2022-jp] (original)
+++ httpd/httpd/branches/2.2.x/docs/manual/mod/mod_setenvif.xml.ja [iso-2022-jp] Wed Aug 31 02:50:53 2005
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="iso-2022-jp"?>
 <!DOCTYPE modulesynopsis SYSTEM "../style/modulesynopsis.dtd">
 <?xml-stylesheet type="text/xsl" href="../style/manual.ja.xsl"?>
-<!-- English Revision: 151408:220310 (outdated) -->
+<!-- English Revision: 151408 -->
 
 <!--
  Copyright 2002-2005 The Apache Software Foundation or its licensors,

Modified: httpd/httpd/branches/2.2.x/docs/manual/mod/mod_setenvif.xml.ko
URL: http://svn.apache.org/viewcvs/httpd/httpd/branches/2.2.x/docs/manual/mod/mod_setenvif.xml.ko?rev=264993&r1=264992&r2=264993&view=diff
==============================================================================
--- httpd/httpd/branches/2.2.x/docs/manual/mod/mod_setenvif.xml.ko [euc-kr] (original)
+++ httpd/httpd/branches/2.2.x/docs/manual/mod/mod_setenvif.xml.ko [euc-kr] Wed Aug 31 02:50:53 2005
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="EUC-KR" ?>
 <!DOCTYPE modulesynopsis SYSTEM "../style/modulesynopsis.dtd">
 <?xml-stylesheet type="text/xsl" href="../style/manual.ko.xsl"?>
-<!-- English Revision: 151408:220310 (outdated) -->
+<!-- English Revision: 151408 -->
 
 <!--
  Copyright 2004-2005 The Apache Software Foundation or its licensors,

Modified: httpd/httpd/branches/2.2.x/docs/manual/mod/mod_setenvif.xml.meta
URL: http://svn.apache.org/viewcvs/httpd/httpd/branches/2.2.x/docs/manual/mod/mod_setenvif.xml.meta?rev=264993&r1=264992&r2=264993&view=diff
==============================================================================
--- httpd/httpd/branches/2.2.x/docs/manual/mod/mod_setenvif.xml.meta (original)
+++ httpd/httpd/branches/2.2.x/docs/manual/mod/mod_setenvif.xml.meta Wed Aug 31 02:50:53 2005
@@ -7,7 +7,7 @@
 
   <variants>
     <variant>en</variant>
-    <variant outdated="yes">ja</variant>
-    <variant outdated="yes">ko</variant>
+    <variant>ja</variant>
+    <variant>ko</variant>
   </variants>
 </metafile>