akosut 96/04/12 18:26:55
Modified:src mod_mime.c
Log:
Correctly reset the handler when an unknown file extension is present,
and return DECLINED when no content type has been set.
Revision ChangesPath
1.9 +5 -2 apache/src/mod_mime.c
Index: mod_mim
akosut 96/04/10 23:05:53
Modified:conf access.conf-dist srm.conf-dist
src mod_mime.c
Log:
Add ForceType and SetHandler commands, which allow you to override the
content type or handler, respectively, in a section, an
.htaccess file or a section.
akosut 96/04/09 17:27:58
Modified:src mod_mime.c
Log:
Make it so that files with unknown extensions (e.g. foo.gif.bak)
don't return content types they shouldn't (e.g. image/gif).
Revision ChangesPath
1.7 +24 -4 apache/src/mod_mime.c
Index: mod_mime
akosut 96/04/08 06:05:00
Modified:src mod_mime.c
Log:
Modify find_ct() to correctly deal with multiple content encodings.
Revision ChangesPath
1.6 +7 -3 apache/src/mod_mime.c
Index: mod_mime.c
==
akosut 96/03/22 21:16:55
Modified:src mod_mime.c
Log:
Fixed the revised find_ct() in mod_mime so that it reads from left to
right, not right to left. This means that, for example, foo.txt.html
will be tagged as text/html, as it is done in previous versions of
Apache, not
akosut 96/03/20 20:20:53
Modified:src mod_mime.c
Log:
Rewrote the filename extenstion checking code so the order is irrelevant.
i.e. foo.html.en.gz and foo.en.gz.html will give the same headers. The old
code would ignore the en and gz in the latter example.
Another be