You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by ji...@apache.org on 2002/12/16 14:31:06 UTC

cvs commit: httpd-docs-1.3/htdocs/manual/mod directives.html.en mod_usertrack.html

jim         2002/12/16 05:31:06

  Modified:    htdocs/manual/mod directives.html.en mod_usertrack.html
  Log:
  Document CookiePrefix and CookieFormat
  
  Revision  Changes    Path
  1.77      +6 -0      httpd-docs-1.3/htdocs/manual/mod/directives.html.en
  
  Index: directives.html.en
  ===================================================================
  RCS file: /home/cvs/httpd-docs-1.3/htdocs/manual/mod/directives.html.en,v
  retrieving revision 1.76
  retrieving revision 1.77
  diff -u -r1.76 -r1.77
  --- directives.html.en	27 Sep 2002 01:55:28 -0000	1.76
  +++ directives.html.en	16 Dec 2002 13:31:05 -0000	1.77
  @@ -189,11 +189,17 @@
         <li><a
         href="mod_usertrack.html#cookieexpires">CookieExpires</a></li>
   
  +      <li><a
  +      href="mod_usertrack.html#cookieformat">CookieFormat</a></li>
  +
         <li><a href="mod_cookies.html#cookielog">CookieLog</a>
         (mod_cookies)</li>
   
         <li><a href="mod_log_config.html#cookielog">CookieLog</a>
         (mod_log_config)</li>
  +
  +      <li><a
  +      href="mod_usertrack.html#cookieprefix">CookiePrefix</a></li>
   
         <li><a
         href="mod_usertrack.html#cookiestyle">CookieStyle</a></li>
  
  
  
  1.24      +50 -0     httpd-docs-1.3/htdocs/manual/mod/mod_usertrack.html
  
  Index: mod_usertrack.html
  ===================================================================
  RCS file: /home/cvs/httpd-docs-1.3/htdocs/manual/mod/mod_usertrack.html,v
  retrieving revision 1.23
  retrieving revision 1.24
  diff -u -r1.23 -r1.24
  --- mod_usertrack.html	8 Oct 2001 01:34:31 -0000	1.23
  +++ mod_usertrack.html	16 Dec 2002 13:31:05 -0000	1.24
  @@ -46,8 +46,12 @@
   
         <li><a href="#cookieexpires">CookieExpires</a></li>
   
  +      <li><a href="#cookieformat">CookieFormat</a></li>
  +
         <li><a href="#cookiename">CookieName</a></li>
   
  +      <li><a href="#cookieprefix">CookiePrefix</a></li>
  +
         <li><a href="#cookiestyle">CookieStyle</a></li>
   
         <li><a href="#cookietracking">CookieTracking</a></li>
  @@ -159,6 +163,29 @@
       current browser session.</p>
       <hr />
   
  +    <h2><a id="cookieformat"
  +    name="cookieformat">CookieFormat</a> directive</h2>
  +    <a href="directive-dict.html#Syntax"
  +    rel="Help"><strong>Syntax:</strong></a> CookieFormat
  +    <em>Normal | Compact</em><br />
  +     <a href="directive-dict.html#Context"
  +    rel="Help"><strong>Context:</strong></a> server config, virtual host, directory,
  +    .htaccess<br />
  +     <a href="directive-dict.html#Status"
  +    rel="Help"><strong>Status:</strong></a> optional<br />
  +     <a href="directive-dict.html#Module"
  +    rel="Help"><strong>Module:</strong></a> mod_usertrack <a
  +    href="directive-dict.html#Compatibility" 
  +    rel="Help"><strong>Compatibility:</strong></a> Apache 1.3.28
  +    and later 
  +
  +    <p>When used, this directive determines whether the cookie
  +    used for user tracking is created using the default ("normal")
  +    format (eg: decimal values for items like the PID) or
  +    using a more compact format (eg: hexidecimal values).</p>
  +
  +    <hr />
  +
       <h2><a id="cookiename" name="cookiename">CookieName</a>
       directive</h2>
       <a href="directive-dict.html#Syntax"
  @@ -184,6 +211,29 @@
       <p>You must specify a valid cookie name; results are
       unpredictable if you use a name containing unusual characters.
       Valid characters include A-Z, a-z, 0-9, "_", and "-".</p>
  +    <hr />
  +
  +    <h2><a id="cookieprefix"
  +    name="cookieprefix">CookiePrefix</a> directive</h2>
  +    <a href="directive-dict.html#Syntax"
  +    rel="Help"><strong>Syntax:</strong></a> CookiePrefix
  +    <em>"string"</em><br />
  +     <a href="directive-dict.html#Context"
  +    rel="Help"><strong>Context:</strong></a> server config, virtual host, directory,
  +    .htaccess<br />
  +     <a href="directive-dict.html#Status"
  +    rel="Help"><strong>Status:</strong></a> optional<br />
  +     <a href="directive-dict.html#Module"
  +    rel="Help"><strong>Module:</strong></a> mod_usertrack <a
  +    href="directive-dict.html#Compatibility" 
  +    rel="Help"><strong>Compatibility:</strong></a> Apache 1.3.28
  +    and later 
  +
  +    <p>When used, this directive allows for the <em>"string"</em>
  +    to be prepended to the user tracking cookie. Care must be
  +    taken not to prepend a string that would result in a bogus
  +    cookie.</p>
  +
       <hr />
   
       <h2><a id="cookiestyle" name="cookiestyle">CookieStyle</a>