From: Ken Coar
-If you want to continue to use a MIME-type in your hyperlinks (e.g.
+If you want to continue to use a MIME-type in your hyperlinks (e.g.
foo.html) the language extension (including an encoding extension
if there is one) must be on the right hand side of the MIME-type extension
(e.g., foo.html.en).
diff --git a/docs/manual/content-negotiation.html.en b/docs/manual/content-negotiation.html.en
index b4f035e880..73e534e6f9 100644
--- a/docs/manual/content-negotiation.html.en
+++ b/docs/manual/content-negotiation.html.en
@@ -85,7 +85,7 @@ information about each of the variants. This is done in one of two
ways:
-If you want to continue to use a MIME-type in your hyperlinks (e.g.
+If you want to continue to use a MIME-type in your hyperlinks (e.g.
foo.html) the language extension (including an encoding extension
if there is one) must be on the right hand side of the MIME-type extension
(e.g., foo.html.en).
diff --git a/docs/manual/custom-error.html b/docs/manual/custom-error.html
index c76f224e26..09604ea972 100644
--- a/docs/manual/custom-error.html
+++ b/docs/manual/custom-error.html
@@ -54,7 +54,7 @@
more clearly.
To achieve this, Apache will define new CGI-like environment
- variables, e.g.
+ variables, e.g.
To achieve this, Apache will define new CGI-like environment
- variables, e.g.
+ variables, e.g.
A final note on the declared types of the arguments of some of these
commands: a
One of the problems of writing and designing a server-pool server is
that of preventing leakage, that is, allocating resources (memory,
-open files, etc.), without subsequently releasing them. The resource
+open files, etc.), without subsequently releasing them. The resource
pool machinery is designed to make it easy to prevent this from
happening, by allowing resource to be allocated in such a way that
they are automatically released when the server is done with
@@ -511,7 +511,7 @@ them.
The way this works is as follows: the memory which is allocated, file
-opened, etc., to deal with a particular request are tied to a
+opened, etc., to deal with a particular request are tied to a
resource pool which is allocated for the request. The pool
is a data structure which itself tracks the resources in question.
-
*.var
file) which
+ *.var
file) which
names the files containing the variants explicitly
text/html; level=3
.
Content-language:
en
for English,
- kr
for Korean, etc.).
+ language code (e.g., en
for English,
+ kr
for Korean, etc.).
Content-encoding:
-
*.var
file) which
+ *.var
file) which
names the files containing the variants explicitly
text/html; level=3
.
Content-language:
en
for English,
- kr
for Korean, etc.).
+ language code (e.g., en
for English,
+ kr
for Korean, etc.).
Content-encoding:
REDIRECT_HTTP_ACCEPT=*/*, image/gif, image/x-xbitmap, image/jpeg
@@ -145,7 +145,7 @@ script which has been redirected to. Each new variable will have the
prefix REDIRECT_
. REDIRECT_
environment
variables are created from the CGI environment variables which existed
prior to the redirect, they are renamed with a REDIRECT_
-prefix, i.e. HTTP_USER_AGENT
becomes
+prefix, i.e., HTTP_USER_AGENT
becomes
REDIRECT_HTTP_USER_AGENT
. In addition to these new
variables, Apache will define REDIRECT_URL
and
REDIRECT_STATUS
to help the script trace its origin.
diff --git a/docs/manual/custom-error.html.en b/docs/manual/custom-error.html.en
index c76f224e26..09604ea972 100644
--- a/docs/manual/custom-error.html.en
+++ b/docs/manual/custom-error.html.en
@@ -54,7 +54,7 @@
more clearly.
REDIRECT_HTTP_ACCEPT=*/*, image/gif, image/x-xbitmap, image/jpeg
@@ -145,7 +145,7 @@ script which has been redirected to. Each new variable will have the
prefix REDIRECT_
. REDIRECT_
environment
variables are created from the CGI environment variables which existed
prior to the redirect, they are renamed with a REDIRECT_
-prefix, i.e. HTTP_USER_AGENT
becomes
+prefix, i.e., HTTP_USER_AGENT
becomes
REDIRECT_HTTP_USER_AGENT
. In addition to these new
variables, Apache will define REDIRECT_URL
and
REDIRECT_STATUS
to help the script trace its origin.
diff --git a/docs/manual/developer/API.html b/docs/manual/developer/API.html
index 1b59833024..9595472d8f 100644
--- a/docs/manual/developer/API.html
+++ b/docs/manual/developer/API.html
@@ -14,7 +14,7 @@
Apache API notes
These are some notes on the Apache API and the data structures you
-have to deal with, etc. They are not yet nearly complete, but
+have to deal with, etc. They are not yet nearly complete, but
hopefully, they will help you get your bearings. Keep in mind that
the API is still subject to change as we gain experience with it.
(See the TODO file for what might be coming). However,
@@ -109,7 +109,7 @@ checking, all handlers always run (barring an error). Also, the
response phase is unique in that modules may declare multiple handlers
for it, via a dispatch table keyed on the MIME type of the requested
object. Modules may declare a response-phase handler which can handle
-any request, by giving it the key */*
(i.e., a
+any request, by giving it the key */*
(i.e., a
wildcard MIME type specification). However, wildcard handlers are
only invoked if the server has already tried and failed to find a more
specific response handler for the MIME type of the requested object
@@ -151,7 +151,7 @@ where they are permitted, and how they are to be invoked. pool
is a pointer to a resource pool
structure; these are used by the server to keep track of the memory
-which has been allocated, files opened, etc., either to service a
+which has been allocated, files opened, etc., either to service a
particular request, or to handle the process of configuring itself.
That way, when the request is over (or, for the configuration pool,
when the server is restarting), the memory can be freed, and the files
@@ -306,8 +306,8 @@ struct request_rec {
int header_only; /* HEAD request, as opposed to GET */
char *protocol; /* Protocol, as given to us, or HTTP/0.9 */
- char *method; /* GET, HEAD, POST, etc. */
- int method_number; /* M_GET, M_POST, etc. */
+ char *method; /* GET, HEAD, POST, etc. */
+ int method_number; /* M_GET, M_POST, etc. */
/* Info for logging */
@@ -325,7 +325,7 @@ struct request_rec {
* (the thing pointed to being the module's business).
*/
- void *per_dir_config; /* Options set in config files, etc. */
+ void *per_dir_config; /* Options set in config files, etc. */
void *request_config; /* Notes on *this* request */
};
@@ -339,7 +339,7 @@ request from a client, and filling in the fields. However, there are
a few exceptions:
-
*.var
file), or a CGI script which returned a
local `Location:', then the resource which the user requested
is going to be ultimately located by some URI other than what
@@ -503,7 +503,7 @@ response was actually sent).
spawn_process
.
Pool cleanups live until clear_pool() is called: clear_pool(a) recursively
calls destroy_pool() on all subpools of a; then calls all the cleanups for a;
then releases all the memory for a. destroy_pool(a) calls clear_pool(a)
-and then releases the pool structure itself. i.e. clear_pool(a) doesn't
+and then releases the pool structure itself. i.e., clear_pool(a) doesn't
delete a, it just frees up all the resources and you can start using it
again immediately.
XBITHACK
), and for
those modules, you can just not declare one, and leave the
@@ -1025,7 +1025,7 @@ command_rec mime_cmds[] = {
{ "AddType", add_type, NULL, OR_FILEINFO, TAKE2,
"a mime type followed by a file extension" },
{ "AddEncoding", add_encoding, NULL, OR_FILEINFO, TAKE2,
- "an encoding (e.g., gzip), followed by a file extension" },
+ "an encoding (e.g., gzip), followed by a file extension" },
{ NULL }
};
diff --git a/docs/manual/dso.html b/docs/manual/dso.html
index e06cd2c64e..a798fc7a76 100644
--- a/docs/manual/dso.html
+++ b/docs/manual/dso.html
@@ -77,7 +77,7 @@ been statically linked with it in the first place.
Finally, to take advantage of the DSO's API the executable program has to
resolve particular symbols from the DSO via dlsym()
for later use
-inside dispatch tables etc. In other words: The executable program has to
+inside dispatch tables etc. In other words: The executable program has to
manually resolve every symbol it needs to be able to use it. The advantage of
such a mechanism is that optional program parts need not be loaded (and thus
do not spend memory) until they are needed by the program in question. When
@@ -104,7 +104,7 @@ extending a program is not used by a lot of programs.
As of 1998 there are only a few software packages available which use the
DSO mechanism to actually extend their functionality at run-time: Perl 5 (via
-its XS mechanism and the DynaLoader module), Netscape Server, etc. Starting
+its XS mechanism and the DynaLoader module), Netscape Server, etc. Starting
with version 1.3, Apache joined the crew, because Apache already uses a module
concept to extend its functionality and internally uses a dispatch-list-based
approach to link external modules into the Apache core functionality. So,
@@ -327,12 +327,12 @@ $ apxs -i -a -n foo mod_foo.so
Configuration
AddModule
commands at build-time.
For instance this way one is able to run different server instances
(standard & SSL version, minimalistic & powered up version
- [mod_perl, PHP3], etc.) with only one Apache installation.
+ [mod_perl, PHP3], etc.) with only one Apache installation.
apxs
pair you can both work outside the Apache source tree and only need an
diff --git a/docs/manual/dso.html.en b/docs/manual/dso.html.en
index e06cd2c64e..a798fc7a76 100644
--- a/docs/manual/dso.html.en
+++ b/docs/manual/dso.html.en
@@ -77,7 +77,7 @@ been statically linked with it in the first place.
Finally, to take advantage of the DSO's API the executable program has to
resolve particular symbols from the DSO via dlsym()
for later use
-inside dispatch tables etc. In other words: The executable program has to
+inside dispatch tables etc. In other words: The executable program has to
manually resolve every symbol it needs to be able to use it. The advantage of
such a mechanism is that optional program parts need not be loaded (and thus
do not spend memory) until they are needed by the program in question. When
@@ -104,7 +104,7 @@ extending a program is not used by a lot of programs.
As of 1998 there are only a few software packages available which use the
DSO mechanism to actually extend their functionality at run-time: Perl 5 (via
-its XS mechanism and the DynaLoader module), Netscape Server, etc. Starting
+its XS mechanism and the DynaLoader module), Netscape Server, etc. Starting
with version 1.3, Apache joined the crew, because Apache already uses a module
concept to extend its functionality and internally uses a dispatch-list-based
approach to link external modules into the Apache core functionality. So,
@@ -327,12 +327,12 @@ $ apxs -i -a -n foo mod_foo.so
Configuration
AddModule
commands at build-time.
For instance this way one is able to run different server instances
(standard & SSL version, minimalistic & powered up version
- [mod_perl, PHP3], etc.) with only one Apache installation.
+ [mod_perl, PHP3], etc.) with only one Apache installation.
apxs
pair you can both work outside the Apache source tree and only need an
diff --git a/docs/manual/ebcdic.html b/docs/manual/ebcdic.html
index 17cdcd8c05..6a72436620 100644
--- a/docs/manual/ebcdic.html
+++ b/docs/manual/ebcdic.html
@@ -99,7 +99,7 @@
includes character translations, differences in
contiguity of the two character sets, flags which
indicate which part of the HTTP protocol has to be
- converted and which part doesn't etc.
+ converted and which part doesn't etc.
#ifdef _OSD_POSIX
The default assumption of the server is that Text Files - (i.e., all files whose Content-Type: starts with + (i.e., all files whose Content-Type: starts with text/) are stored in the native character set of the host, EBCDIC.
diff --git a/docs/manual/install.html b/docs/manual/install.html index d15c410b7a..97c30285d6 100644 --- a/docs/manual/install.html +++ b/docs/manual/install.html @@ -148,10 +148,10 @@ file usually does not need editing.
First edit httpd.conf
. This sets up general attributes
-about the server: the port number, the user it runs as, etc. Next
+about the server: the port number, the user it runs as, etc. Next
edit the srm.conf
file; this sets up the root of the
document tree, special functions like server-parsed HTML or internal
-imagemap parsing, etc. Finally, edit the access.conf
+imagemap parsing, etc. Finally, edit the access.conf
file to at least set the base cases of access.
diff --git a/docs/manual/install.html.en b/docs/manual/install.html.en index d15c410b7a..97c30285d6 100644 --- a/docs/manual/install.html.en +++ b/docs/manual/install.html.en @@ -148,10 +148,10 @@ file usually does not need editing.
First edit httpd.conf
. This sets up general attributes
-about the server: the port number, the user it runs as, etc. Next
+about the server: the port number, the user it runs as, etc. Next
edit the srm.conf
file; this sets up the root of the
document tree, special functions like server-parsed HTML or internal
-imagemap parsing, etc. Finally, edit the access.conf
+imagemap parsing, etc. Finally, edit the access.conf
file to at least set the base cases of access.
diff --git a/docs/manual/invoking.html b/docs/manual/invoking.html index 3888fc3b57..957d4d1c8f 100644 --- a/docs/manual/invoking.html +++ b/docs/manual/invoking.html @@ -81,7 +81,7 @@ places where the directive is valid. (New in Apache 1.2) shows a breakdown of the vhost settings).
-t
--t
-*/*
(i.e., a
+any request, by giving it the key */*
(i.e., a
wildcard MIME type specification). However, wildcard handlers are
only invoked if the server has already tried and failed to find a more
specific response handler for the MIME type of the requested object
@@ -151,7 +151,7 @@ where they are permitted, and how they are to be invoked.
A final note on the declared types of the arguments of some of these
commands: a pool
is a pointer to a resource pool
structure; these are used by the server to keep track of the memory
-which has been allocated, files opened, etc., either to service a
+which has been allocated, files opened, etc., either to service a
particular request, or to handle the process of configuring itself.
That way, when the request is over (or, for the configuration pool,
when the server is restarting), the memory can be freed, and the files
@@ -306,8 +306,8 @@ struct request_rec {
int header_only; /* HEAD request, as opposed to GET */
char *protocol; /* Protocol, as given to us, or HTTP/0.9 */
- char *method; /* GET, HEAD, POST, etc. */
- int method_number; /* M_GET, M_POST, etc. */
+ char *method; /* GET, HEAD, POST, etc. */
+ int method_number; /* M_GET, M_POST, etc. */
/* Info for logging */
@@ -325,7 +325,7 @@ struct request_rec {
* (the thing pointed to being the module's business).
*/
- void *per_dir_config; /* Options set in config files, etc. */
+ void *per_dir_config; /* Options set in config files, etc. */
void *request_config; /* Notes on *this* request */
};
@@ -339,7 +339,7 @@ request from a client, and filling in the fields. However, there are
a few exceptions:
*.var
file), or a CGI script which returned a
local `Location:', then the resource which the user requested
is going to be ultimately located by some URI other than what
@@ -503,7 +503,7 @@ response was actually sent).
One of the problems of writing and designing a server-pool server is that of preventing leakage, that is, allocating resources (memory, -open files, etc.), without subsequently releasing them. The resource +open files, etc.), without subsequently releasing them. The resource pool machinery is designed to make it easy to prevent this from happening, by allowing resource to be allocated in such a way that they are automatically released when the server is done with @@ -511,7 +511,7 @@ them.
The way this works is as follows: the memory which is allocated, file -opened, etc., to deal with a particular request are tied to a +opened, etc., to deal with a particular request are tied to a resource pool which is allocated for the request. The pool is a data structure which itself tracks the resources in question.
@@ -785,7 +785,7 @@ which the file stuff is implemented; also,spawn_process
.
Pool cleanups live until clear_pool() is called: clear_pool(a) recursively
calls destroy_pool() on all subpools of a; then calls all the cleanups for a;
then releases all the memory for a. destroy_pool(a) calls clear_pool(a)
-and then releases the pool structure itself. i.e. clear_pool(a) doesn't
+and then releases the pool structure itself. i.e., clear_pool(a) doesn't
delete a, it just frees up all the resources and you can start using it
again immediately.
@@ -968,7 +968,7 @@ void *merge_mime_dir_configs (pool *p, void *parent_dirv, void *subdirv)
As a note --- if there is no per-directory merge function present, the
server will just use the subdirectory's configuration info, and ignore
-the parent's. For some modules, that works just fine (e.g., for the
+the parent's. For some modules, that works just fine (e.g., for the
includes module, whose per-directory configuration information
consists solely of the state of the XBITHACK
), and for
those modules, you can just not declare one, and leave the
@@ -1025,7 +1025,7 @@ command_rec mime_cmds[] = {
{ "AddType", add_type, NULL, OR_FILEINFO, TAKE2,
"a mime type followed by a file extension" },
{ "AddEncoding", add_encoding, NULL, OR_FILEINFO, TAKE2,
- "an encoding (e.g., gzip), followed by a file extension" },
+ "an encoding (e.g., gzip), followed by a file extension" },
{ NULL }
};
diff --git a/docs/manual/misc/FAQ.html b/docs/manual/misc/FAQ.html
index f5e9113bb7..485759e7ed 100644
--- a/docs/manual/misc/FAQ.html
+++ b/docs/manual/misc/FAQ.html
@@ -14,7 +14,7 @@
- $Revision: 1.128 $ ($Date: 1998/09/17 12:33:01 $) + $Revision: 1.129 $ ($Date: 1998/09/17 14:14:52 $)
The latest version of this FAQ is always available from the main @@ -1950,7 +1950,7 @@
If the rule starts with /somedir/... make sure that really no /somedir exists on the filesystem if you don't want to lead the - URL to match this directory, i.e. there must be no root directory named + URL to match this directory, i.e., there must be no root directory named somedir on the filesystem. Because if there is such a directory, the URL will not get prefixed with DocumentRoot. This behaviour looks ugly, but is really important for some other aspects of URL @@ -2001,7 +2001,7 @@ There is only one ugly solution: You have to surround the complete flag argument by quotation marks ("[E=...]"). Notice: The argument to quote here is not the argument to the E-flag, it is the argument of the - Apache config file parser, i.e. the third argument of the RewriteRule here. + Apache config file parser, i.e., the third argument of the RewriteRule here. So you have to write "[E=any text with whitespaces]".
So, in this situation it appears to be easier to define a fallback language -(by copying or linking, e.g., the english version to a language-less version). +(by copying or linking, e.g., the english version to a language-less version). Because the negotiation algorithm prefers "more specialized" variants over "more generic" variants, these generic alternatives will only be chosen when the normal negotiation did not succeed. diff --git a/docs/manual/misc/fin_wait_2.html b/docs/manual/misc/fin_wait_2.html index f264bf24a0..e1e313d75c 100644 --- a/docs/manual/misc/fin_wait_2.html +++ b/docs/manual/misc/fin_wait_2.html @@ -95,7 +95,7 @@ client should do is periodically check its open socket(s) to see if they have been closed by the server, and close their side of the connection if the server has closed. This check need only occur once every few seconds, and may even be detected by a OS signal -on some systems (e.g., Win95 and NT clients have this capability, but +on some systems (e.g., Win95 and NT clients have this capability, but they seem to be ignoring it).
Apache cannot avoid these FIN_WAIT_2 states unless it
@@ -122,7 +122,7 @@ The most likely source for additional FIN_WAIT_2 states
is a function called lingering_close()
which was added
between 1.1 and 1.2. This function is necessary for the proper
handling of persistent connections and any request which includes
-content in the message body (e.g., PUTs and POSTs).
+content in the message body (e.g., PUTs and POSTs).
What it does is read any data sent by the client for
a certain time after the server closes the connection. The exact
reasons for doing this are somewhat complicated, but involve what
diff --git a/docs/manual/misc/howto.html b/docs/manual/misc/howto.html
index e2995c2473..3137e871f5 100644
--- a/docs/manual/misc/howto.html
+++ b/docs/manual/misc/howto.html
@@ -66,7 +66,7 @@ of the other server.
By using a cgi-script you can intercept various requests and -treat them specially, e.g. you might want to intercept POST +treat them specially, e.g., you might want to intercept POST requests, so that the client isn't redirected to a script on the other server which expects POST information (a redirect will lose the POST information.) You might also want to use a CGI script if you don't @@ -108,7 +108,7 @@ characters.
The correct procedure is to move the logfile, then signal Apache to tell it to reopen the logfiles.
-Apache is signaled using the SIGHUP (-1) signal. e.g. +
Apache is signaled using the SIGHUP (-1) signal. e.g.
mv access_log access_log.old
, if it exists. Context: server config, virtual host, directory, .htaccess
kill -1 `cat httpd.pid` diff --git a/docs/manual/misc/security_tips.html b/docs/manual/misc/security_tips.html index 823ea63cc4..0a9f185c45 100644 --- a/docs/manual/misc/security_tips.html +++ b/docs/manual/misc/security_tips.html @@ -110,7 +110,7 @@ or your ability to spot potential security holes in CGI, whether they were deliberate or accidental.All the CGI scripts will run as the same user, so they have potential to -conflict (accidentally or deliberately) with other scripts e.g. +conflict (accidentally or deliberately) with other scripts e.g. User A hates User B, so he writes a script to trash User B's CGI database. One program which can be used to allow scripts to run as different users is suEXEC which is diff --git a/docs/manual/mod/core.html b/docs/manual/mod/core.html index 53e8787860..ae2ce0ddd0 100644 --- a/docs/manual/mod/core.html +++ b/docs/manual/mod/core.html @@ -222,7 +222,7 @@ Allow use of the authorization directives AuthGroupFile, AuthName, AuthType, AuthUserFile, -require, etc.). +require, etc.).
- FileInfo
- @@ -232,7 +232,7 @@ Allow use of the directives controlling document types AddType, DefaultType, ErrorDocument, -LanguagePriority, etc.). +LanguagePriority, etc.).
- Indexes
- @@ -247,7 +247,7 @@ Allow use of the directives controlling directory indexing HeaderName, IndexIgnore, IndexOptions, -ReadmeName, etc.). +ReadmeName, etc.).
- Limit
- @@ -1858,7 +1858,7 @@ decreasing significance:
When a particular level is specified, messages from all other levels -of higher significance will be reported as well. E.g., when +of higher significance will be reported as well. E.g., when
LogLevel info
is specified, then messages with log levels ofnotice
andwarn
will also be posted.@@ -2054,7 +2054,7 @@ The NameVirtualHost directive is a required directive if you want to configure name-based virtual hosts.
Although addr can be hostname it is recommended that you always use -an IP address, e.g. +an IP address, e.g.
@@ -2068,7 +2068,7 @@ reason you specify NameVirtualHost but then don't define any VirtualHosts for that address).NameVirtualHost 111.22.33.44
Optionally you can specify a port number on which the name-based -virtual hosts should be used, e.g. +virtual hosts should be used, e.g.
@@ -2284,7 +2284,7 @@ address of the server. (See also UseCanonicalName.)NameVirtualHost 111.22.33.44:8080
Port 80 is one of Unix's special ports. All ports numbered -below 1024 are reserved for system use, i.e. regular (non-root) users cannot +below 1024 are reserved for system use, i.e., regular (non-root) users cannot make use of them; instead they can only use higher port numbers. To use port 80, you must start the server from the root account. After binding to the port and before accepting requests, Apache will change @@ -2630,7 +2630,7 @@ fast pipes) The ServerAdmin sets the e-mail address that the server includes in any error messages it returns to the client.
-It may be worth setting up a dedicated address for this, e.g. +It may be worth setting up a dedicated address for this, e.g.
as users do not always mention that they are talking about the server!ServerAdmin www-admin@foo.bar.com
@@ -2825,15 +2825,15 @@ OS-type of the server as well as information about compiled-in modules.diff --git a/docs/manual/mod/mod_actions.html b/docs/manual/mod/mod_actions.html index 60e11a88ba..3819b13068 100644 --- a/docs/manual/mod/mod_actions.html +++ b/docs/manual/mod/mod_actions.html @@ -116,7 +116,7 @@ will proceed normally. Examples:
- -
ServerTokens Min[imal]
- Server sends (e.g.): Server: Apache/1.3.0 +
- Server sends (e.g.): Server: Apache/1.3.0
- -
ServerTokens OS
- Server sends (e.g.): Server: Apache/1.3.0 (Unix) +
- Server sends (e.g.): Server: Apache/1.3.0 (Unix)
- -
ServerTokens Full
(or not specified)- Server sends (e.g.): Server: Apache/1.3.0 (Unix) PHP/3.0 +
- Server sends (e.g.): Server: Apache/1.3.0 (Unix) PHP/3.0 MyMod/1.2
- Script GET /cgi-bin/search #e.g. for <ISINDEX>-style searching + Script GET /cgi-bin/search #e.g. for <ISINDEX>-style searching Script PUT /~bob/put.cgidiff --git a/docs/manual/mod/mod_asis.html b/docs/manual/mod/mod_asis.html index aceb9f2ee7..3ca8e7e906 100644 --- a/docs/manual/mod/mod_asis.html +++ b/docs/manual/mod/mod_asis.html @@ -31,7 +31,7 @@ and other special HTTP responses, without requiring a cgi-script or an nph script.Usage
In the server configuration file, define a new mime type called -httpd/send-as-is
e.g. +httpd/send-as-is
e.g.this defines theAddType httpd/send-as-is asis
.asis
file extension as being of the newhttpd/send-as-is
mime type. The contents of any file with a diff --git a/docs/manual/mod/mod_auth_anon.html b/docs/manual/mod/mod_auth_anon.html index 479c265737..b140a8baa2 100644 --- a/docs/manual/mod/mod_auth_anon.html +++ b/docs/manual/mod/mod_auth_anon.html @@ -20,7 +20,7 @@ later. It allows "anonymous" user access to authenticated areas.Summary
-It does access control in a manner similar to anonymous-ftp sites; i.e. +It does access control in a manner similar to anonymous-ftp sites; i.e. have a 'magic' user id 'anonymous' and the email address as a password. These email addresses can be logged.diff --git a/docs/manual/mod/mod_autoindex.html b/docs/manual/mod/mod_autoindex.html index 9d7b62a01f..3a71cc4d88 100644 --- a/docs/manual/mod/mod_autoindex.html +++ b/docs/manual/mod/mod_autoindex.html @@ -87,7 +87,8 @@ order) even though they both are shown as "1K". Context: server config, virtual host, directory, .htaccess
+>Context: server config, virtual host, directory, + .htaccess
Context: server config, virtual host, directory, .htaccess
+>Context: server config, virtual host, directory, + .htaccess
Syntax: AddAltByType string MIME-type MIME-type...
+>Syntax: AddAltByType string MIME-type MIME-type + ...
Context: server config, virtual host, directory, .htaccess
+>Context: server config, virtual host, directory, + .htaccess
Context: server config, virtual host, directory, .htaccess
+>Context: server config, virtual host, directory, + .htaccess
String is enclosed in double quotes Context: server config, virtual host, directory, .htaccess
+>Context: server config, virtual host, directory, + .htaccess
Syntax: AddIconByEncoding icon MIME-encoding MIME-encoding -...
+>Syntax: AddIconByEncoding icon MIME-encoding + MIME-encoding ...
Context: server config, virtual host, directory, .htaccess
+>Context: server config, virtual host, directory, + .htaccess
Syntax: AddIconByType icon MIME-type MIME-type ...
+>Syntax: AddIconByType icon MIME-type MIME-type + ...
Context: server config, virtual host, directory, .htaccess
+>Context: server config, virtual host, directory, + .htaccess
Context: server config, virtual host, directory, .htaccess
+>Context: server config, virtual host, directory, + .htaccess
Context: server config, virtual host, directory, .htaccess
+>Context: server config, virtual host, directory, + .htaccess
Context: server config, virtual host, directory, .htaccess
+>Context: server config, virtual host, directory, + .htaccess
/web/HEADER
+>Context: server config, virtual host, directory, + .htaccess
Context: server config, virtual host, directory, .htaccess
+>Context: server config, virtual host, directory, + .htaccess
Context: server config, virtual host, directory, .htaccess
+>Context: server config, virtual host, directory, + .htaccess
/web/README, if it exists.