- 26 Sep, 2014 1 commit
-
-
Fabien Potencier authored
As of Symfony 2.5.2, Translator::__construct() calls setLocale. As the Silex Translator calls it with null and because we synchronize the translator language with the app one, the locale was always set to null when calling the translator for the first time, overriding the current app locale.
-
- 22 Sep, 2014 2 commits
-
-
Fabien Potencier authored
This PR was submitted for the master branch but it was merged into the 1.2 branch instead (closes #1021). Discussion ---------- Update testing.rst Fix dead link, @see: https://github.com/silexphp/Silex/issues/1020 Commits ------- 8c8b6a67 Update testing.rst
-
Seb Minderhoud authored
Fix dead link, @see: https://github.com/silexphp/Silex/issues/1020
-
- 21 Sep, 2014 9 commits
-
-
Fabien Potencier authored
-
Fabien Potencier authored
This PR was submitted for the master branch but it was merged into the 1.2 branch instead (closes #995). Discussion ---------- Update session.rst May be a bug, but Sessions expire after 30 minutes (or less ?) To have the default behavior describe in documentation, you must set cookie_lifetime to 0 $app->register(new Silex\Provider\UrlGeneratorServiceProvider(), array( 'session.storage.options' => array( 'cookie_lifetime' => 0 ) ) ); Commits ------- 0e553e36 Update session.rst
-
dav_twix authored
May be a bug, but Sessions expire after 30 minutes (or less ?) To have the default behavior describe in documentation, you must set cookie_lifetime to 0 $app->register(new Silex\Provider\UrlGeneratorServiceProvider(), array( 'session.storage.options' => array( 'cookie_lifetime' => 0 ) ) );
-
Fabien Potencier authored
-
Fabien Potencier authored
This PR was submitted for the master branch but it was merged into the 1.2 branch instead (closes #1007). Discussion ---------- Add $app parameter for application middlewares (before, after, finish) There is small inconsistence between route and application middlewares. Route middlewares (http://silex.sensiolabs.org/doc/middlewares.html#route-middlewares) can have $app parameter, but application middlewares (http://silex.sensiolabs.org/doc/middlewares.html#application-middlewares) has this parameter missing. Commits ------- 38a3c465 Add parameter for application middlewares (before, after, finish)
-
kl3ryk authored
-
Fabien Potencier authored
-
Fabien Potencier authored
This PR was squashed before being merged into the 1.2 branch (closes #1018). Discussion ---------- allow to register form types without extensions Commits ------- 0e5f4899 allow to register form types without extensions
-
Dominik Zogg authored
-
- 08 Jul, 2014 2 commits
-
-
Fabien Potencier authored
This PR was merged into the 1.2 branch. Discussion ---------- Minor optimization in ValidatorServiceProvider `ReflectionClass` is only needed if a translator is present. Moving usage of it inside the related conditional means one less object instantiation. Commits ------- 1aed8cdf Minor optimization in ValidatorServiceProvider
-
Matthew Turland authored
ReflectionClass is only needed if a translator is present. Moving usage of it inside the related conditional means one less object instantiation.
-
- 01 Jul, 2014 6 commits
-
-
Fabien Potencier authored
-
Fabien Potencier authored
-
Fabien Potencier authored
-
Fabien Potencier authored
-
Fabien Potencier authored
This PR was merged into the 1.2 branch. Discussion ---------- fixed locale when changing it on the translator itself should fix #887 and #905 Commits ------- 46b0535c fixed locale when changing it on the translator itself
-
Fabien Potencier authored
-
- 30 Jun, 2014 2 commits
-
-
Fabien Potencier authored
bug #970 fixed switfmailer spool where the event dispatcher as different from the other ones (fabpot) This PR was merged into the 1.2 branch. Discussion ---------- fixed switfmailer spool where the event dispatcher as different from the other ones see #959 Commits ------- 32a27ca5 fixed switfmailer spool where the event dispatcher as different from the other ones
-
Fabien Potencier authored
-
- 27 Jun, 2014 1 commit
-
-
Fabien Potencier authored
This PR was merged into the 1.2 branch. Discussion ---------- Update form.rst Before - http://i.imgur.com/Eu2JUvq.png After - http://i.imgur.com/1d0CIAs.png Must be the tiniest pull request ever :) Commits ------- cdc9ad6a Update form.rst
-
- 26 Jun, 2014 1 commit
-
-
ruslan-polutsygan authored
-
- 23 Jun, 2014 2 commits
-
-
Fabien Potencier authored
This PR was submitted for the master branch but it was merged into the 1.2 branch instead (closes #965). Discussion ---------- Update serializer.rst Before - http://i.imgur.com/hTYzHGR.png After - http://i.imgur.com/SAPhNN7.png Commits ------- a8ab1f8b Update serializer.rst
-
ruslan-polutsygan authored
-
- 16 May, 2014 2 commits
-
-
Fabien Potencier authored
This PR was submitted for the master branch but it was merged into the 1.2 branch instead (closes #956). Discussion ---------- Update service_controller.rst The word "it's" is a contraction for "it is". "Its" is a possessive pronoun. Commits ------- 09a5fe34 Update service_controller.rst
-
Chris Johnson authored
The word "it's" is a contraction for "it is". "Its" is a possessive pronoun.
-
- 04 May, 2014 3 commits
-
-
Fabien Potencier authored
-
Fabien Potencier authored
This PR was submitted for the master branch but it was merged into the 1.2 branch instead (closes #931). Discussion ---------- Update monolog provider for support permissions Recently Monolog have an update commit b2e2530406737e658785e3b4e50135f297f49a16. Which add permission handling for log file. Commits ------- 91b1cbc3 Update monolog provider for support permissions
-
Maksim Muruev authored
-
- 15 Apr, 2014 3 commits
-
-
Fabien Potencier authored
* 1.1: Fix typos
-
Fabien Potencier authored
* 1.0: Fix typos
-
Fabien Potencier authored
This PR was merged into the 1.0 branch. Discussion ---------- Fix typos, remove trailing whitespace Commits ------- 502d1049 Fix typos
-
- 07 Apr, 2014 1 commit
-
-
Andrew M authored
-
- 29 Mar, 2014 1 commit
-
-
Fabien Potencier authored
-
- 19 Mar, 2014 4 commits
-
-
Fabien Potencier authored
This PR was merged into the 1.2.x-dev branch. Discussion ---------- Replace Monolog middlewares by an event listener This is an alternative to the changes introduced by #894 in order to allow replacement of the logging middlewares. Instead of having a Closure for each listener, this PR introduces a listener class. The listener can be used independently from the MonologServiceProvider. | Q | A | ------------- | --- | Bug fix? | no | New feature? | yes | BC breaks? | no | Deprecations? | no | Tests pass? | yes | Fixed tickets | #870 | License | MIT | Doc | yes Commits ------- 499a626f Replace Monolog middlewares by an event listener
-
Fabien Potencier authored
This PR was merged into the 1.2.x-dev branch. Discussion ---------- Added a warning for a:b notation usage with < 1.2 Commits ------- 410374fd Added a:b notation warning
-
Fabien Potencier authored
This PR was merged into the 1.2.x-dev branch. Discussion ---------- Add symfony/security-csrf to FormServiceProvider docs Commits ------- fd5624c9 Add symfony/security-csrf to FormServiceProvider docs
-
Fabien Potencier authored
This PR was merged into the 1.2.x-dev branch. Discussion ---------- Add the Symfony CSSSelector dependency to match the example usage Hi! I added the Symfony CSSSelector dependency to match with the example usage & the crawler presentation. Cheers, Thomas. Commits ------- 4c7e740e Add the Symfony CSSSelector dependency to match the example usage
-