1. 01 Jul, 2011 6 commits
    • Fabien Potencier's avatar
      merged branch brtriver/testing-doc (PR #96) · 3a586e93
      Fabien Potencier authored
      Commits
      -------
      
      9868077b deleted: empty lines.
      45fe9df2 fixed: changed note.
      bb8f1d2d updated: modified testing.rst
      
      Discussion
      ----------
      
      updated: modified testing.rst
      
      ref #95
      
      ---------------------------------------------------------------------------
      
      by igorw at 2011/05/19 09:25:34 -0700
      
      Not quite sure what you mean by "If you want to test single file app use Symfony2's Reqeuest instead.", mind to explain / rephrase?
      
      ---------------------------------------------------------------------------
      
      by brtriver at 2011/05/19 10:27:37 -0700
      
      How about this?
      
      > If you want to test a single file app, it is difficult to test because it doesn't return the instance of your application.
      > to make your application testable with WebTestCase, you need to make sure you follow "Reusing applications" instructions from :doc:`usage`.
      
      ---------------------------------------------------------------------------
      
      by igorw at 2011/05/19 10:38:15 -0700
      
      I think the original sentence is quite explanatory, just turning that into a note seems sufficient to me.
      
      ---------------------------------------------------------------------------
      
      by brtriver at 2011/05/19 10:44:32 -0700
      
      I just set the original sentense to a note.
      
      ---------------------------------------------------------------------------
      
      by igorw at 2011/05/19 10:53:24 -0700
      
      Alright, thanks!
      3a586e93
    • Fabien Potencier's avatar
      merged branch docteurklein/autoloader_fix (PR #100) · 8897c362
      Fabien Potencier authored
      Commits
      -------
      
      5144db26 Merge branch 'master' of github.com:docteurklein/Silex
      0fd27b49 removed leading backslash; set autoload of class_exists to false
      f3171054 [Autoloading] Made the require_once of the UnviversalClassLoader conditional.
      
      Discussion
      ----------
      
      Autoloader fix
      
      [Autoloading] Made the require_once of the UnviversalClassLoader conditional.
      
      As we can't know what happened before we require the silex.phar file, we
      can't deduce if an autoloader has already been required.
      It can lead to fatal errors for cases like it is in SilexBundle.
      
      ---------------------------------------------------------------------------
      
      by brikou at 2011/06/27 09:38:43 -0700
      
      👍
      8897c362
    • Fabien Potencier's avatar
      merged branch laurent35240/master (PR #104) · 7c7d51f7
      Fabien Potencier authored
      Commits
      -------
      
      9dcab531 Pitfail about ioncube loader added in documentation. Mistakes in text fixed Issue https://github.com/fabpot/Silex/issues/93
      ca41d277 Pitfail about ioncube loader added in documentation Issue https://github.com/fabpot/Silex/issues/93
      
      Discussion
      ----------
      
      Pitfall with ioncube loader
      
      Pitfall about problem between phar archive and ioncube loader added in documentation
      Issue https://github.com/fabpot/Silex/issues/93
      
      ---------------------------------------------------------------------------
      
      by laurent35240 at 2011/05/28 07:22:24 -0700
      
      I just changed the text and added the missing blank line.
      
      Do you know btw a good editor for restructured text? It is the first time that I had to modify such documentation format
      7c7d51f7
    • Fabien Potencier's avatar
      merged branch marijn/patch-1 (PR #107) · b5ea9ea1
      Fabien Potencier authored
      Commits
      -------
      
      bae8c3c8 Added syntax highlighting to `README`
      
      Discussion
      ----------
      
      Added syntax highlighting to `README`
      b5ea9ea1
    • Fabien Potencier's avatar
      updated vendors · a4bf201a
      Fabien Potencier authored
      a4bf201a
    • Fabien Potencier's avatar
      merged branch brikou/patch-1 (PR #121) · 85b45dcc
      Fabien Potencier authored
      Commits
      -------
      
      c32e0ec7 fixed twig template filename (for form usage)
      
      Discussion
      ----------
      
      fixed twig template filename (for form usage)
      
      ---------------------------------------------------------------------------
      
      by stof at 2011/06/27 13:11:05 -0700
      
      @mgatto This change was part of the beta5 release of Symfony2
      
      ---------------------------------------------------------------------------
      
      by mgatto at 2011/06/27 13:32:44 -0700
      
      Thanks. I also wanted that in for documentation purposes if this is pulled in since Symfony2 is a rapidly moving target at this time.
      85b45dcc
  2. 27 Jun, 2011 1 commit
  3. 23 Jun, 2011 1 commit
  4. 22 Jun, 2011 1 commit
  5. 16 Jun, 2011 1 commit
  6. 01 Jun, 2011 1 commit
  7. 28 May, 2011 2 commits
  8. 26 May, 2011 1 commit
  9. 23 May, 2011 2 commits
  10. 22 May, 2011 1 commit
  11. 20 May, 2011 1 commit
  12. 19 May, 2011 3 commits
  13. 18 May, 2011 1 commit
  14. 17 May, 2011 4 commits
  15. 15 May, 2011 2 commits
  16. 14 May, 2011 9 commits
  17. 13 May, 2011 1 commit
  18. 11 May, 2011 2 commits
    • Fabien Potencier's avatar
      updated vendors · ef499980
      Fabien Potencier authored
      ef499980
    • Igor Wiedler's avatar
      Support including a phar from another phar · 5dc4d9c5
      Igor Wiedler authored
      The default stubs mess up when you try to run a phar which includes
      another phar. In my case I was running pip.phar on the CLI, which
      included app.php, which in turn included silex.phar.
      
      It broke the __DIR__ calls. This was able to fix it.
      
      Needs testing in lots of different setups, because the default stubs are
      no longer used.
      5dc4d9c5