summaryrefslogtreecommitdiff
path: root/Zend/zend_default_classes.c
Commit message (Collapse)AuthorAgeFilesLines
* zend_weakrefsJoe Watkins2019-03-121-1/+2
|
* Remove local variablesPeter Kokot2019-02-031-10/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | This patch removes the so called local variables defined per file basis for certain editors to properly show tab width, and similar settings. These are mainly used by Vim and Emacs editors yet with recent changes the once working definitions don't work anymore in Vim without custom plugins or additional configuration. Neither are these settings synced across the PHP code base. A simpler and better approach is EditorConfig and fixing code using some code style fixing tools in the future instead. This patch also removes the so called modelines for Vim. Modelines allow Vim editor specifically to set some editor configuration such as syntax highlighting, indentation style and tab width to be set in the first line or the last 5 lines per file basis. Since the php test files have syntax highlighting already set in most editors properly and EditorConfig takes care of the indentation settings, this patch removes these as well for the Vim 6.0 and newer versions. With the removal of local variables for certain editors such as Emacs and Vim, the footer is also probably not needed anymore when creating extensions using ext_skel.php script. Additionally, Vim modelines for setting php syntax and some editor settings has been removed from some *.phpt files. All these are mostly not relevant for phpt files neither work properly in the middle of the file.
* Adios, yearly copyright rangesZeev Suraski2019-01-301-1/+1
|
* Remove unused Git attributes identPeter Kokot2018-07-251-2/+0
| | | | | | | | | | | | | | | The $Id$ keywords were used in Subversion where they can be substituted with filename, last revision number change, last changed date, and last user who changed it. In Git this functionality is different and can be done with Git attribute ident. These need to be defined manually for each file in the .gitattributes file and are afterwards replaced with 40-character hexadecimal blob object name which is based only on the particular file contents. This patch simplifies handling of $Id$ keywords by removing them since they are not used anymore.
* year++Xinchen Hui2018-01-021-1/+1
|
* further sync for vim mode linesAnatol Belski2017-07-041-0/+2
|
* Update copyright headers to 2017Sammy Kaye Powers2017-01-021-1/+1
|
* bump year which is missed in rev 49493a2Xinchen Hui2016-01-021-1/+1
|
* bump yearXinchen Hui2015-01-151-1/+1
|
* first shot remove TSRMLS_* thingsAnatol Belski2014-12-131-6/+6
|
* Bump yearXinchen Hui2014-01-031-1/+1
|
* Happy New YearXinchen Hui2013-01-011-1/+1
|
* Add empty Generator classNikita Popov2012-05-201-0/+2
|
* - Year++Felipe Pena2012-01-011-1/+1
|
* - Year++Felipe Pena2011-01-011-1/+1
|
* sed -i "s#1998-2009#1998-2010#g" **/*.c **/*.h **/*.phpSebastian Bergmann2010-01-051-1/+1
|
* MFH: Bump copyright year, 3 of 3.Sebastian Bergmann2008-12-311-1/+1
|
* Added support for lambda functions and closuresDmitry Stogov2008-07-141-0/+2
|
* MFH: Bump copyright year, 2 of 2.Sebastian Bergmann2007-12-311-1/+1
|
* MFH: Bump year.Sebastian Bergmann2007-01-011-1/+1
|
* - Update copyright notices to 2006Andi Gutmans2006-01-041-1/+1
|
* - MFH Move reflection to its own extensionMarcus Boerger2005-11-301-2/+0
| | | | | # As discussed with RM
* Bump up the yearfoobar2005-08-031-1/+1
|
* Centralize exceptions code in zend_exceptions.[ch].Zeev Suraski2004-02-121-503/+1
| | | | | | | | Remove zend_default_classes.h (use zend_exceptions.h instead) NOTE: This currently breaks the build, fixes to php-src and pecl coming soon
* Exceptions updates:Zeev Suraski2004-02-121-27/+22
| | | | | | | | - Enforce exceptions to be derived from class Exception. This allows users to perform catch-all. It's not yet complete, so don't get comfortable with it just yet :) Updates are coming soon. - Implement zend_throw_exception() using zend_throw_exception_ex()
* Fix bug #27186Zeev Suraski2004-02-101-47/+61
|
* Rewrote exception support. Fixes a few limitations and bugs in the oldZeev Suraski2004-02-031-2/+2
| | | | | | | | | | | implementation, and allows exceptions to 'fire' much earlier than before. Instructions on how to use the new mechanism will follow on internals@ shortly... Note - this (most probably) breaks the current implementation of set_exception_handler()
* Fix internal access to exception propertiesMarcus Boerger2004-01-221-14/+14
|
* - Happy new year and PHP 5 for rest of the files too..foobar2004-01-081-1/+1
| | | | | # Should the LICENSE and Zend/LICENSE dates be updated too?
* Do not show exception message if it's empty.Andrei Zmievski2004-01-021-4/+10
| | | | | # Is there a way to preserve the case of the exception class here?
* Make default message look better.Andrei Zmievski2003-12-311-1/+1
|
* Show the exception message again after __toString() magic has been dropped.Marcus Boerger2003-12-061-8/+12
|
* Fixed crash demonstrated with ext/dom/tests/dom003.phpt test case.Ilia Alshanetsky2003-12-051-3/+3
|
* Check return value of exception::__tostring()Marcus Boerger2003-11-301-39/+6
|
* Make exception code more robust:Marcus Boerger2003-11-291-9/+40
| | | | | | | - Fix error in calculation of trace-string length - Allow to overload __strostring() and make it work for uncaught exceptions - Show exception thrown while displaying exceptions
* This forces a better error message for non working clone calls.Marcus Boerger2003-10-251-0/+1
|
* And use things to throw an exception hereMarcus Boerger2003-10-251-2/+3
|
* You shall not clone Exception instancesMarcus Boerger2003-10-251-0/+7
|
* Impement userspace iterator interfaces and tests. See tests for detailsMarcus Boerger2003-10-221-0/+2
| | | | | on the names.
* The string conversion method should be named __toString()Marcus Boerger2003-10-221-5/+5
|
* Added c-api for iteratorsMarcus Boerger2003-10-171-0/+1
| | | | | # After 4 Month work and endless discussions...
* Fix cast functionMarcus Boerger2003-10-151-3/+3
|
* Use studlyCaps in exception classMarcus Boerger2003-09-171-14/+14
|
* Use type instead of constantMarcus Boerger2003-09-111-1/+1
|
* Disallow to changing the backtraceMarcus Boerger2003-09-061-1/+1
|
* Provide string casting for exceptions by calling toString()Marcus Boerger2003-09-051-2/+21
|
* Fix handling of static properties initialized to arraysMarcus Boerger2003-09-031-6/+6
|
* Don't loose information if no parameters were shown.Marcus Boerger2003-09-011-1/+4
| | | | | # Noticed by Sebatian Bergmann
* Show {main} and prevent showing empty stack tracesMarcus Boerger2003-09-011-6/+11
|
* Clearify thisMarcus Boerger2003-09-011-2/+7
|