PHP  
SVN Instructions  
/[svn]/php/php-src/branches/apache_hooks Main trees: php-src | pecl | pear | pear-core  

View Directory Listing Directory Listing


Sticky Revision:


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 56417 - Directory Listing
Modified Fri Aug 31 22:03:24 2001 UTC (7 years, 10 months ago) by sniper
Original Path: php/php-src/trunk
WS

Revision 56414 - Directory Listing
Modified Fri Aug 31 21:55:43 2001 UTC (7 years, 10 months ago) by sterling
Original Path: php/php-src/trunk
spaces->tabs

Revision 56413 - Directory Listing
Modified Fri Aug 31 21:52:44 2001 UTC (7 years, 10 months ago) by sterling
Original Path: php/php-src/trunk
MFZE1

Revision 56412 - Directory Listing
Modified Fri Aug 31 21:47:26 2001 UTC (7 years, 10 months ago) by sterling
Original Path: php/php-src/trunk
MFZE1

Revision 56403 - Directory Listing
Modified Fri Aug 31 20:03:09 2001 UTC (7 years, 10 months ago) by zeev
Original Path: php/php-src/trunk
Restore session_adapt_url()

Revision 56399 - Directory Listing
Modified Fri Aug 31 19:55:54 2001 UTC (7 years, 10 months ago) by sniper
Original Path: php/php-src/trunk
fixed NEWS entry

Revision 56395 - Directory Listing
Modified Fri Aug 31 19:26:12 2001 UTC (7 years, 10 months ago) by zeev
Original Path: php/php-src/trunk
Cleanup and clarify

Revision 56392 - Directory Listing
Modified Fri Aug 31 19:22:08 2001 UTC (7 years, 10 months ago) by zeev
Original Path: php/php-src/trunk
define_sid updates

Revision 56388 - Directory Listing
Modified Fri Aug 31 19:21:02 2001 UTC (7 years, 10 months ago) by cox
Original Path: php/php-src/trunk
renumber error lines

Revision 56384 - Directory Listing
Modified Fri Aug 31 19:13:24 2001 UTC (7 years, 10 months ago) by cox
Original Path: php/php-src/trunk
fix for DB/tests/db_error2.phpt

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 56363 - Directory Listing
Modified Fri Aug 31 15:56:48 2001 UTC (7 years, 10 months ago) by zeev
Original Path: php/php-src/trunk
Support multiple chunked output buffering layers

Revision 56360 - Directory Listing
Modified Fri Aug 31 15:22:10 2001 UTC (7 years, 10 months ago) by zeev
Original Path: php/php-src/trunk
Fix trans_sid handler registration logic

Revision 56357 - Directory Listing
Modified Fri Aug 31 15:16:15 2001 UTC (7 years, 10 months ago) by zeev
Original Path: php/php-src/trunk
Fix double freeing

Revision 56354 - Directory Listing
Modified Fri Aug 31 14:34:40 2001 UTC (7 years, 10 months ago) by zeev
Original Path: php/php-src/trunk
API update

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 56347 - Directory Listing
Modified Fri Aug 31 13:11:52 2001 UTC (7 years, 10 months ago) by zeev
Original Path: php/php-src/trunk
MFZE1

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 56334 - Directory Listing
Modified Fri Aug 31 00:11:32 2001 UTC (7 years, 10 months ago) by changelog
Original Path: php/php-src/trunk
ChangeLog update

Revision 56331 - Directory Listing
Modified Fri Aug 31 00:11:29 2001 UTC (7 years, 10 months ago) by changelog
Original Path: php/php-src/trunk
NEWS update

Revision 56323 - Directory Listing
Modified Thu Aug 30 19:55:57 2001 UTC (7 years, 10 months ago) by cox
Original Path: php/php-src/trunk
killed obscure bug in pushErrorHandling

Revision 56317 - Directory Listing
Modified Thu Aug 30 18:06:30 2001 UTC (7 years, 10 months ago) by zeev
Original Path: php/php-src/trunk
Try to fix TSRM.dsp

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 56310 - Directory Listing
Modified Thu Aug 30 17:27:43 2001 UTC (7 years, 10 months ago) by andi
Original Path: php/php-src/trunk
- Make it compile in thread-safe mode.

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 56289 - Directory Listing
Modified Thu Aug 30 15:31:35 2001 UTC (7 years, 10 months ago) by andi
Original Path: php/php-src/trunk
- Get rid of warning and C++ comments

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 56284 - Directory Listing
Modified Thu Aug 30 15:26:30 2001 UTC (7 years, 10 months ago) by andi
Original Path: php/php-src/trunk
- Initial support for exceptions.

