1. 23 Aug, 2013 8 commits
  2. 21 Aug, 2013 2 commits
    • Fabien Potencier's avatar
      merged branch niklasf/patch-1 (PR #763) · 1f1fc4e6
      Fabien Potencier authored
      This PR was merged into the master branch.
      
      Discussion
      ----------
      
      Make clear that twig-bridge is required to use path and url in Twig
      
      Not sure what the best way is to make this explicit, but twig-bridge is required to use path() and url() in Twig. Just having Twig alone is not enough.
      
      Commits
      -------
      
      956a2768 Make clear that twig-bridge is required to use path and url in Twig
      1f1fc4e6
    • Fabien Potencier's avatar
      merged branch Danez/patch-1 (PR #762) · d18adaff
      Fabien Potencier authored
      This PR was merged into the master branch.
      
      Discussion
      ----------
      
      Remove usage of deprecated function getPattern()
      
      Found another one.
      Did also some search now and there is no set/get-Pattern anymore.
      
      Commits
      -------
      
      36be14f9 Remove usage of deprecated function getPattern()
      d18adaff
  3. 20 Aug, 2013 1 commit
  4. 19 Aug, 2013 1 commit
  5. 15 Aug, 2013 2 commits
    • Fabien Potencier's avatar
      merged branch Danez/patch-1 (PR #760) · 9b9bc73e
      Fabien Potencier authored
      This PR was merged into the master branch.
      
      Discussion
      ----------
      
      Remove usage of deprecated function
      
      Remove usage of deprecated function setPattern() and replace with replacement function setPath().
      
      I was not sure if we also want to rename the variables/arguments $pattern to $path inside silex. For now i haven't touched them.
      
      Commits
      -------
      
      3b4895de Remove usage of deprecated function setPattern()
      9b9bc73e
    • Daniel Tschinder's avatar
      Remove usage of deprecated function setPattern() · 3b4895de
      Daniel Tschinder authored
      and replace with replacement function setPath()
      3b4895de
  6. 27 Jul, 2013 4 commits
  7. 26 Jul, 2013 1 commit
  8. 19 Jul, 2013 3 commits
  9. 18 Jul, 2013 1 commit
  10. 16 Jul, 2013 1 commit
  11. 15 Jul, 2013 1 commit
    • nleduc's avatar
      Update internals.rst · a38db51a
      nleduc authored
      Fixed minor typo and added a missing comma in the same sentence.
      a38db51a
  12. 04 Jul, 2013 10 commits
  13. 03 Jul, 2013 5 commits
    • Fabien Potencier's avatar
      merged branch jeromemacias/cookbook_debug_error_handler (PR #719) · a4f1fbe8
      Fabien Potencier authored
      This PR was merged into the master branch.
      
      Discussion
      ----------
      
      Introduced new symfony Debug component for error_handler cookbook
      
      Just fix the error_handler cookbook now use the Symfony Debug Component.
      
      Commits
      -------
      
      145b48a0 Introduced new symfony Debug component for error_handler cookbook
      a4f1fbe8
    • Fabien Potencier's avatar
      8fc77c27
    • Fabien Potencier's avatar
      merged branch luisgonzalez/1.0 (PR #707) · 51622a78
      Fabien Potencier authored
      This PR was merged into the 1.0 branch.
      
      Discussion
      ----------
      
      add '_route' key to RedirectableUrlMatcher::redirect
      
      When there is a logger, the Symfony\Compoment\HttpKernel\EventListener\RouterListener::onKernelRequest method expects the '_route' key to exist in order to log the matched route and issues a PHP Notice
      
          <?php
          date_default_timezone_set('America/Los_Angeles');
      
          require_once __DIR__ . '/../vendor/autoload.php';
          Symfony\Component\HttpKernel\Debug\ErrorHandler::register();
          $app = new Silex\Application();
          $app['debug'] = true;
          $app['monolog.logfile'] = 'C:/TEMP/log.log';
          $app->register(new \Silex\Provider\MonologServiceProvider());
          $app->get('/a/', function() {
              return 'done';
          });
      
          $app->run();
      
      *[url]/a* issues the notice before redirecting to */a/*
      
      Commits
      -------
      
      3d1a868c add '_route' key to RedirectableUrlMatcher::redirect
      51622a78
    • Fabien Potencier's avatar
      merged branch NLZ13/master (PR #710) · 5a211bd6
      Fabien Potencier authored
      This PR was squashed before being merged into the master branch (closes #710).
      
      Discussion
      ----------
      
      Added swiftmailers second argument for the send function within the SwiftmailerTrait
      
      Commits
      -------
      
      78115b47 Added swiftmailers second argument for the send function within the SwiftmailerTrait
      5a211bd6
    • NLZ13's avatar