- 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
-
- 25 Apr, 2015 7 commits
-
-
Timothée Peignier committed
-
Timothée Peignier committed
-
Timothée Peignier committed
-
Timothée Peignier committed
-
Timothée Peignier committed
-
Timothée Peignier committed
-
Timothée Peignier committed
-
- 12 Apr, 2015 2 commits
- 18 Mar, 2015 2 commits
-
-
Correct link to the Molly Project.
Timothée Peignier committed -
mollyproject.org appears to be occupied by a squatter. link directly to the GH project instead.
Brian Dailey committed
-