- 17 Feb, 2012 1 commit
-
-
Fabien Potencier authored
Commits ------- 81dc9911 [cookbook] Fix typo {Ceated => Created} Discussion ---------- [cookbook] Fix typo {Ceated => Created}
-
- 16 Feb, 2012 1 commit
-
-
Igor Wiedler authored
-
- 08 Feb, 2012 1 commit
-
-
Fabien Potencier authored
-
- 04 Feb, 2012 6 commits
-
-
Fabien Potencier authored
-
Fabien Potencier authored
-
Fabien Potencier authored
-
Fabien Potencier authored
Commits ------- 9289dad7 [cookbook] implement some suggestions 9c04345d [cookbook] initial recipe for accepting a JSON request body Discussion ---------- [cookbook] initial recipe for accepting a JSON request body --------------------------------------------------------------------------- by igorw at 2012-01-17T13:24:48Z I implemented your suggestions.
-
Fabien Potencier authored
-
Fabien Potencier authored
Commits ------- 4453e9fc fixed for the latest TwigFormExtension Discussion ---------- fixed for the latest TwigFormExtension Now TwigFormExtension requires CsrfProviderInterface as the first arg but there is no arg for this in TwigServiceProvider, so it occurs the error below: > Catchable fatal error: Argument 1 passed to Symfony\Bridge\Twig\Extension\FormExtension::__construct() must implement interface Symfony\Component\Form\Extension\Csrf\CsrfProvider\CsrfProviderInterface, array given then I set `$app['form.csrf_provider']` as the first arg.
-
- 24 Jan, 2012 1 commit
-
-
Masao Maeda authored
-
- 21 Jan, 2012 4 commits
-
-
Fabien Potencier authored
Commits ------- 8d9bb8fb Added tests for Validator Provider 291bac8d Added Validator Component as submodule Discussion ---------- Added tests for Validator Provider I also had to add the Validator Component as a submodule
-
Fabien Potencier authored
Commits ------- 90f24072 added mention of SymfonyBridgesServiceProvider to example of using path() Twig function Discussion ---------- added mention of SymfonyBridgesServiceProvider to example of using path Twig function I just spent an hour trying to figure out why using path() in Twig when using Silex wasn't working. Turns out I hadn't included the SymfonyBridgesServiceProvider, which isn't mentioned in this piece of documentation. I don't know if this makes the comment too verbose, but if it saves someone else wasting time it'll be worth it.
-
Fabien Potencier authored
Commits ------- 80c96c85 Added link to protected closure section. See #235. Discussion ---------- Added link to protected closure section. See #235.
-
Fabien Potencier authored
Commits ------- 16599fbc fixed link to SwiftmailerServiceProvider doc Discussion ---------- Fixed link to SwiftmailerServiceProvider doc
-
- 19 Jan, 2012 1 commit
-
-
Fabien Potencier authored
-
- 17 Jan, 2012 3 commits
-
-
Igor Wiedler authored
-
Igor Wiedler authored
-
Jacob Dreesen authored
-
- 13 Jan, 2012 5 commits
-
-
Markus Tacker authored
-
Fabien Potencier authored
Commits ------- 7caa3122 [docs] remove duplicate "detect_unicode" line in pitfalls Discussion ---------- [docs] remove duplicate "detect_unicode" line in pitfalls Not sure what happened there, I suppose some merge failed.
-
Fabien Potencier authored
Commits ------- 28399b6d add streaming to the changelog Discussion ---------- add streaming to the changelog
-
Igor Wiedler authored
-
Igor Wiedler authored
-
- 12 Jan, 2012 1 commit
-
-
Fabien Potencier authored
-
- 10 Jan, 2012 2 commits
-
-
Fabien Potencier authored
-
Douglas Greenshields authored
-
- 02 Jan, 2012 3 commits
-
-
Fabien Potencier authored
Commits ------- 006d7ba4 add symfony/class-loader to composer.json Discussion ---------- add symfony/class-loader to composer.json
-
Fabien Potencier authored
-
Fabien Potencier authored
Commits ------- 8dd779ec [stream] Fix rst formatting 73fe0b17 [stream] Add a nice API for streaming responses Discussion ---------- [stream] Add a nice API for streaming responses This PR adds a nice API for creating streaming responses with the new StreamedResponse class that was added to symfony [just recently](https://github.com/symfony/symfony/pull/2935). Usage is documented in the usage doc, but for lazy people: ```php <?php $app->get('/images/{file}', function ($file) use ($app) { if (!file_exists(__DIR__.'/images/'.$file)) { return $app->abort(404, 'The image was not found.'); } $stream = function () use ($file) { readfile($file); }; return $app->stream($stream, 200, array('Content-Type' => 'image/png')); }); ``` Note: I had to point the autoloader to a copy of symfony/symfony because the subtree splits are not up-to-date. Thus the vendors are out of date too right now.
-
- 01 Jan, 2012 2 commits
- 31 Dec, 2011 2 commits
-
-
Igor Wiedler authored
-
Igor Wiedler authored
-
- 27 Dec, 2011 3 commits
-
-
Igor Wiedler authored
-
Fabien Potencier authored
-
Fabien Potencier authored
-
- 22 Dec, 2011 2 commits
-
-
Fabien Potencier authored
-
Fabien Potencier authored
Commits ------- 58fc60f3 Adds doc about proxy headers trust Discussion ---------- Adds doc about proxy headers trust --------------------------------------------------------------------------- by igorw at 2011/12/21 07:07:57 -0800 No instantiation needed, just call it statically on the request class: Request::trustProxyData(); If there is something about this in the Symfony2 docs, it'd be nice to link to it. --------------------------------------------------------------------------- by marcw at 2011/12/21 07:19:53 -0800 Well this is a configuration parameter in Symfony2...
-
- 21 Dec, 2011 1 commit
-
-
marc.weistroff authored
-
- 03 Dec, 2011 1 commit
-
-
Fabien Potencier authored
-