Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2012-10-16 | Fall back to plain text if lexer is unknown/broken | Florian Pritz | 3 | -15/+52 | |
Signed-off-by: Florian Pritz <bluewind@xinu.at> | |||||
2012-10-10 | Accept authentication via post parameters | Florian Pritz | 1 | -5/+18 | |
Passing the authentication headers is slightly complicated with fastcgi so we support both and let the users choose. Signed-off-by: Florian Pritz <bluewind@xinu.at> | |||||
2012-10-09 | Rename $mode to $lexer | Florian Pritz | 2 | -42/+42 | |
Pygments calls it that and mode was an undescriptive name anyway. Signed-off-by: Florian Pritz <bluewind@xinu.at> | |||||
2012-10-08 | Merge tag '2.1.3' | Florian Pritz | 11 | -117/+106 | |
Conflicts: user_guide Signed-off-by: Florian Pritz <bluewind@xinu.at> | |||||
2012-10-08 | Really fix #1715 | Andrey Andreev | 1 | -1/+1 | |
2012-10-08 | Fix issue #1715 | Andrey Andreev | 2 | -4/+5 | |
2012-10-07 | Bump version number to 2.1.3 | Andrey Andreev | 145 | -146/+232 | |
2012-10-07 | c/file/download: display an error if highlighting fails | Florian Pritz | 1 | -5/+9 | |
Previously we displayed an empty page since stderr usually goes to the error log of the web server. Signed-off-by: Florian Pritz <bluewind@xinu.at> | |||||
2012-10-07 | scripts/mimetype: detect ascii with long lines correctly | Florian Pritz | 1 | -1/+1 | |
Signed-off-by: Florian Pritz <bluewind@xinu.at> | |||||
2012-10-07 | c/file/download: remove useless return statement | Florian Pritz | 1 | -2/+0 | |
Signed-off-by: Florian Pritz <bluewind@xinu.at> | |||||
2012-10-07 | c/file/download: stop working around CI's output class | Florian Pritz | 1 | -3/+4 | |
Signed-off-by: Florian Pritz <bluewind@xinu.at> | |||||
2012-10-06 | Backport security fixes | Andrey Andreev | 2 | -26/+27 | |
2012-10-06 | Fix issues #227 and #907 | Andrey Andreev | 2 | -35/+36 | |
2012-10-04 | Backport fix for issue #1699 | Andrey Andreev | 2 | -21/+12 | |
2012-09-26 | c/file/_download: urldecode mode to fix lexers with spaces | Florian Pritz | 1 | -1/+1 | |
Pygments has lexers with space in the name and those won't work unless we decode them. Example: "Duel View" Signed-off-by: Florian Pritz <bluewind@xinu.at> | |||||
2012-09-23 | error_general: Prevent endless loop | Florian Pritz | 1 | -2/+2 | |
If we hit an error in the fancy code it could trigger the same error page being loaded resulting in an endless loop. Signed-off-by: Florian Pritz <bluewind@xinu.at> | |||||
2012-09-11 | file/cron: always remove stale files | Florian Pritz | 2 | -0/+8 | |
Signed-off-by: Florian Pritz <bluewind@xinu.at> | |||||
2012-09-10 | Let pygments guess input encoding | Florian Pritz | 1 | -1/+1 | |
Assuming utf8 breaks if the input file is latin1. This automaticaly guesses if it's utf8 or latin1. If this isn't enough, we can switch to chardet, but that adds a new dependency. Signed-off-by: Florian Pritz <bluewind@xinu.at> | |||||
2012-09-09 | m/file: add text/x-tcl to autodetection | Florian Pritz | 1 | -0/+1 | |
Signed-off-by: Florian Pritz <bluewind@xinu.at> | |||||
2012-09-05 | Backport a fix for oci8_result::num_rows() | Andrey Andreev | 1 | -6/+4 | |
2012-08-31 | Fix missing require_session call | Florian Pritz | 1 | -0/+1 | |
Trigger: echo test | curl -F "file=@-;filename=stdin" <url> Signed-off-by: Florian Pritz <bluewind@xinu.at> | |||||
2012-08-28 | Only create new sessions when the are really needed | Florian Pritz | 2 | -3/+39 | |
Most sessions are just people viewing a paste. Those don't need a session until they want to log in so we don't have to pollute the database and waste resources. Signed-off-by: Florian Pritz <bluewind@xinu.at> | |||||
2012-08-28 | Move most config files back to app/config/ | Florian Pritz | 16 | -2/+21 | |
Apart from database.php, config.php and memcache.php the files shouldn't be different so we can just track them in the repo. Signed-off-by: Florian Pritz <bluewind@xinu.at> | |||||
2012-08-16 | Add help message when running file controller via CLI | Florian Pritz | 1 | -0/+12 | |
Signed-off-by: Florian Pritz <bluewind@xinu.at> | |||||
2012-08-16 | Add example crontab | Florian Pritz | 2 | -0/+3 | |
Signed-off-by: Florian Pritz <bluewind@xinu.at> | |||||
2012-08-16 | remove .highlight directory | Florian Pritz | 3 | -108/+0 | |
No longer used Signed-off-by: Florian Pritz <bluewind@xinu.at> | |||||
2012-08-16 | html_header: fix indentation | Florian Pritz | 1 | -19/+19 | |
Signed-off-by: Florian Pritz <bluewind@xinu.at> | |||||
2012-08-16 | Add Content-Type meta tag | Florian Pritz | 1 | -0/+1 | |
Signed-off-by: Florian Pritz <bluewind@xinu.at> | |||||
2012-08-16 | remove 'class="no"' from highlit html | Florian Pritz | 2 | -1/+3 | |
No need to repeat that for every line. Signed-off-by: Florian Pritz <bluewind@xinu.at> | |||||
2012-08-16 | switch to pygments | Florian Pritz | 414 | -65278/+68 | |
- faster than geshi - easier to modify the css because there is only one - geshi upstream seems pretty dead Signed-off-by: Florian Pritz <bluewind@xinu.at> | |||||
2012-08-16 | paste.css: fix indentation | Florian Pritz | 1 | -37/+37 | |
Signed-off-by: Florian Pritz <bluewind@xinu.at> | |||||
2012-08-09 | rename file_mod to mfile | Florian Pritz | 2 | -33/+33 | |
Muser already uses this scheme as it is easier to type. Signed-off-by: Florian Pritz <bluewind@xinu.at> | |||||
2012-08-01 | Style fix and changelog entry for pull #1675 | Andrey Andreev | 2 | -1/+2 | |
2012-08-01 | Merge pull request #1675 from Dentxinho/patch-1 | Alex Bilbie | 1 | -1/+1 | |
Fix warning by profiler when userdata has objects | |||||
2012-07-31 | Fix warning by profiler when userdata has objects | Raul Baldner junior | 1 | -1/+1 | |
If session data has objects and profiler is enabled, a warning is trown: > A PHP Error was encountered > Severity: Warning > Message: htmlspecialchars() expects parameter 1 to be string, object given > Filename: libraries/Profiler.php > Line Number: 514 | |||||
2012-07-26 | fix typo in migration "add username index" | Florian Pritz | 1 | -1/+1 | |
Signed-off-by: Florian Pritz <bluewind@xinu.at> | |||||
2012-07-24 | Don't call undefined functions on error page | Florian Pritz | 1 | -11/+84 | |
Regression test: URL with disallowed chars: '$url/1234/.exec("asdf")' Signed-off-by: Florian Pritz <bluewind@xinu.at> | |||||
2012-07-24 | Change is_loaded() to return a reference | Andrey Andreev | 1 | -1/+1 | |
2012-07-22 | display header on client page when using browser | Florian Pritz | 1 | -2/+2 | |
Signed-off-by: Florian Pritz <bluewind@xinu.at> | |||||
2012-07-22 | fix call to _non_existent() typos | Florian Pritz | 1 | -2/+2 | |
Signed-off-by: Florian Pritz <bluewind@xinu.at> | |||||
2012-07-18 | Backport fix for issue #1314 | Andrey Andreev | 2 | -2/+6 | |
2012-07-18 | htaccess: add workaround for fastcgi and http authorization header | Florian Pritz | 1 | -0/+1 | |
Signed-off-by: Florian Pritz <bluewind@xinu.at> | |||||
2012-07-12 | Add cron function for user controller | Florian Pritz | 2 | -0/+15 | |
Signed-off-by: Florian Pritz <bluewind@xinu.at> | |||||
2012-07-12 | Improve design of general error page | Florian Pritz | 3 | -61/+26 | |
Signed-off-by: Florian Pritz <bluewind@xinu.at> | |||||
2012-07-12 | c/user: improve error messages | Florian Pritz | 1 | -6/+2 | |
Signed-off-by: Florian Pritz <bluewind@xinu.at> | |||||
2012-07-12 | u/register: improve error message for invalid username | Florian Pritz | 1 | -1/+1 | |
Signed-off-by: Florian Pritz <bluewind@xinu.at> | |||||
2012-07-12 | Explicitly select fields in db queries | Florian Pritz | 2 | -2/+2 | |
Signed-off-by: Florian Pritz <bluewind@xinu.at> | |||||
2012-07-12 | Store userid in session | Florian Pritz | 1 | -6/+2 | |
We don't really have to hit the db here every time. Signed-off-by: Florian Pritz <bluewind@xinu.at> | |||||
2012-07-12 | Display nice error message if username exists already | Florian Pritz | 2 | -0/+19 | |
Signed-off-by: Florian Pritz <bluewind@xinu.at> | |||||
2012-07-12 | Add unique index for users.username | Florian Pritz | 2 | -1/+22 | |
Signed-off-by: Florian Pritz <bluewind@xinu.at> |