summaryrefslogtreecommitdiff
path: root/system/db/init.go
AgeCommit message (Collapse)Author
2025-02-22fix: all hange s\/github.com\/ponzu-cms/github.com\/haturatu\/ghaturatu
2019-12-30Fix missing importsMiguel Angel Ajo
2019-12-30Also add path to db filesMiguel Angel Ajo
2017-08-22adding store access and buckets from other pkgsSteve Manuel
2017-06-14cleanupNeven Jacmenović
2017-06-12fix typoSteve Manuel
'addoon' => 'addon'
2017-06-11delayed indexer init (fix for search not working when addons are enabled)Neven Jacmenović
2017-06-10Revert "Fix for search not working when addons are enabled"Steve Manuel
2017-06-10small typo in commentsSteve Manuel
2017-06-09delayed search index initialization so search can work with addonsNeven Jacmenović
2017-06-09delayed search index initialization so search can work with addonsNeven Jacmenović
2017-04-25adding support for file upload type and API handler to fetch file infoSteve Manuel
2017-04-17package documentation for godocSteve Manuel
2017-04-13moving search into own package and renaming funcs throughoutSteve Manuel
2017-04-07add initial implementation of api search handler with full-text search by typeSteve Manuel
2017-04-06renaming and add Delete operation for search indexSteve Manuel
2017-04-06add mapping for search indices per content typeSteve 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-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-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-10adding db open back to Init and calling Init from other files init()Steve Manuel
2017-01-10pulling db connection creation into package init not exported Init() ↵Steve Manuel
initialization func
2017-01-10adding initial support for third-party addons and the basic framework for ↵Steve Manuel
how they are registered by the system
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 __contentIndex to map item slug to semi foreign-key, and implementing ↵Steve Manuel
add/delete features
2016-12-06substituting "_{specifier}" => "__{specifier}" so users can add their own ↵Steve Manuel
types with "_" as a separator and not face conflicts
2016-10-29adding db/analytics init back in after reverting for debugSteve Manuel
2016-10-29adding db/analytics init back in after reverting for debugSteve Manuel
2016-10-28debuggingSteve Manuel
2016-10-28code reorg and debugging bolt issuesSteve Manuel
2016-10-28attempt fix for bolt errSteve Manuel
2016-10-28attempt fix for bolt errSteve Manuel
2016-10-28adding some clean up code and UI toggle for future external vs. internal ↵Steve Manuel
posted content
2016-10-18implement Sort on all content types by Timestamp, DESC (latest to oldest) - ↵Steve Manuel
run in goroutine on db.Init() as well as any time content is saved via SetContent
2016-10-18implement Sort on all content types by Timestamp, DESC (latest to oldest) - ↵Steve Manuel
run in goroutine on db.Init() as well as any time content is saved via SetContent
2016-10-18implement Sort on all content types by Timestamp, DESC (latest to oldest) - ↵Steve Manuel
run in goroutine on db.Init() as well as any time content is saved via SetContent
2016-10-18implement Sort on all content types by Timestamp, DESC (latest to oldest) - ↵Steve Manuel
run in goroutine on db.Init() as well as any time content is saved via SetContent
2016-10-18adding sort buckets for each content typeSteve Manuel
2016-10-09returning absolute import paths, will move to vendor in future commitSteve Manuel
2016-10-09renaming import paths globally to ensure build is using new files, not ones ↵Steve Manuel
from original repo
2016-10-09updating import pathsSteve Manuel
2016-10-07adding cache control and etags to responses for static assets + moved ↵Steve Manuel
handlers/helper upload func
2016-10-06added jwt secret at initialization and removed debugsSteve Manuel