coar 99/05/05 13:18:08
Modified: conf httpd.conf-dist httpd.conf-dist-win
src CHANGES
Log:
Add tgz to the list of known encoded types.
PR: 2364
Submitted by: Bertran de Singly <[EMAIL PROTECTED]>
Reviewed by: Ken Coar
Revision Changes Path
1.42 +3 -1 apache-1.3/conf/httpd.conf-dist
Index: httpd.conf-dist
===================================================================
RCS file: /home/cvs/apache-1.3/conf/httpd.conf-dist,v
retrieving revision 1.41
retrieving revision 1.42
diff -u -r1.41 -r1.42
--- httpd.conf-dist 1999/04/20 21:40:59 1.41
+++ httpd.conf-dist 1999/05/05 20:17:59 1.42
@@ -622,7 +622,7 @@
# to do with the FancyIndexing customization directives above.
#
AddEncoding x-compress Z
-AddEncoding x-gzip gz
+AddEncoding x-gzip gz tgz
#
# AddLanguage allows you to specify the language of a document. You can
@@ -655,6 +655,8 @@
#
#AddType application/x-httpd-php3 .php3
#AddType application/x-httpd-php3-source .phps
+
+AddType application/x-tar .tgz
#
# AddHandler allows you to map certain file extensions to "handlers",
1.23 +3 -1 apache-1.3/conf/httpd.conf-dist-win
Index: httpd.conf-dist-win
===================================================================
RCS file: /home/cvs/apache-1.3/conf/httpd.conf-dist-win,v
retrieving revision 1.22
retrieving revision 1.23
diff -u -r1.22 -r1.23
--- httpd.conf-dist-win 1999/03/10 13:02:12 1.22
+++ httpd.conf-dist-win 1999/05/05 20:18:00 1.23
@@ -559,7 +559,7 @@
# to do with the FancyIndexing customisation directives above.
#
AddEncoding x-compress Z
-AddEncoding x-gzip gz
+AddEncoding x-gzip gz tgz
#
# AddLanguage allows you to specify the language of a document. You can
@@ -592,6 +592,8 @@
#
#AddType application/x-httpd-php3 .phtml
#AddType application/x-httpd-php3-source .phps
+
+AddType application/x-tar .tgz
#
# AddHandler allows you to map certain file extensions to "handlers",
1.1348 +3 -0 apache-1.3/src/CHANGES
Index: CHANGES
===================================================================
RCS file: /home/cvs/apache-1.3/src/CHANGES,v
retrieving revision 1.1347
retrieving revision 1.1348
diff -u -r1.1347 -r1.1348
--- CHANGES 1999/05/05 17:46:05 1.1347
+++ CHANGES 1999/05/05 20:18:04 1.1348
@@ -1,5 +1,8 @@
Changes with Apache 1.3.7
+ *) Add recognition of .tgz as a gzipped tarchive.
+ [Bertrand de Singly <[EMAIL PROTECTED]>] PR#2364
+
*) mod_include's fsize/flastmod should allow only relative paths, just
like "include file". [Jaroslav Benkovsky <[EMAIL PROTECTED]>]