summaryrefslogtreecommitdiff
path: root/ext/standard/info.h
Commit message (Collapse)AuthorAgeFilesLines
* Fix use of EXTERN_C macrosArd Biesheuvel2003-09-021-1/+1
|
* updating license information in the headers.James Cox2003-06-101-3/+3
|
* C++ extensions build fixHartmut Holzgraefe2003-05-201-0/+2
|
* Extend print_table_row so that one can specify the CSS classSascha Schumann2003-04-191-0/+1
| | | | | directly. Add "vr" class which aligns the content to the right border.
* fixes for logo guid functionsColin Viebrock2003-04-021-0/+2
|
* Eliminate some TSRMLS_FETCH() calls. Tested with Win32 build of SAPI/CGI and ↵Sebastian Bergmann2003-03-251-1/+1
| | | | SAPI/CLI on Win32.
* Bump year.Sebastian Bergmann2002-12-311-1/+1
|
* Add php_ini_scanned_files() so "make test" can tell you when you haveRasmus Lerdorf2002-10-061-0/+1
| | | | | additional .ini files that are scanned.
* Fix ZTS build.Sebastian Bergmann2002-09-261-2/+2
|
* update credits page with proper HTML, fix HTML escaping, and a few tweaksColin Viebrock2002-09-261-0/+2
|
* Maintain headers.Sebastian Bergmann2002-02-281-1/+1
|
* Update headers.Sebastian Bergmann2001-12-111-2/+2
|
* More TSRMLS_FETCH workZeev Suraski2001-07-301-1/+1
|
* Finish phpinfo() HTML 4.01 tweaking.Sebastian Bergmann2001-06-191-3/+3
|
* Adding webteam to credits.James Moore2001-03-141-0/+5
|
* - Fix copyright notices with 2001Andi Gutmans2001-02-261-1/+1
|
* Add the QA team to the creditsZeev Suraski2000-12-191-0/+1
|
* first step towards auto-generated creditsHartmut Holzgraefe2000-11-201-1/+0
|
* generalization of image handling in phpinfoHartmut Holzgraefe2000-10-311-1/+2
|
* @Added php_uname() function (Stig)Stig Bakken2000-08-271-0/+1
| | | | | Added php_uname() function.
* Cleaning up some messSascha Schumann2000-08-211-0/+2
|
* Changed lots of PHP 3 licence headers to PHP 4, mainly in .h files.David Croft2000-07-241-21/+11
| | | | | | | | | Added a few RCS $Id$ tags. # Note: I have avoided changing any .h files if the corresponding .c file # had not already been changed as I am not sure if there are any legal # issues here. So some extensions still have PHP 3 headers.
* Change header protection macros to conform to standard.Sascha Schumann2000-07-021-3/+3
| | | | | | | | | Draft 3 of IEEE 1003.1 200x, "2.2 The Compilation Environment" All identifiers that begin with an underscore and either an uppercase letter or another underscore are always reserved for any use by the implementation.
* Added function php_sapi_name() as written by Stefan Livieratos.Kristian Köhntopp2000-06-261-0/+1
|
* A little easter egg for April 1st ... :)Colin Viebrock2000-04-191-2/+3
|
* more prettinessColin Viebrock2000-04-071-0/+1
|
* Prettying up the output of phpinfo(). Someone has to tell me howColin Viebrock2000-04-051-5/+9
| | | | | | | | | to get a new .gif logo in there, and why the ZEND_DEBUG output is causing seg faults. I also need to go through all the modules and fix up the output they create.
* - Fix some issues with the ISAPI module, made it friendlier to non Win32 ↵Zeev Suraski2000-02-181-4/+6
| | | | | | | | platforms - Added .reg file for PWS setup - Reordered some stuff in phpinfo()
* @- Fixed a bug in ODBC error reporting (Zeev)Zeev Suraski1999-12-211-0/+5
| | | | | | @- Added PHP_Logo_GUID() and Zend_Logo_GUID() functions, that return the GUIDs @ of the PHP and Zend logos used in phpinfo() (Zeev)
* I was sure I committed these already. WeirdZeev Suraski1999-07-171-4/+13
|
* - Add a bitwise flag to phpinfo()Andi Gutmans1999-07-141-3/+15
| | | | | - Import a draft of the new PHP license
* conv_proto *.[ch]Sascha Schumann1999-05-161-2/+2
|
* beatify Apache's info funcZeev Suraski1999-05-111-0/+4
|
* * Finalizing the PHP version of SAPI. Support POST and cookies among other ↵Zeev Suraski1999-05-091-3/+5
| | | | | | | | | | | | | things. * Fully implement ISAPI support - POST and cookies among other things. * Almost completely rewrote phpinfo(). Allow modules to easily display their information in phpinfo() without modifying phpinfo() itself (prototype for the module info function was changed, thus the large amount of updated module files). * Initial extended SAPI support for Apache, completely untested. * CGI now uses SAPI fully as well.
* * Plenty of thread safety and Win32 work.Zeev Suraski1999-04-261-1/+1
| | | | | | | | | | | * Changed PHP4 to compile as a DLL, both ISAPI and the the CGI run with the same DLL. * Switched to using the DLL runtime library under Win32. PHP will NOT work if compiled against the static library! * Removed yesterday's php4libts project (with php4dllts, it's obsolete). This *does* affect thread-unsafe Windows as well - the thread unsafe CGI is also dependant on the thread-unsafe DLL.
* First commit of re-structuring phase one. We have started using automake inStig Bakken1999-04-171-0/+40
sub-directories and started to move extension code into ext/<name>. For now, I have moved the "standard" extension (which is quite a mix of everything right now) and the GD extension into their own subdirs in ext/. The configure script now also runs configure in the libzend directory automatically and makes sure php4 and libzend use the same config.cache file. To avoid running configure in libzend, use the --no-recursion option. "make" in php4 also builds libzend now. The Apache module doesn't compile right now, but a fix for that is coming up.