summaryrefslogtreecommitdiff
path: root/system/item
AgeCommit message (Collapse)Author
2017-03-02added UpdateContent for merge behavior on api updates, extended HookableKevin Keuning
2017-02-13fix typo in comment docSteve Manuel
2017-02-13adding item.Omittable interface for field-level omission of data in ↵Steve Manuel
responses, implementation in handler and separating source into individual files for other interface impls
2017-02-07adding hooks for before/after accept on external handler and implementation ↵Steve Manuel
in item.Item
2017-01-26[core] Embedded and implement http.Pusher into http.ResponseWriter+gzip ↵Steve
Writer (#47) * added http Pusher interface to gzip response writer * implement Pusher on gzipResponseWriter and pass encoding header to pusher options * providing a generic error view fuction for code that calls a interface method which will have access to the response * fix []byte -> string type for fmt string * adding the res, req pattern for method arguments in interfaces and their method calls * fix for spacing in generic error message * remove default error views displayed in lifecycle hooks - will rely on custom views or redirects inside hook now that user has ResponseWriter. Otherwise, multiple WriteHeader calls would be warned * removing WriteHeader calls before return in external handlers * bump version 0.8.1
2017-01-11attempting to force item.Types to be populated before the db Init stepSteve Manuel
2017-01-08adding error type rather than string as exported var from itemSteve Manuel
2017-01-03adding link to WikiSteve Manuel
2016-12-30update Hide method in Hideable interface, change GMT label to UTCSteve Manuel
2016-12-30adding Hideable interface and initial implementation, allowing user to ↵Steve Manuel
define content that can be kept private
2016-12-29adding initial implementation of HTTP/2 server push to single content api ↵Steve Manuel
reponses
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