- 18 Dec, 2015 3 commits
- 
- 
Timothée Peignier committed
- 
Timothée Peignier committed
- 
Timothée Peignier committed
 
- 
- 03 Dec, 2015 4 commits
- 
- 
Timothée Peignier committed
- 
James Keys committed
- 
Timothée Peignier committed
- 
Docs update: Configuration example for jinja2 Timothée Peignier committed
 
- 
- 22 Nov, 2015 1 commit
- 
- 
Anton Vlasenko committed
 
- 
- 24 Oct, 2015 1 commit
- 
- 
Add MDN to list of sites using Pipeline Timothée Peignier committed
 
- 
- 22 Oct, 2015 1 commit
- 
- 12 Oct, 2015 1 commit
- 
- 
Fixes #497. Chad Miller committed
 
- 
- 06 Sep, 2015 2 commits
- 
- 
Timothée Peignier committed
- 
Timothée Peignier committed
 
- 
- 22 Aug, 2015 1 commit
- 
- 
Timothée Peignier committed
 
- 
- 01 Aug, 2015 8 commits
- 
- 
Timothée Peignier committed
- 
Timothée Peignier committed
- 
Fix for wrapping javascript code. Timothée Peignier committed
- 
Typo in installation.rst Timothée Peignier committed
- 
Safely concatenate JavaScript Timothée Peignier committed
- 
Fix shadons on finders Timothée Peignier committed
- 
add templates to test pipeline Timothée Peignier committed
- 
mgallet committed
 
- 
- 29 Jul, 2015 1 commit
- 
- 
Timothée Peignier committed
 
- 
- 26 Jul, 2015 2 commits
- 
- 
James Keys committed
- 
Fixed recursive call to django's staticfiles.finders.find() to prevent Exceptions on missing files with 3 extensions. Nathan Shafer committed
 
- 
- 22 Jul, 2015 1 commit
- 
- 
leonardoo committed
 
- 
- 12 Jul, 2015 2 commits
- 
- 
Christofer Bertonha committed
- 
Christofer Bertonha committed
 
- 
- 02 Jul, 2015 3 commits
- 
- 
Timothée Peignier committed
- 
Fix for #329. Tadas Dailyda committed
- 
Tadas Dailyda committed
 
- 
- 24 Jun, 2015 1 commit
- 
- 
Most JavaScript packages wrap their code in IIFEs, which is good. Pipeline used to concatenate JS only with a newline. That can break those IIFES though: (function() { // package A }()) // No semicolon! Most people put one here, but unfortunately not all! (function() { // package B }()); The above is equivalent to: (function() { // package A }())(function() { // package B }()); Suddenly we have a function call! With this commit, JS is concatenated with a newline followed by a semicolon, which fixes the above issue: (function() { // package A }()) // No semicolon! Most people put one here, but unfortunately not all! ;(function() { // package B }()); There is no need to worry about superfluos semicolons, such as: (function() { // package A }()); ;;(function() { // package B }()); That is still valid JavaScript and the extra semicolons will be removed by the minifier.Simon Lydell committed
 
- 
- 11 Jun, 2015 1 commit
- 
- 
Just a typo Stefano Brentegani committed
 
- 
- 06 Jun, 2015 3 commits
- 
- 
Timothée Peignier committed
- 
Allard Stijnman committed
- 
add econding to open Timothée Peignier committed
 
- 
- 23 May, 2015 1 commit
- 
- 
leonardoo committed
 
- 
- 10 May, 2015 1 commit
- 
- 
Add max_length arg to PipelineStorage.get_available_name. Timothée Peignier committed
 
- 
- 09 May, 2015 1 commit
- 
- 
Carl Meyer committed
 
- 
- 03 May, 2015 1 commit
- 
- 
Timothée Peignier committed
 
-