Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2014-11-03 | Simplify mfile->delete_hash | Florian Pritz | 1 | -31/+3 | |
This probably increases the database queries a bit, but greatly simplifies the code and fixes the missing deletion of multipaste tarballs (delete_id handles that). Signed-off-by: Florian Pritz <bluewind@xinu.at> | |||||
2014-11-03 | Properly delete multipastes when deleting a single paste | Florian Pritz | 1 | -4/+4 | |
mmultipaste->delete_id() also deletes multipaste tarballs which would otherwise be left over Signed-off-by: Florian Pritz <bluewind@xinu.at> | |||||
2014-11-03 | Fix deletion of multipaste tarball when deleting a multipaste | Florian Pritz | 1 | -1/+1 | |
Signed-off-by: Florian Pritz <bluewind@xinu.at> | |||||
2014-11-02 | Add tarball support to multipastes | Florian Pritz | 8 | -2/+262 | |
Signed-off-by: Florian Pritz <bluewind@xinu.at> | |||||
2014-10-29 | Simplify creation of initial user | Florian Pritz | 2 | -7/+68 | |
Signed-off-by: Florian Pritz <bluewind@xinu.at> | |||||
2014-10-29 | Make email sender configurable | Florian Pritz | 3 | -8/+5 | |
Signed-off-by: Florian Pritz <bluewind@xinu.at> | |||||
2014-10-27 | install.php: Check for PHP modules | Florian Pritz | 1 | -0/+17 | |
Signed-off-by: Florian Pritz <bluewind@xinu.at> | |||||
2014-10-19 | Update NEWS | Florian Pritz | 1 | -0/+1 | |
Signed-off-by: Florian Pritz <bluewind@xinu.at> | |||||
2014-10-19 | Merge postgresql support | Florian Pritz | 19 | -366/+599 | |
Signed-off-by: Florian Pritz <bluewind@xinu.at> | |||||
2014-10-19 | Clean up the postgres changes | Florian Pritz | 6 | -23/+21 | |
Style cleanup and some regression fixes Signed-off-by: Florian Pritz <bluewind@xinu.at> | |||||
2014-10-15 | add file/do_multipaste to CSRF exception list | Florian Pritz | 1 | -0/+1 | |
This is only needed for clients not yet using api keys. Signed-off-by: Florian Pritz <bluewind@xinu.at> | |||||
2014-10-10 | Merge remote-tracking branch 'rafi/master' into rafi | Florian Pritz | 19 | -366/+601 | |
2014-10-03 | Colorbox: Disable transition, start at 100% size | Florian Pritz | 1 | -0/+4 | |
No transitions makes it easier to compare images that are not the same size. Starting at 100% gets rid of the weird looking small box while loading a big image (only when opening, not when switching between images). Signed-off-by: Florian Pritz <bluewind@xinu.at> | |||||
2014-10-03 | Only use colorbox if it's loaded | Florian Pritz | 1 | -18/+23 | |
Signed-off-by: Florian Pritz <bluewind@xinu.at> | |||||
2014-10-03 | Support EXIF orientation in colorbox | Florian Pritz | 5 | -31/+131 | |
This also reindents colorbox.css. Signed-off-by: Florian Pritz <bluewind@xinu.at> | |||||
2014-10-03 | Rework image manipulation class | Florian Pritz | 5 | -172/+297 | |
This is the first of hopefully more classes using namespaces and proper classes that can be used as objects rather than CI's singleton approach. The namespace is mainly used to gain nice autoloading capabilities and it's not really yet used for separation. Signed-off-by: Florian Pritz <bluewind@xinu.at> | |||||
2014-10-03 | Move thumbnail code to dedicated class | Florian Pritz | 3 | -176/+175 | |
This also moves the code from mfile->image_dimension() to the only place where it was called. Signed-off-by: Florian Pritz <bluewind@xinu.at> | |||||
2014-10-03 | Add colorbox on thumnail pages | Florian Pritz | 7 | -1/+1342 | |
Signed-off-by: Florian Pritz <bluewind@xinu.at> | |||||
2014-09-28 | Merge branch 'pgsql_controllers' | Rafael Bodill | 3 | -39/+35 | |
* pgsql_controllers: file/cron: Protecting identifiers Fixing multipaste delete queries | |||||
2014-09-28 | file/cron: Protecting identifiers | Rafael Bodill | 1 | -1/+2 | |
2014-09-20 | Update NEWS | Florian Pritz | 1 | -0/+3 | |
Signed-off-by: Florian Pritz <bluewind@xinu.at> | |||||
2014-09-20 | thumbnails: Handle EXIF orientation | Florian Pritz | 1 | -0/+63 | |
Signed-off-by: Florian Pritz <bluewind@xinu.at> | |||||
2014-09-20 | Improve handling of PHP errors | Florian Pritz | 2 | -1/+59 | |
This converts any error (including INFO, NOTICE and those hidden with @) to an exception and displays a nice error page for uncaught exceptions. Signed-off-by: Florian Pritz <bluewind@xinu.at> | |||||
2014-09-19 | Fixing multipaste delete queries | Rafael Bodill | 2 | -38/+33 | |
2014-09-19 | Merge branch 'pgsql_controllers' | Rafael Bodill | 6 | -196/+210 | |
* pgsql_controllers: Fix user/register mistaken query handling WIP: Cascading delete where_in for in array queries a proper count usage Fix timestamp adjusting for a list of arrays Correct unsupported open/close where query statements File controller uses query builder, except 2 queries Integrating query builder in models User controller queries built dynamically Query builder in user login and controller | |||||
2014-09-19 | Merge branch 'pgsql_migrations' | Rafael Bodill | 13 | -170/+395 | |
* pgsql_migrations: Optimizing multipaste tables apikeys.created should be timestamp with default now() No column based encoding. Reverting dbforge migration Correcting bracket style for 'if' Migrations support for PostgreSQL | |||||
2014-09-19 | Fix user/register mistaken query handling | Rafael Bodill | 1 | -1/+1 | |
2014-09-19 | Optimizing multipaste tables | Rafael Bodill | 1 | -17/+7 | |
2014-09-19 | WIP: Cascading delete | Rafael Bodill | 2 | -20/+40 | |
2014-09-19 | where_in for in array queries a proper count usage | Rafael Bodill | 2 | -4/+4 | |
2014-09-19 | Fix timestamp adjusting for a list of arrays | Rafael Bodill | 1 | -2/+6 | |
2014-09-19 | apikeys.created should be timestamp with default now() | Rafael Bodill | 1 | -1/+1 | |
2014-09-19 | Correct unsupported open/close where query statements | Rafael Bodill | 1 | -3/+1 | |
2014-09-19 | No column based encoding. Reverting dbforge migration | Rafael Bodill | 1 | -15/+31 | |
2014-09-19 | File controller uses query builder, except 2 queries | Rafael Bodill | 1 | -32/+36 | |
2014-09-18 | Integrating query builder in models | Rafael Bodill | 2 | -51/+42 | |
2014-09-18 | User controller queries built dynamically | Rafael Bodill | 1 | -74/+72 | |
2014-09-18 | Correcting bracket style for 'if' | Rafael Bodill | 13 | -95/+56 | |
2014-09-18 | Query builder in user login and controller | Rafael Bodill | 2 | -20/+19 | |
2014-09-18 | Migrations support for PostgreSQL | Rafael Bodill | 13 | -168/+426 | |
2014-09-11 | Fix black background in thumbnails with transparency | Florian Pritz | 1 | -0/+6 | |
Signed-off-by: Florian Pritz <bluewind@xinu.at> | |||||
2014-08-30 | Update NEWS | Florian Pritz | 1 | -0/+3 | |
Signed-off-by: Florian Pritz <bluewind@xinu.at> | |||||
2014-08-30 | Improve migration error message | Florian Pritz | 1 | -2/+2 | |
Signed-off-by: Florian Pritz <bluewind@xinu.at> | |||||
2014-08-30 | Merge tag '2.2.0' into working | Florian Pritz | 2 | -8/+9 | |
Signed-off-by: Florian Pritz <bluewind@xinu.at> | |||||
2014-08-29 | Set title on code render page | Florian Pritz | 1 | -0/+2 | |
This got lost in the multipaste change. Signed-off-by: Florian Pritz <bluewind@xinu.at> | |||||
2014-08-29 | Document multipastes on the front page | Florian Pritz | 1 | -0/+7 | |
Signed-off-by: Florian Pritz <bluewind@xinu.at> | |||||
2014-08-29 | Fix code renders for cli clients | Florian Pritz | 2 | -0/+2 | |
Signed-off-by: Florian Pritz <bluewind@xinu.at> | |||||
2014-08-29 | Merge branch 'multipaste' into working | Florian Pritz | 26 | -460/+1128 | |
2014-08-29 | Increase padding for anchors | Florian Pritz | 1 | -2/+2 | |
Signed-off-by: Florian Pritz <bluewind@xinu.at> | |||||
2014-08-29 | add multipaste support | Florian Pritz | 22 | -301/+939 | |
Signed-off-by: Florian Pritz <bluewind@xinu.at> |