jmoore Sat Mar 17 04:21:28 2001 EDT Modified files: (Branch: PHP_4_0_5) /php4/ext/standard credits.c credits.h info.h Log: MFH for website team credits. Index: php4/ext/standard/credits.c diff -u php4/ext/standard/credits.c:1.5 php4/ext/standard/credits.c:1.5.2.1 --- php4/ext/standard/credits.c:1.5 Sun Feb 25 22:07:17 2001 +++ php4/ext/standard/credits.c Sat Mar 17 04:21:21 2001 @@ -17,7 +17,7 @@ +----------------------------------------------------------------------+ */ -/* $Id: credits.c,v 1.5 2001/02/26 06:07:17 andi Exp $ */ +/* $Id: credits.c,v 1.5.2.1 2001/03/17 12:21:21 jmoore Exp $ */ #include "php.h" #include "info.h" @@ -95,6 +95,14 @@ php_info_print_table_start(); php_info_print_table_header(1, "PHP Quality Assurance Team"); php_info_print_table_row(1, "Andre Langhorst, Hellekin O. Wolf, Jalal Pushman, James Moore, Jani Taskinen, Joey Smith, Olivier Cahagne, Phil Driscoll, Sebastian Bergmann, Zak Greant"); + php_info_print_table_end(); + } + + if (flag & PHP_CREDITS_WEB) { + /* Website Team */ + php_info_print_table_start(); + php_info_print_table_header(1, "PHP Website Team"); + php_info_print_table_row(1, "Hojtsy Gabor, Colin Viebrock, Jim +Winstead"); php_info_print_table_end(); } Index: php4/ext/standard/credits.h diff -u php4/ext/standard/credits.h:1.2 php4/ext/standard/credits.h:1.2.2.1 --- php4/ext/standard/credits.h:1.2 Sun Feb 25 22:07:17 2001 +++ php4/ext/standard/credits.h Sat Mar 17 04:21:22 2001 @@ -17,16 +17,26 @@ +----------------------------------------------------------------------+ */ -/* $Id: credits.h,v 1.2 2001/02/26 06:07:17 andi Exp $ */ +/* $Id: credits.h,v 1.2.2.1 2001/03/17 12:21:22 jmoore Exp $ */ +#ifndef CREDITS_H +#define CREDITS_H +#ifndef HAVE_CREDITS_DEFS +#define HAVE_CREDITS_DEFS + #define PHP_CREDITS_GROUP (1<<0) #define PHP_CREDITS_GENERAL (1<<1) #define PHP_CREDITS_SAPI (1<<2) #define PHP_CREDITS_MODULES (1<<3) #define PHP_CREDITS_DOCS (1<<4) #define PHP_CREDITS_FULLPAGE (1<<5) +#define PHP_CREDITS_QA (1<<6) +#define PHP_CREDITS_WEB (1<<7) #define PHP_CREDITS_ALL 0xFFFFFFFF +#endif /* HAVE_CREDITS_DEFS */ + PHPAPI void php_print_credits(int flag); +#endif Index: php4/ext/standard/info.h diff -u php4/ext/standard/info.h:1.21 php4/ext/standard/info.h:1.21.2.1 --- php4/ext/standard/info.h:1.21 Sun Feb 25 22:07:17 2001 +++ php4/ext/standard/info.h Sat Mar 17 04:21:22 2001 @@ -17,7 +17,7 @@ +----------------------------------------------------------------------+ */ -/* $Id: info.h,v 1.21 2001/02/26 06:07:17 andi Exp $ */ +/* $Id: info.h,v 1.21.2.1 2001/03/17 12:21:22 jmoore Exp $ */ #ifndef INFO_H #define INFO_H @@ -35,6 +35,8 @@ #define PHP_INFO_LICENSE (1<<6) #define PHP_INFO_ALL 0xFFFFFFFF +#ifndef HAVE_CREDITS_DEFS +#define HAVE_CREDITS_DEFS #define PHP_CREDITS_GROUP (1<<0) #define PHP_CREDITS_GENERAL (1<<1) @@ -43,7 +45,10 @@ #define PHP_CREDITS_DOCS (1<<4) #define PHP_CREDITS_FULLPAGE (1<<5) #define PHP_CREDITS_QA (1<<6) +#define PHP_CREDITS_WEB (1<<7) #define PHP_CREDITS_ALL 0xFFFFFFFF + +#endif /* HAVE_CREDITS_DEFS */ #define PHP_LOGO_GUID "PHPE9568F34-D428-11d2-A769-00AA001ACF42" #define PHP_EGG_LOGO_GUID "PHPE9568F36-D428-11d2-A769-00AA001ACF42" -- PHP CVS Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL PROTECTED]