Revision 56279 - Directory Listing
Modified Thu Aug 30 13:38:33 2001 UTC (7 years, 10 months ago) by zeev
Original Path: php/php-src/trunk
Fix unclean shutdown value

Revision 56278 - Directory Listing
Modified Thu Aug 30 12:08:23 2001 UTC (7 years, 10 months ago) by zeev
Original Path: php/php-src/trunk
MFZE1

Revision 56270 - Directory Listing
Modified Thu Aug 30 00:10:37 2001 UTC (7 years, 10 months ago) by changelog
Original Path: php/php-src/trunk
ChangeLog update

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 56258 - Directory Listing
Modified Wed Aug 29 22:26:04 2001 UTC (7 years, 10 months ago) by joey
Original Path: php/php-src/trunk
Fix bug #13025.

Revision 56242 - Directory Listing
Modified Wed Aug 29 16:00:30 2001 UTC (7 years, 10 months ago) by sniper
Original Path: php/php-src/trunk
WS fixes and indenting.

Revision 56234 - Directory Listing
Modified Wed Aug 29 13:38:08 2001 UTC (7 years, 10 months ago) by andrei
Original Path: php/php-src/trunk
Fix changelog.

Revision 56231 - Directory Listing
Modified Wed Aug 29 13:13:24 2001 UTC (7 years, 10 months ago) by wez
Original Path: php/php-src/trunk
fix build

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 56211 - Directory Listing
Modified Wed Aug 29 00:10:38 2001 UTC (7 years, 10 months ago) by changelog
Original Path: php/php-src/trunk
ChangeLog update

Revision 56208 - Directory Listing
Modified Wed Aug 29 00:10:33 2001 UTC (7 years, 10 months ago) by changelog
Original Path: php/php-src/trunk
NEWS update

Revision 56205 - Directory Listing
Modified Wed Aug 29 00:10:21 2001 UTC (7 years, 10 months ago) by changelog
Original Path: php/php-src/trunk
ChangeLog update

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 56173 - Directory Listing
Modified Tue Aug 28 21:50:37 2001 UTC (7 years, 10 months ago) by rasmus
Original Path: php/php-src/trunk
Kill a warning

Revision 56170 - Directory Listing
Modified Tue Aug 28 21:50:29 2001 UTC (7 years, 10 months ago) by wez
Original Path: php/php-src/trunk
fix uudecode

Revision 56162 - Directory Listing
Modified Tue Aug 28 18:26:46 2001 UTC (7 years, 10 months ago) by wez
Original Path: php/php-src/trunk
fix cp1252 -> wchar conversion

Revision 56150 - Directory Listing
Modified Tue Aug 28 13:39:50 2001 UTC (7 years, 10 months ago) by cox
Original Path: php/php-src/trunk
added the Mail/mime.php file

Revision 56146 - Directory Listing
Modified Tue Aug 28 13:07:33 2001 UTC (7 years, 10 months ago) by ssb
Original Path: php/php-src/trunk
* tidy up "make install" output

Revision 56136 - Directory Listing
Modified Tue Aug 28 12:26:47 2001 UTC (7 years, 10 months ago) by ssb
Original Path: php/php-src/trunk
* Archive_Tar is no longer experimental

Revision 56133 - Directory Listing
Modified Tue Aug 28 12:15:01 2001 UTC (7 years, 10 months ago) by ssb
Original Path: php/php-src/trunk
* output brief usage when called without params

Revision 56125 - Directory Listing
Modified Tue Aug 28 12:11:32 2001 UTC (7 years, 10 months ago) by ssb
Original Path: php/php-src/trunk
* Log/Observer.php rename fix

Revision 56117 - Directory Listing
Modified Tue Aug 28 11:18:08 2001 UTC (7 years, 10 months ago) by ssb
Original Path: php/php-src/trunk
* started work on php file support

Revision 56113 - Directory Listing
Modified Tue Aug 28 09:23:22 2001 UTC (7 years, 10 months ago) by zeev
Original Path: php/php-src/trunk
MFZE1

Revision 56107 - Directory Listing
Modified Tue Aug 28 08:52:03 2001 UTC (7 years, 10 months ago) by ssb
Original Path: php/php-src/trunk
* fold case when parsing package.xml

