summaryrefslogtreecommitdiff
path: root/Zend
Commit message (Collapse)AuthorAgeFilesLines
* This commit was manufactured by cvs2svn to create tag 'dev'.devSVN Migration2002-08-0694-41978/+0
|
* ChangeLog update2002-08-041-0/+8
|
* - Small fixAndi Gutmans2002-08-031-1/+1
|
* MFZE1Zeev Suraski2002-08-031-0/+4
|
* ChangeLog update2002-08-021-0/+5
|
* MFZE1Stanislav Malyshev2002-08-012-3/+7
|
* ChangeLog update2002-07-311-0/+20
|
* MFZE1 global declareJason Greene2002-07-303-2/+7
|
* Fix segfaultJason Greene2002-07-301-1/+1
|
* @- Adding 'is' operator that can be used to check the type of a variable,Andrei Zmievski2002-07-307-1/+114
| | | | | @ or its class. (Andrei)
* ChangeLog update2002-07-291-0/+4
|
* update the handlers structHarald Radi2002-07-281-0/+3
|
* ChangeLog update2002-07-281-0/+8
|
* - Make sure classes are first looked for in the current scope.Andi Gutmans2002-07-272-1/+7
| | | | | | - Make sure that during inheritance the global scope is searched if the - current one doesn't work.
* ChangeLog update2002-07-271-0/+12
|
* - Fix problem with debug_backtrace() reported by Stig. We weren't reportingAndi Gutmans2002-07-264-35/+18
| | | | | | | | - global function information because it wasn't available. We have to do - an additional assignment per-function call so that it'll be available. - Also don't define the global scope as function name _main_ but leave it - empty so that frameworks like Pear can decide what they want to do.
* ChangeLog update2002-07-261-0/+10
|
* Fixed 3 major failures in this test:foobar2002-07-251-25/+27
| | | | | | | | | | | | | | | | | | | 1. Tests work better when they are actually run.. 2. When file is opened, it should be closed sometime too. 3. AC_TRY_RUN cleans after itself (rm -f conftest.*), so it's good idea to read the values while the file still exists. # # James, TEST BEFORE YOU COMMIT!!!!!!! # # Andi, I get these results (in Linux/i386): # # ZEND_MM_ALIGNMENT 4 # ZEND_MM_ALIGNMENT_LOG2 2 # # Weren't these supposed to be 8 and 3 ? #
* ChangeLog update2002-07-251-0/+11
|
* - Fix some compile problems with the new configure checks.Andi Gutmans2002-07-241-17/+4
|
* move testing for the alignment values into configure.James Cox2002-07-242-0/+47
|
* ws fixes.James Cox2002-07-241-17/+0
|
* ChangeLog update2002-07-241-0/+4
|
* - Fix WS.Andi Gutmans2002-07-231-2/+2
|
* ChangeLog update2002-07-221-0/+6
|
* - Fix bug reported by Sebastian where old constructors didn't work inAndi Gutmans2002-07-211-4/+15
| | | | | - nested classes.
* ChangeLog update2002-07-191-0/+5
|
* - MFZE1 - MacOSX fixes by Marko KarppinenDerick Rethans2002-07-182-0/+72
|
* ChangeLog update2002-07-181-0/+12
|
* - Remove code which wasn't supposed to go into the patch.Andi Gutmans2002-07-171-3/+0
|
* - Rejuggle some code.Andi Gutmans2002-07-172-5/+11
|
* This was mentioned already above (with an example too :)foobar2002-07-171-1/+0
|
* ChangeLog update2002-07-171-0/+18
|
* - Before I forget to list it, this was also added.Andi Gutmans2002-07-161-0/+1
|
* - Syntactic sugar - Add "public" as a synonym for "var".Andi Gutmans2002-07-161-0/+5
| | | | | | | | | | | | | | | - Now we have the three P's. You can do: <? class MyClass { public $a; private $b; protected $c; } ?>
* ChangeLog update2002-07-161-0/+24
|
* - MFH of the crap removalDerick Rethans2002-07-151-6/+0
|
* - Commit patch to support protected member variables (by Timm Friebe w/Andi Gutmans2002-07-158-31/+101
| | | | | | | | | - some fixes by me). - You can't access protected variables from outside the object. If you want - to see a protected member from your ancestors you need to declare the - member as protected in the class you want to use it in. You can't - redeclare a protected variable as private nor the other way around.
* - Really implement bool increment/decrement as flip-flop.Andi Gutmans2002-07-151-8/+2
|
* ChangeLog update2002-07-151-0/+22
|
* - Nuke delete(). It was a big mistake to introduce it and I finallyAndi Gutmans2002-07-146-72/+4
| | | | | | | | - understand why Java didn't do so. - If you still want to control destruction of your object then either make - sure you kill all references or create a destruction method which you - call yourself.
* - Nuke some unused codeAndi Gutmans2002-07-141-29/+0
|
* MFZE1Derick Rethans2002-07-141-2/+2
|
* - MFZE1Derick Rethans2002-07-141-6/+6
|
* - MFZE1Derick Rethans2002-07-141-0/+12
|
* ChangeLog update2002-07-081-0/+17
|
* - Path which should improve previous fix.Andi Gutmans2002-07-071-1/+4
|
* - First try at solving problem with different objects being allocated theAndi Gutmans2002-07-071-3/+5
| | | | | - same id.
* name length should be strlen+1Stanislav Malyshev2002-07-071-1/+1
|
* Allow for 'class Namespace::Bar extends Foo' syntax. Patch by Timm Friebe ↵Sebastian Bergmann2002-07-071-1/+1
| | | | <thekid@thekid.de>.