coar 98/03/31 04:54:19
Modified: . CHANGES LICENSE Makefile.tmpl STATUS configure
htdocs/manual LICENSE expand.pl
src Configure buildmark.c
src/ap ap_cpystrn.c ap_execve.c ap_signal.c ap_slack.c
ap_snprintf.c ap_strings.c
src/helpers UpdateHide
src/include alloc.h ap.h buff.h conf.h hide.h
http_conf_globals.h http_config.h http_core.h
http_log.h http_main.h http_protocol.h
http_request.h http_vhost.h httpd.h md5.h rfc1413.h
scoreboard.h util_date.h util_md5.h util_script.h
util_uri.h
src/main alloc.c buff.c http_config.c http_core.c http_log.c
http_main.c http_protocol.c http_request.c
http_vhost.c md5c.c rfc1413.c util.c util_date.c
util_md5.c util_script.c util_uri.c
src/modules/example mod_example.c
src/modules/experimental mod_mmap_static.c
src/modules/proxy mod_proxy.c mod_proxy.h proxy_cache.c
proxy_connect.c proxy_ftp.c proxy_http.c
proxy_util.c
src/modules/standard mod_access.c mod_actions.c mod_alias.c
mod_asis.c mod_auth.c mod_auth_anon.c mod_auth_db.c
mod_auth_dbm.c mod_autoindex.c mod_cern_meta.c
mod_cgi.c mod_digest.c mod_dir.c mod_env.c
mod_expires.c mod_headers.c mod_imap.c
mod_include.c mod_info.c mod_log_agent.c
mod_log_config.c mod_log_referer.c mod_mime.c
mod_mime_magic.c mod_negotiation.c mod_rewrite.c
mod_rewrite.h mod_setenvif.c mod_so.c mod_speling.c
mod_status.c mod_unique_id.c mod_userdir.c
mod_usertrack.c
src/modules/test mod_rndchunk.c mod_test_util_uri.c
src/os/bs2000 ebcdic.c os.c
src/os/unix os.h
src/os/win32 mod_dll.c mod_isapi.c
src/support ab.1 ab.c apachectl apachectl.1 dbmmanage
dbmmanage.1 htdigest.1 htpasswd.1 httpd.8
log_server_status logresolve.8 logresolve.pl
rotatelogs.8 split-logfile suexec.8 suexec.c
suexec.h
Log:
Modify the licence clauses for 1.3 to prohibit derived packages
from claiming to be "Apache" without the AG's permission. (Always
the intent, I believe, but previously not explicit enough.)
Hopefully this will help deter further dilution of the brand.
Reviewed by: Paul Sutton, Ben Laurie, Jim Jagielski, Randy Terbush,
Roy Fielding, Chuck Murcko, Mark Cox, Ralf Engeschall,
Sameer Parekh, Martin Kraemer, Dean Gaudet, Brian Behlendorf
Revision Changes Path
1.18 +4 -0 apache-1.3/CHANGES
Index: CHANGES
===================================================================
RCS file: /export/home/cvs/apache-1.3/CHANGES,v
retrieving revision 1.17
retrieving revision 1.18
diff -u -r1.17 -r1.18
--- CHANGES 1998/03/29 12:27:27 1.17
+++ CHANGES 1998/03/31 12:52:00 1.18
@@ -4,6 +4,10 @@
For more information, see the documentation included with this release
(htdocs/manual/) or http://www.apache.org/docs/
+The Apache license has been modified slightly for this version; the
+change simply prohibits derived products from claiming themselves to
+be "Apache."
+
In addition to a number of bug fixes and internal performance
enhancements, Apache 1.3 has the following specific new user
features:
1.9 +5 -1 apache-1.3/LICENSE
Index: LICENSE
===================================================================
RCS file: /export/home/cvs/apache-1.3/LICENSE,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- LICENSE 1998/01/07 16:45:53 1.8
+++ LICENSE 1998/03/31 12:52:00 1.9
@@ -23,7 +23,11 @@
* prior written permission. For written permission, please contact
* [EMAIL PROTECTED]
*
- * 5. Redistributions of any form whatsoever must retain the following
+ * 5. Products derived from this software may not be called "Apache"
+ * nor may "Apache" appear in their names without prior written
+ * permission of the Apache Group.
+ *
+ * 6. Redistributions of any form whatsoever must retain the following
* acknowledgment:
* "This product includes software developed by the Apache Group
* for use in the Apache HTTP server project (http://www.apache.org/)."
1.3 +5 -1 apache-1.3/Makefile.tmpl
Index: Makefile.tmpl
===================================================================
RCS file: /export/home/cvs/apache-1.3/Makefile.tmpl,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- Makefile.tmpl 1998/03/30 15:42:18 1.2
+++ Makefile.tmpl 1998/03/31 12:52:01 1.3
@@ -23,7 +23,11 @@
## prior written permission. For written permission, please contact
## [EMAIL PROTECTED]
##
-## 5. Redistributions of any form whatsoever must retain the following
+## 5. Products derived from this software may not be called "Apache"
+## nor may "Apache" appear in their names without prior written
+## permission of the Apache Group.
+##
+## 6. Redistributions of any form whatsoever must retain the following
## acknowledgment:
## "This product includes software developed by the Apache Group
## for use in the Apache HTTP server project (http://www.apache.org/)."
1.249 +1 -5 apache-1.3/STATUS
Index: STATUS
===================================================================
RCS file: /export/home/cvs/apache-1.3/STATUS,v
retrieving revision 1.248
retrieving revision 1.249
diff -u -r1.248 -r1.249
--- STATUS 1998/03/31 04:41:02 1.248
+++ STATUS 1998/03/31 12:52:01 1.249
@@ -130,14 +130,10 @@
* Dean's floating point ap_snprintf code wasn't threadsafe.
* Ralf's add of the new Apache Autoconf-style Interface (APACI)
* Rainer Scherg's fix for CONNECT proxy support: #1326, #1573, #1942
+ * Ken's reworking of the Apache LICENSE
Available Patches:
- * Ken's slight reworking of the Apache LICENSE to clarify the restricted
- nature of usage of the name "Apache" in derived products
- Status: Ken +1, Paul +1, Ben +1, Jim +1, Randy +1, Roy +1,
- Chuck +1, MarkC +1, Ralf +1, Sameer +1, Martin +1, Dean +1
- Brian +1
In progress:
1.3 +5 -1 apache-1.3/configure
Index: configure
===================================================================
RCS file: /export/home/cvs/apache-1.3/configure,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- configure 1998/03/30 15:42:18 1.2
+++ configure 1998/03/31 12:52:02 1.3
@@ -24,7 +24,11 @@
## prior written permission. For written permission, please contact
## [EMAIL PROTECTED]
##
-## 5. Redistributions of any form whatsoever must retain the following
+## 5. Products derived from this software may not be called "Apache"
+## nor may "Apache" appear in their names without prior written
+## permission of the Apache Group.
+##
+## 6. Redistributions of any form whatsoever must retain the following
## acknowledgment:
## "This product includes software developed by the Apache Group
## for use in the Apache HTTP server project (http://www.apache.org/)."
1.6 +5 -1 apache-1.3/htdocs/manual/LICENSE
Index: LICENSE
===================================================================
RCS file: /export/home/cvs/apache-1.3/htdocs/manual/LICENSE,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- LICENSE 1998/01/07 16:45:53 1.5
+++ LICENSE 1998/03/31 12:52:05 1.6
@@ -23,7 +23,11 @@
* prior written permission. For written permission, please contact
* [EMAIL PROTECTED]
*
- * 5. Redistributions of any form whatsoever must retain the following
+ * 5. Products derived from this software may not be called "Apache"
+ * nor may "Apache" appear in their names without prior written
+ * permission of the Apache Group.
+ *
+ * 6. Redistributions of any form whatsoever must retain the following
* acknowledgment:
* "This product includes software developed by the Apache Group
* for use in the Apache HTTP server project (http://www.apache.org/)."
1.5 +5 -1 apache-1.3/htdocs/manual/expand.pl
Index: expand.pl
===================================================================
RCS file: /export/home/cvs/apache-1.3/htdocs/manual/expand.pl,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- expand.pl 1998/01/07 16:45:54 1.4
+++ expand.pl 1998/03/31 12:52:05 1.5
@@ -34,7 +34,11 @@
# endorse or promote products derived from this software without
# prior written permission.
#
-# 5. Redistributions of any form whatsoever must retain the following
+# 5. Products derived from this software may not be called "Apache"
+# nor may "Apache" appear in their names without prior written
+# permission of the Apache Group.
+#
+# 6. Redistributions of any form whatsoever must retain the following
# acknowledgment:
# "This product includes software developed by the Apache Group
# for use in the Apache HTTP server project (http://www.apache.org/)."
1.222 +5 -1 apache-1.3/src/Configure
Index: Configure
===================================================================
RCS file: /export/home/cvs/apache-1.3/src/Configure,v
retrieving revision 1.221
retrieving revision 1.222
diff -u -r1.221 -r1.222
--- Configure 1998/03/27 00:38:50 1.221
+++ Configure 1998/03/31 12:52:06 1.222
@@ -24,7 +24,11 @@
## prior written permission. For written permission, please contact
## [EMAIL PROTECTED]
##
-## 5. Redistributions of any form whatsoever must retain the following
+## 5. Products derived from this software may not be called "Apache"
+## nor may "Apache" appear in their names without prior written
+## permission of the Apache Group.
+##
+## 6. Redistributions of any form whatsoever must retain the following
## acknowledgment:
## "This product includes software developed by the Apache Group
## for use in the Apache HTTP server project (http://www.apache.org/)."
1.5 +5 -1 apache-1.3/src/buildmark.c
Index: buildmark.c
===================================================================
RCS file: /export/home/cvs/apache-1.3/src/buildmark.c,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- buildmark.c 1998/03/09 22:42:52 1.4
+++ buildmark.c 1998/03/31 12:52:07 1.5
@@ -23,7 +23,11 @@
* prior written permission. For written permission, please contact
* [EMAIL PROTECTED]
*
- * 5. Redistributions of any form whatsoever must retain the following
+ * 5. Products derived from this software may not be called "Apache"
+ * nor may "Apache" appear in their names without prior written
+ * permission of the Apache Group.
+ *
+ * 6. Redistributions of any form whatsoever must retain the following
* acknowledgment:
* "This product includes software developed by the Apache Group
* for use in the Apache HTTP server project (http://www.apache.org/)."
1.6 +5 -1 apache-1.3/src/ap/ap_cpystrn.c
Index: ap_cpystrn.c
===================================================================
RCS file: /export/home/cvs/apache-1.3/src/ap/ap_cpystrn.c,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- ap_cpystrn.c 1998/02/20 20:02:39 1.5
+++ ap_cpystrn.c 1998/03/31 12:52:09 1.6
@@ -23,7 +23,11 @@
* prior written permission. For written permission, please contact
* [EMAIL PROTECTED]
*
- * 5. Redistributions of any form whatsoever must retain the following
+ * 5. Products derived from this software may not be called "Apache"
+ * nor may "Apache" appear in their names without prior written
+ * permission of the Apache Group.
+ *
+ * 6. Redistributions of any form whatsoever must retain the following
* acknowledgment:
* "This product includes software developed by the Apache Group
* for use in the Apache HTTP server project (http://www.apache.org/)."
1.9 +5 -1 apache-1.3/src/ap/ap_execve.c
Index: ap_execve.c
===================================================================
RCS file: /export/home/cvs/apache-1.3/src/ap/ap_execve.c,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- ap_execve.c 1998/03/17 07:54:09 1.8
+++ ap_execve.c 1998/03/31 12:52:10 1.9
@@ -23,7 +23,11 @@
* prior written permission. For written permission, please contact
* [EMAIL PROTECTED]
*
- * 5. Redistributions of any form whatsoever must retain the following
+ * 5. Products derived from this software may not be called "Apache"
+ * nor may "Apache" appear in their names without prior written
+ * permission of the Apache Group.
+ *
+ * 6. Redistributions of any form whatsoever must retain the following
* acknowledgment:
* "This product includes software developed by the Apache Group
* for use in the Apache HTTP server project (http://www.apache.org/)."
1.4 +5 -1 apache-1.3/src/ap/ap_signal.c
Index: ap_signal.c
===================================================================
RCS file: /export/home/cvs/apache-1.3/src/ap/ap_signal.c,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- ap_signal.c 1998/01/21 21:54:30 1.3
+++ ap_signal.c 1998/03/31 12:52:11 1.4
@@ -23,7 +23,11 @@
* prior written permission. For written permission, please contact
* [EMAIL PROTECTED]
*
- * 5. Redistributions of any form whatsoever must retain the following
+ * 5. Products derived from this software may not be called "Apache"
+ * nor may "Apache" appear in their names without prior written
+ * permission of the Apache Group.
+ *
+ * 6. Redistributions of any form whatsoever must retain the following
* acknowledgment:
* "This product includes software developed by the Apache Group
* for use in the Apache HTTP server project (http://www.apache.org/)."
1.4 +5 -1 apache-1.3/src/ap/ap_slack.c
Index: ap_slack.c
===================================================================
RCS file: /export/home/cvs/apache-1.3/src/ap/ap_slack.c,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- ap_slack.c 1998/01/21 21:54:31 1.3
+++ ap_slack.c 1998/03/31 12:52:12 1.4
@@ -23,7 +23,11 @@
* prior written permission. For written permission, please contact
* [EMAIL PROTECTED]
*
- * 5. Redistributions of any form whatsoever must retain the following
+ * 5. Products derived from this software may not be called "Apache"
+ * nor may "Apache" appear in their names without prior written
+ * permission of the Apache Group.
+ *
+ * 6. Redistributions of any form whatsoever must retain the following
* acknowledgment:
* "This product includes software developed by the Apache Group
* for use in the Apache HTTP server project (http://www.apache.org/)."
1.18 +5 -1 apache-1.3/src/ap/ap_snprintf.c
Index: ap_snprintf.c
===================================================================
RCS file: /export/home/cvs/apache-1.3/src/ap/ap_snprintf.c,v
retrieving revision 1.17
retrieving revision 1.18
diff -u -r1.17 -r1.18
--- ap_snprintf.c 1998/03/30 01:22:47 1.17
+++ ap_snprintf.c 1998/03/31 12:52:13 1.18
@@ -23,7 +23,11 @@
* prior written permission. For written permission, please contact
* [EMAIL PROTECTED]
*
- * 5. Redistributions of any form whatsoever must retain the following
+ * 5. Products derived from this software may not be called "Apache"
+ * nor may "Apache" appear in their names without prior written
+ * permission of the Apache Group.
+ *
+ * 6. Redistributions of any form whatsoever must retain the following
* acknowledgment:
* "This product includes software developed by the Apache Group
* for use in the Apache HTTP server project (http://www.apache.org/)."
1.4 +5 -1 apache-1.3/src/ap/ap_strings.c
Index: ap_strings.c
===================================================================
RCS file: /export/home/cvs/apache-1.3/src/ap/ap_strings.c,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- ap_strings.c 1998/01/07 16:45:57 1.3
+++ ap_strings.c 1998/03/31 12:52:14 1.4
@@ -23,7 +23,11 @@
* prior written permission. For written permission, please contact
* [EMAIL PROTECTED]
*
- * 5. Redistributions of any form whatsoever must retain the following
+ * 5. Products derived from this software may not be called "Apache"
+ * nor may "Apache" appear in their names without prior written
+ * permission of the Apache Group.
+ *
+ * 6. Redistributions of any form whatsoever must retain the following
* acknowledgment:
* "This product includes software developed by the Apache Group
* for use in the Apache HTTP server project (http://www.apache.org/)."
1.10 +5 -1 apache-1.3/src/helpers/UpdateHide
Index: UpdateHide
===================================================================
RCS file: /export/home/cvs/apache-1.3/src/helpers/UpdateHide,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- UpdateHide 1998/03/17 13:08:53 1.9
+++ UpdateHide 1998/03/31 12:52:15 1.10
@@ -26,7 +26,11 @@
## prior written permission. For written permission, please contact
## [EMAIL PROTECTED]
##
-## 5. Redistributions of any form whatsoever must retain the following
+## 5. Products derived from this software may not be called "Apache"
+## nor may "Apache" appear in their names without prior written
+## permission of the Apache Group.
+##
+## 6. Redistributions of any form whatsoever must retain the following
## acknowledgment:
## "This product includes software developed by the Apache Group
## for use in the Apache HTTP server project (http://www.apache.org/)."
1.52 +5 -1 apache-1.3/src/include/alloc.h
Index: alloc.h
===================================================================
RCS file: /export/home/cvs/apache-1.3/src/include/alloc.h,v
retrieving revision 1.51
retrieving revision 1.52
diff -u -r1.51 -r1.52
--- alloc.h 1998/03/28 21:35:38 1.51
+++ alloc.h 1998/03/31 12:52:16 1.52
@@ -23,7 +23,11 @@
* prior written permission. For written permission, please contact
* [EMAIL PROTECTED]
*
- * 5. Redistributions of any form whatsoever must retain the following
+ * 5. Products derived from this software may not be called "Apache"
+ * nor may "Apache" appear in their names without prior written
+ * permission of the Apache Group.
+ *
+ * 6. Redistributions of any form whatsoever must retain the following
* acknowledgment:
* "This product includes software developed by the Apache Group
* for use in the Apache HTTP server project (http://www.apache.org/)."
1.11 +5 -1 apache-1.3/src/include/ap.h
Index: ap.h
===================================================================
RCS file: /export/home/cvs/apache-1.3/src/include/ap.h,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- ap.h 1998/03/30 01:22:48 1.10
+++ ap.h 1998/03/31 12:52:17 1.11
@@ -23,7 +23,11 @@
* prior written permission. For written permission, please contact
* [EMAIL PROTECTED]
*
- * 5. Redistributions of any form whatsoever must retain the following
+ * 5. Products derived from this software may not be called "Apache"
+ * nor may "Apache" appear in their names without prior written
+ * permission of the Apache Group.
+ *
+ * 6. Redistributions of any form whatsoever must retain the following
* acknowledgment:
* "This product includes software developed by the Apache Group
* for use in the Apache HTTP server project (http://www.apache.org/)."
1.36 +5 -1 apache-1.3/src/include/buff.h
Index: buff.h
===================================================================
RCS file: /export/home/cvs/apache-1.3/src/include/buff.h,v
retrieving revision 1.35
retrieving revision 1.36
diff -u -r1.35 -r1.36
--- buff.h 1998/03/28 11:58:17 1.35
+++ buff.h 1998/03/31 12:52:18 1.36
@@ -23,7 +23,11 @@
* prior written permission. For written permission, please contact
* [EMAIL PROTECTED]
*
- * 5. Redistributions of any form whatsoever must retain the following
+ * 5. Products derived from this software may not be called "Apache"
+ * nor may "Apache" appear in their names without prior written
+ * permission of the Apache Group.
+ *
+ * 6. Redistributions of any form whatsoever must retain the following
* acknowledgment:
* "This product includes software developed by the Apache Group
* for use in the Apache HTTP server project (http://www.apache.org/)."
1.199 +5 -1 apache-1.3/src/include/conf.h
Index: conf.h
===================================================================
RCS file: /export/home/cvs/apache-1.3/src/include/conf.h,v
retrieving revision 1.198
retrieving revision 1.199
diff -u -r1.198 -r1.199
--- conf.h 1998/03/28 21:58:39 1.198
+++ conf.h 1998/03/31 12:52:19 1.199
@@ -23,7 +23,11 @@
* prior written permission. For written permission, please contact
* [EMAIL PROTECTED]
*
- * 5. Redistributions of any form whatsoever must retain the following
+ * 5. Products derived from this software may not be called "Apache"
+ * nor may "Apache" appear in their names without prior written
+ * permission of the Apache Group.
+ *
+ * 6. Redistributions of any form whatsoever must retain the following
* acknowledgment:
* "This product includes software developed by the Apache Group
* for use in the Apache HTTP server project (http://www.apache.org/)."
1.16 +5 -1 apache-1.3/src/include/hide.h
Index: hide.h
===================================================================
RCS file: /export/home/cvs/apache-1.3/src/include/hide.h,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -r1.15 -r1.16
--- hide.h 1998/03/17 19:47:45 1.15
+++ hide.h 1998/03/31 12:52:20 1.16
@@ -23,7 +23,11 @@
* prior written permission. For written permission, please contact
* [EMAIL PROTECTED]
*
- * 5. Redistributions of any form whatsoever must retain the following
+ * 5. Products derived from this software may not be called "Apache"
+ * nor may "Apache" appear in their names without prior written
+ * permission of the Apache Group.
+ *
+ * 6. Redistributions of any form whatsoever must retain the following
* acknowledgment:
* "This product includes software developed by the Apache Group
* for use in the Apache HTTP server project (http://www.apache.org/)."
1.25 +5 -1 apache-1.3/src/include/http_conf_globals.h
Index: http_conf_globals.h
===================================================================
RCS file: /export/home/cvs/apache-1.3/src/include/http_conf_globals.h,v
retrieving revision 1.24
retrieving revision 1.25
diff -u -r1.24 -r1.25
--- http_conf_globals.h 1998/01/21 19:17:36 1.24
+++ http_conf_globals.h 1998/03/31 12:52:21 1.25
@@ -23,7 +23,11 @@
* prior written permission. For written permission, please contact
* [EMAIL PROTECTED]
*
- * 5. Redistributions of any form whatsoever must retain the following
+ * 5. Products derived from this software may not be called "Apache"
+ * nor may "Apache" appear in their names without prior written
+ * permission of the Apache Group.
+ *
+ * 6. Redistributions of any form whatsoever must retain the following
* acknowledgment:
* "This product includes software developed by the Apache Group
* for use in the Apache HTTP server project (http://www.apache.org/)."
1.78 +5 -1 apache-1.3/src/include/http_config.h
Index: http_config.h
===================================================================
RCS file: /export/home/cvs/apache-1.3/src/include/http_config.h,v
retrieving revision 1.77
retrieving revision 1.78
diff -u -r1.77 -r1.78
--- http_config.h 1998/03/24 04:13:06 1.77
+++ http_config.h 1998/03/31 12:52:21 1.78
@@ -23,7 +23,11 @@
* prior written permission. For written permission, please contact
* [EMAIL PROTECTED]
*
- * 5. Redistributions of any form whatsoever must retain the following
+ * 5. Products derived from this software may not be called "Apache"
+ * nor may "Apache" appear in their names without prior written
+ * permission of the Apache Group.
+ *
+ * 6. Redistributions of any form whatsoever must retain the following
* acknowledgment:
* "This product includes software developed by the Apache Group
* for use in the Apache HTTP server project (http://www.apache.org/)."
1.41 +5 -1 apache-1.3/src/include/http_core.h
Index: http_core.h
===================================================================
RCS file: /export/home/cvs/apache-1.3/src/include/http_core.h,v
retrieving revision 1.40
retrieving revision 1.41
diff -u -r1.40 -r1.41
--- http_core.h 1998/03/26 21:17:40 1.40
+++ http_core.h 1998/03/31 12:52:24 1.41
@@ -23,7 +23,11 @@
* prior written permission. For written permission, please contact
* [EMAIL PROTECTED]
*
- * 5. Redistributions of any form whatsoever must retain the following
+ * 5. Products derived from this software may not be called "Apache"
+ * nor may "Apache" appear in their names without prior written
+ * permission of the Apache Group.
+ *
+ * 6. Redistributions of any form whatsoever must retain the following
* acknowledgment:
* "This product includes software developed by the Apache Group
* for use in the Apache HTTP server project (http://www.apache.org/)."
1.27 +5 -1 apache-1.3/src/include/http_log.h
Index: http_log.h
===================================================================
RCS file: /export/home/cvs/apache-1.3/src/include/http_log.h,v
retrieving revision 1.26
retrieving revision 1.27
diff -u -r1.26 -r1.27
--- http_log.h 1998/03/06 19:53:50 1.26
+++ http_log.h 1998/03/31 12:52:25 1.27
@@ -23,7 +23,11 @@
* prior written permission. For written permission, please contact
* [EMAIL PROTECTED]
*
- * 5. Redistributions of any form whatsoever must retain the following
+ * 5. Products derived from this software may not be called "Apache"
+ * nor may "Apache" appear in their names without prior written
+ * permission of the Apache Group.
+ *
+ * 6. Redistributions of any form whatsoever must retain the following
* acknowledgment:
* "This product includes software developed by the Apache Group
* for use in the Apache HTTP server project (http://www.apache.org/)."
1.26 +5 -1 apache-1.3/src/include/http_main.h
Index: http_main.h
===================================================================
RCS file: /export/home/cvs/apache-1.3/src/include/http_main.h,v
retrieving revision 1.25
retrieving revision 1.26
diff -u -r1.25 -r1.26
--- http_main.h 1998/03/12 11:53:13 1.25
+++ http_main.h 1998/03/31 12:52:25 1.26
@@ -23,7 +23,11 @@
* prior written permission. For written permission, please contact
* [EMAIL PROTECTED]
*
- * 5. Redistributions of any form whatsoever must retain the following
+ * 5. Products derived from this software may not be called "Apache"
+ * nor may "Apache" appear in their names without prior written
+ * permission of the Apache Group.
+ *
+ * 6. Redistributions of any form whatsoever must retain the following
* acknowledgment:
* "This product includes software developed by the Apache Group
* for use in the Apache HTTP server project (http://www.apache.org/)."
1.38 +5 -1 apache-1.3/src/include/http_protocol.h
Index: http_protocol.h
===================================================================
RCS file: /export/home/cvs/apache-1.3/src/include/http_protocol.h,v
retrieving revision 1.37
retrieving revision 1.38
diff -u -r1.37 -r1.38
--- http_protocol.h 1998/03/24 04:13:07 1.37
+++ http_protocol.h 1998/03/31 12:52:26 1.38
@@ -23,7 +23,11 @@
* prior written permission. For written permission, please contact
* [EMAIL PROTECTED]
*
- * 5. Redistributions of any form whatsoever must retain the following
+ * 5. Products derived from this software may not be called "Apache"
+ * nor may "Apache" appear in their names without prior written
+ * permission of the Apache Group.
+ *
+ * 6. Redistributions of any form whatsoever must retain the following
* acknowledgment:
* "This product includes software developed by the Apache Group
* for use in the Apache HTTP server project (http://www.apache.org/)."
1.22 +5 -1 apache-1.3/src/include/http_request.h
Index: http_request.h
===================================================================
RCS file: /export/home/cvs/apache-1.3/src/include/http_request.h,v
retrieving revision 1.21
retrieving revision 1.22
diff -u -r1.21 -r1.22
--- http_request.h 1998/03/17 08:20:52 1.21
+++ http_request.h 1998/03/31 12:52:26 1.22
@@ -23,7 +23,11 @@
* prior written permission. For written permission, please contact
* [EMAIL PROTECTED]
*
- * 5. Redistributions of any form whatsoever must retain the following
+ * 5. Products derived from this software may not be called "Apache"
+ * nor may "Apache" appear in their names without prior written
+ * permission of the Apache Group.
+ *
+ * 6. Redistributions of any form whatsoever must retain the following
* acknowledgment:
* "This product includes software developed by the Apache Group
* for use in the Apache HTTP server project (http://www.apache.org/)."
1.7 +5 -1 apache-1.3/src/include/http_vhost.h
Index: http_vhost.h
===================================================================
RCS file: /export/home/cvs/apache-1.3/src/include/http_vhost.h,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- http_vhost.h 1998/03/02 06:51:03 1.6
+++ http_vhost.h 1998/03/31 12:52:27 1.7
@@ -23,7 +23,11 @@
* prior written permission. For written permission, please contact
* [EMAIL PROTECTED]
*
- * 5. Redistributions of any form whatsoever must retain the following
+ * 5. Products derived from this software may not be called "Apache"
+ * nor may "Apache" appear in their names without prior written
+ * permission of the Apache Group.
+ *
+ * 6. Redistributions of any form whatsoever must retain the following
* acknowledgment:
* "This product includes software developed by the Apache Group
* for use in the Apache HTTP server project (http://www.apache.org/)."
1.201 +5 -1 apache-1.3/src/include/httpd.h
Index: httpd.h
===================================================================
RCS file: /export/home/cvs/apache-1.3/src/include/httpd.h,v
retrieving revision 1.200
retrieving revision 1.201
diff -u -r1.200 -r1.201
--- httpd.h 1998/03/26 21:17:40 1.200
+++ httpd.h 1998/03/31 12:52:27 1.201
@@ -23,7 +23,11 @@
* prior written permission. For written permission, please contact
* [EMAIL PROTECTED]
*
- * 5. Redistributions of any form whatsoever must retain the following
+ * 5. Products derived from this software may not be called "Apache"
+ * nor may "Apache" appear in their names without prior written
+ * permission of the Apache Group.
+ *
+ * 6. Redistributions of any form whatsoever must retain the following
* acknowledgment:
* "This product includes software developed by the Apache Group
* for use in the Apache HTTP server project (http://www.apache.org/)."
1.12 +5 -1 apache-1.3/src/include/md5.h
Index: md5.h
===================================================================
RCS file: /export/home/cvs/apache-1.3/src/include/md5.h,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -r1.11 -r1.12
--- md5.h 1998/01/21 19:17:41 1.11
+++ md5.h 1998/03/31 12:52:28 1.12
@@ -53,7 +53,11 @@
* prior written permission. For written permission, please contact
* [EMAIL PROTECTED]
*
- * 5. Redistributions of any form whatsoever must retain the following
+ * 5. Products derived from this software may not be called "Apache"
+ * nor may "Apache" appear in their names without prior written
+ * permission of the Apache Group.
+ *
+ * 6. Redistributions of any form whatsoever must retain the following
* acknowledgment:
* "This product includes software developed by the Apache Group
* for use in the Apache HTTP server project (http://www.apache.org/)."
1.9 +5 -1 apache-1.3/src/include/rfc1413.h
Index: rfc1413.h
===================================================================
RCS file: /export/home/cvs/apache-1.3/src/include/rfc1413.h,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- rfc1413.h 1998/01/21 19:17:43 1.8
+++ rfc1413.h 1998/03/31 12:52:29 1.9
@@ -23,7 +23,11 @@
* prior written permission. For written permission, please contact
* [EMAIL PROTECTED]
*
- * 5. Redistributions of any form whatsoever must retain the following
+ * 5. Products derived from this software may not be called "Apache"
+ * nor may "Apache" appear in their names without prior written
+ * permission of the Apache Group.
+ *
+ * 6. Redistributions of any form whatsoever must retain the following
* acknowledgment:
* "This product includes software developed by the Apache Group
* for use in the Apache HTTP server project (http://www.apache.org/)."
1.38 +5 -1 apache-1.3/src/include/scoreboard.h
Index: scoreboard.h
===================================================================
RCS file: /export/home/cvs/apache-1.3/src/include/scoreboard.h,v
retrieving revision 1.37
retrieving revision 1.38
diff -u -r1.37 -r1.38
--- scoreboard.h 1998/03/26 21:20:48 1.37
+++ scoreboard.h 1998/03/31 12:52:30 1.38
@@ -23,7 +23,11 @@
* prior written permission. For written permission, please contact
* [EMAIL PROTECTED]
*
- * 5. Redistributions of any form whatsoever must retain the following
+ * 5. Products derived from this software may not be called "Apache"
+ * nor may "Apache" appear in their names without prior written
+ * permission of the Apache Group.
+ *
+ * 6. Redistributions of any form whatsoever must retain the following
* acknowledgment:
* "This product includes software developed by the Apache Group
* for use in the Apache HTTP server project (http://www.apache.org/)."
1.11 +5 -1 apache-1.3/src/include/util_date.h
Index: util_date.h
===================================================================
RCS file: /export/home/cvs/apache-1.3/src/include/util_date.h,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- util_date.h 1998/03/17 08:20:52 1.10
+++ util_date.h 1998/03/31 12:52:30 1.11
@@ -23,7 +23,11 @@
* prior written permission. For written permission, please contact
* [EMAIL PROTECTED]
*
- * 5. Redistributions of any form whatsoever must retain the following
+ * 5. Products derived from this software may not be called "Apache"
+ * nor may "Apache" appear in their names without prior written
+ * permission of the Apache Group.
+ *
+ * 6. Redistributions of any form whatsoever must retain the following
* acknowledgment:
* "This product includes software developed by the Apache Group
* for use in the Apache HTTP server project (http://www.apache.org/)."
1.13 +5 -1 apache-1.3/src/include/util_md5.h
Index: util_md5.h
===================================================================
RCS file: /export/home/cvs/apache-1.3/src/include/util_md5.h,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -r1.12 -r1.13
--- util_md5.h 1998/01/21 19:17:45 1.12
+++ util_md5.h 1998/03/31 12:52:31 1.13
@@ -23,7 +23,11 @@
* prior written permission. For written permission, please contact
* [EMAIL PROTECTED]
*
- * 5. Redistributions of any form whatsoever must retain the following
+ * 5. Products derived from this software may not be called "Apache"
+ * nor may "Apache" appear in their names without prior written
+ * permission of the Apache Group.
+ *
+ * 6. Redistributions of any form whatsoever must retain the following
* acknowledgment:
* "This product includes software developed by the Apache Group
* for use in the Apache HTTP server project (http://www.apache.org/)."
1.29 +5 -1 apache-1.3/src/include/util_script.h
Index: util_script.h
===================================================================
RCS file: /export/home/cvs/apache-1.3/src/include/util_script.h,v
retrieving revision 1.28
retrieving revision 1.29
diff -u -r1.28 -r1.29
--- util_script.h 1998/02/21 11:05:18 1.28
+++ util_script.h 1998/03/31 12:52:32 1.29
@@ -23,7 +23,11 @@
* prior written permission. For written permission, please contact
* [EMAIL PROTECTED]
*
- * 5. Redistributions of any form whatsoever must retain the following
+ * 5. Products derived from this software may not be called "Apache"
+ * nor may "Apache" appear in their names without prior written
+ * permission of the Apache Group.
+ *
+ * 6. Redistributions of any form whatsoever must retain the following
* acknowledgment:
* "This product includes software developed by the Apache Group
* for use in the Apache HTTP server project (http://www.apache.org/)."
1.5 +5 -1 apache-1.3/src/include/util_uri.h
Index: util_uri.h
===================================================================
RCS file: /export/home/cvs/apache-1.3/src/include/util_uri.h,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- util_uri.h 1998/03/02 06:51:04 1.4
+++ util_uri.h 1998/03/31 12:52:33 1.5
@@ -22,7 +22,11 @@
* endorse or promote products derived from this software without
* prior written permission.
*
- * 5. Redistributions of any form whatsoever must retain the following
+ * 5. Products derived from this software may not be called "Apache"
+ * nor may "Apache" appear in their names without prior written
+ * permission of the Apache Group.
+ *
+ * 6. Redistributions of any form whatsoever must retain the following
* acknowledgment:
* "This product includes software developed by the Apache Group
* for use in the Apache HTTP server project (http://www.apache.org/)."
1.84 +5 -1 apache-1.3/src/main/alloc.c
Index: alloc.c
===================================================================
RCS file: /export/home/cvs/apache-1.3/src/main/alloc.c,v
retrieving revision 1.83
retrieving revision 1.84
diff -u -r1.83 -r1.84
--- alloc.c 1998/03/30 01:22:50 1.83
+++ alloc.c 1998/03/31 12:52:39 1.84
@@ -23,7 +23,11 @@
* prior written permission. For written permission, please contact
* [EMAIL PROTECTED]
*
- * 5. Redistributions of any form whatsoever must retain the following
+ * 5. Products derived from this software may not be called "Apache"
+ * nor may "Apache" appear in their names without prior written
+ * permission of the Apache Group.
+ *
+ * 6. Redistributions of any form whatsoever must retain the following
* acknowledgment:
* "This product includes software developed by the Apache Group
* for use in the Apache HTTP server project (http://www.apache.org/)."
1.70 +5 -1 apache-1.3/src/main/buff.c
Index: buff.c
===================================================================
RCS file: /export/home/cvs/apache-1.3/src/main/buff.c,v
retrieving revision 1.69
retrieving revision 1.70
diff -u -r1.69 -r1.70
--- buff.c 1998/03/30 01:22:51 1.69
+++ buff.c 1998/03/31 12:52:40 1.70
@@ -23,7 +23,11 @@
* prior written permission. For written permission, please contact
* [EMAIL PROTECTED]
*
- * 5. Redistributions of any form whatsoever must retain the following
+ * 5. Products derived from this software may not be called "Apache"
+ * nor may "Apache" appear in their names without prior written
+ * permission of the Apache Group.
+ *
+ * 6. Redistributions of any form whatsoever must retain the following
* acknowledgment:
* "This product includes software developed by the Apache Group
* for use in the Apache HTTP server project (http://www.apache.org/)."
1.111 +5 -1 apache-1.3/src/main/http_config.c
Index: http_config.c
===================================================================
RCS file: /export/home/cvs/apache-1.3/src/main/http_config.c,v
retrieving revision 1.110
retrieving revision 1.111
diff -u -r1.110 -r1.111
--- http_config.c 1998/03/20 11:24:39 1.110
+++ http_config.c 1998/03/31 12:52:41 1.111
@@ -23,7 +23,11 @@
* prior written permission. For written permission, please contact
* [EMAIL PROTECTED]
*
- * 5. Redistributions of any form whatsoever must retain the following
+ * 5. Products derived from this software may not be called "Apache"
+ * nor may "Apache" appear in their names without prior written
+ * permission of the Apache Group.
+ *
+ * 6. Redistributions of any form whatsoever must retain the following
* acknowledgment:
* "This product includes software developed by the Apache Group
* for use in the Apache HTTP server project (http://www.apache.org/)."
1.180 +5 -1 apache-1.3/src/main/http_core.c
Index: http_core.c
===================================================================
RCS file: /export/home/cvs/apache-1.3/src/main/http_core.c,v
retrieving revision 1.179
retrieving revision 1.180
diff -u -r1.179 -r1.180
--- http_core.c 1998/03/28 20:57:10 1.179
+++ http_core.c 1998/03/31 12:52:42 1.180
@@ -23,7 +23,11 @@
* prior written permission. For written permission, please contact
* [EMAIL PROTECTED]
*
- * 5. Redistributions of any form whatsoever must retain the following
+ * 5. Products derived from this software may not be called "Apache"
+ * nor may "Apache" appear in their names without prior written
+ * permission of the Apache Group.
+ *
+ * 6. Redistributions of any form whatsoever must retain the following
* acknowledgment:
* "This product includes software developed by the Apache Group
* for use in the Apache HTTP server project (http://www.apache.org/)."
1.50 +5 -1 apache-1.3/src/main/http_log.c
Index: http_log.c
===================================================================
RCS file: /export/home/cvs/apache-1.3/src/main/http_log.c,v
retrieving revision 1.49
retrieving revision 1.50
diff -u -r1.49 -r1.50
--- http_log.c 1998/03/17 07:54:19 1.49
+++ http_log.c 1998/03/31 12:52:43 1.50
@@ -23,7 +23,11 @@
* prior written permission. For written permission, please contact
* [EMAIL PROTECTED]
*
- * 5. Redistributions of any form whatsoever must retain the following
+ * 5. Products derived from this software may not be called "Apache"
+ * nor may "Apache" appear in their names without prior written
+ * permission of the Apache Group.
+ *
+ * 6. Redistributions of any form whatsoever must retain the following
* acknowledgment:
* "This product includes software developed by the Apache Group
* for use in the Apache HTTP server project (http://www.apache.org/)."
1.317 +5 -1 apache-1.3/src/main/http_main.c
Index: http_main.c
===================================================================
RCS file: /export/home/cvs/apache-1.3/src/main/http_main.c,v
retrieving revision 1.316
retrieving revision 1.317
diff -u -r1.316 -r1.317
--- http_main.c 1998/03/28 11:58:24 1.316
+++ http_main.c 1998/03/31 12:52:44 1.317
@@ -23,7 +23,11 @@
* prior written permission. For written permission, please contact
* [EMAIL PROTECTED]
*
- * 5. Redistributions of any form whatsoever must retain the following
+ * 5. Products derived from this software may not be called "Apache"
+ * nor may "Apache" appear in their names without prior written
+ * permission of the Apache Group.
+ *
+ * 6. Redistributions of any form whatsoever must retain the following
* acknowledgment:
* "This product includes software developed by the Apache Group
* for use in the Apache HTTP server project (http://www.apache.org/)."
1.205 +5 -1 apache-1.3/src/main/http_protocol.c
Index: http_protocol.c
===================================================================
RCS file: /export/home/cvs/apache-1.3/src/main/http_protocol.c,v
retrieving revision 1.204
retrieving revision 1.205
diff -u -r1.204 -r1.205
--- http_protocol.c 1998/03/28 11:58:26 1.204
+++ http_protocol.c 1998/03/31 12:52:45 1.205
@@ -23,7 +23,11 @@
* prior written permission. For written permission, please contact
* [EMAIL PROTECTED]
*
- * 5. Redistributions of any form whatsoever must retain the following
+ * 5. Products derived from this software may not be called "Apache"
+ * nor may "Apache" appear in their names without prior written
+ * permission of the Apache Group.
+ *
+ * 6. Redistributions of any form whatsoever must retain the following
* acknowledgment:
* "This product includes software developed by the Apache Group
* for use in the Apache HTTP server project (http://www.apache.org/)."
1.116 +5 -1 apache-1.3/src/main/http_request.c
Index: http_request.c
===================================================================
RCS file: /export/home/cvs/apache-1.3/src/main/http_request.c,v
retrieving revision 1.115
retrieving revision 1.116
diff -u -r1.115 -r1.116
--- http_request.c 1998/03/28 11:58:26 1.115
+++ http_request.c 1998/03/31 12:52:46 1.116
@@ -23,7 +23,11 @@
* prior written permission. For written permission, please contact
* [EMAIL PROTECTED]
*
- * 5. Redistributions of any form whatsoever must retain the following
+ * 5. Products derived from this software may not be called "Apache"
+ * nor may "Apache" appear in their names without prior written
+ * permission of the Apache Group.
+ *
+ * 6. Redistributions of any form whatsoever must retain the following
* acknowledgment:
* "This product includes software developed by the Apache Group
* for use in the Apache HTTP server project (http://www.apache.org/)."
1.12 +5 -1 apache-1.3/src/main/http_vhost.c
Index: http_vhost.c
===================================================================
RCS file: /export/home/cvs/apache-1.3/src/main/http_vhost.c,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -r1.11 -r1.12
--- http_vhost.c 1998/03/17 07:54:23 1.11
+++ http_vhost.c 1998/03/31 12:52:47 1.12
@@ -23,7 +23,11 @@
* prior written permission. For written permission, please contact
* [EMAIL PROTECTED]
*
- * 5. Redistributions of any form whatsoever must retain the following
+ * 5. Products derived from this software may not be called "Apache"
+ * nor may "Apache" appear in their names without prior written
+ * permission of the Apache Group.
+ *
+ * 6. Redistributions of any form whatsoever must retain the following
* acknowledgment:
* "This product includes software developed by the Apache Group
* for use in the Apache HTTP server project (http://www.apache.org/)."
1.11 +5 -1 apache-1.3/src/main/md5c.c
Index: md5c.c
===================================================================
RCS file: /export/home/cvs/apache-1.3/src/main/md5c.c,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- md5c.c 1998/01/07 16:46:19 1.10
+++ md5c.c 1998/03/31 12:52:47 1.11
@@ -56,7 +56,11 @@
* prior written permission. For written permission, please contact
* [EMAIL PROTECTED]
*
- * 5. Redistributions of any form whatsoever must retain the following
+ * 5. Products derived from this software may not be called "Apache"
+ * nor may "Apache" appear in their names without prior written
+ * permission of the Apache Group.
+ *
+ * 6. Redistributions of any form whatsoever must retain the following
* acknowledgment:
* "This product includes software developed by the Apache Group
* for use in the Apache HTTP server project (http://www.apache.org/)."
1.22 +5 -1 apache-1.3/src/main/rfc1413.c
Index: rfc1413.c
===================================================================
RCS file: /export/home/cvs/apache-1.3/src/main/rfc1413.c,v
retrieving revision 1.21
retrieving revision 1.22
diff -u -r1.21 -r1.22
--- rfc1413.c 1998/03/29 09:33:24 1.21
+++ rfc1413.c 1998/03/31 12:52:48 1.22
@@ -23,7 +23,11 @@
* prior written permission. For written permission, please contact
* [EMAIL PROTECTED]
*
- * 5. Redistributions of any form whatsoever must retain the following
+ * 5. Products derived from this software may not be called "Apache"
+ * nor may "Apache" appear in their names without prior written
+ * permission of the Apache Group.
+ *
+ * 6. Redistributions of any form whatsoever must retain the following
* acknowledgment:
* "This product includes software developed by the Apache Group
* for use in the Apache HTTP server project (http://www.apache.org/)."
1.110 +5 -1 apache-1.3/src/main/util.c
Index: util.c
===================================================================
RCS file: /export/home/cvs/apache-1.3/src/main/util.c,v
retrieving revision 1.109
retrieving revision 1.110
diff -u -r1.109 -r1.110
--- util.c 1998/03/28 11:58:27 1.109
+++ util.c 1998/03/31 12:52:48 1.110
@@ -23,7 +23,11 @@
* prior written permission. For written permission, please contact
* [EMAIL PROTECTED]
*
- * 5. Redistributions of any form whatsoever must retain the following
+ * 5. Products derived from this software may not be called "Apache"
+ * nor may "Apache" appear in their names without prior written
+ * permission of the Apache Group.
+ *
+ * 6. Redistributions of any form whatsoever must retain the following
* acknowledgment:
* "This product includes software developed by the Apache Group
* for use in the Apache HTTP server project (http://www.apache.org/)."
1.10 +5 -1 apache-1.3/src/main/util_date.c
Index: util_date.c
===================================================================
RCS file: /export/home/cvs/apache-1.3/src/main/util_date.c,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- util_date.c 1998/03/17 08:21:05 1.9
+++ util_date.c 1998/03/31 12:52:49 1.10
@@ -23,7 +23,11 @@
* prior written permission. For written permission, please contact
* [EMAIL PROTECTED]
*
- * 5. Redistributions of any form whatsoever must retain the following
+ * 5. Products derived from this software may not be called "Apache"
+ * nor may "Apache" appear in their names without prior written
+ * permission of the Apache Group.
+ *
+ * 6. Redistributions of any form whatsoever must retain the following
* acknowledgment:
* "This product includes software developed by the Apache Group
* for use in the Apache HTTP server project (http://www.apache.org/)."
1.13 +5 -1 apache-1.3/src/main/util_md5.c
Index: util_md5.c
===================================================================
RCS file: /export/home/cvs/apache-1.3/src/main/util_md5.c,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -r1.12 -r1.13
--- util_md5.c 1998/01/07 16:46:23 1.12
+++ util_md5.c 1998/03/31 12:52:50 1.13
@@ -23,7 +23,11 @@
* prior written permission. For written permission, please contact
* [EMAIL PROTECTED]
*
- * 5. Redistributions of any form whatsoever must retain the following
+ * 5. Products derived from this software may not be called "Apache"
+ * nor may "Apache" appear in their names without prior written
+ * permission of the Apache Group.
+ *
+ * 6. Redistributions of any form whatsoever must retain the following
* acknowledgment:
* "This product includes software developed by the Apache Group
* for use in the Apache HTTP server project (http://www.apache.org/)."
1.105 +5 -1 apache-1.3/src/main/util_script.c
Index: util_script.c
===================================================================
RCS file: /export/home/cvs/apache-1.3/src/main/util_script.c,v
retrieving revision 1.104
retrieving revision 1.105
diff -u -r1.104 -r1.105
--- util_script.c 1998/03/28 11:58:28 1.104
+++ util_script.c 1998/03/31 12:52:50 1.105
@@ -23,7 +23,11 @@
* prior written permission. For written permission, please contact
* [EMAIL PROTECTED]
*
- * 5. Redistributions of any form whatsoever must retain the following
+ * 5. Products derived from this software may not be called "Apache"
+ * nor may "Apache" appear in their names without prior written
+ * permission of the Apache Group.
+ *
+ * 6. Redistributions of any form whatsoever must retain the following
* acknowledgment:
* "This product includes software developed by the Apache Group
* for use in the Apache HTTP server project (http://www.apache.org/)."
1.17 +5 -1 apache-1.3/src/main/util_uri.c
Index: util_uri.c
===================================================================
RCS file: /export/home/cvs/apache-1.3/src/main/util_uri.c,v
retrieving revision 1.16
retrieving revision 1.17
diff -u -r1.16 -r1.17
--- util_uri.c 1998/03/27 10:06:52 1.16
+++ util_uri.c 1998/03/31 12:52:51 1.17
@@ -22,7 +22,11 @@
* endorse or promote products derived from this software without
* prior written permission.
*
- * 5. Redistributions of any form whatsoever must retain the following
+ * 5. Products derived from this software may not be called "Apache"
+ * nor may "Apache" appear in their names without prior written
+ * permission of the Apache Group.
+ *
+ * 6. Redistributions of any form whatsoever must retain the following
* acknowledgment:
* "This product includes software developed by the Apache Group
* for use in the Apache HTTP server project (http://www.apache.org/)."
1.28 +5 -1 apache-1.3/src/modules/example/mod_example.c
Index: mod_example.c
===================================================================
RCS file: /export/home/cvs/apache-1.3/src/modules/example/mod_example.c,v
retrieving revision 1.27
retrieving revision 1.28
diff -u -r1.27 -r1.28
--- mod_example.c 1998/03/13 19:20:16 1.27
+++ mod_example.c 1998/03/31 12:52:57 1.28
@@ -23,7 +23,11 @@
* prior written permission. For written permission, please contact
* [EMAIL PROTECTED]
*
- * 5. Redistributions of any form whatsoever must retain the following
+ * 5. Products derived from this software may not be called "Apache"
+ * nor may "Apache" appear in their names without prior written
+ * permission of the Apache Group.
+ *
+ * 6. Redistributions of any form whatsoever must retain the following
* acknowledgment:
* "This product includes software developed by the Apache Group
* for use in the Apache HTTP server project (http://www.apache.org/)."
1.5 +5 -1 apache-1.3/src/modules/experimental/mod_mmap_static.c
Index: mod_mmap_static.c
===================================================================
RCS file:
/export/home/cvs/apache-1.3/src/modules/experimental/mod_mmap_static.c,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- mod_mmap_static.c 1998/03/17 18:54:58 1.4
+++ mod_mmap_static.c 1998/03/31 12:52:58 1.5
@@ -23,7 +23,11 @@
* prior written permission. For written permission, please contact
* [EMAIL PROTECTED]
*
- * 5. Redistributions of any form whatsoever must retain the following
+ * 5. Products derived from this software may not be called "Apache"
+ * nor may "Apache" appear in their names without prior written
+ * permission of the Apache Group.
+ *
+ * 6. Redistributions of any form whatsoever must retain the following
* acknowledgment:
* "This product includes software developed by the Apache Group
* for use in the Apache HTTP server project (http://www.apache.org/)."
1.49 +5 -1 apache-1.3/src/modules/proxy/mod_proxy.c
Index: mod_proxy.c
===================================================================
RCS file: /export/home/cvs/apache-1.3/src/modules/proxy/mod_proxy.c,v
retrieving revision 1.48
retrieving revision 1.49
diff -u -r1.48 -r1.49
--- mod_proxy.c 1998/03/26 10:10:49 1.48
+++ mod_proxy.c 1998/03/31 12:52:59 1.49
@@ -23,7 +23,11 @@
* prior written permission. For written permission, please contact
* [EMAIL PROTECTED]
*
- * 5. Redistributions of any form whatsoever must retain the following
+ * 5. Products derived from this software may not be called "Apache"
+ * nor may "Apache" appear in their names without prior written
+ * permission of the Apache Group.
+ *
+ * 6. Redistributions of any form whatsoever must retain the following
* acknowledgment:
* "This product includes software developed by the Apache Group
* for use in the Apache HTTP server project (http://www.apache.org/)."
1.32 +5 -1 apache-1.3/src/modules/proxy/mod_proxy.h
Index: mod_proxy.h
===================================================================
RCS file: /export/home/cvs/apache-1.3/src/modules/proxy/mod_proxy.h,v
retrieving revision 1.31
retrieving revision 1.32
diff -u -r1.31 -r1.32
--- mod_proxy.h 1998/03/02 06:51:15 1.31
+++ mod_proxy.h 1998/03/31 12:53:00 1.32
@@ -23,7 +23,11 @@
* prior written permission. For written permission, please contact
* [EMAIL PROTECTED]
*
- * 5. Redistributions of any form whatsoever must retain the following
+ * 5. Products derived from this software may not be called "Apache"
+ * nor may "Apache" appear in their names without prior written
+ * permission of the Apache Group.
+ *
+ * 6. Redistributions of any form whatsoever must retain the following
* acknowledgment:
* "This product includes software developed by the Apache Group
* for use in the Apache HTTP server project (http://www.apache.org/)."
1.35 +5 -1 apache-1.3/src/modules/proxy/proxy_cache.c
Index: proxy_cache.c
===================================================================
RCS file: /export/home/cvs/apache-1.3/src/modules/proxy/proxy_cache.c,v
retrieving revision 1.34
retrieving revision 1.35
diff -u -r1.34 -r1.35
--- proxy_cache.c 1998/02/13 09:57:27 1.34
+++ proxy_cache.c 1998/03/31 12:53:01 1.35
@@ -23,7 +23,11 @@
* prior written permission. For written permission, please contact
* [EMAIL PROTECTED]
*
- * 5. Redistributions of any form whatsoever must retain the following
+ * 5. Products derived from this software may not be called "Apache"
+ * nor may "Apache" appear in their names without prior written
+ * permission of the Apache Group.
+ *
+ * 6. Redistributions of any form whatsoever must retain the following
* acknowledgment:
* "This product includes software developed by the Apache Group
* for use in the Apache HTTP server project (http://www.apache.org/)."
1.26 +5 -1 apache-1.3/src/modules/proxy/proxy_connect.c
Index: proxy_connect.c
===================================================================
RCS file: /export/home/cvs/apache-1.3/src/modules/proxy/proxy_connect.c,v
retrieving revision 1.25
retrieving revision 1.26
diff -u -r1.25 -r1.26
--- proxy_connect.c 1998/03/30 22:11:25 1.25
+++ proxy_connect.c 1998/03/31 12:53:01 1.26
@@ -23,7 +23,11 @@
* prior written permission. For written permission, please contact
* [EMAIL PROTECTED]
*
- * 5. Redistributions of any form whatsoever must retain the following
+ * 5. Products derived from this software may not be called "Apache"
+ * nor may "Apache" appear in their names without prior written
+ * permission of the Apache Group.
+ *
+ * 6. Redistributions of any form whatsoever must retain the following
* acknowledgment:
* "This product includes software developed by the Apache Group
* for use in the Apache HTTP server project (http://www.apache.org/)."
1.56 +5 -1 apache-1.3/src/modules/proxy/proxy_ftp.c
Index: proxy_ftp.c
===================================================================
RCS file: /export/home/cvs/apache-1.3/src/modules/proxy/proxy_ftp.c,v
retrieving revision 1.55
retrieving revision 1.56
diff -u -r1.55 -r1.56
--- proxy_ftp.c 1998/03/25 15:23:00 1.55
+++ proxy_ftp.c 1998/03/31 12:53:02 1.56
@@ -23,7 +23,11 @@
* prior written permission. For written permission, please contact
* [EMAIL PROTECTED]
*
- * 5. Redistributions of any form whatsoever must retain the following
+ * 5. Products derived from this software may not be called "Apache"
+ * nor may "Apache" appear in their names without prior written
+ * permission of the Apache Group.
+ *
+ * 6. Redistributions of any form whatsoever must retain the following
* acknowledgment:
* "This product includes software developed by the Apache Group
* for use in the Apache HTTP server project (http://www.apache.org/)."
1.45 +5 -1 apache-1.3/src/modules/proxy/proxy_http.c
Index: proxy_http.c
===================================================================
RCS file: /export/home/cvs/apache-1.3/src/modules/proxy/proxy_http.c,v
retrieving revision 1.44
retrieving revision 1.45
diff -u -r1.44 -r1.45
--- proxy_http.c 1998/03/22 22:21:01 1.44
+++ proxy_http.c 1998/03/31 12:53:02 1.45
@@ -23,7 +23,11 @@
* prior written permission. For written permission, please contact
* [EMAIL PROTECTED]
*
- * 5. Redistributions of any form whatsoever must retain the following
+ * 5. Products derived from this software may not be called "Apache"
+ * nor may "Apache" appear in their names without prior written
+ * permission of the Apache Group.
+ *
+ * 6. Redistributions of any form whatsoever must retain the following
* acknowledgment:
* "This product includes software developed by the Apache Group
* for use in the Apache HTTP server project (http://www.apache.org/)."
1.56 +5 -1 apache-1.3/src/modules/proxy/proxy_util.c
Index: proxy_util.c
===================================================================
RCS file: /export/home/cvs/apache-1.3/src/modules/proxy/proxy_util.c,v
retrieving revision 1.55
retrieving revision 1.56
diff -u -r1.55 -r1.56
--- proxy_util.c 1998/03/30 04:17:36 1.55
+++ proxy_util.c 1998/03/31 12:53:03 1.56
@@ -23,7 +23,11 @@
* prior written permission. For written permission, please contact
* [EMAIL PROTECTED]
*
- * 5. Redistributions of any form whatsoever must retain the following
+ * 5. Products derived from this software may not be called "Apache"
+ * nor may "Apache" appear in their names without prior written
+ * permission of the Apache Group.
+ *
+ * 6. Redistributions of any form whatsoever must retain the following
* acknowledgment:
* "This product includes software developed by the Apache Group
* for use in the Apache HTTP server project (http://www.apache.org/)."
1.33 +5 -1 apache-1.3/src/modules/standard/mod_access.c
Index: mod_access.c
===================================================================
RCS file: /export/home/cvs/apache-1.3/src/modules/standard/mod_access.c,v
retrieving revision 1.32
retrieving revision 1.33
diff -u -r1.32 -r1.33
--- mod_access.c 1998/03/13 19:20:27 1.32
+++ mod_access.c 1998/03/31 12:53:05 1.33
@@ -23,7 +23,11 @@
* prior written permission. For written permission, please contact
* [EMAIL PROTECTED]
*
- * 5. Redistributions of any form whatsoever must retain the following
+ * 5. Products derived from this software may not be called "Apache"
+ * nor may "Apache" appear in their names without prior written
+ * permission of the Apache Group.
+ *
+ * 6. Redistributions of any form whatsoever must retain the following
* acknowledgment:
* "This product includes software developed by the Apache Group
* for use in the Apache HTTP server project (http://www.apache.org/)."
1.25 +5 -1 apache-1.3/src/modules/standard/mod_actions.c
Index: mod_actions.c
===================================================================
RCS file: /export/home/cvs/apache-1.3/src/modules/standard/mod_actions.c,v
retrieving revision 1.24
retrieving revision 1.25
diff -u -r1.24 -r1.25
--- mod_actions.c 1998/03/13 19:20:27 1.24
+++ mod_actions.c 1998/03/31 12:53:06 1.25
@@ -23,7 +23,11 @@
* prior written permission. For written permission, please contact
* [EMAIL PROTECTED]
*
- * 5. Redistributions of any form whatsoever must retain the following
+ * 5. Products derived from this software may not be called "Apache"
+ * nor may "Apache" appear in their names without prior written
+ * permission of the Apache Group.
+ *
+ * 6. Redistributions of any form whatsoever must retain the following
* acknowledgment:
* "This product includes software developed by the Apache Group
* for use in the Apache HTTP server project (http://www.apache.org/)."
1.33 +5 -1 apache-1.3/src/modules/standard/mod_alias.c
Index: mod_alias.c
===================================================================
RCS file: /export/home/cvs/apache-1.3/src/modules/standard/mod_alias.c,v
retrieving revision 1.32
retrieving revision 1.33
diff -u -r1.32 -r1.33
--- mod_alias.c 1998/03/13 19:20:28 1.32
+++ mod_alias.c 1998/03/31 12:53:06 1.33
@@ -23,7 +23,11 @@
* prior written permission. For written permission, please contact
* [EMAIL PROTECTED]
*
- * 5. Redistributions of any form whatsoever must retain the following
+ * 5. Products derived from this software may not be called "Apache"
+ * nor may "Apache" appear in their names without prior written
+ * permission of the Apache Group.
+ *
+ * 6. Redistributions of any form whatsoever must retain the following
* acknowledgment:
* "This product includes software developed by the Apache Group
* for use in the Apache HTTP server project (http://www.apache.org/)."
1.26 +5 -1 apache-1.3/src/modules/standard/mod_asis.c
Index: mod_asis.c
===================================================================
RCS file: /export/home/cvs/apache-1.3/src/modules/standard/mod_asis.c,v
retrieving revision 1.25
retrieving revision 1.26
diff -u -r1.25 -r1.26
--- mod_asis.c 1998/03/13 19:20:28 1.25
+++ mod_asis.c 1998/03/31 12:53:07 1.26
@@ -23,7 +23,11 @@
* prior written permission. For written permission, please contact
* [EMAIL PROTECTED]
*
- * 5. Redistributions of any form whatsoever must retain the following
+ * 5. Products derived from this software may not be called "Apache"
+ * nor may "Apache" appear in their names without prior written
+ * permission of the Apache Group.
+ *
+ * 6. Redistributions of any form whatsoever must retain the following
* acknowledgment:
* "This product includes software developed by the Apache Group
* for use in the Apache HTTP server project (http://www.apache.org/)."
1.34 +5 -1 apache-1.3/src/modules/standard/mod_auth.c
Index: mod_auth.c
===================================================================
RCS file: /export/home/cvs/apache-1.3/src/modules/standard/mod_auth.c,v
retrieving revision 1.33
retrieving revision 1.34
diff -u -r1.33 -r1.34
--- mod_auth.c 1998/03/13 19:20:29 1.33
+++ mod_auth.c 1998/03/31 12:53:07 1.34
@@ -23,7 +23,11 @@
* prior written permission. For written permission, please contact
* [EMAIL PROTECTED]
*
- * 5. Redistributions of any form whatsoever must retain the following
+ * 5. Products derived from this software may not be called "Apache"
+ * nor may "Apache" appear in their names without prior written
+ * permission of the Apache Group.
+ *
+ * 6. Redistributions of any form whatsoever must retain the following
* acknowledgment:
* "This product includes software developed by the Apache Group
* for use in the Apache HTTP server project (http://www.apache.org/)."
1.32 +5 -1 apache-1.3/src/modules/standard/mod_auth_anon.c
Index: mod_auth_anon.c
===================================================================
RCS file: /export/home/cvs/apache-1.3/src/modules/standard/mod_auth_anon.c,v
retrieving revision 1.31
retrieving revision 1.32
diff -u -r1.31 -r1.32
--- mod_auth_anon.c 1998/03/13 19:20:29 1.31
+++ mod_auth_anon.c 1998/03/31 12:53:07 1.32
@@ -23,7 +23,11 @@
* prior written permission. For written permission, please contact
* [EMAIL PROTECTED]
*
- * 5. Redistributions of any form whatsoever must retain the following
+ * 5. Products derived from this software may not be called "Apache"
+ * nor may "Apache" appear in their names without prior written
+ * permission of the Apache Group.
+ *
+ * 6. Redistributions of any form whatsoever must retain the following
* acknowledgment:
* "This product includes software developed by the Apache Group
* for use in the Apache HTTP server project (http://www.apache.org/)."
1.29 +5 -1 apache-1.3/src/modules/standard/mod_auth_db.c
Index: mod_auth_db.c
===================================================================
RCS file: /export/home/cvs/apache-1.3/src/modules/standard/mod_auth_db.c,v
retrieving revision 1.28
retrieving revision 1.29
diff -u -r1.28 -r1.29
--- mod_auth_db.c 1998/03/20 09:42:46 1.28
+++ mod_auth_db.c 1998/03/31 12:53:08 1.29
@@ -23,7 +23,11 @@
* prior written permission. For written permission, please contact
* [EMAIL PROTECTED]
*
- * 5. Redistributions of any form whatsoever must retain the following
+ * 5. Products derived from this software may not be called "Apache"
+ * nor may "Apache" appear in their names without prior written
+ * permission of the Apache Group.
+ *
+ * 6. Redistributions of any form whatsoever must retain the following
* acknowledgment:
* "This product includes software developed by the Apache Group
* for use in the Apache HTTP server project (http://www.apache.org/)."
1.36 +5 -1 apache-1.3/src/modules/standard/mod_auth_dbm.c
Index: mod_auth_dbm.c
===================================================================
RCS file: /export/home/cvs/apache-1.3/src/modules/standard/mod_auth_dbm.c,v
retrieving revision 1.35
retrieving revision 1.36
diff -u -r1.35 -r1.36
--- mod_auth_dbm.c 1998/03/13 19:20:31 1.35
+++ mod_auth_dbm.c 1998/03/31 12:53:08 1.36
@@ -23,7 +23,11 @@
* prior written permission. For written permission, please contact
* [EMAIL PROTECTED]
*
- * 5. Redistributions of any form whatsoever must retain the following
+ * 5. Products derived from this software may not be called "Apache"
+ * nor may "Apache" appear in their names without prior written
+ * permission of the Apache Group.
+ *
+ * 6. Redistributions of any form whatsoever must retain the following
* acknowledgment:
* "This product includes software developed by the Apache Group
* for use in the Apache HTTP server project (http://www.apache.org/)."
1.72 +5 -1 apache-1.3/src/modules/standard/mod_autoindex.c
Index: mod_autoindex.c
===================================================================
RCS file: /export/home/cvs/apache-1.3/src/modules/standard/mod_autoindex.c,v
retrieving revision 1.71
retrieving revision 1.72
diff -u -r1.71 -r1.72
--- mod_autoindex.c 1998/03/13 19:20:31 1.71
+++ mod_autoindex.c 1998/03/31 12:53:09 1.72
@@ -23,7 +23,11 @@
* prior written permission. For written permission, please contact
* [EMAIL PROTECTED]
*
- * 5. Redistributions of any form whatsoever must retain the following
+ * 5. Products derived from this software may not be called "Apache"
+ * nor may "Apache" appear in their names without prior written
+ * permission of the Apache Group.
+ *
+ * 6. Redistributions of any form whatsoever must retain the following
* acknowledgment:
* "This product includes software developed by the Apache Group
* for use in the Apache HTTP server project (http://www.apache.org/)."
1.27 +5 -1 apache-1.3/src/modules/standard/mod_cern_meta.c
Index: mod_cern_meta.c
===================================================================
RCS file: /export/home/cvs/apache-1.3/src/modules/standard/mod_cern_meta.c,v
retrieving revision 1.26
retrieving revision 1.27
diff -u -r1.26 -r1.27
--- mod_cern_meta.c 1998/03/13 19:20:32 1.26
+++ mod_cern_meta.c 1998/03/31 12:53:10 1.27
@@ -23,7 +23,11 @@
* prior written permission. For written permission, please contact
* [EMAIL PROTECTED]
*
- * 5. Redistributions of any form whatsoever must retain the following
+ * 5. Products derived from this software may not be called "Apache"
+ * nor may "Apache" appear in their names without prior written
+ * permission of the Apache Group.
+ *
+ * 6. Redistributions of any form whatsoever must retain the following
* acknowledgment:
* "This product includes software developed by the Apache Group
* for use in the Apache HTTP server project (http://www.apache.org/)."
1.72 +5 -1 apache-1.3/src/modules/standard/mod_cgi.c
Index: mod_cgi.c
===================================================================
RCS file: /export/home/cvs/apache-1.3/src/modules/standard/mod_cgi.c,v
retrieving revision 1.71
retrieving revision 1.72
diff -u -r1.71 -r1.72
--- mod_cgi.c 1998/03/13 19:20:32 1.71
+++ mod_cgi.c 1998/03/31 12:53:10 1.72
@@ -23,7 +23,11 @@
* prior written permission. For written permission, please contact
* [EMAIL PROTECTED]
*
- * 5. Redistributions of any form whatsoever must retain the following
+ * 5. Products derived from this software may not be called "Apache"
+ * nor may "Apache" appear in their names without prior written
+ * permission of the Apache Group.
+ *
+ * 6. Redistributions of any form whatsoever must retain the following
* acknowledgment:
* "This product includes software developed by the Apache Group
* for use in the Apache HTTP server project (http://www.apache.org/)."
1.33 +5 -1 apache-1.3/src/modules/standard/mod_digest.c
Index: mod_digest.c
===================================================================
RCS file: /export/home/cvs/apache-1.3/src/modules/standard/mod_digest.c,v
retrieving revision 1.32
retrieving revision 1.33
diff -u -r1.32 -r1.33
--- mod_digest.c 1998/03/30 08:06:50 1.32
+++ mod_digest.c 1998/03/31 12:53:11 1.33
@@ -23,7 +23,11 @@
* prior written permission. For written permission, please contact
* [EMAIL PROTECTED]
*
- * 5. Redistributions of any form whatsoever must retain the following
+ * 5. Products derived from this software may not be called "Apache"
+ * nor may "Apache" appear in their names without prior written
+ * permission of the Apache Group.
+ *
+ * 6. Redistributions of any form whatsoever must retain the following
* acknowledgment:
* "This product includes software developed by the Apache Group
* for use in the Apache HTTP server project (http://www.apache.org/)."
1.49 +5 -1 apache-1.3/src/modules/standard/mod_dir.c
Index: mod_dir.c
===================================================================
RCS file: /export/home/cvs/apache-1.3/src/modules/standard/mod_dir.c,v
retrieving revision 1.48
retrieving revision 1.49
diff -u -r1.48 -r1.49
--- mod_dir.c 1998/03/13 19:20:33 1.48
+++ mod_dir.c 1998/03/31 12:53:11 1.49
@@ -23,7 +23,11 @@
* prior written permission. For written permission, please contact
* [EMAIL PROTECTED]
*
- * 5. Redistributions of any form whatsoever must retain the following
+ * 5. Products derived from this software may not be called "Apache"
+ * nor may "Apache" appear in their names without prior written
+ * permission of the Apache Group.
+ *
+ * 6. Redistributions of any form whatsoever must retain the following
* acknowledgment:
* "This product includes software developed by the Apache Group
* for use in the Apache HTTP server project (http://www.apache.org/)."
1.22 +5 -1 apache-1.3/src/modules/standard/mod_env.c
Index: mod_env.c
===================================================================
RCS file: /export/home/cvs/apache-1.3/src/modules/standard/mod_env.c,v
retrieving revision 1.21
retrieving revision 1.22
diff -u -r1.21 -r1.22
--- mod_env.c 1998/03/13 19:20:34 1.21
+++ mod_env.c 1998/03/31 12:53:11 1.22
@@ -23,7 +23,11 @@
* prior written permission. For written permission, please contact
* [EMAIL PROTECTED]
*
- * 5. Redistributions of any form whatsoever must retain the following
+ * 5. Products derived from this software may not be called "Apache"
+ * nor may "Apache" appear in their names without prior written
+ * permission of the Apache Group.
+ *
+ * 6. Redistributions of any form whatsoever must retain the following
* acknowledgment:
* "This product includes software developed by the Apache Group
* for use in the Apache HTTP server project (http://www.apache.org/)."
1.26 +5 -1 apache-1.3/src/modules/standard/mod_expires.c
Index: mod_expires.c
===================================================================
RCS file: /export/home/cvs/apache-1.3/src/modules/standard/mod_expires.c,v
retrieving revision 1.25
retrieving revision 1.26
diff -u -r1.25 -r1.26
--- mod_expires.c 1998/03/28 11:58:32 1.25
+++ mod_expires.c 1998/03/31 12:53:12 1.26
@@ -23,7 +23,11 @@
* prior written permission. For written permission, please contact
* [EMAIL PROTECTED]
*
- * 5. Redistributions of any form whatsoever must retain the following
+ * 5. Products derived from this software may not be called "Apache"
+ * nor may "Apache" appear in their names without prior written
+ * permission of the Apache Group.
+ *
+ * 6. Redistributions of any form whatsoever must retain the following
* acknowledgment:
* "This product includes software developed by the Apache Group
* for use in the Apache HTTP server project (http://www.apache.org/)."
1.16 +5 -1 apache-1.3/src/modules/standard/mod_headers.c
Index: mod_headers.c
===================================================================
RCS file: /export/home/cvs/apache-1.3/src/modules/standard/mod_headers.c,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -r1.15 -r1.16
--- mod_headers.c 1998/03/13 19:20:35 1.15
+++ mod_headers.c 1998/03/31 12:53:12 1.16
@@ -23,7 +23,11 @@
* prior written permission. For written permission, please contact
* [EMAIL PROTECTED]
*
- * 5. Redistributions of any form whatsoever must retain the following
+ * 5. Products derived from this software may not be called "Apache"
+ * nor may "Apache" appear in their names without prior written
+ * permission of the Apache Group.
+ *
+ * 6. Redistributions of any form whatsoever must retain the following
* acknowledgment:
* "This product includes software developed by the Apache Group
* for use in the Apache HTTP server project (http://www.apache.org/)."
1.44 +5 -1 apache-1.3/src/modules/standard/mod_imap.c
Index: mod_imap.c
===================================================================
RCS file: /export/home/cvs/apache-1.3/src/modules/standard/mod_imap.c,v
retrieving revision 1.43
retrieving revision 1.44
diff -u -r1.43 -r1.44
--- mod_imap.c 1998/03/13 19:20:36 1.43
+++ mod_imap.c 1998/03/31 12:53:13 1.44
@@ -23,7 +23,11 @@
* prior written permission. For written permission, please contact
* [EMAIL PROTECTED]
*
- * 5. Redistributions of any form whatsoever must retain the following
+ * 5. Products derived from this software may not be called "Apache"
+ * nor may "Apache" appear in their names without prior written
+ * permission of the Apache Group.
+ *
+ * 6. Redistributions of any form whatsoever must retain the following
* acknowledgment:
* "This product includes software developed by the Apache Group
* for use in the Apache HTTP server project (http://www.apache.org/)."
1.79 +5 -1 apache-1.3/src/modules/standard/mod_include.c
Index: mod_include.c
===================================================================
RCS file: /export/home/cvs/apache-1.3/src/modules/standard/mod_include.c,v
retrieving revision 1.78
retrieving revision 1.79
diff -u -r1.78 -r1.79
--- mod_include.c 1998/03/28 11:58:32 1.78
+++ mod_include.c 1998/03/31 12:53:14 1.79
@@ -23,7 +23,11 @@
* prior written permission. For written permission, please contact
* [EMAIL PROTECTED]
*
- * 5. Redistributions of any form whatsoever must retain the following
+ * 5. Products derived from this software may not be called "Apache"
+ * nor may "Apache" appear in their names without prior written
+ * permission of the Apache Group.
+ *
+ * 6. Redistributions of any form whatsoever must retain the following
* acknowledgment:
* "This product includes software developed by the Apache Group
* for use in the Apache HTTP server project (http://www.apache.org/)."
1.39 +5 -1 apache-1.3/src/modules/standard/mod_info.c
Index: mod_info.c
===================================================================
RCS file: /export/home/cvs/apache-1.3/src/modules/standard/mod_info.c,v
retrieving revision 1.38
retrieving revision 1.39
diff -u -r1.38 -r1.39
--- mod_info.c 1998/03/13 19:20:38 1.38
+++ mod_info.c 1998/03/31 12:53:14 1.39
@@ -23,7 +23,11 @@
* prior written permission. For written permission, please contact
* [EMAIL PROTECTED]
*
- * 5. Redistributions of any form whatsoever must retain the following
+ * 5. Products derived from this software may not be called "Apache"
+ * nor may "Apache" appear in their names without prior written
+ * permission of the Apache Group.
+ *
+ * 6. Redistributions of any form whatsoever must retain the following
* acknowledgment:
* "This product includes software developed by the Apache Group
* for use in the Apache HTTP server project (http://www.apache.org/)."
1.22 +5 -1 apache-1.3/src/modules/standard/mod_log_agent.c
Index: mod_log_agent.c
===================================================================
RCS file: /export/home/cvs/apache-1.3/src/modules/standard/mod_log_agent.c,v
retrieving revision 1.21
retrieving revision 1.22
diff -u -r1.21 -r1.22
--- mod_log_agent.c 1998/03/13 19:20:38 1.21
+++ mod_log_agent.c 1998/03/31 12:53:15 1.22
@@ -23,7 +23,11 @@
* prior written permission. For written permission, please contact
* [EMAIL PROTECTED]
*
- * 5. Redistributions of any form whatsoever must retain the following
+ * 5. Products derived from this software may not be called "Apache"
+ * nor may "Apache" appear in their names without prior written
+ * permission of the Apache Group.
+ *
+ * 6. Redistributions of any form whatsoever must retain the following
* acknowledgment:
* "This product includes software developed by the Apache Group
* for use in the Apache HTTP server project (http://www.apache.org/)."
1.52 +5 -1 apache-1.3/src/modules/standard/mod_log_config.c
Index: mod_log_config.c
===================================================================
RCS file: /export/home/cvs/apache-1.3/src/modules/standard/mod_log_config.c,v
retrieving revision 1.51
retrieving revision 1.52
diff -u -r1.51 -r1.52
--- mod_log_config.c 1998/03/28 11:58:33 1.51
+++ mod_log_config.c 1998/03/31 12:53:15 1.52
@@ -23,7 +23,11 @@
* prior written permission. For written permission, please contact
* [EMAIL PROTECTED]
*
- * 5. Redistributions of any form whatsoever must retain the following
+ * 5. Products derived from this software may not be called "Apache"
+ * nor may "Apache" appear in their names without prior written
+ * permission of the Apache Group.
+ *
+ * 6. Redistributions of any form whatsoever must retain the following
* acknowledgment:
* "This product includes software developed by the Apache Group
* for use in the Apache HTTP server project (http://www.apache.org/)."
1.23 +5 -1 apache-1.3/src/modules/standard/mod_log_referer.c
Index: mod_log_referer.c
===================================================================
RCS file: /export/home/cvs/apache-1.3/src/modules/standard/mod_log_referer.c,v
retrieving revision 1.22
retrieving revision 1.23
diff -u -r1.22 -r1.23
--- mod_log_referer.c 1998/03/13 19:20:39 1.22
+++ mod_log_referer.c 1998/03/31 12:53:16 1.23
@@ -23,7 +23,11 @@
* prior written permission. For written permission, please contact
* [EMAIL PROTECTED]
*
- * 5. Redistributions of any form whatsoever must retain the following
+ * 5. Products derived from this software may not be called "Apache"
+ * nor may "Apache" appear in their names without prior written
+ * permission of the Apache Group.
+ *
+ * 6. Redistributions of any form whatsoever must retain the following
* acknowledgment:
* "This product includes software developed by the Apache Group
* for use in the Apache HTTP server project (http://www.apache.org/)."
1.38 +5 -1 apache-1.3/src/modules/standard/mod_mime.c
Index: mod_mime.c
===================================================================
RCS file: /export/home/cvs/apache-1.3/src/modules/standard/mod_mime.c,v
retrieving revision 1.37
retrieving revision 1.38
diff -u -r1.37 -r1.38
--- mod_mime.c 1998/03/14 12:26:25 1.37
+++ mod_mime.c 1998/03/31 12:53:16 1.38
@@ -23,7 +23,11 @@
* prior written permission. For written permission, please contact
* [EMAIL PROTECTED]
*
- * 5. Redistributions of any form whatsoever must retain the following
+ * 5. Products derived from this software may not be called "Apache"
+ * nor may "Apache" appear in their names without prior written
+ * permission of the Apache Group.
+ *
+ * 6. Redistributions of any form whatsoever must retain the following
* acknowledgment:
* "This product includes software developed by the Apache Group
* for use in the Apache HTTP server project (http://www.apache.org/)."
1.29 +5 -1 apache-1.3/src/modules/standard/mod_mime_magic.c
Index: mod_mime_magic.c
===================================================================
RCS file: /export/home/cvs/apache-1.3/src/modules/standard/mod_mime_magic.c,v
retrieving revision 1.28
retrieving revision 1.29
diff -u -r1.28 -r1.29
--- mod_mime_magic.c 1998/03/13 19:20:40 1.28
+++ mod_mime_magic.c 1998/03/31 12:53:17 1.29
@@ -23,7 +23,11 @@
* prior written permission. For written permission, please contact
* [EMAIL PROTECTED]
*
- * 5. Redistributions of any form whatsoever must retain the following
+ * 5. Products derived from this software may not be called "Apache"
+ * nor may "Apache" appear in their names without prior written
+ * permission of the Apache Group.
+ *
+ * 6. Redistributions of any form whatsoever must retain the following
* acknowledgment:
* "This product includes software developed by the Apache Group
* for use in the Apache HTTP server project (http://www.apache.org/)."
1.76 +5 -1 apache-1.3/src/modules/standard/mod_negotiation.c
Index: mod_negotiation.c
===================================================================
RCS file: /export/home/cvs/apache-1.3/src/modules/standard/mod_negotiation.c,v
retrieving revision 1.75
retrieving revision 1.76
diff -u -r1.75 -r1.76
--- mod_negotiation.c 1998/03/13 19:20:41 1.75
+++ mod_negotiation.c 1998/03/31 12:53:18 1.76
@@ -23,7 +23,11 @@
* prior written permission. For written permission, please contact
* [EMAIL PROTECTED]
*
- * 5. Redistributions of any form whatsoever must retain the following
+ * 5. Products derived from this software may not be called "Apache"
+ * nor may "Apache" appear in their names without prior written
+ * permission of the Apache Group.
+ *
+ * 6. Redistributions of any form whatsoever must retain the following
* acknowledgment:
* "This product includes software developed by the Apache Group
* for use in the Apache HTTP server project (http://www.apache.org/)."
1.98 +5 -1 apache-1.3/src/modules/standard/mod_rewrite.c
Index: mod_rewrite.c
===================================================================
RCS file: /export/home/cvs/apache-1.3/src/modules/standard/mod_rewrite.c,v
retrieving revision 1.97
retrieving revision 1.98
diff -u -r1.97 -r1.98
--- mod_rewrite.c 1998/03/28 11:58:34 1.97
+++ mod_rewrite.c 1998/03/31 12:53:19 1.98
@@ -23,7 +23,11 @@
* prior written permission. For written permission, please contact
* [EMAIL PROTECTED]
*
- * 5. Redistributions of any form whatsoever must retain the following
+ * 5. Products derived from this software may not be called "Apache"
+ * nor may "Apache" appear in their names without prior written
+ * permission of the Apache Group.
+ *
+ * 6. Redistributions of any form whatsoever must retain the following
* acknowledgment:
* "This product includes software developed by the Apache Group
* for use in the Apache HTTP server project (http://www.apache.org/)."
1.49 +5 -1 apache-1.3/src/modules/standard/mod_rewrite.h
Index: mod_rewrite.h
===================================================================
RCS file: /export/home/cvs/apache-1.3/src/modules/standard/mod_rewrite.h,v
retrieving revision 1.48
retrieving revision 1.49
diff -u -r1.48 -r1.49
--- mod_rewrite.h 1998/03/06 13:47:41 1.48
+++ mod_rewrite.h 1998/03/31 12:53:20 1.49
@@ -23,7 +23,11 @@
* prior written permission. For written permission, please contact
* [EMAIL PROTECTED]
*
- * 5. Redistributions of any form whatsoever must retain the following
+ * 5. Products derived from this software may not be called "Apache"
+ * nor may "Apache" appear in their names without prior written
+ * permission of the Apache Group.
+ *
+ * 6. Redistributions of any form whatsoever must retain the following
* acknowledgment:
* "This product includes software developed by the Apache Group
* for use in the Apache HTTP server project (http://www.apache.org/)."
1.20 +5 -1 apache-1.3/src/modules/standard/mod_setenvif.c
Index: mod_setenvif.c
===================================================================
RCS file: /export/home/cvs/apache-1.3/src/modules/standard/mod_setenvif.c,v
retrieving revision 1.19
retrieving revision 1.20
diff -u -r1.19 -r1.20
--- mod_setenvif.c 1998/03/15 21:39:55 1.19
+++ mod_setenvif.c 1998/03/31 12:53:21 1.20
@@ -23,7 +23,11 @@
* prior written permission. For written permission, please contact
* [EMAIL PROTECTED]
*
- * 5. Redistributions of any form whatsoever must retain the following
+ * 5. Products derived from this software may not be called "Apache"
+ * nor may "Apache" appear in their names without prior written
+ * permission of the Apache Group.
+ *
+ * 6. Redistributions of any form whatsoever must retain the following
* acknowledgment:
* "This product includes software developed by the Apache Group
* for use in the Apache HTTP server project (http://www.apache.org/)."
1.17 +5 -1 apache-1.3/src/modules/standard/mod_so.c
Index: mod_so.c
===================================================================
RCS file: /export/home/cvs/apache-1.3/src/modules/standard/mod_so.c,v
retrieving revision 1.16
retrieving revision 1.17
diff -u -r1.16 -r1.17
--- mod_so.c 1998/03/25 12:57:42 1.16
+++ mod_so.c 1998/03/31 12:53:21 1.17
@@ -23,7 +23,11 @@
* prior written permission. For written permission, please contact
* [EMAIL PROTECTED]
*
- * 5. Redistributions of any form whatsoever must retain the following
+ * 5. Products derived from this software may not be called "Apache"
+ * nor may "Apache" appear in their names without prior written
+ * permission of the Apache Group.
+ *
+ * 6. Redistributions of any form whatsoever must retain the following
* acknowledgment:
* "This product includes software developed by the Apache Group
* for use in the Apache HTTP server project (http://www.apache.org/)."
1.17 +5 -1 apache-1.3/src/modules/standard/mod_speling.c
Index: mod_speling.c
===================================================================
RCS file: /export/home/cvs/apache-1.3/src/modules/standard/mod_speling.c,v
retrieving revision 1.16
retrieving revision 1.17
diff -u -r1.16 -r1.17
--- mod_speling.c 1998/03/13 19:20:45 1.16
+++ mod_speling.c 1998/03/31 12:53:22 1.17
@@ -24,7 +24,11 @@
* prior written permission. For written permission, please contact
* [EMAIL PROTECTED]
*
- * 5. Redistributions of any form whatsoever must retain the following
+ * 5. Products derived from this software may not be called "Apache"
+ * nor may "Apache" appear in their names without prior written
+ * permission of the Apache Group.
+ *
+ * 6. Redistributions of any form whatsoever must retain the following
* acknowledgment:
* "This product includes software developed by the Apache Group
* for use in the Apache HTTP server project (http://www.apache.org/)."
1.83 +5 -1 apache-1.3/src/modules/standard/mod_status.c
Index: mod_status.c
===================================================================
RCS file: /export/home/cvs/apache-1.3/src/modules/standard/mod_status.c,v
retrieving revision 1.82
retrieving revision 1.83
diff -u -r1.82 -r1.83
--- mod_status.c 1998/03/26 21:20:52 1.82
+++ mod_status.c 1998/03/31 12:53:22 1.83
@@ -23,7 +23,11 @@
* prior written permission. For written permission, please contact
* [EMAIL PROTECTED]
*
- * 5. Redistributions of any form whatsoever must retain the following
+ * 5. Products derived from this software may not be called "Apache"
+ * nor may "Apache" appear in their names without prior written
+ * permission of the Apache Group.
+ *
+ * 6. Redistributions of any form whatsoever must retain the following
* acknowledgment:
* "This product includes software developed by the Apache Group
* for use in the Apache HTTP server project (http://www.apache.org/)."
1.14 +5 -1 apache-1.3/src/modules/standard/mod_unique_id.c
Index: mod_unique_id.c
===================================================================
RCS file: /export/home/cvs/apache-1.3/src/modules/standard/mod_unique_id.c,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -r1.13 -r1.14
--- mod_unique_id.c 1998/02/23 00:05:41 1.13
+++ mod_unique_id.c 1998/03/31 12:53:23 1.14
@@ -23,7 +23,11 @@
* prior written permission. For written permission, please contact
* [EMAIL PROTECTED]
*
- * 5. Redistributions of any form whatsoever must retain the following
+ * 5. Products derived from this software may not be called "Apache"
+ * nor may "Apache" appear in their names without prior written
+ * permission of the Apache Group.
+ *
+ * 6. Redistributions of any form whatsoever must retain the following
* acknowledgment:
* "This product includes software developed by the Apache Group
* for use in the Apache HTTP server project (http://www.apache.org/)."
1.33 +5 -1 apache-1.3/src/modules/standard/mod_userdir.c
Index: mod_userdir.c
===================================================================
RCS file: /export/home/cvs/apache-1.3/src/modules/standard/mod_userdir.c,v
retrieving revision 1.32
retrieving revision 1.33
diff -u -r1.32 -r1.33
--- mod_userdir.c 1998/03/13 19:20:46 1.32
+++ mod_userdir.c 1998/03/31 12:53:24 1.33
@@ -23,7 +23,11 @@
* prior written permission. For written permission, please contact
* [EMAIL PROTECTED]
*
- * 5. Redistributions of any form whatsoever must retain the following
+ * 5. Products derived from this software may not be called "Apache"
+ * nor may "Apache" appear in their names without prior written
+ * permission of the Apache Group.
+ *
+ * 6. Redistributions of any form whatsoever must retain the following
* acknowledgment:
* "This product includes software developed by the Apache Group
* for use in the Apache HTTP server project (http://www.apache.org/)."
1.32 +5 -1 apache-1.3/src/modules/standard/mod_usertrack.c
Index: mod_usertrack.c
===================================================================
RCS file: /export/home/cvs/apache-1.3/src/modules/standard/mod_usertrack.c,v
retrieving revision 1.31
retrieving revision 1.32
diff -u -r1.31 -r1.32
--- mod_usertrack.c 1998/03/28 11:58:35 1.31
+++ mod_usertrack.c 1998/03/31 12:53:26 1.32
@@ -23,7 +23,11 @@
* prior written permission. For written permission, please contact
* [EMAIL PROTECTED]
*
- * 5. Redistributions of any form whatsoever must retain the following
+ * 5. Products derived from this software may not be called "Apache"
+ * nor may "Apache" appear in their names without prior written
+ * permission of the Apache Group.
+ *
+ * 6. Redistributions of any form whatsoever must retain the following
* acknowledgment:
* "This product includes software developed by the Apache Group
* for use in the Apache HTTP server project (http://www.apache.org/)."
1.4 +5 -1 apache-1.3/src/modules/test/mod_rndchunk.c
Index: mod_rndchunk.c
===================================================================
RCS file: /export/home/cvs/apache-1.3/src/modules/test/mod_rndchunk.c,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- mod_rndchunk.c 1998/03/13 19:20:58 1.3
+++ mod_rndchunk.c 1998/03/31 12:53:36 1.4
@@ -23,7 +23,11 @@
* prior written permission. For written permission, please contact
* [EMAIL PROTECTED]
*
- * 5. Redistributions of any form whatsoever must retain the following
+ * 5. Products derived from this software may not be called "Apache"
+ * nor may "Apache" appear in their names without prior written
+ * permission of the Apache Group.
+ *
+ * 6. Redistributions of any form whatsoever must retain the following
* acknowledgment:
* "This product includes software developed by the Apache Group
* for use in the Apache HTTP server project (http://www.apache.org/)."
1.4 +5 -1 apache-1.3/src/modules/test/mod_test_util_uri.c
Index: mod_test_util_uri.c
===================================================================
RCS file: /export/home/cvs/apache-1.3/src/modules/test/mod_test_util_uri.c,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- mod_test_util_uri.c 1998/03/13 19:20:58 1.3
+++ mod_test_util_uri.c 1998/03/31 12:53:37 1.4
@@ -23,7 +23,11 @@
* prior written permission. For written permission, please contact
* [EMAIL PROTECTED]
*
- * 5. Redistributions of any form whatsoever must retain the following
+ * 5. Products derived from this software may not be called "Apache"
+ * nor may "Apache" appear in their names without prior written
+ * permission of the Apache Group.
+ *
+ * 6. Redistributions of any form whatsoever must retain the following
* acknowledgment:
* "This product includes software developed by the Apache Group
* for use in the Apache HTTP server project (http://www.apache.org/)."
1.5 +5 -1 apache-1.3/src/os/bs2000/ebcdic.c
Index: ebcdic.c
===================================================================
RCS file: /export/home/cvs/apache-1.3/src/os/bs2000/ebcdic.c,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- ebcdic.c 1998/02/28 15:39:34 1.4
+++ ebcdic.c 1998/03/31 12:53:38 1.5
@@ -23,7 +23,11 @@
* prior written permission. For written permission, please contact
* [EMAIL PROTECTED]
*
- * 5. Redistributions of any form whatsoever must retain the following
+ * 5. Products derived from this software may not be called "Apache"
+ * nor may "Apache" appear in their names without prior written
+ * permission of the Apache Group.
+ *
+ * 6. Redistributions of any form whatsoever must retain the following
* acknowledgment:
* "This product includes software developed by the Apache Group
* for use in the Apache HTTP server project (http://www.apache.org/)."
1.5 +5 -1 apache-1.3/src/os/bs2000/os.c
Index: os.c
===================================================================
RCS file: /export/home/cvs/apache-1.3/src/os/bs2000/os.c,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- os.c 1998/03/12 10:29:12 1.4
+++ os.c 1998/03/31 12:53:39 1.5
@@ -23,7 +23,11 @@
* prior written permission. For written permission, please contact
* [EMAIL PROTECTED]
*
- * 5. Redistributions of any form whatsoever must retain the following
+ * 5. Products derived from this software may not be called "Apache"
+ * nor may "Apache" appear in their names without prior written
+ * permission of the Apache Group.
+ *
+ * 6. Redistributions of any form whatsoever must retain the following
* acknowledgment:
* "This product includes software developed by the Apache Group
* for use in the Apache HTTP server project (http://www.apache.org/)."
1.16 +5 -1 apache-1.3/src/os/unix/os.h
Index: os.h
===================================================================
RCS file: /export/home/cvs/apache-1.3/src/os/unix/os.h,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -r1.15 -r1.16
--- os.h 1998/03/17 07:54:28 1.15
+++ os.h 1998/03/31 12:53:41 1.16
@@ -23,7 +23,11 @@
* prior written permission. For written permission, please contact
* [EMAIL PROTECTED]
*
- * 5. Redistributions of any form whatsoever must retain the following
+ * 5. Products derived from this software may not be called "Apache"
+ * nor may "Apache" appear in their names without prior written
+ * permission of the Apache Group.
+ *
+ * 6. Redistributions of any form whatsoever must retain the following
* acknowledgment:
* "This product includes software developed by the Apache Group
* for use in the Apache HTTP server project (http://www.apache.org/)."
1.8 +5 -1 apache-1.3/src/os/win32/mod_dll.c
Index: mod_dll.c
===================================================================
RCS file: /export/home/cvs/apache-1.3/src/os/win32/mod_dll.c,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- mod_dll.c 1998/03/09 11:38:57 1.7
+++ mod_dll.c 1998/03/31 12:53:42 1.8
@@ -23,7 +23,11 @@
* prior written permission. For written permission, please contact
* [EMAIL PROTECTED]
*
- * 5. Redistributions of any form whatsoever must retain the following
+ * 5. Products derived from this software may not be called "Apache"
+ * nor may "Apache" appear in their names without prior written
+ * permission of the Apache Group.
+ *
+ * 6. Redistributions of any form whatsoever must retain the following
* acknowledgment:
* "This product includes software developed by the Apache Group
* for use in the Apache HTTP server project (http://www.apache.org/)."
1.9 +5 -1 apache-1.3/src/os/win32/mod_isapi.c
Index: mod_isapi.c
===================================================================
RCS file: /export/home/cvs/apache-1.3/src/os/win32/mod_isapi.c,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- mod_isapi.c 1998/03/12 10:29:13 1.8
+++ mod_isapi.c 1998/03/31 12:53:43 1.9
@@ -23,7 +23,11 @@
* prior written permission. For written permission, please contact
* [EMAIL PROTECTED]
*
- * 5. Redistributions of any form whatsoever must retain the following
+ * 5. Products derived from this software may not be called "Apache"
+ * nor may "Apache" appear in their names without prior written
+ * permission of the Apache Group.
+ *
+ * 6. Redistributions of any form whatsoever must retain the following
* acknowledgment:
* "This product includes software developed by the Apache Group
* for use in the Apache HTTP server project (http://www.apache.org/)."
1.2 +5 -1 apache-1.3/src/support/ab.1
Index: ab.1
===================================================================
RCS file: /export/home/cvs/apache-1.3/src/support/ab.1,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- ab.1 1998/03/17 12:46:42 1.1
+++ ab.1 1998/03/31 12:53:44 1.2
@@ -22,7 +22,11 @@
.\" endorse or promote products derived from this software without
.\" prior written permission.
.\"
-.\" 5. Redistributions of any form whatsoever must retain the following
+.\" 5. Products derived from this software may not be called "Apache"
+.\" nor may "Apache" appear in their names without prior written
+.\" permission of the Apache Group.
+.\"
+.\" 6. Redistributions of any form whatsoever must retain the following
.\" acknowledgment:
.\" "This product includes software developed by the Apache Group
.\" for use in the Apache HTTP server project (http://www.apache.org/)."
1.4 +5 -1 apache-1.3/src/support/ab.c
Index: ab.c
===================================================================
RCS file: /export/home/cvs/apache-1.3/src/support/ab.c,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- ab.c 1998/03/22 01:31:49 1.3
+++ ab.c 1998/03/31 12:53:45 1.4
@@ -23,7 +23,11 @@
* prior written permission. For written permission, please contact
* [EMAIL PROTECTED]
*
- * 5. Redistributions of any form whatsoever must retain the following
+ * 5. Products derived from this software may not be called "Apache"
+ * nor may "Apache" appear in their names without prior written
+ * permission of the Apache Group.
+ *
+ * 6. Redistributions of any form whatsoever must retain the following
* acknowledgment:
* "This product includes software developed by the Apache Group
* for use in the Apache HTTP server project (http://www.apache.org/)."
1.6 +5 -1 apache-1.3/src/support/apachectl
Index: apachectl
===================================================================
RCS file: /export/home/cvs/apache-1.3/src/support/apachectl,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- apachectl 1998/02/14 10:55:53 1.5
+++ apachectl 1998/03/31 12:53:46 1.6
@@ -177,7 +177,11 @@
# prior written permission. For written permission, please contact
# [EMAIL PROTECTED]
#
-# 5. Redistributions of any form whatsoever must retain the following
+# 5. Products derived from this software may not be called "Apache"
+# nor may "Apache" appear in their names without prior written
+# permission of the Apache Group.
+#
+# 6. Redistributions of any form whatsoever must retain the following
# acknowledgment:
# "This product includes software developed by the Apache Group
# for use in the Apache HTTP server project (http://www.apache.org/)."
1.4 +5 -1 apache-1.3/src/support/apachectl.1
Index: apachectl.1
===================================================================
RCS file: /export/home/cvs/apache-1.3/src/support/apachectl.1,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- apachectl.1 1998/03/16 15:58:52 1.3
+++ apachectl.1 1998/03/31 12:53:46 1.4
@@ -22,7 +22,11 @@
.\" endorse or promote products derived from this software without
.\" prior written permission.
.\"
-.\" 5. Redistributions of any form whatsoever must retain the following
+.\" 5. Products derived from this software may not be called "Apache"
+.\" nor may "Apache" appear in their names without prior written
+.\" permission of the Apache Group.
+.\"
+.\" 6. Redistributions of any form whatsoever must retain the following
.\" acknowledgment:
.\" "This product includes software developed by the Apache Group
.\" for use in the Apache HTTP server project (http://www.apache.org/)."
1.10 +5 -1 apache-1.3/src/support/dbmmanage
Index: dbmmanage
===================================================================
RCS file: /export/home/cvs/apache-1.3/src/support/dbmmanage,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- dbmmanage 1998/01/07 16:47:11 1.9
+++ dbmmanage 1998/03/31 12:53:47 1.10
@@ -25,7 +25,11 @@
# prior written permission. For written permission, please contact
# [EMAIL PROTECTED]
#
-# 5. Redistributions of any form whatsoever must retain the following
+# 5. Products derived from this software may not be called "Apache"
+# nor may "Apache" appear in their names without prior written
+# permission of the Apache Group.
+#
+# 6. Redistributions of any form whatsoever must retain the following
# acknowledgment:
# "This product includes software developed by the Apache Group
# for use in the Apache HTTP server project (http://www.apache.org/)."
1.2 +5 -1 apache-1.3/src/support/dbmmanage.1
Index: dbmmanage.1
===================================================================
RCS file: /export/home/cvs/apache-1.3/src/support/dbmmanage.1,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- dbmmanage.1 1998/03/19 10:05:45 1.1
+++ dbmmanage.1 1998/03/31 12:53:47 1.2
@@ -22,7 +22,11 @@
.\" endorse or promote products derived from this software without
.\" prior written permission.
.\"
-.\" 5. Redistributions of any form whatsoever must retain the following
+.\" 5. Products derived from this software may not be called "Apache"
+.\" nor may "Apache" appear in their names without prior written
+.\" permission of the Apache Group.
+.\"
+.\" 6. Redistributions of any form whatsoever must retain the following
.\" acknowledgment:
.\" "This product includes software developed by the Apache Group
.\" for use in the Apache HTTP server project (http://www.apache.org/)."
1.2 +5 -1 apache-1.3/src/support/htdigest.1
Index: htdigest.1
===================================================================
RCS file: /export/home/cvs/apache-1.3/src/support/htdigest.1,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- htdigest.1 1998/03/19 10:05:49 1.1
+++ htdigest.1 1998/03/31 12:53:48 1.2
@@ -23,7 +23,11 @@
.\" prior written permission. For written permission, please contact
.\" [EMAIL PROTECTED]
.\"
-.\" 5. Redistributions of any form whatsoever must retain the following
+.\" 5. Products derived from this software may not be called "Apache"
+.\" nor may "Apache" appear in their names without prior written
+.\" permission of the Apache Group.
+.\"
+.\" 6. Redistributions of any form whatsoever must retain the following
.\" acknowledgment:
.\" "This product includes software developed by the Apache Group
.\" for use in the Apache HTTP server project (http://www.apache.org/)."
1.6 +5 -1 apache-1.3/src/support/htpasswd.1
Index: htpasswd.1
===================================================================
RCS file: /export/home/cvs/apache-1.3/src/support/htpasswd.1,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- htpasswd.1 1998/03/19 10:05:45 1.5
+++ htpasswd.1 1998/03/31 12:53:48 1.6
@@ -23,7 +23,11 @@
.\" prior written permission. For written permission, please contact
.\" [EMAIL PROTECTED]
.\"
-.\" 5. Redistributions of any form whatsoever must retain the following
+.\" 5. Products derived from this software may not be called "Apache"
+.\" nor may "Apache" appear in their names without prior written
+.\" permission of the Apache Group.
+.\"
+.\" 6. Redistributions of any form whatsoever must retain the following
.\" acknowledgment:
.\" "This product includes software developed by the Apache Group
.\" for use in the Apache HTTP server project (http://www.apache.org/)."
1.6 +5 -1 apache-1.3/src/support/httpd.8
Index: httpd.8
===================================================================
RCS file: /export/home/cvs/apache-1.3/src/support/httpd.8,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- httpd.8 1998/03/16 15:58:52 1.5
+++ httpd.8 1998/03/31 12:53:49 1.6
@@ -24,7 +24,11 @@
.\" prior written permission. For written permission, please contact
.\" [EMAIL PROTECTED]
.\"
-.\" 5. Redistributions of any form whatsoever must retain the following
+.\" 5. Products derived from this software may not be called "Apache"
+.\" nor may "Apache" appear in their names without prior written
+.\" permission of the Apache Group.
+.\"
+.\" 6. Redistributions of any form whatsoever must retain the following
.\" acknowledgment:
.\" "This product includes software developed by the Apache Group
.\" for use in the Apache HTTP server project (http://www.apache.org/)."
1.9 +5 -1 apache-1.3/src/support/log_server_status
Index: log_server_status
===================================================================
RCS file: /export/home/cvs/apache-1.3/src/support/log_server_status,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- log_server_status 1998/01/07 16:47:14 1.8
+++ log_server_status 1998/03/31 12:53:50 1.9
@@ -25,7 +25,11 @@
# prior written permission. For written permission, please contact
# [EMAIL PROTECTED]
#
-# 5. Redistributions of any form whatsoever must retain the following
+# 5. Products derived from this software may not be called "Apache"
+# nor may "Apache" appear in their names without prior written
+# permission of the Apache Group.
+#
+# 6. Redistributions of any form whatsoever must retain the following
# acknowledgment:
# "This product includes software developed by the Apache Group
# for use in the Apache HTTP server project (http://www.apache.org/)."
1.2 +5 -1 apache-1.3/src/support/logresolve.8
Index: logresolve.8
===================================================================
RCS file: /export/home/cvs/apache-1.3/src/support/logresolve.8,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- logresolve.8 1998/03/19 10:05:50 1.1
+++ logresolve.8 1998/03/31 12:53:51 1.2
@@ -22,7 +22,11 @@
.\" endorse or promote products derived from this software without
.\" prior written permission.
.\"
-.\" 5. Redistributions of any form whatsoever must retain the following
+.\" 5. Products derived from this software may not be called "Apache"
+.\" nor may "Apache" appear in their names without prior written
+.\" permission of the Apache Group.
+.\"
+.\" 6. Redistributions of any form whatsoever must retain the following
.\" acknowledgment:
.\" "This product includes software developed by the Apache Group
.\" for use in the Apache HTTP server project (http://www.apache.org/)."
1.2 +5 -1 apache-1.3/src/support/logresolve.pl
Index: logresolve.pl
===================================================================
RCS file: /export/home/cvs/apache-1.3/src/support/logresolve.pl,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- logresolve.pl 1998/01/07 17:29:01 1.1
+++ logresolve.pl 1998/03/31 12:53:52 1.2
@@ -25,7 +25,11 @@
# prior written permission. For written permission, please contact
# [EMAIL PROTECTED]
#
-# 5. Redistributions of any form whatsoever must retain the following
+# 5. Products derived from this software may not be called "Apache"
+# nor may "Apache" appear in their names without prior written
+# permission of the Apache Group.
+#
+# 6. Redistributions of any form whatsoever must retain the following
# acknowledgment:
# "This product includes software developed by the Apache Group
# for use in the Apache HTTP server project (http://www.apache.org/)."
1.2 +5 -1 apache-1.3/src/support/rotatelogs.8
Index: rotatelogs.8
===================================================================
RCS file: /export/home/cvs/apache-1.3/src/support/rotatelogs.8,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- rotatelogs.8 1998/03/19 10:05:49 1.1
+++ rotatelogs.8 1998/03/31 12:53:54 1.2
@@ -22,7 +22,11 @@
.\" endorse or promote products derived from this software without
.\" prior written permission.
.\"
-.\" 5. Redistributions of any form whatsoever must retain the following
+.\" 5. Products derived from this software may not be called "Apache"
+.\" nor may "Apache" appear in their names without prior written
+.\" permission of the Apache Group.
+.\"
+.\" 6. Redistributions of any form whatsoever must retain the following
.\" acknowledgment:
.\" "This product includes software developed by the Apache Group
.\" for use in the Apache HTTP server project (http://www.apache.org/)."
1.3 +5 -1 apache-1.3/src/support/split-logfile
Index: split-logfile
===================================================================
RCS file: /export/home/cvs/apache-1.3/src/support/split-logfile,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- split-logfile 1998/01/07 16:47:14 1.2
+++ split-logfile 1998/03/31 12:53:55 1.3
@@ -25,7 +25,11 @@
# prior written permission. For permission please contact
# [EMAIL PROTECTED]
#
-# 5. Redistributions of any form whatsoever must retain the following
+# 5. Products derived from this software may not be called "Apache"
+# nor may "Apache" appear in their names without prior written
+# permission of the Apache Group.
+#
+# 6. Redistributions of any form whatsoever must retain the following
# acknowledgment:
# "This product includes software developed by the Apache Group
# for use in the Apache HTTP server project (http://www.apache.org/)."
1.2 +5 -1 apache-1.3/src/support/suexec.8
Index: suexec.8
===================================================================
RCS file: /export/home/cvs/apache-1.3/src/support/suexec.8,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- suexec.8 1998/03/19 10:05:48 1.1
+++ suexec.8 1998/03/31 12:53:57 1.2
@@ -22,7 +22,11 @@
.\" endorse or promote products derived from this software without
.\" prior written permission.
.\"
-.\" 5. Redistributions of any form whatsoever must retain the following
+.\" 5. Products derived from this software may not be called "Apache"
+.\" nor may "Apache" appear in their names without prior written
+.\" permission of the Apache Group.
+.\"
+.\" 6. Redistributions of any form whatsoever must retain the following
.\" acknowledgment:
.\" "This product includes software developed by the Apache Group
.\" for use in the Apache HTTP server project (http://www.apache.org/)."
1.37 +5 -1 apache-1.3/src/support/suexec.c
Index: suexec.c
===================================================================
RCS file: /export/home/cvs/apache-1.3/src/support/suexec.c,v
retrieving revision 1.36
retrieving revision 1.37
diff -u -r1.36 -r1.37
--- suexec.c 1998/03/20 11:33:00 1.36
+++ suexec.c 1998/03/31 12:54:06 1.37
@@ -23,7 +23,11 @@
* prior written permission. For written permission, please contact
* [EMAIL PROTECTED]
*
- * 5. Redistributions of any form whatsoever must retain the following
+ * 5. Products derived from this software may not be called "Apache"
+ * nor may "Apache" appear in their names without prior written
+ * permission of the Apache Group.
+ *
+ * 6. Redistributions of any form whatsoever must retain the following
* acknowledgment:
* "This product includes software developed by the Apache Group
* for use in the Apache HTTP server project (http://www.apache.org/)."
1.14 +5 -1 apache-1.3/src/support/suexec.h
Index: suexec.h
===================================================================
RCS file: /export/home/cvs/apache-1.3/src/support/suexec.h,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -r1.13 -r1.14
--- suexec.h 1998/01/07 16:47:15 1.13
+++ suexec.h 1998/03/31 12:54:09 1.14
@@ -23,7 +23,11 @@
* prior written permission. For written permission, please contact
* [EMAIL PROTECTED]
*
- * 5. Redistributions of any form whatsoever must retain the following
+ * 5. Products derived from this software may not be called "Apache"
+ * nor may "Apache" appear in their names without prior written
+ * permission of the Apache Group.
+ *
+ * 6. Redistributions of any form whatsoever must retain the following
* acknowledgment:
* "This product includes software developed by the Apache Group
* for use in the Apache HTTP server project (http://www.apache.org/)."