Revision 56097 - Directory Listing
Modified Tue Aug 28 06:23:27 2001 UTC (7 years, 10 months ago) by dougm
Original Path: php/php-src/trunk
add php version component

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 56082 - Directory Listing
Modified Tue Aug 28 00:10:11 2001 UTC (7 years, 10 months ago) by changelog
Original Path: php/php-src/trunk
ChangeLog update

Revision 56077 - Directory Listing
Modified Mon Aug 27 22:26:49 2001 UTC (7 years, 10 months ago) by sniper
Original Path: php/php-src/trunk
Coding style.

Revision 56073 - Directory Listing
Modified Mon Aug 27 21:25:16 2001 UTC (7 years, 10 months ago) by ssb
Original Path: php/php-src/trunk
* fixes to make package.xml parsing case insensitive

Revision 56069 - Directory Listing
Modified Mon Aug 27 20:37:06 2001 UTC (7 years, 10 months ago) by ssb
Original Path: php/php-src/trunk
* typo

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 56061 - Directory Listing
Modified Mon Aug 27 20:17:36 2001 UTC (7 years, 10 months ago) by ssb
Original Path: php/php-src/trunk
* Windows fix

Revision 56058 - Directory Listing
Modified Mon Aug 27 20:05:11 2001 UTC (7 years, 10 months ago) by chagenbu
Original Path: php/php-src/trunk
shorter protos

Revision 56054 - Directory Listing
Modified Mon Aug 27 18:43:20 2001 UTC (7 years, 10 months ago) by andi
Original Path: php/php-src/trunk
- Add sample RFC

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 56047 - Directory Listing
Modified Mon Aug 27 16:53:39 2001 UTC (7 years, 10 months ago) by andrei
Original Path: php/php-src/trunk
Moved to 4.0.7.

Revision 56041 - Directory Listing
Modified Mon Aug 27 16:39:49 2001 UTC (7 years, 10 months ago) by ssb
Original Path: php/php-src/trunk
* MTH (merge _to_ head)

Revision 56031 - Directory Listing
Modified Mon Aug 27 02:06:32 2001 UTC (7 years, 10 months ago) by zeev
Original Path: php/php-src/trunk
Cleanup

Revision 56026 - Directory Listing
Modified Mon Aug 27 00:23:55 2001 UTC (7 years, 10 months ago) by zeev
Original Path: php/php-src/trunk
More fixes and refinements

Revision 56021 - Directory Listing
Modified Mon Aug 27 00:10:55 2001 UTC (7 years, 10 months ago) by changelog
Original Path: php/php-src/trunk
ChangeLog update

Revision 56007 - Directory Listing
Modified Sun Aug 26 15:25:55 2001 UTC (7 years, 10 months ago) by stas
Original Path: php/php-src/trunk
Add dlsym underscore detection, by Jani Taskinen

Revision 56006 - Directory Listing
Modified Sun Aug 26 15:16:06 2001 UTC (7 years, 10 months ago) by andi
Original Path: php/php-src/trunk
- MFZE1

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 56000 - Directory Listing
Modified Sun Aug 26 14:26:36 2001 UTC (7 years, 10 months ago) by hholzgra
Original Path: php/php-src/trunk
whitespace

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 55983 - Directory Listing
Modified Sun Aug 26 14:15:39 2001 UTC (7 years, 10 months ago) by hholzgra
Original Path: php/php-src/trunk
added -lm to LIBS, whitespae

Revision 55980 - Directory Listing
Modified Sun Aug 26 14:12:27 2001 UTC (7 years, 10 months ago) by hholzgra
Original Path: php/php-src/trunk
whitespace

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 55949 - Directory Listing
Modified Sun Aug 26 01:10:10 2001 UTC (7 years, 10 months ago) by rasmus
Original Path: php/php-src/trunk
Test your changes please Jani

Revision 55946 - Directory Listing
Modified Sun Aug 26 01:09:20 2001 UTC (7 years, 10 months ago) by zeev
Original Path: php/php-src/trunk
Make the session module more independent

Revision 55942 - Directory Listing
Modified Sun Aug 26 00:10:09 2001 UTC (7 years, 10 months ago) by changelog
Original Path: php/php-src/trunk
ChangeLog update

