summaryrefslogtreecommitdiff
path: root/system/admin/upload
AgeCommit message (Collapse)Author
2017-03-20adding filename normalization and sanitization for file uploadsSteve Manuel
2017-01-24[core] System backups (uploads, system.db, analytics.db) (#42)Steve
2017-01-16[core] Adding toggle for CORS, GZIP in admin/cms configuration (#30)Steve
This PR enables admins to disable/enable CORS and GZIP from within the admin CMS configuration page. Both are enabled by default. Note: currently, the GZIP implementation is 100% on the fly, for every qualifying API endpoint request. This could add significant CPU usage, but dramatically decreases bandwidth. Will be considering other better implementations, but for now YMMV. Possible optimizations: - pooling gzip Writers vs. creating a new one for each response - caching gzipped responses (in memory? on disk?) - enforcing size threshold (only gzip content larger than N bytes)
2017-01-10adding initial support for third-party addons and the basic framework for ↵Steve Manuel
how they are registered by the system
2016-11-02adding proper padding on month int to dir name for file uploadSteve Manuel
2016-11-02adding proper padding on month int to dir name for file uploadSteve Manuel
2016-10-29renaming and moving File upload logic into own packageSteve Manuel