summaryrefslogtreecommitdiff
path: root/ext/standard/url.c
Commit message (Collapse)AuthorAgeFilesLines
* Maintain headers.Sebastian Bergmann2002-02-281-1/+1
|
* Update headers.Sebastian Bergmann2001-12-111-2/+2
|
* - Fix for bug #13413Derick Rethans2001-10-201-1/+1
|
* Convert to use new parameter parsing API.Andrei Zmievski2001-10-191-40/+36
|
* - Don't wrap lines... this is annoying while coding.Derick Rethans2001-09-091-2/+2
|
* fix protoSterling Hughes2001-09-041-1/+1
|
* Don't try and search a 0-length string. This allows parse_url() to correctlyJohn Donagher2001-08-241-26/+28
| | | | | parse a non-pathed URI, i.e. 'scheme://'
* pval -> zvalSterling Hughes2001-08-171-45/+23
| | | | | | Z_*_P{0,2} macros easier way of doing urldecode(), from rawurldecode() (a tad faster too).
* WhitespaceZeev Suraski2001-08-111-4/+4
|
* ZVAL_BOOL(v,0) -> ZVAL_FALSE(v)Thies C. Arntzen2001-07-111-2/+2
|
* Nuke zval_resetZeev Suraski2001-07-111-2/+2
|
* var_reset -> ZVAL_RESETZeev Suraski2001-07-111-2/+2
|
* Fix crash bug in urlencode().Sebastian Bergmann2001-06-191-1/+0
|
* Clean-upZeev Suraski2001-06-131-8/+15
| | | | | Remove a lot of 100% redundent code
* PHPAPIize url function to make them available to the outside (i.e. mbstring)Daniel Beulshausen2001-06-111-9/+9
|
* Fix folding and clean up some extensionsRasmus Lerdorf2001-06-061-2/+23
|
* vim-6 does folding - clean up a bunch of missing folding tags plusRasmus Lerdorf2001-06-051-0/+1
| | | | | some misguided RINIT and RSHUTDOWN calls in a few fringe extensions
* MFBfoobar2001-05-151-5/+5
|
* - Fix copyright notices with 2001Andi Gutmans2001-02-261-1/+1
|
* - Now really fix it.Andi Gutmans2000-10-021-2/+2
|
* - Fix bug in parse_url()Andi Gutmans2000-10-021-1/+1
|
* Small fix to the literal IPv6 parsing, now stops at first ] after [Stig Venaas2000-09-221-1/+1
|
* Parsing of URLs with literal IPv6 addresses, see RFC 2732Stig Venaas2000-09-221-6/+8
| | | | | @- IPv6 support in fopen (one can access IPv6 ftp/web servers) (Stig Venaas)
* Bug #6016: Fix EBCDIC logic error in urlencode()Martin Kraemer2000-08-081-1/+2
| | | | | | (a strchr() test was used backwards) Reported by: dumbunny@tivo.com
* This url symbol was a bit too generic. Change it to php_url instead.Rasmus Lerdorf2000-07-291-5/+5
| | | | | | It was clashing with a similar typedef in the UdmSearch integration I am working on.
* Fix #4928Zeev Suraski2000-06-091-2/+4
| | | | | Be *CAREFUL* with the _ex API, guys!
* - ARG_COUNT(ht) -> ZEND_NUM_ARGS() mega patchAndi Gutmans2000-06-051-5/+5
|
* Update the license with the new clause 6Zeev Suraski2000-05-181-2/+2
|
* the pipe is breaking all the timeZeev Suraski2000-02-191-2/+2
|
* (url_parse) only free regex if compile worked.Thies C. Arntzen2000-02-161-2/+4
|
* (url_parse) fix memory leak (#3495)Thies C. Arntzen2000-02-161-0/+3
|
* SAPIfication, Episode VI: Return of the SAPIZeev Suraski2000-02-101-1/+1
| | | | | | | | | | | | | | | Remove mostly all references to APACHE and CGI_BINARY from the code. - Apache include files are no longer included by any PHP code, except for the Apache SAPI module. - No server specific code is in any of the base PHP code. Still left to be done: - Eliminate any references to APACHE from the few remaining modules. - Move request_info.c's logic to SAPI - Modify the regex function names, and globals, so that we can always include them, without having to fear any interference with Apache; Always use the bundled regex library
* Change string->str where possible; string is basic a C++ class, so gdb ↵Zeev Suraski2000-02-081-13/+13
| | | | | | | can't look inside variables named 'string'.
* Happy Y2K patch! Happy new year (or the new millennium, depending on whetherSascha Schumann2000-01-011-1/+1
| | | | | you start counting at 0 or 1).
* - The tree compiles againZeev Suraski1999-12-181-5/+5
|
* More php3_ annihilationZeev Suraski1999-12-181-11/+11
|
* More php3_ annihilationZeev Suraski1999-12-171-2/+2
|
* (PHP urldecode) Fix for #2788, function changed parameter in placeSascha Schumann1999-11-211-2/+5
|
* Clean up regex header file mess. php.h now explicitly includes php_regex.hRasmus Lerdorf1999-10-301-1/+0
| | | | | | | and php_regex.h figures out which regex header files to include and defines symbols that prevents other stuff from including the wrong versions of regex header files.
* (parse_url) fix for #2569: parse_url('-') crashesThies C. Arntzen1999-10-191-1/+1
| | | | | @- Fixed parse_url('-') crash. (Thies)
* Fix for my fix.Andrey Hristov1999-09-291-1/+1
|
* Fix for bug #2199. Redirect was returning http:// which resulted in a crash.Andrey Hristov1999-09-271-0/+8
|
* Use new Zend API.Sascha Schumann1999-09-241-27/+27
|
* Removed '3' from key functions in PHP (maintained compatibility throughZeev Suraski1999-08-021-5/+5
| | | | | php3_compat.h)
* License updateZeev Suraski1999-07-161-20/+9
|
* urlencode and decode return an empty-string if the input-string is empty ↵Thies C. Arntzen1999-06-221-2/+4
| | | | | | | (matches php3 behaviour "more" closly) Please read my previous mail and comment!
* conv_proto *.[ch]Sascha Schumann1999-05-161-5/+5
|
* * Get Apache to work. POST doesn't work yet.Zeev Suraski1999-05-111-1/+1
| | | | | | | * There are now -I directives for the absolute path of php4, php4/libzend and the builddir for the Apache module, so we can #include any php/Zend header. * Rename config.h to php_config.h
* A lot of cleanups... Removed old thread-safe code and other redundant code ↵Zeev Suraski1999-04-241-5/+0
| | | | and files
* Remove tls.[ch]Zeev Suraski1999-04-231-3/+0
|