Revision 55937 - Directory Listing
Modified Sat Aug 25 16:19:57 2001 UTC (7 years, 10 months ago) by zeev
Original Path: php/php-src/trunk
This option is no longer needed

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 55927 - Directory Listing
Modified Sat Aug 25 12:47:12 2001 UTC (7 years, 10 months ago) by zeev
Original Path: php/php-src/trunk
add struct name

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 55921 - Directory Listing
Modified Sat Aug 25 09:21:43 2001 UTC (7 years, 10 months ago) by wez
Original Path: php/php-src/trunk
Windows-1252 encoding awareness

Revision 55918 - Directory Listing
Modified Sat Aug 25 09:20:18 2001 UTC (7 years, 10 months ago) by wez
Original Path: php/php-src/trunk
TSRMLS fix

Revision 55915 - Directory Listing
Modified Sat Aug 25 00:11:03 2001 UTC (7 years, 10 months ago) by jeroen
Original Path: php/php-src/trunk
Add random number generator-entry to INI-files

Revision 55912 - Directory Listing
Modified Sat Aug 25 00:11:00 2001 UTC (7 years, 10 months ago) by changelog
Original Path: php/php-src/trunk
ChangeLog update

Revision 55909 - Directory Listing
Modified Sat Aug 25 00:10:57 2001 UTC (7 years, 10 months ago) by changelog
Original Path: php/php-src/trunk
NEWS update

Revision 55891 - Directory Listing
Modified Fri Aug 24 20:05:58 2001 UTC (7 years, 10 months ago) by sniper
Original Path: php/php-src/trunk
Fixed bug: #12948, #12945

Revision 55877 - Directory Listing
Modified Fri Aug 24 09:03:50 2001 UTC (7 years, 10 months ago) by wez
Original Path: php/php-src/trunk
Ahem.

Revision 55874 - Directory Listing
Modified Fri Aug 24 09:01:41 2001 UTC (7 years, 10 months ago) by wez
Original Path: php/php-src/trunk
update news

Revision 55871 - Directory Listing
Modified Fri Aug 24 08:58:10 2001 UTC (7 years, 10 months ago) by wez
Original Path: php/php-src/trunk
Fix htmlspecialchars problem.

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 55853 - Directory Listing
Modified Fri Aug 24 02:24:03 2001 UTC (7 years, 10 months ago) by sterling
Original Path: php/php-src/trunk
proto fix

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 55847 - Directory Listing
Modified Fri Aug 24 01:23:14 2001 UTC (7 years, 10 months ago) by sterling
Original Path: php/php-src/trunk
noet

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 55840 - Directory Listing
Modified Fri Aug 24 01:12:37 2001 UTC (7 years, 10 months ago) by sterling
Original Path: php/php-src/trunk
noet

Revision 55837 - Directory Listing
Modified Fri Aug 24 01:09:10 2001 UTC (7 years, 10 months ago) by sterling
Original Path: php/php-src/trunk
New extensions should put this in by default

Revision 55831 - Directory Listing
Modified Fri Aug 24 00:10:36 2001 UTC (7 years, 10 months ago) by changelog
Original Path: php/php-src/trunk
ChangeLog update

Revision 55827 - Directory Listing
Modified Thu Aug 23 21:56:29 2001 UTC (7 years, 10 months ago) by sterling
Original Path: php/php-src/trunk
noet

Revision 55822 - Directory Listing
Modified Thu Aug 23 21:22:38 2001 UTC (7 years, 10 months ago) by sterling
Original Path: php/php-src/trunk
some cleanup

Revision 55806 - Directory Listing
Modified Thu Aug 23 14:24:13 2001 UTC (7 years, 10 months ago) by zeev
Original Path: php/php-src/trunk
whitespace

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 55797 - Directory Listing
Modified Thu Aug 23 09:18:21 2001 UTC (7 years, 10 months ago) by stas
Original Path: php/php-src/trunk
Add TODO for DLSYM_NEEDS_UNDRESCORE

Revision 55787 - Directory Listing
Modified Thu Aug 23 00:10:41 2001 UTC (7 years, 10 months ago) by changelog
Original Path: php/php-src/trunk
ChangeLog update

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 55767 - Directory Listing
Modified Wed Aug 22 17:39:16 2001 UTC (7 years, 10 months ago) by sniper
Original Path: php/php-src/trunk
killed a compile warning.

Revision 55761 - Directory Listing
Modified Wed Aug 22 15:12:50 2001 UTC (7 years, 10 months ago) by sniper
Original Path: php/php-src/trunk
Added missing entry..

