1. 30 Mar, 2014 1 commit
  2. 15 Mar, 2014 4 commits
  3. 07 Mar, 2014 1 commit
  4. 05 Mar, 2014 1 commit
  5. 04 Mar, 2014 3 commits
  6. 19 Feb, 2014 3 commits
  7. 14 Feb, 2014 2 commits
  8. 13 Feb, 2014 1 commit
  9. 31 Jan, 2014 2 commits
  10. 29 Jan, 2014 1 commit
  11. 27 Jan, 2014 2 commits
  12. 21 Jan, 2014 2 commits
  13. 14 Jan, 2014 1 commit
    • Fix python3 bug when inserting data-URIs · 59865e13
      The current code inserts bytes into a string. In Python 3 those are different types, causing the URI to look like:
      
          url("data:image/png;charset=utf-8;base64,b'iVBORw0KGgoAAAANSUhEUgAAAA...'")
      
      Because Base64 data is always ASCII it is safe to decode it as such, and insert the resulting string, which causes the correct output:
      
          url("data:image/png;charset=utf-8;base64,iVBORw0KGgoAAAANSUhEUgAAAA...")
      Sander Steffann committed
  14. 12 Jan, 2014 1 commit
  15. 03 Jan, 2014 1 commit
  16. 30 Dec, 2013 1 commit
  17. 29 Dec, 2013 1 commit
  18. 21 Dec, 2013 2 commits
  19. 10 Dec, 2013 1 commit
  20. 09 Dec, 2013 3 commits
  21. 07 Dec, 2013 3 commits
  22. 06 Dec, 2013 2 commits
  23. 05 Dec, 2013 1 commit
    • Performance boost in BaseFinderStorage.find_storage · 18175bd7
      Avoid listing all files for every finder for finding a file. This is
      actually a bottleneck when the directory hierarchy is nested or the
      number of files served in DEBUG mode is big. Since this flow is done in
      every request, it slows down page loading.
      
      In production environments where templates are usually cached performance
      doesn't get hit by this.
      Miguel Araujo Perez committed