summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2014-02-04Added lazy load to image page.jablessJon Bergli Heier6-7/+22
2013-10-01Added options for persistent login.Jon Bergli Heier2-6/+32
2013-10-01Fixed uploading when anonymous uploads are disabled while logged in.Jon Bergli Heier1-1/+1
2013-08-31Return 404 if file hash does not exist.Jon Bergli Heier1-2/+2
2013-08-30Added settings for registrations and uploads.Jon Bergli Heier10-57/+113
* create_active_users: Controls whether new user accounts are created as 'active'; accounts that are not marked as active will not be able to log in, and will be automatically logged out if they're already logged in. * allow_registration: Allow or disallow creation of new user accounts. Any attempts to access the registration page will result in an error message. * allow_anonymous_uploads: Allow or disallow uploading of files by anonymous (not logged in) users. Combined with either allow_registration or create_active_users, this will effectively create a private filebin where the admin must explicitly create or activate new users.
2013-08-30Properly return favicon.ico if it exists.Jon Bergli Heier1-2/+8
2013-08-30Added ip and accessed to the 'files' table.Jon Bergli Heier2-7/+17
2013-08-03Added some minor adjustments to look better on mobile browsers.Jon Bergli Heier3-1/+4
2013-05-06Fixed hashing when uploading very small files.Jon Bergli Heier1-0/+1
2013-05-06Fixed uploading very small files.Jon Bergli Heier1-0/+6
2013-05-02Added api calls for file and image listings.Jon Bergli Heier1-2/+29
2012-12-16Make image thumbnail tiles consistent in width.Jon Bergli Heier2-8/+11
2012-09-24Show a placeholder image when no thumbnail could be fetched or generated.Jon Bergli Heier4-2/+11
2012-09-24Delete uploaded temporary file on missing metadata.Jon Bergli Heier1-0/+2
2012-09-24Reversed image hover opacity.Jon Bergli Heier1-2/+2
2012-09-04Optionally change file mode after uploading.Jon Bergli Heier1-0/+2
2012-08-28Write temporary files to settings.file_directory on upload.Jon Bergli Heier1-11/+17
We now only use one temporary file instead of two, and this file is renamed to the destination filename on completion. This should speed up things by avoiding copying files from tmpfs to disk.
2012-05-23Redirect to login page and back to the original page afterwards when login ↵Jon Bergli Heier2-5/+11
is required.
2012-02-18Send Content-Type when using X-Sendfile.Jon Bergli Heier1-1/+1
2012-01-01Added a 'del' link to allow deleting files.Jon Bergli Heier4-2/+56
2011-11-12Added a change password option when logged in.Jon Bergli Heier4-2/+77
2011-10-30Detect and use mogrify to auto-rotate JPEG images with EXIF orientation tags.Jon Bergli Heier1-1/+19
2011-09-10Handle rfc1123 dates with timezone names.Jon Bergli Heier1-1/+6
2011-07-29Display number of files and total size on myfiles and images pages.Jon Bergli Heier4-2/+7
2011-07-29Handle file ranges.Jon Bergli Heier1-6/+29
2011-07-29Support ranges using X-Sendfile2.Jon Bergli Heier1-2/+17
2011-07-29Added support for X-Sendfile.Jon Bergli Heier1-0/+3
2011-07-29Added support for configurable virtual root.Jon Bergli Heier7-29/+50
2011-07-29Write file uploads to temp file while hashing.Jon Bergli Heier1-6/+6
This avoids loading the file into memory, which is bad for huge files.
2011-07-18Fixed breakage caused by using wrong hash.Jon Bergli Heier1-2/+11
2011-07-18Implemented simple cache control for files and thumbnails.Jon Bergli Heier1-17/+25
Send the Last-Modified header, and react accordingly when receiving an If-Modified-Since header.
2011-07-17Removed unused line from style.css.Jon Bergli Heier1-1/+0
2011-07-17Added an image section with thumbnails of all uploaded image files.Jon Bergli Heier7-2/+64
2011-05-11Removed page-wrapper div.Jon Bergli Heier2-2/+0
2011-05-11Use settings.static_root as root directory for static files.Jon Bergli Heier1-1/+1
2011-05-11Moved menu, fixed login button.Jon Bergli Heier4-21/+25
2011-04-15Return unicode data from File.html().Jon Bergli Heier1-1/+1
2011-02-26Added filesize and extra links on the account file list page.Jon Bergli Heier1-3/+16
2011-02-26Added some requests, more details in long description.Jon Bergli Heier5-17/+75
- Files are now hashed, when you upload a file with an existing hash you will get the existing file in return (will fix adding files to your account at a later time). - Username can be used instead of uid for cookies, hashing for the identifier works the same way as before, but with username instead of uid if username is used. - Add api=1 to get machine-readable responses, details in are found on the help page.
2011-02-16Updated the help template.Jon Bergli Heier1-2/+3
2011-02-15Allow for more file request variations.Jon Bergli Heier2-1/+9
2011-02-15Use sha1 instead of md5.Jon Bergli Heier2-5/+5
2011-02-15Added missing __init__.py.Jon Bergli Heier1-0/+6
2011-02-15Initial commit.Jon Bergli Heier11-0/+467