Commit Graph

24991 Commits

Author SHA1 Message Date
Fabien Potencier dc1e55b81e simplified phpunit.xml and made it more generic (PHPUnit 3.5 is now required) 2010-03-29 13:14:45 +02:00
Fabien Potencier dc1bc88279 [Yaml] fixed YAML parser when mbstring.func_overload is used with an mbstring.internal_encoding different from ASCII 2010-03-29 12:40:22 +02:00
Bongiraud Dominique 4bd865de67 [Routing]fix bug 2010-03-28 19:03:00 +02:00
Bongiraud Dominique 8b45fcc7de [DependencyInjection]fix bug 2010-03-28 19:02:36 +02:00
Fabien Potencier bfef03a1cb [Routing] fixed a warning when using a sub-class of UrlGenerator 2010-03-26 16:18:26 +01:00
Fabien Potencier fc2f508c15 simplified unit tests 2010-03-25 14:56:29 +01:00
Fabien Potencier c69410ccde [DependencyInjection] fixed Container::getService() when the service is empty (closes #8456) 2010-03-25 14:04:48 +01:00
Fabien Potencier ba59b1788b [RequestHandler] fixed coverage annotations in tests 2010-03-25 13:26:16 +01:00
Fabien Potencier 9606402b6f [RequestHandler] changed the Request constructor signature to be more explicit 2010-03-25 08:55:50 +01:00
Fabien Potencier 16fa12ffb3 fixed unit tests boostrap script 2010-03-25 08:20:30 +01:00
Fabien Potencier c295db682d [Foundation] removed the old class loader 2010-03-24 15:03:58 +01:00
Fabien Potencier bc9bbd8436 [Yaml] added support for compact inline notation with immediate sub mapping 2010-03-24 15:02:49 +01:00
Fabien Potencier a248fc133b [Yaml] reverted previous commit 2010-03-24 12:10:26 +01:00
Fabien Potencier 2dc36191d1 fixed assertEquals() calls arguments order
The conversion has been done automatically with the following command:

    perl -p -i -e 's#this\->assertEquals\((.+?), (.+?)(, '\''(\-|\:|_)|\);)#this->assertEquals($2, $1$3#g' tests/Symfony/Tests/*/*.php tests/Symfony/Tests/*/*/*.php tests/Symfony/Tests/*/*/*.php

... and with some manual tweaking after that
2010-03-19 15:04:37 +01:00
Fabien Potencier 39aa067c21 tweaked phpunit.xml 2010-03-18 20:55:41 +01:00
Fabien Potencier 9d604fe110 added coverage configuration in phpunit.xml 2010-03-18 17:03:29 +01:00
Fabien Potencier c46b6126f0 added a global phpunit.xml file 2010-03-18 16:47:20 +01:00
Fabien Potencier 549dbc6961 [DependencyInjection] fixed a unit test 2010-03-18 16:33:24 +01:00
Fabien Potencier d4f724ab4e finished the conversions of unit tests to PHPUnit 2010-03-18 15:26:21 +01:00
Fabien Potencier 13edcf64e2 converted unit tests from lime to PHPUnit for the following components: Console, DependencyInjection, EventDispatcher, OutputEscaper, and Yaml 2010-03-18 08:48:03 +01:00
Fabien Potencier 7f0ace8521 [WebBundle] changed the helper configuration to match the latest version of the Templating component 2010-03-13 14:43:06 +01:00
Fabien Potencier bf08289e18 [Templating] remove Engine as a dependency for the Helper objects 2010-03-13 14:42:33 +01:00
Fabien Potencier bce240badd [Templating] added missing use statement 2010-03-13 14:29:56 +01:00
Fabien Potencier f439e1357b [Console] fixed fixtures 2010-03-12 21:03:34 +01:00
Fabien Potencier 7d19d8e375 [Yaml] fixed parsing of folded scalars when a # sign starts a line 2010-03-12 15:57:19 +01:00
Fabien Potencier 7c9559bc26 [Foundation] made some performance optimizations (if you change a parameter in a .htaccess or httpd.conf, you now need to flush the cache - should not be a big deal) 2010-03-12 11:54:22 +01:00
Fabien Potencier 98987b0f88 [Foundation] fixed typo 2010-03-12 11:22:19 +01:00
Jonathan H. Wage 08617caf56 [DoctrineBundle] Fixing issue with paths not being the realpath and causing issues when comparing string paths in Doctrine 2010-03-11 11:12:56 +01:00
Fabien Potencier 573f95a80c [DoctrineBundle] fixed typo 2010-03-10 22:41:05 +01:00
Fabien Potencier e17c43d7b2 Merge branch 'master' of github.com:fabpot/symfony
* 'master' of github.com:fabpot/symfony:
  [Console] added __get() to Command to have shorter and more readable code in commands
  [Console] fixed default message layout
  [Routing] added requirements checking when generating a route
  [Routing] changed matching to only check for method if it is available in the context
  [Routing] fixed typo
