Age | Commit message (Collapse) | Author | |
---|---|---|---|
2025-02-22 | fix: all hange s\/github.com\/ponzu-cms/github.com\/haturatu\/g | haturatu | |
2018-08-19 | Replaced satori/go.uuid with gofrs/uuid. (#268) | nanohard | |
* Changed files to use new uuid pkg. * Replace satori/go.uuid with gofrs/uuid. Closes #257. * Deleted satori/go.uuid folder. Closes #257. | |||
2018-01-03 | Fix UUID issues (#216) | Nick Randall | |
* fixing errors due to new updates to uuid packakge * fix fomatting * updating vendored version of uuid package | |||
2017-06-27 | fixed approve handler losing data for string slices | Tornike Razmadze | |
2017-04-17 | fix ineffassign and spelling errors | Steve Manuel | |
2017-04-14 | simpler throttle | Kevin Keuning | |
2017-04-14 | improved throttle to ensure content is sorted | Kevin Keuning | |
2017-04-13 | moving search into own package and renaming funcs throughout | Steve Manuel | |
2017-04-11 | Merge branch 'throttle-sort' into ponzu-dev | Steve Manuel | |
2017-04-11 | change implementation of search to opt-in per type, less risky if sensative ↵ | Steve Manuel | |
data is added | |||
2017-04-11 | updating waitDuration, should determine if this is configurable or not | Steve Manuel | |
2017-04-11 | adding throttled content sorting | Steve Manuel | |
2017-04-07 | import layout style fix | Steve Manuel | |
2017-04-07 | add initial implementation of api search handler with full-text search by type | Steve Manuel | |
2017-04-06 | renaming and add Delete operation for search index | Steve Manuel | |
2017-04-06 | indexing string data instead of json []byte | Steve Manuel | |
2017-04-06 | adding json values to search index on insert and update | Steve Manuel | |
2017-04-03 | swap asc/desc now that natural order in db is changed | Steve Manuel | |
2017-04-03 | move iterator to suffix of key to avoid clashing, include status in UI sort | Steve Manuel | |
2017-04-03 | testing alt key format in sorted buckets | Steve Manuel | |
2017-03-20 | separate UpdateContent and SetContent to differentiate when data should be ↵ | Steve Manuel | |
merged or replaced | |||
2017-03-15 | updating DeleteContent signature to remove requirement of url.Values, will ↵ | Steve Manuel | |
instead to a lookup in content before the delete to get slug, etc | |||
2017-03-05 | updated logging | Kevin Keuning | |
2017-03-05 | consolidate UpdateContent into SetContent | Kevin Keuning | |
2017-03-02 | updated log message | Kevin Keuning | |
2017-03-02 | added UpdateContent for merge behavior on api updates, extended Hookable | Kevin Keuning | |
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-12 | and not or in err check | Steve Manuel | |
2017-01-12 | move expensive work outside store.Update in Sort | Steve Manuel | |
2017-01-12 | handling error | Steve Manuel | |
2017-01-08 | adding error type rather than string as exported var from item | Steve Manuel | |
2016-12-30 | adding Hideable interface and initial implementation, allowing user to ↵ | Steve Manuel | |
define content that can be kept private | |||
2016-12-19 | moving repository, bosssauce => ponzu-cms | Steve 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-14 | adding db method ContentBySlug to lookup the type & id of content by its ↵ | Steve Manuel | |
slug and return it directly | |||
2016-12-14 | maintain original slug and append to it with single incremental value, not many | Steve Manuel | |
2016-12-14 | adding __contentIndex to map item slug to semi foreign-key, and implementing ↵ | Steve Manuel | |
add/delete features | |||
2016-12-06 | adding cache (client-based, Etag) to API responses in addition to static ↵ | Steve Manuel | |
files uploaded | |||
2016-12-06 | substituting "_{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*/ substitution | Steve Manuel | |
2016-12-06 | /*post?s*/ => /*content?s*/ substitution | Steve Manuel | |
2016-12-06 | removing old unnecessary text processing code | Steve Manuel | |
2016-12-06 | removing 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-05 | update db.Query to return total of content count, add implement change ↵ | Steve Manuel | |
throughout references, add pagination to admin post results | |||
2016-11-28 | adding uuid dep and implementation for content.Item | Steve Manuel | |
2016-11-03 | simplifying Editable interface by adding Sluggable and Identifiable ↵ | Steve Manuel | |
interfaces, moving relevant interface methods to be implemented by other types and updating caller code to assert the new interface types as needed | |||
2016-11-02 | adding default to order switch in db.Query | Steve Manuel | |
2016-11-02 | swapping order of post winding | Steve Manuel | |
2016-11-02 | testing fix for -1 case in count length | Steve Manuel | |
2016-11-02 | adding test fix for asc order | Steve Manuel | |