Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2015-05-05 | Set cache buster for js with urlArgs setting | Joakim Reinert | 2 | -5/+5 | |
No more need for timestamp in filename of minified main js | |||||
2015-05-05 | Add support for minified main.js | Joakim Reinert | 2 | -2/+15 | |
2015-05-05 | Set max upload size and file count in upload_form view only | Joakim Reinert | 2 | -6/+3 | |
2015-05-05 | Fix non-closing script tag in file/html_header | Joakim Reinert | 1 | -1/+1 | |
2015-05-05 | Refactor file uploader js | Joakim Reinert | 1 | -1/+4 | |
2015-05-05 | Use global appConfig js variable instead of passing it down | Joakim Reinert | 2 | -6/+6 | |
Initialize it in header | |||||
2015-05-05 | Refactor thumbnail view js | Joakim Reinert | 1 | -1/+1 | |
2015-05-05 | Refactor linewrap toggle | Joakim Reinert | 1 | -1/+1 | |
2015-05-05 | Refactor lexer input setup | Joakim Reinert | 2 | -3/+5 | |
2015-05-05 | Use require.js for javascript loading | Joakim Reinert | 6 | -34/+4 | |
2015-05-05 | Add functionality for choosing tab width in frontend | Joakim Reinert | 1 | -0/+8 | |
2015-05-03 | Expose /file/thumbnail/ on front page | Florian Pritz | 1 | -1/+2 | |
Signed-off-by: Florian Pritz <bluewind@xinu.at> | |||||
2015-05-03 | c/tools: Make non-cli request error public | Florian Pritz | 1 | -1/+1 | |
Signed-off-by: Florian Pritz <bluewind@xinu.at> | |||||
2015-05-03 | test \libraries\Image::type_supported | Florian Pritz | 1 | -0/+38 | |
Signed-off-by: Florian Pritz <bluewind@xinu.at> | |||||
2015-05-02 | Get supported image types from drivers | Florian Pritz | 2 | -2/+20 | |
Signed-off-by: Florian Pritz <bluewind@xinu.at> | |||||
2015-05-02 | l\Image: Refactor best_driver/read | Florian Pritz | 1 | -12/+13 | |
Signed-off-by: Florian Pritz <bluewind@xinu.at> | |||||
2015-05-02 | l\I\D\imagemagick: Only process images and pdfs | Florian Pritz | 1 | -1/+9 | |
Signed-off-by: Florian Pritz <bluewind@xinu.at> | |||||
2015-04-27 | \l\Image->best_driver: Always ignore < 0 priority | Florian Pritz | 1 | -1/+1 | |
Signed-off-by: Florian Pritz <bluewind@xinu.at> | |||||
2015-04-25 | test: test_callPrivateEndpointsWithoutApikey add user/delete_apikey | Florian Pritz | 1 | -0/+1 | |
Signed-off-by: Florian Pritz <bluewind@xinu.at> | |||||
2015-04-25 | test: Call more endpoints without enough permissions | Florian Pritz | 1 | -15/+28 | |
Signed-off-by: Florian Pritz <bluewind@xinu.at> | |||||
2015-04-25 | API 1.3.0: Allow multipaste creation for basic access | Florian Pritz | 4 | -7/+7 | |
Signed-off-by: Florian Pritz <bluewind@xinu.at> | |||||
2015-04-18 | s/files:get_multipaste_history: Remove multipastes without items | Florian Pritz | 1 | -0/+8 | |
Signed-off-by: Florian Pritz <bluewind@xinu.at> | |||||
2015-04-18 | Added config option max_invitation_keys | Alexander Finkhäuser | 2 | -1/+4 | |
2015-04-11 | Fix missing lexers in get_lexers | Florian Pritz | 1 | -2/+2 | |
Broken by a11e06d4906c2e1186779b42d5e87a17f66c50ea which changed names back to a normal array. Signed-off-by: Florian Pritz <bluewind@xinu.at> | |||||
2015-04-09 | Fix mime2lexer failing when using pygments info | Florian Pritz | 2 | -2/+6 | |
Signed-off-by: Florian Pritz <bluewind@xinu.at> | |||||
2015-04-09 | Document how to clean file cache if used | Florian Pritz | 1 | -0/+2 | |
Signed-off-by: Florian Pritz <bluewind@xinu.at> | |||||
2015-04-09 | Improve title for multipastes | Florian Pritz | 1 | -1/+36 | |
Signed-off-by: Florian Pritz <bluewind@xinu.at> | |||||
2015-04-08 | Cache filedata | Florian Pritz | 2 | -13/+33 | |
This brings down render time of a multipaste with 180 items from ~180ms to ~80ms. Signed-off-by: Florian Pritz <bluewind@xinu.at> | |||||
2015-04-07 | Test: Add pygments tests | Florian Pritz | 1 | -0/+82 | |
Signed-off-by: Florian Pritz <bluewind@xinu.at> | |||||
2015-04-02 | Pygments: Add .lhs extension | Florian Pritz | 1 | -0/+1 | |
Signed-off-by: Florian Pritz <bluewind@xinu.at> | |||||
2015-04-02 | Improve performance of pygments->mime2lexer | Florian Pritz | 1 | -5/+3 | |
Normal arrays are rather slow when accessed sequentially. Use associative arrays and key lookups to reduce the render time of a multipaste with 180 items from 225ms to ~190ms. Signed-off-by: Florian Pritz <bluewind@xinu.at> | |||||
2015-04-02 | Pygments::get_pygments_info: cache in memory | Florian Pritz | 1 | -1/+1 | |
It's used multiple times if we are rendering a multipaste so it makes sense not to run to the backend cache each time (if there even is one). This reduced the render time for a multipaste with 180 items from >500ms to ~225ms when using the file cache backend. Signed-off-by: Florian Pritz <bluewind@xinu.at> | |||||
2015-04-02 | Fix automatic highlight of svg files | Florian Pritz | 1 | -7/+7 | |
They should not be highlit.. Signed-off-by: Florian Pritz <bluewind@xinu.at> | |||||
2015-04-02 | helper: Add cache_function_full | Florian Pritz | 1 | -1/+18 | |
Signed-off-by: Florian Pritz <bluewind@xinu.at> | |||||
2015-04-01 | file/do_websubmit: throw exception rather than assert | Florian Pritz | 1 | -2/+3 | |
An assert is actually wrong for user input. Signed-off-by: Florian Pritz <bluewind@xinu.at> | |||||
2015-04-01 | Get supported mimetypes from pygments itself | Florian Pritz | 1 | -0/+9 | |
Signed-off-by: Florian Pritz <bluewind@xinu.at> | |||||
2015-04-01 | Refactor \libraries\Pygments::get_lexers | Florian Pritz | 1 | -4/+13 | |
Signed-off-by: Florian Pritz <bluewind@xinu.at> | |||||
2015-04-01 | Refactor lexer code into dedicated class | Florian Pritz | 3 | -190/+215 | |
Signed-off-by: Florian Pritz <bluewind@xinu.at> | |||||
2015-03-25 | API 1.2.0: Add user/delete_apikeys endpoint | Florian Pritz | 3 | -5/+61 | |
Signed-off-by: Florian Pritz <bluewind@xinu.at> | |||||
2015-03-21 | Highlight application/postscript | Florian Pritz | 1 | -0/+1 | |
Signed-off-by: Florian Pritz <bluewind@xinu.at> | |||||
2015-03-21 | Change gentoo overlay link to https | Florian Pritz | 1 | -1/+1 | |
Signed-off-by: Florian Pritz <bluewind@xinu.at> | |||||
2015-03-19 | Make user/get_action/invalid-action exception public | Florian Pritz | 1 | -1/+1 | |
Signed-off-by: Florian Pritz <bluewind@xinu.at> | |||||
2015-03-16 | Map .pp files to puppet lexer | Florian Pritz | 1 | -0/+1 | |
Signed-off-by: Florian Pritz <bluewind@xinu.at> | |||||
2015-03-11 | Move upload button for small displays | Florian Pritz | 1 | -1/+1 | |
The uUpload button was not visible when using firefox in gnome on a laptop with 1366x768. Signed-off-by: Florian Pritz <bluewind@xinu.at> | |||||
2015-03-09 | Update gentoo overlay URL | Florian Pritz | 1 | -1/+1 | |
Signed-off-by: Florian Pritz <bluewind@xinu.at> | |||||
2015-03-09 | Test: Prefix output with testcase name | Florian Pritz | 2 | -2/+20 | |
Signed-off-by: Florian Pritz <bluewind@xinu.at> | |||||
2015-03-08 | Test: Improve exception handling | Florian Pritz | 2 | -6/+21 | |
Signed-off-by: Florian Pritz <bluewind@xinu.at> | |||||
2015-03-08 | api/file/create_multipase: return URL | Florian Pritz | 3 | -2/+4 | |
Signed-off-by: Florian Pritz <bluewind@xinu.at> | |||||
2015-03-08 | Unify file/cron and mfile->valid_id | Florian Pritz | 4 | -49/+201 | |
Create a testable function doing all the verification/removal, add tests and use it for both cases. Signed-off-by: Florian Pritz <bluewind@xinu.at> | |||||
2015-03-08 | Add mockery | Florian Pritz | 2 | -0/+1 | |
Signed-off-by: Florian Pritz <bluewind@xinu.at> |