History log of /PHP-7.4/main/SAPI.h (Results 151 – 175 of 200)
Revision (<<< Hide revision tags) (Show revision tags >>>) Date Author Comments
Revision tags: php-4.0.2, PRE_LIBMYSQL_REVERT, php-4.0.2RC1
# 320105bc 20-Aug-2000 Sascha Schumann

Use size_t as parameter type in the getenv member of struct sapi_module


Revision tags: PRE_FILE_COMPILE_API_CHANGE, PRE_METHOD_CALL_SEPERATE_FIX_PATCH
# 16017f6d 02-Jul-2000 Sascha Schumann

Change header protection macros to conform to standard.

Draft 3 of IEEE 1003.1 200x, "2.2 The Compilation Environment"

All identifiers that begin with an underscore and either an

Change header protection macros to conform to standard.

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.

show more ...


Revision tags: php-4.0.1pl1, php-4.0.1, php-4.0.1RC2
# 4010b422 26-Jun-2000 Andrei Zmievski

Separate plain name returned by php_sapi_module() and pretty name
used for output.


Revision tags: php-4.0.1RC, PRE_EIGHT_BYTE_ALLOC_PATCH, php-4.0.0
# e043439f 18-May-2000 Zeev Suraski

Update the license with the new clause 6


Revision tags: php-4.0RC2
# 3220bb57 28-Apr-2000 Zeev Suraski

- Fix an invalid trick (it was valid when header() was using
zend_get_parameters(), but it became invalid when someone switched it
to zend_get_parameters_ex(), and I decided to remove it

- Fix an invalid trick (it was valid when header() was using
zend_get_parameters(), but it became invalid when someone switched it
to zend_get_parameters_ex(), and I decided to remove it anyway).
- Remove a redundant function call

show more ...


# 53586378 01-Apr-2000 Zeev Suraski

@- Fix a problem when dealing with large POST blocks in CGI mode


Revision tags: PHP-4.0-RC1
# c32e09f7 20-Mar-2000 Rasmus Lerdorf

As it turns out, there are some browsers that can't handle default
charsets. I think forcing this on is going to cause us a lot of headache,
so turn it off by default.
@ Don't default to

As it turns out, there are some browsers that can't handle default
charsets. I think forcing this on is going to cause us a lot of headache,
so turn it off by default.
@ Don't default to iso-8859-1 since this confuses some browsers

show more ...


# 245428b2 19-Mar-2000 Thies C. Arntzen

fix some protos


# a508bec8 26-Feb-2000 Zeev Suraski

- From CODING_STANDARDS:
[6] NEVER USE strncat(). If you're absolutely sure you know what you're doing,
check its man page again, and only then, consider using it, and even then,

- From CODING_STANDARDS:
[6] NEVER USE strncat(). If you're absolutely sure you know what you're doing,
check its man page again, and only then, consider using it, and even then,
try avoiding it.
strncat() is your enemy!
- Fix several SAPI services, get rid of the default_content_type (it's always
composed of the mime type and charset now).
- Win32 works again

show more ...


# d23e5d83 25-Feb-2000 Stig Bakken

@- Implemented default_charset and default_mimetype config directives (Stig)
Implemented default_charset and default_mimetype configuration directives.
Started implementing ticks in PHP.


# ba03c9f2 24-Feb-2000 Stig Bakken

started implementing directives for default mimetype/charset


Revision tags: php-4.0b4pl1, php-4.0b4, php-4.0b4_rc1
# 9b621d1c 19-Feb-2000 Zeev Suraski

Get the license right... (this won't make it to RC1 of B4)


# a6393de6 17-Feb-2000 Zeev Suraski

Make POST handling the way it should be. RFC1867, and any future POST handlers we might
have in the future now obey to the variables_order directive, and there's a real way modular
way to ha

Make POST handling the way it should be. RFC1867, and any future POST handlers we might
have in the future now obey to the variables_order directive, and there's a real way modular
way to handle POST content.
This is all untested, BEFORE_SAPI_POST_PATCH_17_FEB_2000 tagged before submission
@- Made multipart/form-data content obey to the variables_order directive (Zeev)

show more ...


Revision tags: BEFORE_SAPI_POST_PATCH_17_FEB_2000
# 80bdd19e 11-Feb-2000 Zeev Suraski

Fine tune Andi's patch


# 49e98c3d 10-Feb-2000 Zeev Suraski

request_info.c is dead! long live SAPI
@- Finished the server abstraction layer; All of the PHP code is now shared
@ across different servers (Apache, CGI, IIS, etc.), except for thin
@

request_info.c is dead! long live SAPI
@- Finished the server abstraction layer; All of the PHP code is now shared
@ across different servers (Apache, CGI, IIS, etc.), except for thin
@ interface modules (Zeev)

show more ...


# 6723bdd9 10-Feb-2000 Zeev Suraski

request_info.c is giving up


Revision tags: BEFORE_SAPIFICATION_FEB_10_2000
# 5bdd18ca 10-Feb-2000 Zeev Suraski

Yes, you guessed it... More cleanup


# 41f6bca9 10-Feb-2000 Zeev Suraski

More cleanup!


# 0fd89aa2 10-Feb-2000 Zeev Suraski

More cleanup - move getenv() to SAPI


# 7d926a0e 10-Feb-2000 Zeev Suraski

More cleanup...


# f452c776 10-Feb-2000 Andi Gutmans

- Introduce PHP_WIN32


# 073b1481 10-Feb-2000 Zeev Suraski

More abstraction


# 404bbe1f 10-Feb-2000 Zeev Suraski

Move the logging mechanism to SAPI


# 9ab35ae3 28-Jan-2000 Zeev Suraski

Tried to centralize global variable registration as much as possible:

- Added $HTTP_ENV_VARS[] and $HTTP_SERVER_VARS[] support, which similarly
to $HTTP_GET_VARS[], contain environment

Tried to centralize global variable registration as much as possible:

- Added $HTTP_ENV_VARS[] and $HTTP_SERVER_VARS[] support, which similarly
to $HTTP_GET_VARS[], contain environment and server variables. Setting
register_globals to Off will now also prevent registration of the
environment and server variables into the global scope (Zeev)
- Renamed gpc_globals to register_globals (Zeev)
- Introduced variables_order that deprecates gpc_order, and allows control
over the server and environment variables, in addition to GET/POST/Cookies
(Zeev)

show more ...


Revision tags: BEFORE_PRE_SHUTDOWN_REVERSE_PATCH
# 972631be 13-Jan-2000 Zeev Suraski

- Added flush() support to SAPI
- Got rid of the old flush() implemenetation in favour of the new one
- Added implicit_flush() support to the output buffering layer.
@- Added implicit_flu

- Added flush() support to SAPI
- Got rid of the old flush() implemenetation in favour of the new one
- Added implicit_flush() support to the output buffering layer.
@- Added implicit_flush() to control whether flush() should be called
@ implicitly after any output (Zeev)

show more ...


12345678