1. 10 Apr, 2014 1 commit
    • Exclude node_modules in FileSystemFinder. · de6db1d2
      Some bower components (such as TinyMCE) require the user to use node
      and npm to install build dependencies and build the static
      components. This results in a node_modules, created by npm, directory
      inside the bower component directory. This is a very large directory
      not part of the final built static files. So ignore it.
      Jon Dufresne committed
  2. 26 Mar, 2014 1 commit
    • Add missing ignore_pattern to FileSystemFinder. · ebd61c49
      Some third party js/css libraries installed through bower, contain
      broken references in CSS: url(...). When using PipelineCachedStorage,
      this breaks during collectstatic. As with AppDirectoriesFinder, ignore
      CSS. CSS is a pielinable content that can be managed through a
      pipeline asset.
      
      True, these CSS fixes should be fixed in their respective
      projects. Bugs have been filed, but this fix will allow pipeline users
      to continue using third party libraries without breaking builds and
      deployment.
      Jon Dufresne committed
  3. 15 Mar, 2014 4 commits
  4. 07 Mar, 2014 1 commit
  5. 05 Mar, 2014 1 commit
  6. 04 Mar, 2014 3 commits
  7. 19 Feb, 2014 3 commits
  8. 14 Feb, 2014 2 commits
  9. 13 Feb, 2014 1 commit
  10. 31 Jan, 2014 2 commits
  11. 29 Jan, 2014 1 commit
  12. 27 Jan, 2014 2 commits
  13. 21 Jan, 2014 2 commits
  14. 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
  15. 12 Jan, 2014 1 commit
  16. 03 Jan, 2014 1 commit
  17. 30 Dec, 2013 1 commit
  18. 29 Dec, 2013 1 commit
  19. 21 Dec, 2013 2 commits
  20. 10 Dec, 2013 1 commit
  21. 09 Dec, 2013 3 commits
  22. 07 Dec, 2013 3 commits
  23. 06 Dec, 2013 2 commits