2010-03-10 22:30:56 +01:00
Fabien Potencier fff133414d [DoctrineBundle] fixed the overridding of an Entity 2010-03-10 22:29:45 +01:00
Fabien Potencier d229ce584f [Console] added __get() to Command to have shorter and more readable code in commands 2010-03-10 17:01:50 +01:00
Fabien Potencier 7c727355d1 [Console] fixed default message layout 2010-03-10 15:15:21 +01:00
Fabien Potencier 0d05db0afc [Routing] added requirements checking when generating a route 2010-03-10 12:58:40 +01:00
Fabien Potencier 2bc47f13f5 [Routing] changed matching to only check for method if it is available in the context 2010-03-10 12:58:40 +01:00
Fabien Potencier e582408188 [Routing] fixed typo 2010-03-10 12:58:40 +01:00
Jordi Boggiano dad75524fc [ProfilerBundle] Allows the BundleStorage to use PDO_SQLITE as well as SQLite3 and fixes a bug in purge()
Signed-off-by: Jordi Boggiano <j.boggiano@seld.be>
2010-03-09 07:12:45 +01:00
Pascal Borreli e182853ef0 [Foundation] fixed a typo 2010-03-09 07:04:18 +01:00
Pascal Borreli ed6ffb502f [RequestHandler] fixed a typo 2010-03-09 07:03:43 +01:00
Fabien Potencier 75c922884e [Console] removed the application name in help 2010-03-07 14:58:55 +01:00
Fabien Potencier 8ed170c726 [DoctrineBundle] fixed alias support to be in sync with the latest version of Doctrine 2010-03-05 10:22:53 +01:00
Fabien Potencier 60b714c2d3 [DoctrineBundle] changed option dir_or_file to dir-or-file 2010-03-05 09:50:28 +01:00
Fabien Potencier 9d060340f6 [DoctrineBundle] fixed Doctrine extension to always create aliases for entities in the Entities/ directory 2010-03-05 09:27:43 +01:00
Fabien Potencier 450550d06d [ProfilerBundle] fixed storage read() method and unpack/pack data to avoid weird character in the data stream 2010-03-04 09:00:29 +01:00
Fabien Potencier e8119ce875 [OutputEscaper] renamed Safe to SafeDecorator 2010-03-02 14:06:28 +01:00
Fabien Potencier 9738f34c4d [ProfilerBundle] refactored some code 2010-03-01 19:10:47 +01:00
Fabien Potencier 74ff6cbd9f [WebBundle] tweaked error message 2010-03-01 18:38:31 +01:00
Fabien Potencier 17d4e1538f [DependencyInjection] store references to shared services as soon as possible to avoid circular references on legal code 2010-03-01 18:37:22 +01:00
Fabien Potencier 6ba662b0a4 [WebBundle] removed the Model/ directory from skeleton 2010-03-01 17:04:32 +01:00
Fabien Potencier 2e420c3c8a [ProfiledBundle] moved debug tools from WebBundle to ProfilerBundle 2010-03-01 12:47:28 +01:00