Revision 55741 - Directory Listing
Modified Wed Aug 22 10:26:02 2001 UTC (7 years, 10 months ago) by sniper
Original Path: php/php-src/trunk
This is not needed anymore.

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 55735 - Directory Listing
Modified Wed Aug 22 09:20:40 2001 UTC (7 years, 10 months ago) by sniper
Original Path: php/php-src/trunk
More compile warnings nuked.

Revision 55731 - Directory Listing
Modified Wed Aug 22 08:43:52 2001 UTC (7 years, 10 months ago) by sniper
Original Path: php/php-src/trunk
indent.

Revision 55727 - Directory Listing
Modified Wed Aug 22 08:34:04 2001 UTC (7 years, 10 months ago) by sniper
Original Path: php/php-src/trunk
Killed a compile warning.

Revision 55721 - Directory Listing
Modified Wed Aug 22 05:47:11 2001 UTC (7 years, 10 months ago) by swm
Original Path: php/php-src/trunk
Fixed buffer overflow issue.

Revision 55718 - Directory Listing
Modified Wed Aug 22 04:45:51 2001 UTC (7 years, 10 months ago) by sterling
Original Path: php/php-src/trunk
Add some editor modes (in the rest of the source)

Revision 55715 - Directory Listing
Modified Wed Aug 22 02:03:14 2001 UTC (7 years, 10 months ago) by swm
Original Path: php/php-src/trunk
Changed php_strip_tags() to check if <? was XML code.

Revision 55709 - Directory Listing
Modified Wed Aug 22 00:10:24 2001 UTC (7 years, 10 months ago) by changelog
Original Path: php/php-src/trunk
ChangeLog update

Revision 55704 - Directory Listing
Modified Wed Aug 22 00:09:27 2001 UTC (7 years, 10 months ago) by ssb
Original Path: php/php-src/trunk
* added two missing end folds

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 55667 - Directory Listing
Modified Tue Aug 21 17:58:37 2001 UTC (7 years, 10 months ago) by sterling
Original Path: php/php-src/trunk
Fix typo

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 55657 - Directory Listing
Modified Tue Aug 21 12:57:53 2001 UTC (7 years, 10 months ago) by zeev
Original Path: php/php-src/trunk
API update

Revision 55655 - Directory Listing
Modified Tue Aug 21 12:29:12 2001 UTC (7 years, 10 months ago) by zeev
Original Path: php/php-src/trunk
MFZE1

Revision 55649 - Directory Listing
Modified Tue Aug 21 11:45:33 2001 UTC (7 years, 10 months ago) by sas
Original Path: php/php-src/trunk
Further work on autoconf-2.5x support

Revision 55646 - Directory Listing
Modified Tue Aug 21 11:03:45 2001 UTC (7 years, 10 months ago) by sas
Original Path: php/php-src/trunk
Move PHP_SUBSTs to configure.in.

Revision 55643 - Directory Listing
Modified Tue Aug 21 11:02:42 2001 UTC (7 years, 10 months ago) by sas
Original Path: php/php-src/trunk
nuke some apparently harmful spaces

Revision 55642 - Directory Listing
Modified Tue Aug 21 11:00:22 2001 UTC (7 years, 10 months ago) by sascha
Original Path: php/php-src/trunk
nuke whitespace

Revision 55639 - Directory Listing
Modified Tue Aug 21 10:55:46 2001 UTC (7 years, 10 months ago) by dbeu
Original Path: php/php-src/trunk
add MDAC note

Revision 55636 - Directory Listing
Modified Tue Aug 21 09:04:18 2001 UTC (7 years, 10 months ago) by sterling
Original Path: php/php-src/trunk
Update api and fix some compile warnings

Revision 55632 - Directory Listing
Modified Tue Aug 21 07:56:25 2001 UTC (7 years, 10 months ago) by zeev
Original Path: php/php-src/trunk
Fix Release_TSDbg configuration

Revision 55606 - Directory Listing
Modified Tue Aug 21 00:11:03 2001 UTC (7 years, 10 months ago) by changelog
Original Path: php/php-src/trunk
ChangeLog update

Revision 55591 - Directory Listing
Modified Mon Aug 20 20:50:54 2001 UTC (7 years, 10 months ago) by jeroen
Original Path: php/php-src/trunk
Proto fix

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 55555 - Directory Listing
Modified Mon Aug 20 15:27:45 2001 UTC (7 years, 10 months ago) by sas
Original Path: php/php-src/trunk
Improved fix

