summaryrefslogtreecommitdiff
path: root/system/addon
AgeCommit message (Collapse)Author
2025-02-22fix: all hange s\/github.com\/ponzu-cms/github.com\/haturatu\/ghaturatu
2017-07-23update addon api to support non-domain bind addressSteve Manuel
2017-05-01adding hooks to interface and handler for addon enable/disableSteve Manuel
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-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-11moving addon handlers back into admin packageSteve Manuel
2017-01-11moving addon handlers to addon package to avoid import issuesSteve Manuel
2017-01-11attempting to force item.Types to be populated before the db Init stepSteve Manuel
2017-01-11make url.Values so it is not nil when set/add is calledSteve Manuel
2017-01-11adding pointer to map in unmarshalSteve Manuel
2017-01-11adding []byte driven api vs. url.Values where ever possibleSteve Manuel
2017-01-11extending the "addon" platform within ponzu to register, present and manage ↵Steve Manuel
addons
2017-01-10adding pointer fix for decoding, removing print debugsSteve Manuel
2017-01-10minor UI change and docs updateSteve Manuel
2017-01-10adding returns to exit req/res, testing values -> struct conv via schemaSteve Manuel
2017-01-10fix for slice len issue adding extra chars to addon idSteve Manuel
2017-01-10changing Values set to convert value to stringSteve Manuel
2017-01-10making register a sub routine of NewSteve Manuel
2017-01-10adding slight change to Register and including New constructorSteve Manuel
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-03adding link to WikiSteve Manuel
2016-12-30updating error in addond and checking for nil prior to clling method on errSteve Manuel
2016-12-19update order of params to Query endpoint formatterSteve Manuel
2016-12-19adding Query func to addon api for more parity with db package, extract Get ↵Steve Manuel
from ContentAll for reuse
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