Directory Listing
Revision
100739 -
Directory Listing
Modified
Wed Oct 23 07:12:13 2002 UTC
(6 years, 8 months ago)
by
gschlossnagle
white space changes (s/ /\t/g)
Revision
100736 -
Directory Listing
Modified
Wed Oct 23 06:07:07 2002 UTC
(6 years, 8 months ago)
by
gschlossnagle
fixed directory merging
Revision
98932 -
Directory Listing
Modified
Wed Oct 9 02:57:33 2002 UTC
(6 years, 9 months ago)
by
gschlossnagle
fixed return values for php_response_handler
Revision
98756 -
Directory Listing
Modified
Tue Oct 8 06:42:54 2002 UTC
(6 years, 9 months ago)
by
gschlossnagle
headers code cleanup
Revision
98753 -
Directory Listing
Modified
Tue Oct 8 06:25:02 2002 UTC
(6 years, 9 months ago)
by
gschlossnagle
header code cleanup
Revision
98708 -
Directory Listing
Modified
Tue Oct 8 02:17:02 2002 UTC
(6 years, 9 months ago)
by
gschlossnagle
sync with head. add optional content type param to send_http_header
Revision
98705 -
Directory Listing
Modified
Tue Oct 8 02:16:25 2002 UTC
(6 years, 9 months ago)
by
gschlossnagle
sync with head
Revision
94188 -
Directory Listing
Modified
Fri Aug 30 19:12:28 2002 UTC
(6 years, 10 months ago)
by
gschlossnagle
Cleaned up a bunch of code, fully integrated the class::method handler
code into a single stack per handlers (for correct interleaving).
Changed the syntax so that now they are of the form
phpUriHandler /filename
phpUriHandlerMethod Class::Method
This now works for all handlers including response handlers.
Revision
94093 -
Directory Listing
Modified
Thu Aug 29 20:23:07 2002 UTC
(6 years, 10 months ago)
by
gschlossnagle
added the ability to set handlers as class methods (classes will need to be
declared in a phpRequire statemenet, of course, or be otherwise available
at the hook run-time (builtins)). This is currently only implemented
for the uri trans handler it is usable as:
phpUriHandlerCodeRef MyClass::MyMethod
This can be greatly robustified from whre it stands now, but is a good proof
of concept (hopefully!)
Revision
93971 -
Directory Listing
Modified
Wed Aug 28 21:23:12 2002 UTC
(6 years, 10 months ago)
by
gschlossnagle
added all the sub_request methods and logging methods
Revision
93958 -
Directory Listing
Modified
Wed Aug 28 18:56:51 2002 UTC
(6 years, 10 months ago)
by
gschlossnagle
Added wrapper functions for the majority of the apache API_EXPORT functions
as class methods for the ApacheRequest objects. broke sapi_activate
into two functions to allow for reading of headers/cookies separately
from request bodies (POST stuff). Altered some of the send_headers code
in mod_php4.c to prevent sending headers twice (since a phpResponseHandler
needs to be able to have full freedom for setting headers using the
ap_*_header* functions.
Revision
93900 -
Directory Listing
Modified
Wed Aug 28 04:37:37 2002 UTC
(6 years, 10 months ago)
by
gschlossnagle
added wrapper for ap_send_http_header so that phpResponseHandler is now
working. Added protections to mod_php4's internal call to the same so
that headers cannot be accidentally sent twice.
Revision
93893 -
Directory Listing
Modified
Wed Aug 28 03:55:42 2002 UTC
(6 years, 10 months ago)
by
gschlossnagle
This handler works much better when not commented out. :)
Revision
93862 -
Directory Listing
Modified
Tue Aug 27 20:57:09 2002 UTC
(6 years, 10 months ago)
by
gschlossnagle
All handlers are now 'stacked' allowing for multiple handlers to be called in the
order they are listed in the httpd.conf for a section. phpRequire is now supported (called out of the post-read request handler), and a first attempt at phpResponseHandler, a response-time type handler which is set by a
<Location blah>
SetHandler php-script
phpResponseHandler /tmp/foo.php
</Location>
To allow for the stacked handlers, the entirety of zend_stack.c was imported into mod_php4.c. There is a patch pending to zend_stack.c to add the functionality so that all the redundant code can be removed.
Revision
93815 -
Directory Listing
Modified
Tue Aug 27 14:41:53 2002 UTC
(6 years, 10 months ago)
by
gschlossnagle
Replaced handler loading commands such that what was
php_value uri_handler /tmp/foo.php
is now
phpUriHandler /tmp/foo.php
This fixes some bugs that caused handlers to be skipped or mysteriously 'unloaded',
reduces the number of calls to zend_alter_ini_entries that are necessary, as well
as allows for easier implementation of stacked handlers (which comes next).
Added 2 new hooks, phpPostReadHandler and phpHeaderHandler (going to the obvious places).
Revision
93711 -
Directory Listing
Modified
Mon Aug 26 23:49:15 2002 UTC
(6 years, 10 months ago)
by
azzit
- add interface functions for headers_in, headers_out and err_headers_out
Revision
93699 -
Directory Listing
Modified
Mon Aug 26 23:14:21 2002 UTC
(6 years, 10 months ago)
by
azzit
- put common sapi startup code into a function
Revision
93689 -
Directory Listing
Modified
Mon Aug 26 20:06:31 2002 UTC
(6 years, 10 months ago)
by
gschlossnagle
Import of Lukas Schroeder's work to give php a full interface to apache 1.3.x's hook interface, and full class wrappers around the apache request object and it's interfaces.
Revision
93686 -
Directory Listing
Modified
Mon Aug 26 20:02:18 2002 UTC
(6 years, 10 months ago)
by
gschlossnagle
new full apache-1.3.x hooks interface support initial import
Revision
92978 -
Directory Listing
Modified
Thu Aug 22 07:56:40 2002 UTC
(6 years, 10 months ago)
by
cvs2svn
This commit was manufactured by cvs2svn to create branch 'apache_hooks'.
Revision
56982 -
Directory Listing
Modified
Thu Sep 6 23:39:02 2001 UTC
(7 years, 10 months ago)
by
rasmus
Ok, get it onto the right branch
(cvs can get annoying sometimes)
Revision
56935 -
Directory Listing
Modified
Thu Sep 6 09:53:34 2001 UTC
(7 years, 10 months ago)
by
rasmus
Apache request handler hook framework. So far only the uri hook is
implemented, but the others will be easy once I finish the uri translation
example. The big things left to do is to create a proper $r request
object to be manipulated in user-space and also to verify that the hooks
don't steal the POST data such that it isn't available to the content
handler once it is finally called. Or if we do steal it, make sure it
is somehow available to the content handler later on.
Comments and help with this stuff is more than welcome. Check out these
files from the 'apache_hooks' branch to play along.
Revision
56418 -
Directory Listing
Modified
Fri Aug 31 22:03:25 2001 UTC
(7 years, 10 months ago)
by
cvs2svn
Copied from:
php/php-src/trunk revision 56417
This commit was manufactured by cvs2svn to create branch 'apache_hooks'.
Revision
56374 -
Directory Listing
Modified
Fri Aug 31 17:56:44 2001 UTC
(7 years, 10 months ago)
by
cox
Original Path:
php/php-src/trunk
fix problem when mixing different error modes under certain circumstances
(pear/test/pear_error3.phpt)
Revision
56370 -
Directory Listing
Modified
Fri Aug 31 16:43:08 2001 UTC
(7 years, 10 months ago)
by
cox
Original Path:
php/php-src/trunk
make some tests to work. Still left the Notice of the deprecated use of
call_user_method, no way to shut it down.
Revision
56366 -
Directory Listing
Modified
Fri Aug 31 16:12:33 2001 UTC
(7 years, 10 months ago)
by
cox
Original Path:
php/php-src/trunk
Use _default_error_options as the options for PEAR_ERROR_CALLBACK.
Depreciate the use of _default_error_callback
Revision
56348 -
Directory Listing
Modified
Fri Aug 31 13:27:46 2001 UTC
(7 years, 10 months ago)
by
cox
Original Path:
php/php-src/trunk
fix userinfo msg in Pear_Error::toString() when callback mode is selected
and style
Revision
56341 -
Directory Listing
Modified
Fri Aug 31 04:52:10 2001 UTC
(7 years, 10 months ago)
by
andrei
Original Path:
php/php-src/trunk
@- Made in_array() and search_array() allow the needle to be an array in
@ itself. (Andrei)
Revision
56312 -
Directory Listing
Modified
Thu Aug 30 17:47:04 2001 UTC
(7 years, 10 months ago)
by
sniper
Original Path:
php/php-src/trunk
@- Added ini_get_all() function which returns all registered ini entries
or the entries for the specified extension. (Jani)
Revision
56298 -
Directory Listing
Modified
Thu Aug 30 16:29:36 2001 UTC
(7 years, 10 months ago)
by
sniper
Original Path:
php/php-src/trunk
KISS. And the search order must be reversed always. Last one counts.
Revision
56290 -
Directory Listing
Modified
Thu Aug 30 15:33:43 2001 UTC
(7 years, 10 months ago)
by
sebastian
Original Path:
php/php-src/trunk
HEAD has been 4.0.8-dev for some time now, so name it accordingly.
Revision
56285 -
Directory Listing
Modified
Thu Aug 30 15:27:55 2001 UTC
(7 years, 10 months ago)
by
cox
Original Path:
php/php-src/trunk
The "actual" mode must be taken, not the error object mode
Revision
56266 -
Directory Listing
Modified
Wed Aug 29 23:53:22 2001 UTC
(7 years, 10 months ago)
by
sniper
Original Path:
php/php-src/trunk
According to Zeev this code is just for showing how to create overloaded classes.
Revision
56222 -
Directory Listing
Modified
Wed Aug 29 11:29:52 2001 UTC
(7 years, 10 months ago)
by
wez
Original Path:
php/php-src/trunk
fix bug# 13017 - patch from tsukada {at} fminn.nagano.nagano.jp
Revision
56177 -
Directory Listing
Modified
Tue Aug 28 21:52:11 2001 UTC
(7 years, 10 months ago)
by
wez
Original Path:
php/php-src/trunk
@- Added mailparse_uudecode_all() which extracts all uuencoded attachments
(Wez)
Revision
56094 -
Directory Listing
Modified
Tue Aug 28 06:19:58 2001 UTC
(7 years, 10 months ago)
by
dougm
Original Path:
php/php-src/trunk
not all MPMs support child_init,
so move php_apache_server_startup to the post_config phase
(happens at server startup)
Revision
56065 -
Directory Listing
Modified
Mon Aug 27 20:29:33 2001 UTC
(7 years, 10 months ago)
by
ssb
Original Path:
php/php-src/trunk
* add the directory where php.exe was found to PATH to help Windows
find its DLLs
Revision
56051 -
Directory Listing
Modified
Mon Aug 27 18:43:07 2001 UTC
(7 years, 10 months ago)
by
chagenbu
Original Path:
php/php-src/trunk
add ngettext() support from Walter Franzini <walter {at} sys-net.it>, and use Z_*
macros.
Revision
56005 -
Directory Listing
Modified
Sun Aug 26 15:14:45 2001 UTC
(7 years, 10 months ago)
by
andi
Original Path:
php/php-src/trunk
- Merge Andrei's fix from Engine 1. Please commit patches to both trees!
Revision
55997 -
Directory Listing
Modified
Sun Aug 26 14:25:48 2001 UTC
(7 years, 10 months ago)
by
hholzgra
Original Path:
php/php-src/trunk
removed dbplus_change function
moved db++ specific includes to .c files
Revision
55994 -
Directory Listing
Modified
Sun Aug 26 14:24:34 2001 UTC
(7 years, 10 months ago)
by
hholzgra
Original Path:
php/php-src/trunk
implementation of missing functionality
implementation and build improvements
Revision
55991 -
Directory Listing
Modified
Sun Aug 26 14:20:51 2001 UTC
(7 years, 10 months ago)
by
hholzgra
Original Path:
php/php-src/trunk
removed as all functions from the perl interface have now been implemented
Revision
55986 -
Directory Listing
Modified
Sun Aug 26 14:19:47 2001 UTC
(7 years, 10 months ago)
by
hholzgra
Original Path:
php/php-src/trunk
added symbolic constatns for error codes
removed dbplus_change function
some build improvements
Revision
55964 -
Directory Listing
Modified
Sun Aug 26 11:49:43 2001 UTC
(7 years, 10 months ago)
by
zeev
Original Path:
php/php-src/trunk
Fix my session updates.
trans_sid handling will no longer slow down performance unless a session
is actually in use.
Revision
55960 -
Directory Listing
Modified
Sun Aug 26 11:36:27 2001 UTC
(7 years, 10 months ago)
by
joey
Original Path:
php/php-src/trunk
Fix 1st case of #9893. 2nd case was already fixed in previous commit.
Revision
55957 -
Directory Listing
Modified
Sun Aug 26 11:14:35 2001 UTC
(7 years, 10 months ago)
by
zeev
Original Path:
php/php-src/trunk
Fix trans-sid.
Still need to figure out how to turn trans-sid only when sessions
are actually used.
Revision
55934 -
Directory Listing
Modified
Sat Aug 25 16:09:23 2001 UTC
(7 years, 10 months ago)
by
zeev
Original Path:
php/php-src/trunk
Get rid of TRANS_SID - it's always possible to use it now.
Revision
55930 -
Directory Listing
Modified
Sat Aug 25 15:57:42 2001 UTC
(7 years, 10 months ago)
by
zeev
Original Path:
php/php-src/trunk
Move the trans-sid mechanism to use the output buffering mechanism.
Advantages:
- Would work with the output buffering mechanism in general, and with
output compression in particular
- Should yield better performance (untested as of yet)
Revision
55924 -
Directory Listing
Modified
Sat Aug 25 09:23:10 2001 UTC
(7 years, 10 months ago)
by
wez
Original Path:
php/php-src/trunk
This test needed a newline after an echo.
# However, the test still fails on my system
Revision
55857 -
Directory Listing
Modified
Fri Aug 24 02:58:23 2001 UTC
(7 years, 10 months ago)
by
andrei
Original Path:
php/php-src/trunk
@- Fixed a crash bug in array_map() if the input arrays had string or
@ non-sequential keys. Also modified it so that if a single array is passed,
@ its keys are preserved in the resulting array. (Andrei)
Revision
55850 -
Directory Listing
Modified
Fri Aug 24 02:21:16 2001 UTC
(7 years, 10 months ago)
by
jdonagher
Original Path:
php/php-src/trunk
Don't try and search a 0-length string. This allows parse_url() to correctly
parse a non-pathed URI, i.e. 'scheme://'
Revision
55844 -
Directory Listing
Modified
Fri Aug 24 01:21:14 2001 UTC
(7 years, 10 months ago)
by
sterling
Original Path:
php/php-src/trunk
Break the entire PHP build
# just kidding, noet work :)
Revision
55800 -
Directory Listing
Modified
Thu Aug 23 10:43:15 2001 UTC
(7 years, 10 months ago)
by
wez
Original Path:
php/php-src/trunk
- Add support for chinese encodings to htmlentities/htmlspecialchars
(patch from Alan Knowles <alan_k {at} hklc.com>)
Revision
55777 -
Directory Listing
Modified
Wed Aug 22 22:14:08 2001 UTC
(7 years, 10 months ago)
by
jeroen
Original Path:
php/php-src/trunk
Reverted the patch to main branch - should have branched whole
ext/standard...
Revision
55774 -
Directory Listing
Modified
Wed Aug 22 22:11:57 2001 UTC
(7 years, 10 months ago)
by
jeroen
Original Path:
php/php-src/trunk
Commit forgotten fix in crypt.c, oversight of a BC-problem
Revision
55738 -
Directory Listing
Modified
Wed Aug 22 10:25:24 2001 UTC
(7 years, 10 months ago)
by
sniper
Original Path:
php/php-src/trunk
Fixed two problems:
- CGI_BINARY was defined always thus this extension
could be compiled with even when not building CGI binary.
- HAVE_READLINE => HAVE_LIBREADLINE (typo)
Revision
55694 -
Directory Listing
Modified
Tue Aug 21 23:58:19 2001 UTC
(7 years, 10 months ago)
by
joey
Original Path:
php/php-src/trunk
Hmmm...not sure what this was trying to do. stat() was acting like filesize().
Revision
55680 -
Directory Listing
Modified
Tue Aug 21 21:49:32 2001 UTC
(7 years, 10 months ago)
by
joey
Original Path:
php/php-src/trunk
Some changes to help out previous users of domxml...
node::tagname == node::name.
Add property "type" to textnode types.
Revision
55662 -
Directory Listing
Modified
Tue Aug 21 13:33:16 2001 UTC
(7 years, 10 months ago)
by
uw
Original Path:
php/php-src/trunk
Added two new functions:
int pdf_get_minorversion()
int pdf_get_majorversion()
Both functions are taken from the C-Library. You should be able to determine
the API version of the extension/library using pdf_get_value() or
pdf_get_parameter() but these functions need a pdf object to work on. This
means that you have to create an pdf object before you can find out the
API version. Using pdf_get_minorversion() and pdf_get_majorversion() there's
no need for this.
Revision
55575 -
Directory Listing
Modified
Mon Aug 20 16:34:45 2001 UTC
(7 years, 10 months ago)
by
dougm
Original Path:
php/php-src/trunk
automatically add php input/output filters when give the standard 1.x config:
AddType application/x-httpd-php .php
with that, no longer need "Set{In,Out}putFilter PHP" configuration for 2.0
Revision
55540 -
Directory Listing
Modified
Mon Aug 20 14:04:48 2001 UTC
(7 years, 10 months ago)
by
sniper
Original Path:
php/php-src/trunk
Cleaning. And made the check for SSL support in SNMP to really work.
Revision
55494 -
Directory Listing
Modified
Mon Aug 20 05:00:05 2001 UTC
(7 years, 11 months ago)
by
shane
Original Path:
php/php-src/trunk
Windows compilation of fast cgi now working. See windows.txt for info.
Revision
55491 -
Directory Listing
Modified
Mon Aug 20 03:32:43 2001 UTC
(7 years, 11 months ago)
by
opaquedave
Original Path:
php/php-src/trunk
Added flags for SWFDisplayItem_addAction
Added Ming RINIT function
Added error handler for reporting Ming errors in PHP environment
Added size arg to drawGlyph function
Added swfdisplayitem_addAction function
Added ming_useSWFVersion function for selecting SWF 4 compatibility
Added SWFBitmap object
Added hacky SWFInput object for loading data from file/network/process
Revision
55487 -
Directory Listing
Modified
Mon Aug 20 03:24:14 2001 UTC
(7 years, 11 months ago)
by
opaquedave
Original Path:
php/php-src/trunk
changed version check to look for function Ming_useSWFVersion, indicating
Ming 0.2a
Revision
55483 -
Directory Listing
Modified
Mon Aug 20 03:23:26 2001 UTC
(7 years, 11 months ago)
by
opaquedave
Original Path:
php/php-src/trunk
added function prototypes:
PHP_RINIT_FUNCTION(ming)
PHP_FUNCTION(swfdisplayitem_addAction)
PHP_FUNCTION(ming_useSWFVersion)
Revision
55467 -
Directory Listing
Modified
Sun Aug 19 21:07:50 2001 UTC
(7 years, 11 months ago)
by
dougm
Original Path:
php/php-src/trunk
php_input_filter needs to ignore proxy requests
else it swallows POST data that needs to be sent to the downstream server
Revision
55464 -
Directory Listing
Modified
Sun Aug 19 20:28:36 2001 UTC
(7 years, 11 months ago)
by
sterling
Original Path:
php/php-src/trunk
Pass on proxy requests (fix by Doug MacEachern <dougm {at} covalent.net>)
Revision
55438 -
Directory Listing
Modified
Sun Aug 19 12:53:01 2001 UTC
(7 years, 11 months ago)
by
cox
Original Path:
php/php-src/trunk
The "pear package" command will try to open "./package.xml" if no more
params are given.
Revision
55400 -
Directory Listing
Modified
Sun Aug 19 06:37:05 2001 UTC
(7 years, 11 months ago)
by
sniper
Original Path:
php/php-src/trunk
Fixed bug: #11232. Now we require Fribidi 0.9.0.
# Better use the latest version for this one too since
# it seems to have stabilized and they made an internal
# rewrite for that one.
Revision
55383 -
Directory Listing
Modified
Sun Aug 19 00:34:08 2001 UTC
(7 years, 11 months ago)
by
ssb
Original Path:
php/php-src/trunk
Added "phptar" command as proof that the Archive_Tar class works.
# Great work, Vincent!