beberlei
aea43e90df
[2.0] DDC-297 - Fixed XCache object serialization problem.
2010-02-09 20:02:43 +00:00
romanb
4adc289596
[2.0][DDC-284] Fixed. API polish and some convention over configuration simplifications for join columns and join tables.
2010-02-09 17:13:49 +00:00
hobodave
1ad982a4fe
[2.0][DC-460] Refactored cache bulk deletion methods to use driver specific features to retrieve list of keys. Also, refactored tests
...
so that all methods are tested for all drivers.
Removed:
- Doctrine\Common\Cache\AbstractCache::count()
- Doctrine\Common\Cache\AbstractCache::deleteAll()
API Changes:
- Doctrine\ORM\AbstractQuery::getResultCacheId() now public
Bugs fixed:
- Doctrine\Common\Cache\AbstractCache::deleteByPrefix() was deleting _every_ key in cache
2010-01-29 01:38:37 +00:00
beberlei
03132fedfd
[2.0] Fixed Docblock comment of CliController::__construct
2010-01-23 15:07:24 +00:00
romanb
4bec3e2c49
[2.0][DDC-263] Fixed. Patch provided by Christian Heinrich.
2010-01-22 15:10:13 +00:00
guilhermeblanco
4d88f40c81
[2.0] Added unit tests for CLI Configuration. Fixed hasAttrbibute() issue of undefined property.
2010-01-18 02:02:15 +00:00
guilhermeblanco
03d69eea77
[2.0] Added some tests for CLI
2010-01-09 21:25:51 +00:00
guilhermeblanco
d2b59d7a72
[2.0][DDC-223] Enhanced CLI re-importing the Global Arguments functionality
2010-01-06 17:55:55 +00:00
guilhermeblanco
3ec23c7272
[2.0][DDC-223] Enhanced CLI re-importing the Global Arguments functionality
2010-01-06 17:35:37 +00:00
guilhermeblanco
bd6ed7cc76
[2.0] Fixing more glitches found with CLI refactoring
2009-12-22 16:17:35 +00:00
romanb
afbe3add30
[2.0][DDC-221] Namespace fixes.
2009-12-22 13:56:30 +00:00
guilhermeblanco
42a1af8256
[2.0][DDC-183] Fixed issue with Annotations parser failing on identifiers that matches with token types.
2009-12-22 02:15:12 +00:00
guilhermeblanco
bf0cfba239
[2.0] Incorporated CLI refactorings. Added support to namespaces and unlimited depth namespaces. Dropped globalArguments for now, since they interfer in DAG implementation.
2009-12-21 17:38:14 +00:00
romanb
fe7ef4bbeb
[2.0][DDC-122][DDC-97][DDC-98][DDC-147] Refactored metadata mapping drivers by removing the useless PRELOAD mode. Introduced ClassMetadataFactory#getAllMetadata. Classloader simplifications. Old classloaders deprecated. New Doctrine\Common\ClassLoader is almost the same as the previous IsolatedClassLoader.
2009-12-15 21:06:32 +00:00
jwage
220e30e519
[2.0] Fixing the IsolatedClassLoader to work with null ns
2009-11-17 03:38:35 +00:00
guilhermeblanco
67665aa574
[2.0] Major refactorings to CLI. New documentation applied. Missing validation and tests
2009-11-17 01:29:20 +00:00
guilhermeblanco
4a861f08a8
[2.0] More refactorings in Annotations parser and DQL parser. Now they only use constants instead of string processment
2009-11-04 01:52:40 +00:00
romanb
7bbdac1c88
[2.0][DDC-61][DDC-108] Fixed. Started exception refactoring.
2009-11-03 18:30:21 +00:00
beberlei
a05bd5e20c
[2.0] DDC-78 - Added support for context specific information in Annotation Parser Syntax Error Exceptions.
2009-10-30 20:58:06 +00:00
beberlei
881eb212d2
[2.0] Added test that shows AnnotationParser only parses string literals with double quotes, wheras single quotes throw an Syntax Error. Removed debug output on failure for a proper syntax error exception.
2009-10-30 00:36:21 +00:00
beberlei
1eec9f211b
[2.0] Fixed DDC-77 - Prevent PHP Warning on certain annotation constallations
2009-10-30 00:20:17 +00:00
romanb
4fc1781d78
[2.0][DDC-22] Fixed. Also cleaned up association handling. More to come: exception refactorings, proxy simplifications (single proxy class, not two).
2009-10-28 10:31:47 +00:00
jwage
ccf27a386c
[2.0] Minor fixes to cache drivers and result set cache implementation
2009-10-24 00:28:43 +00:00
romanb
4328a4e9e3
[2.0] Small refactorings on the cache drivers. Introduced flag to control whether the cache driver should manage the cache keys since this is an advanced feature that is not always needed and can have negative side-effects (higher probability for cache slams).
2009-10-23 15:03:00 +00:00
jwage
1642f53bf4
[2.0][DDC-48] Fixed issue with getNamespacedId() being called twice
2009-10-23 05:36:47 +00:00
jwage
93e6cabe04
[2.0][DDC-48][DDC-47] Refactored cache drivers to allow more control over deleting, added namespacing to cache drivers and implemented clear-cache task
2009-10-22 22:19:17 +00:00
guilhermeblanco
bf68273a2a
[2.0] Grammar rule fixes to prevent possibility to do key=field=identifier as a correct parseable grammar
2009-10-17 02:09:02 +00:00
guilhermeblanco
b8208211ff
[2.0] Reverted wrong committed files
2009-10-17 02:03:43 +00:00
guilhermeblanco
038e6cadfb
[2.0] Fix CLI documentation of schema-tool task
2009-10-17 01:57:50 +00:00
romanb
cb1c7bce48
[2.0] DBAL cleanups (DDC-46). Proxy class improvements (DDC-19, DDC-39). Started new UPGRADE_TO document for upgrade instructions between advancing Doctrine 2 versions.
2009-10-14 20:18:36 +00:00
jwage
165abc3ca4
[2.0] Work on mapping drivers, exporter drivers and reverse engineering of database schemas
2009-10-07 04:07:23 +00:00
jwage
d1b2f93acb
[2.0] Splitting ClassMetadata in to ClassMetadataInfo and other bug fixes
2009-10-05 04:11:29 +00:00
jwage
968ebb80c2
[2.0] Bug fixes
2009-10-04 19:35:47 +00:00
romanb
320d21e2be
[2.0] Refactored classloader architecture. Renamed ClassLoader => GlobalClassLoader. Introduced IsolatedClassLoader that is suitable for participating in autoload stacks. Added 2 example entity classes to the sandbox with 2 xml mappings and 2 yaml mappings. Simplified sandbox setup.
2009-09-11 19:50:48 +00:00
guilhermeblanco
db5a48e5f4
[2.0] Removed xdebug builtin support from Debug::dump(). Added run-dql CLI Task. Updated tasks to wrap Exceptions thrown and diplay nicely. Fixed bug with CLI that ws incorrectly splitting strings into an array instead of consider them raw.
2009-09-08 20:13:09 +00:00
guilhermeblanco
8f75565277
[2.0] Added support to dump Entities even when xdebug is not laoded
2009-09-06 18:23:57 +00:00
romanb
2442cfa81b
[2.0] Refined ClassLoader API class documentation to be more clear and descriptive.
2009-09-01 13:20:51 +00:00
romanb
7c359905a8
[2.0] Fixed classloader issue.
2009-09-01 13:00:05 +00:00
romanb
fd204ee7f6
[2.0] Updated description for pear packages. Enhanced ClassLoader to support the old namespace separator (underscore) for Zend/PEAR/... compatibility until some day when they all use 5.3+.
2009-09-01 08:18:36 +00:00
romanb
59fff29c1b
[2.0] Some hydration simplifications and cleanups.
2009-08-28 10:48:40 +00:00
jwage
f83fd8e950
[2.0] Updating exceptions to use methods so that we can later provide better exception messages
2009-08-26 22:03:39 +00:00
romanb
3d17cb0d60
[2.0] Applied fixes for character casing issues. Simplified inheritance mapping and improved handling of outer joins in Class Table Inheritance.
2009-08-17 17:58:16 +00:00
romanb
e578bad687
[2.0] Fixed several referential integrity issues. Fixed critical issue with inserts being run twice on postgresql/oracle. Added support for additional tree walkers that modify the AST prior to SQL construction and started to play with it in a testcase.
2009-08-13 10:13:06 +00:00
romanb
8797921937
[2.0] Removed AssociationMappings from ResultSetMapping for improved caching. Fixed caching issue with reflection classes and properties. Reimplemented and leaned up broken identifier quoting. Added support for named (native) queries. Fixed small hydration memory leak.
2009-08-11 10:51:38 +00:00
guilhermeblanco
aee14e3147
[2.0] Small fix for my previous commit.
2009-08-10 21:48:59 +00:00
guilhermeblanco
837e74da4a
[2.0] Added more missing docblocks. Implemented a double-inclusion listener prevention in EventManager
2009-08-10 21:36:57 +00:00
guilhermeblanco
c5828271cc
[2.0] More docblocks and changed exception thrown in Annotations parser
2009-08-08 23:16:13 +00:00
guilhermeblanco
92f22c8567
[2.0] More optimizations on Annotations parser. More docblocks also
2009-08-08 04:36:58 +00:00
guilhermeblanco
ac5fe1f91b
[2.0] Some Annotations parser docblocks, optimizations, etc. Fixed wrong syntax error token report in DQL parser
2009-08-07 21:47:21 +00:00
guilhermeblanco
88698c3a78
[2.0] Created common Lexer code for Annotations parser and Query parser. Added some docblocks
2009-08-05 21:13:42 +00:00