summaryrefslogtreecommitdiff
path: root/system/db
AgeCommit message (Collapse)Author
2017-03-02updated log messageKevin Keuning
2017-03-02added UpdateContent for merge behavior on api updates, extended HookableKevin Keuning
2017-02-06[core] add support for DB indexes (#62)Steve
* fix typo in log message * update namespace to use prefix __index_ to avoid possible user conflicts
2017-01-24[core] System backups (uploads, system.db, analytics.db) (#42)Steve
2017-01-20removing fmt prints. fix is for #38Steve Manuel
2017-01-20adding fix for consistent order in repeaters and multi-value field inputsSteve Manuel
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-12and not or in err checkSteve Manuel
2017-01-12move expensive work outside store.Update in SortSteve Manuel
2017-01-12handling errorSteve Manuel
2017-01-11moving content _ import into new system/init package to test importSteve Manuel
2017-01-11move content _ import to adminSteve Manuel
2017-01-11attempting to force item.Types to be populated before the db Init stepSteve Manuel
2017-01-11adding []byte driven api vs. url.Values where ever possibleSteve Manuel
2017-01-10adding pointer fix for decoding, removing print debugsSteve Manuel
2017-01-10adding test for store value before attempt to open dbSteve Manuel
2017-01-10adding print debugs to check statusSteve Manuel
2017-01-10minor UI change and docs updateSteve Manuel
2017-01-10adding Init check in func called early in processSteve Manuel
2017-01-10adding db open back to Init and calling Init from other files init()Steve Manuel
2017-01-10now that we possibly create the __addon bucket here, tx type needs to be ↵Steve Manuel
writable
2017-01-10pulling db connection creation into package init not exported Init() ↵Steve Manuel
initialization func
2017-01-10adding bucket in advance in case it doesnt exist and addon init is called ↵Steve Manuel
before db Init
2017-01-10adding initial support for third-party addons and the basic framework for ↵Steve Manuel
how they are registered by the system
2017-01-08adding error type rather than string as exported var from itemSteve Manuel
2017-01-02update codebase where previous deps were usedSteve Manuel
2016-12-30adding Hideable interface and initial implementation, allowing user to ↵Steve Manuel
define content that can be kept private
2016-12-25adding more error handling on buffer writes, removing old codeSteve Manuel
2016-12-22adding fix for js in repeaters (mainly FileRepeater) and cleanup of form ↵Steve Manuel
value transforms
2016-12-19moving repository, bosssauce => ponzu-cmsSteve Manuel
2016-12-19[addons] Creating foundation for plugin-like system "Addons" (#24)Steve
* adding addons dir and sample addon which enables the use of a new input element in forms for referencing other content. "addons" is a conceptual plugin-like feature, similar to wordpress "plugins" dir, but not as sophisticated
2016-12-14adding cache invalidation to system start/initSteve Manuel
2016-12-14adding db method ContentBySlug to lookup the type & id of content by its ↵Steve Manuel
slug and return it directly
2016-12-14maintain original slug and append to it with single incremental value, not manySteve Manuel
2016-12-14adding __contentIndex to map item slug to semi foreign-key, and implementing ↵Steve Manuel
add/delete features
2016-12-11updating cache control header to be more lenientSteve Manuel
2016-12-11removing print debug for cache checkSteve Manuel
2016-12-11returning api server middleware to original state and adding req header ↵Steve Manuel
lookup for cache implementation
2016-12-07adding debug prints -- cache control not effecting json responsesSteve Manuel
2016-12-06initialize url.Values (map) prior to Add/SetSteve Manuel
2016-12-06checking if first pass through kv of config to call Set before AddSteve Manuel
2016-12-06tracking new fileSteve Manuel
2016-12-06adding cache (client-based, Etag) to API responses in addition to static ↵Steve Manuel
files uploaded
2016-12-06substituting "_{specifier}" => "__{specifier}" so users can add their own ↵Steve Manuel
types with "_" as a separator and not face conflicts
2016-12-06/*post?s*/ => /*content?s*/ substitutionSteve Manuel
2016-12-06/*post?s*/ => /*content?s*/ substitutionSteve Manuel
2016-12-06removing old unnecessary text processing codeSteve Manuel
2016-12-06removing ContentName() from editor.Editble and adding String() to ↵Steve Manuel
content.Identifiable so embedded Items can manage display names by default, but easily overridden
2016-12-05update db.Query to return total of content count, add implement change ↵Steve Manuel
throughout references, add pagination to admin post results
2016-12-02adding a guarantee to update user with same IDSteve Manuel