]> granicus.if.org Git - php/commitdiff
added a "DO NOT EDIT!" header and regenerated the credits_*h files
authorHartmut Holzgraefe <hholzgra@php.net>
Wed, 22 Nov 2000 23:20:35 +0000 (23:20 +0000)
committerHartmut Holzgraefe <hholzgra@php.net>
Wed, 22 Nov 2000 23:20:35 +0000 (23:20 +0000)
ext/standard/credits_ext.h
ext/standard/credits_sapi.h
scripts/credits

index 19a5a510a2d0155d306ba2a16cc8aabf88583a07..06751395dea79b27c93f586b2b2d310098bedacc 100644 (file)
@@ -1,10 +1,22 @@
-CREDIT_LINE("Apache","Rasmus Lerdorf, Stig Bakken, David Sklar");
+/* 
+                      DO NOT EDIT THIS FILE!
+
+ it has been automaticaly created by php4/scripts/credits 
+ from the information found in the various php4/ext/*/CREDITS 
+ and sapi/*/CREDITS files 
+ if you want to change an entry you have to edit the 
+ appropriate CREDITS file instead
+
+*/
+
 CREDIT_LINE("aspell","Rasmus Lerdorf");
 CREDIT_LINE("Assert","Thies C. Arntzen");
 CREDIT_LINE("BC Math","Andi Gutmans");
 CREDIT_LINE("bz2","Sterling Hughes");
 CREDIT_LINE("ccvs","Brendan W. McAdams, Doug DeJulio");
 CREDIT_LINE("cpdf","Uwe Steinmann");
+CREDIT_LINE("ctype","Hartmut Holzgraefe");
 CREDIT_LINE("CURL","Sterling Hughes");
 CREDIT_LINE("CyberCash","Evan Klinger");
 CREDIT_LINE("DAV","Stig Bakken");
@@ -26,7 +38,7 @@ CREDIT_LINE("IMAP","Rex Logan, Mark Musone, Brian Wang, Kaj-Michael Lang, Antoni
 CREDIT_LINE("Informix","Danny Heijl, Christian Cartus");
 CREDIT_LINE("Ingres II","David Hénot");
 CREDIT_LINE("InterBase","Jouni Ahto, Andrew Avdeev");
-CREDIT_LINE("IRCG", "Sascha Schumann");
+CREDIT_LINE("IRCG","Sascha Schumann");
 CREDIT_LINE("Java","Sam Ruby");
 CREDIT_LINE("LDAP","Amitay Isaacs, Eric Warnke, Rasmus Lerdorf, Gerrit Thomson");
 CREDIT_LINE("MCAL","Mark Musone, Chuck Hagenbuch");
@@ -63,3 +75,4 @@ CREDIT_LINE("XML","Stig Bakken, Thies C. Arntzen");
 CREDIT_LINE("YAZ","Adam Dickmeiss");
 CREDIT_LINE("Yellow Pages","Stephanie Wehner");
 CREDIT_LINE("Zlib","Rasmus Lerdorf, Stefan Roehrich");
+CREDIT_LINE("zZIPlib","Hartmut Holzgraefe");
index d0f0a05547147ecce78274aa157d6e0fb4925e3c..c67a17cf80d478d90575ff0980770a34d04f7e16 100644 (file)
@@ -1,5 +1,17 @@
+/* 
+                      DO NOT EDIT THIS FILE!
+
+ it has been automaticaly created by php4/scripts/credits 
+ from the information found in the various php4/ext/*/CREDITS 
+ and sapi/*/CREDITS files 
+ if you want to change an entry you have to edit the 
+ appropriate CREDITS file instead
+
+*/
+
 CREDIT_LINE("AOLserver","Sascha Schumann");
-CREDIT_LINE("Apache 1.3","Rasmus Lerdorf, Zeev Suraski");
+CREDIT_LINE("Apache 1.3","Rasmus Lerdorf, Zeev Suraski, Stig Bakken, David Sklar");
 CREDIT_LINE("Apache 2.0","Sascha Schumann");
 CREDIT_LINE("Caudium / Roxen","David Hedbor");
 CREDIT_LINE("CGI","Rasmus Lerdorf, Stig Bakken");
index d627948b98cc3e8943ce36e93da7812b2ce16bc6..b5246027ae5c4ecea5bfb5389370772472b8858a 100755 (executable)
@@ -5,5 +5,20 @@ BEGIN { FS = "\n"; RS = "" }
 
 for what in ext sapi
 do
-  awk "$awkprog" $what/*/CREDITS | sort -f > ext/standard/credits_$what.h
+  file=ext/standard/credits_$what.h
+  cat >$file <<END
+/* 
+                      DO NOT EDIT THIS FILE!
+
+ it has been automaticaly created by php4/scripts/credits 
+ from the information found in the various php4/ext/*/CREDITS 
+ and sapi/*/CREDITS files 
+ if you want to change an entry you have to edit the 
+ appropriate CREDITS file instead
+
+*/
+
+END
+  awk "$awkprog" $what/*/CREDITS | sort -f  >> $file
 done