slive 01/07/18 13:21:57 Modified: htdocs/manual/mod mod_auth_digest.html mod_auth_db.html mod_auth.html mod_auth_dbm.html mod_access.html mod_rewrite.html mod_alias.html mod_mime_magic.html mod_mime.html.en mod_setenvif.html.en mod_env.html.en Log: No major changes. Just tweaking "syntax" entries to use standardized argument types. Revision Changes Path 1.8 +4 -4 httpd-docs-1.3/htdocs/manual/mod/mod_auth_digest.html Index: mod_auth_digest.html =================================================================== RCS file: /home/cvs/httpd-docs-1.3/htdocs/manual/mod/mod_auth_digest.html,v retrieving revision 1.7 retrieving revision 1.8 diff -u -d -b -u -r1.7 -r1.8 --- mod_auth_digest.html 2001/01/28 00:16:04 1.7 +++ mod_auth_digest.html 2001/07/18 20:21:56 1.8 @@ -102,7 +102,7 @@ <A HREF="directive-dict.html#Syntax" REL="Help" -><STRONG>Syntax:</STRONG></A> AuthDigestFile <EM>filename</EM><BR> +><STRONG>Syntax:</STRONG></A> AuthDigestFile <EM>file-path</EM><BR> <A HREF="directive-dict.html#Context" REL="Help" @@ -122,7 +122,7 @@ <P>The AuthDigestFile directive sets the name of a textual file containing the list of users and encoded passwords for digest authentication. -<EM>Filename</EM> is the absolute path to the user file. +<EM>File-path</EM> is the absolute path to the user file. <P>The digest file uses a special format. Files in this format can be created using the <a href="../programs/htdigest.html">htdigest</a> @@ -134,7 +134,7 @@ <A HREF="directive-dict.html#Syntax" REL="Help" -><STRONG>Syntax:</STRONG></A> AuthDigestGroupFile <EM>filename</EM><BR> +><STRONG>Syntax:</STRONG></A> AuthDigestGroupFile <EM>file-path</EM><BR> <A HREF="directive-dict.html#Context" REL="Help" @@ -158,7 +158,7 @@ <P>The AuthDigestGroupFile directive sets the name of a textual file containing the list of groups and their members (user names). -<EM>Filename</EM> is the absolute path to the group file. +<EM>File-path</EM> is the absolute path to the group file. <P>Each line of the group file contains a groupname followed by a colon, followed by the member usernames separated by spaces. Example: 1.23 +4 -4 httpd-docs-1.3/htdocs/manual/mod/mod_auth_db.html Index: mod_auth_db.html =================================================================== RCS file: /home/cvs/httpd-docs-1.3/htdocs/manual/mod/mod_auth_db.html,v retrieving revision 1.22 retrieving revision 1.23 diff -u -d -b -u -r1.22 -r1.23 --- mod_auth_db.html 2001/01/28 00:16:05 1.22 +++ mod_auth_db.html 2001/07/18 20:21:56 1.23 @@ -75,7 +75,7 @@ <A HREF="directive-dict.html#Syntax" REL="Help" -><STRONG>Syntax:</STRONG></A> AuthDBGroupFile <EM>filename</EM><BR> +><STRONG>Syntax:</STRONG></A> AuthDBGroupFile <EM>file-path</EM><BR> <A HREF="directive-dict.html#Context" REL="Help" @@ -94,7 +94,7 @@ ><STRONG>Module:</STRONG></A> mod_auth_db<P> The AuthDBGroupFile directive sets the name of a DB file containing the list -of user groups for user authentication. <EM>Filename</EM> is the absolute path +of user groups for user authentication. <EM>File-path</EM> is the absolute path to the group file.<P> The group file is keyed on the username. The value for a user is a @@ -138,7 +138,7 @@ <A HREF="directive-dict.html#Syntax" REL="Help" -><STRONG>Syntax:</STRONG></A> AuthDBUserFile <EM>filename</EM><BR> +><STRONG>Syntax:</STRONG></A> AuthDBUserFile <EM>file-path</EM><BR> <A HREF="directive-dict.html#Context" REL="Help" @@ -157,7 +157,7 @@ ><STRONG>Module:</STRONG></A> mod_auth_db<P> The AuthDBUserFile directive sets the name of a DB file containing the list -of users and passwords for user authentication. <EM>Filename</EM> is the +of users and passwords for user authentication. <EM>File-path</EM> is the absolute path to the user file.<P> The user file is keyed on the username. The value for a user is the 1.23 +4 -4 httpd-docs-1.3/htdocs/manual/mod/mod_auth.html Index: mod_auth.html =================================================================== RCS file: /home/cvs/httpd-docs-1.3/htdocs/manual/mod/mod_auth.html,v retrieving revision 1.22 retrieving revision 1.23 diff -u -d -b -u -r1.22 -r1.23 --- mod_auth.html 2001/07/17 02:06:26 1.22 +++ mod_auth.html 2001/07/18 20:21:56 1.23 @@ -63,7 +63,7 @@ <A HREF="directive-dict.html#Syntax" REL="Help" -><STRONG>Syntax:</STRONG></A> AuthGroupFile <EM>filename</EM><BR> +><STRONG>Syntax:</STRONG></A> AuthGroupFile <EM>file-path</EM><BR> <A HREF="directive-dict.html#Context" REL="Help" @@ -82,7 +82,7 @@ ><STRONG>Module:</STRONG></A> mod_auth<P> The AuthGroupFile directive sets the name of a textual file containing the list -of user groups for user authentication. <EM>Filename</EM> is the path +of user groups for user authentication. <EM>File-path</EM> is the path to the group file. If it is not absolute (<EM>i.e.</EM>, if it doesn't begin with a slash), it is treated as relative to the ServerRoot. <P> @@ -106,7 +106,7 @@ <A HREF="directive-dict.html#Syntax" REL="Help" -><STRONG>Syntax:</STRONG></A> AuthUserFile <EM>filename</EM><BR> +><STRONG>Syntax:</STRONG></A> AuthUserFile <EM>file-path</EM><BR> <A HREF="directive-dict.html#Context" REL="Help" @@ -126,7 +126,7 @@ The AuthUserFile directive sets the name of a textual file containing the list of users and passwords for user -authentication. <EM>Filename</EM> is the path to the user +authentication. <EM>File-path</EM> is the path to the user file. If it is not absolute (<EM>i.e.</EM>, if it doesn't begin with a slash), it is treated as relative to the ServerRoot. <P> Each line of the user file contains a username followed 1.24 +4 -4 httpd-docs-1.3/htdocs/manual/mod/mod_auth_dbm.html Index: mod_auth_dbm.html =================================================================== RCS file: /home/cvs/httpd-docs-1.3/htdocs/manual/mod/mod_auth_dbm.html,v retrieving revision 1.23 retrieving revision 1.24 diff -u -d -b -u -r1.23 -r1.24 --- mod_auth_dbm.html 2001/05/04 21:24:01 1.23 +++ mod_auth_dbm.html 2001/07/18 20:21:56 1.24 @@ -60,7 +60,7 @@ <A HREF="directive-dict.html#Syntax" REL="Help" -><STRONG>Syntax:</STRONG></A> AuthDBMGroupFile <EM>filename</EM><BR> +><STRONG>Syntax:</STRONG></A> AuthDBMGroupFile <EM>file-path</EM><BR> <A HREF="directive-dict.html#Context" REL="Help" @@ -79,7 +79,7 @@ ><STRONG>Module:</STRONG></A> mod_auth_dbm<P> The AuthDBMGroupFile directive sets the name of a DBM file containing the list -of user groups for user authentication. <EM>Filename</EM> is the absolute path +of user groups for user authentication. <EM>File-path</EM> is the absolute path to the group file.<P> The group file is keyed on the username. The value for a user is a @@ -124,7 +124,7 @@ <A HREF="directive-dict.html#Syntax" REL="Help" -><STRONG>Syntax:</STRONG></A> AuthDBMUserFile <EM>filename</EM><BR> +><STRONG>Syntax:</STRONG></A> AuthDBMUserFile <EM>file-path</EM><BR> <A HREF="directive-dict.html#Context" REL="Help" @@ -143,7 +143,7 @@ ><STRONG>Module:</STRONG></A> mod_auth_dbm<P> The AuthDBMUserFile directive sets the name of a DBM file containing the list -of users and passwords for user authentication. <EM>Filename</EM> is the +of users and passwords for user authentication. <EM>File-path</EM> is the absolute path to the user file.<P> The user file is keyed on the username. The value for a user is the 1.27 +6 -6 httpd-docs-1.3/htdocs/manual/mod/mod_access.html Index: mod_access.html =================================================================== RCS file: /home/cvs/httpd-docs-1.3/htdocs/manual/mod/mod_access.html,v retrieving revision 1.26 retrieving revision 1.27 diff -u -d -b -u -r1.26 -r1.27 --- mod_access.html 2000/12/16 21:36:08 1.26 +++ mod_access.html 2001/07/18 20:21:56 1.27 @@ -88,8 +88,8 @@ HREF="directive-dict.html#Syntax" REL="Help" ><STRONG>Syntax:</STRONG></A> Allow from - all|<EM>host</em>|env=<em>variablename</em> - [<em>host</em>|env=<em>variablename</em>] ...<BR> + all|<EM>host</em>|env=<em>env-variable</em> + [<em>host</em>|env=<em>env-variable</em>] ...<BR> <A HREF="directive-dict.html#Context" REL="Help" @@ -157,9 +157,9 @@ <p>The third format of the arguments to the <code>Allow</code> directive allows access to the server to be controlled based on the existence of an <a href="../env.html">environment variable</a>. When -<code>Allow from env=</code><em>variablename</em> is specified, then +<code>Allow from env=</code><em>env-variable</em> is specified, then the request is allowed access if the environment variable -<em>variablename</em> exists. The server provides the ability to set +<em>env-variable</em> exists. The server provides the ability to set environment variables in a flexible way based on characteristics of the client request using the directives provided by <a href="mod_setenvif.html">mod_setenvif</a>. Therefore, this directive @@ -195,8 +195,8 @@ HREF="directive-dict.html#Syntax" REL="Help" ><STRONG>Syntax:</STRONG></A> Deny from - all|<EM>host</em>|env=<em>variablename</em> - [<em>host</em>|env=<em>variablename</em>] ...<BR> + all|<EM>host</em>|env=<em>env-variable</em> + [<em>host</em>|env=<em>env-variable</em>] ...<BR> <A HREF="directive-dict.html#Context" REL="Help" 1.58 +3 -3 httpd-docs-1.3/htdocs/manual/mod/mod_rewrite.html Index: mod_rewrite.html =================================================================== RCS file: /home/cvs/httpd-docs-1.3/htdocs/manual/mod/mod_rewrite.html,v retrieving revision 1.57 retrieving revision 1.58 diff -u -d -b -u -r1.57 -r1.58 --- mod_rewrite.html 2001/05/06 22:03:27 1.57 +++ mod_rewrite.html 2001/07/18 20:21:56 1.58 @@ -433,7 +433,7 @@ <A HREF="directive-dict.html#Syntax" REL="Help" -><STRONG>Syntax:</STRONG></A> RewriteLog <EM>Filename</EM><BR> +><STRONG>Syntax:</STRONG></A> RewriteLog <EM>file-path</EM><BR> <A HREF="directive-dict.html#Default" REL="Help" @@ -570,7 +570,7 @@ <A HREF="directive-dict.html#Syntax" REL="Help" -><STRONG>Syntax:</STRONG></A> RewriteLock <EM>Filename</EM><BR> +><STRONG>Syntax:</STRONG></A> RewriteLock <EM>file-path</EM><BR> <A HREF="directive-dict.html#Default" REL="Help" @@ -855,7 +855,7 @@ <A HREF="directive-dict.html#Syntax" REL="Help" -><STRONG>Syntax:</STRONG></A> RewriteBase <EM>BaseURL</EM><BR> +><STRONG>Syntax:</STRONG></A> RewriteBase <EM>URL-path</EM><BR> <A HREF="directive-dict.html#Default" REL="Help" 1.31 +34 -31 httpd-docs-1.3/htdocs/manual/mod/mod_alias.html Index: mod_alias.html =================================================================== RCS file: /home/cvs/httpd-docs-1.3/htdocs/manual/mod/mod_alias.html,v retrieving revision 1.30 retrieving revision 1.31 diff -u -d -b -u -r1.30 -r1.31 --- mod_alias.html 2001/05/28 10:34:42 1.30 +++ mod_alias.html 2001/07/18 20:21:56 1.31 @@ -77,7 +77,7 @@ <A HREF="directive-dict.html#Syntax" REL="Help" -><STRONG>Syntax:</STRONG></A> Alias <EM>url-path directory-filename</EM><BR> +><STRONG>Syntax:</STRONG></A> Alias <EM>URL-path file-path</em>|<em>directory-path</EM><BR> <A HREF="directive-dict.html#Context" REL="Help" @@ -129,7 +129,7 @@ <A HREF="directive-dict.html#Syntax" REL="Help" -><STRONG>Syntax:</STRONG></A> AliasMatch <EM>regex directory-filename</EM><BR> +><STRONG>Syntax:</STRONG></A> AliasMatch <EM>regex file-path</em>|<em>directory-path</EM><BR> <A HREF="directive-dict.html#Context" REL="Help" @@ -150,10 +150,11 @@ <P>This directive is equivalent to <A HREF="#alias">Alias</A>, but makes use of standard regular expressions, instead of simple prefix -matching. The supplied regular expression is matched against the URL, -and if it matches, the server will substitute any parenthesized -matches into the given string and use it as a filename. For example, -to activate the <CODE>/icons</CODE> directory, one might use: +matching. The supplied regular expression is matched against the +URL-path, and if it matches, the server will substitute any +parenthesized matches into the given string and use it as a +filename. For example, to activate the <CODE>/icons</CODE> directory, +one might use: <PRE> AliasMatch ^/icons(.*) /usr/local/apache/icons$1 </PRE> @@ -167,7 +168,7 @@ HREF="directive-dict.html#Syntax" REL="Help" ><STRONG>Syntax:</STRONG></A> Redirect [<EM>status</EM>] - <EM>url-path url</EM><BR> + <EM>URL-path URL</EM><BR> <A HREF="directive-dict.html#Context" REL="Help" @@ -195,9 +196,9 @@ <P> The Redirect directive maps an old URL into a new one. The new URL is returned to the client which attempts to fetch it again with the new address. -<EM>Url-path</EM> a (%-decoded) path; any requests for documents beginning with -this path will be returned a redirect error to a new (%-encoded) url -beginning with <EM>url</EM>. +<EM>URL-path</EM> a (%-decoded) path; any requests for documents beginning with +this path will be returned a redirect error to a new (%-encoded) URL +beginning with <EM>URL</EM>. </P> <P> Example: @@ -212,7 +213,7 @@ <STRONG>Note:</STRONG> Redirect directives take precedence over Alias and ScriptAlias directives, irrespective of their ordering in the configuration file. Also, -<EM>Url-path</EM> must be an absolute path, not a relative path, even +<EM>URL-path</EM> must be an absolute path, not a relative path, even when used with .htaccess files or inside of <Directory> sections. </P> <P> @@ -251,7 +252,7 @@ HREF="directive-dict.html#Syntax" REL="Help" ><STRONG>Syntax:</STRONG></A> - RedirectMatch [<EM>status</EM>] <EM>regex url</EM> + RedirectMatch [<EM>status</EM>] <EM>regex URL</EM> <BR> <A HREF="directive-dict.html#Context" @@ -276,13 +277,13 @@ ><STRONG>Compatibility:</STRONG></A> Available in Apache 1.3 and later </P> -<P>This directive is equivalent to <A HREF="#redirect">Redirect</A>, but -makes use of standard regular expressions, instead of simple prefix -matching. The supplied regular expression is matched against the URL, -and if it matches, the server will substitute any parenthesized -matches into the given string and use it as a filename. For example, -to redirect all GIF files to like-named JPEG files on another server, -one might use: +<P>This directive is equivalent to <A HREF="#redirect">Redirect</A>, +but makes use of standard regular expressions, instead of simple +prefix matching. The supplied regular expression is matched against +the URL-path, and if it matches, the server will substitute any +parenthesized matches into the given string and use it as a +filename. For example, to redirect all GIF files to like-named JPEG +files on another server, one might use: <PRE> RedirectMatch (.*)\.gif$ http://www.anotherserver.com$1.jpg </PRE> @@ -295,7 +296,7 @@ <A HREF="directive-dict.html#Syntax" REL="Help" -><STRONG>Syntax:</STRONG></A> RedirectTemp <EM>url-path url</EM><BR> +><STRONG>Syntax:</STRONG></A> RedirectTemp <EM>URL-path URL</EM><BR> <A HREF="directive-dict.html#Context" REL="Help" @@ -331,7 +332,7 @@ <A HREF="directive-dict.html#Syntax" REL="Help" -><STRONG>Syntax:</STRONG></A> RedirectPermanent <EM>url-path url</EM><BR> +><STRONG>Syntax:</STRONG></A> RedirectPermanent <EM>URL-path URL</EM><BR> <A HREF="directive-dict.html#Context" REL="Help" @@ -366,7 +367,7 @@ <A HREF="directive-dict.html#Syntax" REL="Help" -><STRONG>Syntax:</STRONG></A> ScriptAlias <EM>url-path directory-filename</EM> +><STRONG>Syntax:</STRONG></A> ScriptAlias <EM>URL-path file-path</em>|<em>directory-path</em> <BR> <A HREF="directive-dict.html#Context" @@ -385,8 +386,9 @@ The ScriptAlias directive has the same behavior as the <A HREF="#alias">Alias</A> directive, except that in addition it marks the target directory as containing CGI scripts. -URLs with a (%-decoded) path beginning with <EM>url-path</EM> will be -mapped to scripts beginning with <EM>directory-filename</EM>. +URLs with a (%-decoded) path beginning with <EM>URL-path</EM> will be +mapped to scripts beginning with the second argument which is a full +pathname in the local filesystem. <P> Example: </P> @@ -404,7 +406,7 @@ HREF="directive-dict.html#Syntax" REL="Help" ><STRONG>Syntax:</STRONG></A> ScriptAliasMatch - <EM>regex directory-filename</EM><BR> + <EM>regex file-path</em>|<em>directory-path</EM><BR> <A HREF="directive-dict.html#Context" REL="Help" @@ -423,12 +425,13 @@ ><STRONG>Compatibility:</STRONG></A> Available in Apache 1.3 and later </P> -<P>This directive is equivalent to <A HREF="#scriptalias">ScriptAlias</A>, but -makes use of standard regular expressions, instead of simple prefix -matching. The supplied regular expression is matched against the URL, -and if it matches, the server will substitute any parenthesized -matches into the given string and use it as a filename. For example, -to activate the standard <CODE>/cgi-bin</CODE>, one might use: +<P>This directive is equivalent to <A +HREF="#scriptalias">ScriptAlias</A>, but makes use of standard regular +expressions, instead of simple prefix matching. The supplied regular +expression is matched against the URL-path, and if it matches, the +server will substitute any parenthesized matches into the given string +and use it as a filename. For example, to activate the standard +<CODE>/cgi-bin</CODE>, one might use: <PRE> ScriptAliasMatch ^/cgi-bin(.*) /usr/local/apache/cgi-bin$1 </PRE> 1.13 +1 -1 httpd-docs-1.3/htdocs/manual/mod/mod_mime_magic.html Index: mod_mime_magic.html =================================================================== RCS file: /home/cvs/httpd-docs-1.3/htdocs/manual/mod/mod_mime_magic.html,v retrieving revision 1.12 retrieving revision 1.13 diff -u -d -b -u -r1.12 -r1.13 --- mod_mime_magic.html 2000/11/22 03:36:17 1.12 +++ mod_mime_magic.html 2001/07/18 20:21:56 1.13 @@ -253,7 +253,7 @@ <A HREF="directive-dict.html#Syntax" REL="Help" - ><STRONG>Syntax:</STRONG></A> MimeMagicFile <EM>magic-file-name</EM> + ><STRONG>Syntax:</STRONG></A> MimeMagicFile <EM>file-path</EM> <BR> <A HREF="directive-dict.html#Default" 1.46 +1 -1 httpd-docs-1.3/htdocs/manual/mod/mod_mime.html.en Index: mod_mime.html.en =================================================================== RCS file: /home/cvs/httpd-docs-1.3/htdocs/manual/mod/mod_mime.html.en,v retrieving revision 1.45 retrieving revision 1.46 diff -u -d -b -u -r1.45 -r1.46 --- mod_mime.html.en 2000/12/08 20:53:32 1.45 +++ mod_mime.html.en 2001/07/18 20:21:56 1.46 @@ -724,7 +724,7 @@ <A HREF="directive-dict.html#Syntax" REL="Help" -><STRONG>Syntax:</STRONG></A> TypesConfig <EM>filename</EM><BR> +><STRONG>Syntax:</STRONG></A> TypesConfig <EM>file-path</EM><BR> <A HREF="directive-dict.html#Default" REL="Help" 1.16 +4 -4 httpd-docs-1.3/htdocs/manual/mod/mod_setenvif.html.en Index: mod_setenvif.html.en =================================================================== RCS file: /home/cvs/httpd-docs-1.3/htdocs/manual/mod/mod_setenvif.html.en,v retrieving revision 1.15 retrieving revision 1.16 diff -u -d -b -u -r1.15 -r1.16 --- mod_setenvif.html.en 2001/04/23 12:42:25 1.15 +++ mod_setenvif.html.en 2001/07/18 20:21:56 1.16 @@ -80,7 +80,7 @@ HREF="directive-dict.html#Syntax" REL="Help" ><STRONG>Syntax:</STRONG></A> BrowserMatch <EM>regex - envar</em>[=<em>value</em>] [<em>envar</em>[=<em>value</em>]] ... + env-variable</em>[=<em>value</em>] [<em>env-variable</em>[=<em>value</em>]] ... <BR> <A HREF="directive-dict.html#Default" @@ -183,7 +183,7 @@ HREF="directive-dict.html#Syntax" REL="Help" ><STRONG>Syntax:</STRONG></A> BrowserMatchNoCase <EM>regex - envar</em>[=<em>value</em>] [<em>envar</em>[=<em>value</em>]] ... + env-variable</em>[=<em>value</em>] [<em>env-variable</em>[=<em>value</em>]] ... <BR> <A HREF="directive-dict.html#Default" @@ -257,7 +257,7 @@ HREF="directive-dict.html#Syntax" REL="Help" ><STRONG>Syntax:</STRONG></A> SetEnvIf <EM> attribute regex - envar</em>[=<em>value</em>] [<em>envar</em>[=<em>value</em>]] ... + env-variable</em>[=<em>value</em>] [<em>env-variable</em>[=<em>value</em>]] ... <BR> <A HREF="directive-dict.html#Default" @@ -369,7 +369,7 @@ HREF="directive-dict.html#Syntax" REL="Help" ><STRONG>Syntax:</STRONG></A> SetEnvIfNoCase <EM> attribute regex - envar</em>[=<em>value</em>] [<em>envar</em>[=<em>value</em>]] ... + env-variable</em>[=<em>value</em>] [<em>env-variable</em>[=<em>value</em>]] ... <BR> <A HREF="directive-dict.html#Default" 1.18 +5 -5 httpd-docs-1.3/htdocs/manual/mod/mod_env.html.en Index: mod_env.html.en =================================================================== RCS file: /home/cvs/httpd-docs-1.3/htdocs/manual/mod/mod_env.html.en,v retrieving revision 1.17 retrieving revision 1.18 diff -u -d -b -u -r1.17 -r1.18 --- mod_env.html.en 2001/01/09 03:21:42 1.17 +++ mod_env.html.en 2001/07/18 20:21:56 1.18 @@ -63,8 +63,8 @@ <A HREF="directive-dict.html#Syntax" REL="Help" -><STRONG>Syntax:</STRONG></A> PassEnv <EM>variable</em> - [<em>variable</em>] ...<BR> +><STRONG>Syntax:</STRONG></A> PassEnv <EM>env-variable</em> + [<em>env-variable</em>] ...<BR> <A HREF="directive-dict.html#Context" REL="Help" @@ -96,7 +96,7 @@ <A HREF="directive-dict.html#Syntax" REL="Help" -><STRONG>Syntax:</STRONG></A> SetEnv <EM>variable value</EM><BR> +><STRONG>Syntax:</STRONG></A> SetEnv <EM>env-variable value</EM><BR> <A HREF="directive-dict.html#Context" REL="Help" @@ -127,8 +127,8 @@ <A HREF="directive-dict.html#Syntax" REL="Help" -><STRONG>Syntax:</STRONG></A> UnsetEnv <EM>variable</em> - [<em>variable</em>] ...<BR> +><STRONG>Syntax:</STRONG></A> UnsetEnv <EM>env-variable</em> + [<em>env-variable</em>] ...<BR> <A HREF="directive-dict.html#Context" REL="Help"
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]