Revision 55552 - Directory Listing
Modified Mon Aug 20 15:26:10 2001 UTC (7 years, 10 months ago) by stas
Original Path: php/php-src/trunk
Fix long printing in smart_str_print_long

Revision 55551 - Directory Listing
Modified Mon Aug 20 14:58:52 2001 UTC (7 years, 10 months ago) by zeev
Original Path: php/php-src/trunk
MFZE1

Revision 55546 - Directory Listing
Modified Mon Aug 20 14:15:05 2001 UTC (7 years, 10 months ago) by stas
Original Path: php/php-src/trunk
test big numbers too

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 55537 - Directory Listing
Modified Mon Aug 20 14:04:21 2001 UTC (7 years, 10 months ago) by sniper
Original Path: php/php-src/trunk
Keep crypt() working even if SNMP needs OpenSSL.

Revision 55513 - Directory Listing
Modified Mon Aug 20 08:53:18 2001 UTC (7 years, 10 months ago) by phanto
Original Path: php/php-src/trunk
catch date conversion errors

Revision 55509 - Directory Listing
Modified Mon Aug 20 08:52:49 2001 UTC (7 years, 10 months ago) by phanto
Original Path: php/php-src/trunk
hum, wasn't $foo->bar 's property type OE_IS_METHOD ?

Revision 55501 - Directory Listing
Modified Mon Aug 20 08:31:30 2001 UTC (7 years, 10 months ago) by gluke
Original Path: php/php-src/trunk
# just an author's promary email change in headers

Revision 55497 - Directory Listing
Modified Mon Aug 20 05:01:39 2001 UTC (7 years, 11 months ago) by shane
Original Path: php/php-src/trunk
non-ts compile work, add fastcgi module.

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 55479 - Directory Listing
Modified Mon Aug 20 00:10:24 2001 UTC (7 years, 11 months ago) by changelog
Original Path: php/php-src/trunk
ChangeLog update

Revision 55474 - Directory Listing
Modified Sun Aug 19 22:23:24 2001 UTC (7 years, 11 months ago) by shane
Original Path: php/php-src/trunk
fix for non-TS compile

Revision 55471 - Directory Listing
Modified Sun Aug 19 22:02:46 2001 UTC (7 years, 11 months ago) by shane
Original Path: php/php-src/trunk
Fixes for non-TS compilation

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 55457 - Directory Listing
Modified Sun Aug 19 18:46:55 2001 UTC (7 years, 11 months ago) by ssb
Original Path: php/php-src/trunk
* ignore phptar

Revision 55447 - Directory Listing
Modified Sun Aug 19 15:23:25 2001 UTC (7 years, 11 months ago) by andi
Original Path: php/php-src/trunk
- Fix compile problem

Revision 55443 - Directory Listing
Modified Sun Aug 19 13:39:06 2001 UTC (7 years, 11 months ago) by zeev
Original Path: php/php-src/trunk
MFZE1

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 55431 - Directory Listing
Modified Sun Aug 19 12:37:51 2001 UTC (7 years, 11 months ago) by cox
Original Path: php/php-src/trunk
better error hanlding

Revision 55427 - Directory Listing
Modified Sun Aug 19 12:30:24 2001 UTC (7 years, 11 months ago) by cox
Original Path: php/php-src/trunk
maintain original file perms

Revision 55404 - Directory Listing
Modified Sun Aug 19 06:39:13 2001 UTC (7 years, 11 months ago) by sniper
Original Path: php/php-src/trunk
Added some missing information.

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 55394 - Directory Listing
Modified Sun Aug 19 01:47:19 2001 UTC (7 years, 11 months ago) by sniper
Original Path: php/php-src/trunk
ws fix.

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!

Revision 55380 - Directory Listing
Modified Sun Aug 19 00:10:11 2001 UTC (7 years, 11 months ago) by changelog
Original Path: php/php-src/trunk
ChangeLog update

Revision 55376 - Directory Listing
Modified Sun Aug 19 00:05:06 2001 UTC (7 years, 11 months ago) by sniper
Original Path: php/php-src/trunk
ws

Revision 55373 - Directory Listing
Added Sat Aug 18 23:43:04 2001 UTC (7 years, 11 months ago) by sniper
Original Path: php/php-src/trunk
null terminate the returned string in here too.


[email protected]
ViewVC Help
Powered by ViewVC 1.1.1