php-src/ext/standard/credits.c

123 lines
4.4 KiB
C
Raw Normal View History

/*
+----------------------------------------------------------------------+
2004-01-08 08:18:22 +00:00
| PHP Version 5 |
+----------------------------------------------------------------------+
2004-01-08 08:18:22 +00:00
| Copyright (c) 1997-2004 The PHP Group |
+----------------------------------------------------------------------+
| This source file is subject to version 3.0 of the PHP license, |
| that is bundled with this package in the file LICENSE, and is |
| available through the world-wide-web at the following url: |
| http://www.php.net/license/3_0.txt. |
| If you did not receive a copy of the PHP license and are unable to |
| obtain it through the world-wide-web, please send a note to |
| license@php.net so we can mail you a copy immediately. |
+----------------------------------------------------------------------+
2002-02-28 08:29:35 +00:00
| Authors: Rasmus Lerdorf <rasmus@php.net> |
| Zeev Suraski <zeev@zend.com> |
+----------------------------------------------------------------------+
*/
/* $Id$ */
#include "php.h"
#include "info.h"
#define CREDIT_LINE(module, authors) php_info_print_table_row(2, module, authors)
/* {{{ php_print_credits
*/
PHPAPI void php_print_credits(int flag TSRMLS_DC)
{
if (flag & PHP_CREDITS_FULLPAGE) {
2002-09-26 19:48:56 +00:00
php_print_info_htmlhead(TSRMLS_C);
}
PUTS("<h1>PHP Credits</h1>\n");
if (flag & PHP_CREDITS_GROUP) {
/* Group */
php_info_print_table_start();
php_info_print_table_header(1, "PHP Group");
php_info_print_table_row(1, "Thies C. Arntzen, Stig Bakken, Shane Caraveo, Andi Gutmans, Rasmus Lerdorf, Sam Ruby, Sascha Schumann, Zeev Suraski, Jim Winstead, Andrei Zmievski");
php_info_print_table_end();
}
if (flag & PHP_CREDITS_GENERAL) {
/* Design & Concept */
php_info_print_table_start();
php_info_print_table_header(1, "Language Design &amp; Concept");
php_info_print_table_row(1, "Andi Gutmans, Rasmus Lerdorf, Zeev Suraski");
php_info_print_table_end();
2003-08-18 23:26:31 +00:00
/* PHP Language */
php_info_print_table_start();
2003-08-18 23:26:31 +00:00
php_info_print_table_colspan_header(2, "PHP 5 Authors");
php_info_print_table_header(2, "Contribution", "Authors");
CREDIT_LINE("Zend Scripting Language Engine", "Andi Gutmans, Zeev Suraski");
2001-07-09 18:54:59 +00:00
CREDIT_LINE("Extension Module API", "Andi Gutmans, Zeev Suraski, Andrei Zmievski");
CREDIT_LINE("UNIX Build and Modularization", "Stig Bakken, Sascha Schumann");
CREDIT_LINE("Win32 Port", "Shane Caraveo, Zeev Suraski");
CREDIT_LINE("Server API (SAPI) Abstraction Layer", "Andi Gutmans, Shane Caraveo, Zeev Suraski");
CREDIT_LINE("Streams Abstraction Layer", "Wez Furlong");
php_info_print_table_end();
}
if (flag & PHP_CREDITS_SAPI) {
/* SAPI Modules */
php_info_print_table_start();
php_info_print_table_colspan_header(2, "SAPI Modules");
php_info_print_table_header(2, "Contribution", "Authors");
#include "credits_sapi.h"
php_info_print_table_end();
}
if (flag & PHP_CREDITS_MODULES) {
/* Modules */
php_info_print_table_start();
php_info_print_table_colspan_header(2, "Module Authors");
php_info_print_table_header(2, "Module", "Authors");
#include "credits_ext.h"
php_info_print_table_end();
}
if (flag & PHP_CREDITS_DOCS) {
php_info_print_table_start();
php_info_print_table_header(1, "PHP Documentation Team");
2001-09-09 23:37:55 +00:00
php_info_print_table_row(1, "Jouni Ahto, Alexander Aulbach, Stig Bakken, Rasmus Lerdorf, Egon Schmid, Lars Torben Wilson, Jim Winstead");
php_info_print_table_row(1, "Edited by: Stig Bakken and Egon Schmid");
php_info_print_table_end();
}
2000-12-19 22:59:14 +00:00
if (flag & PHP_CREDITS_QA) {
php_info_print_table_start();
2003-01-18 22:33:56 +00:00
php_info_print_table_header(1, "PHP 5.0 Quality Assurance Team");
2003-01-20 12:34:07 +00:00
php_info_print_table_row(1, "Ilia Alshanetsky, Joerg Behrens, Stefan Esser, Moriyoshi Koizumi, Magnus Maatta, Sebastian Nohn, Derick Rethans, Melvyn Sopacua, Jani Taskinen");
2000-12-19 22:59:14 +00:00
php_info_print_table_end();
}
2001-03-14 21:28:58 +00:00
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, "Gabor Hojtsy, Colin Viebrock, Jim Winstead");
2001-03-14 21:28:58 +00:00
php_info_print_table_end();
}
if (flag & PHP_CREDITS_FULLPAGE) {
2003-07-28 10:44:19 +00:00
PUTS("</div></body></html>\n");
}
}
/* }}} */
/*
* Local variables:
* tab-width: 4
* c-basic-offset: 4
* End:
* vim600: sw=4 ts=4 fdm=marker
* vim<600: sw=4 ts=4
*/