1. 11 Jun, 2014 1 commit
  2. 10 Jun, 2014 1 commit
  3. 19 May, 2014 2 commits
  4. 14 Apr, 2014 2 commits
  5. 10 Apr, 2014 1 commit
  6. 08 Apr, 2014 1 commit
  7. 04 Apr, 2014 1 commit
  8. 31 Mar, 2014 1 commit
  9. 30 Mar, 2014 1 commit
  10. 15 Mar, 2014 4 commits
  11. 07 Mar, 2014 1 commit
  12. 05 Mar, 2014 1 commit
  13. 04 Mar, 2014 3 commits
  14. 19 Feb, 2014 3 commits
  15. 14 Feb, 2014 2 commits
  16. 13 Feb, 2014 1 commit
  17. 31 Jan, 2014 2 commits
  18. 29 Jan, 2014 1 commit
  19. 27 Jan, 2014 2 commits
  20. 21 Jan, 2014 2 commits
  21. 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
  22. 12 Jan, 2014 1 commit
  23. 03 Jan, 2014 1 commit
  24. 30 Dec, 2013 1 commit
  25. 29 Dec, 2013 1 commit
  26. 21 Dec, 2013 2 commits