summaryrefslogtreecommitdiff
path: root/system/db/content.go
AgeCommit message (Collapse)Author
2017-01-08adding error type rather than string as exported var from itemSteve Manuel
2016-12-30adding Hideable interface and initial implementation, allowing user to ↵Steve Manuel
define content that can be kept private
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 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-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-11-28adding uuid dep and implementation for content.ItemSteve Manuel
2016-11-03simplifying 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-02adding default to order switch in db.QuerySteve Manuel
2016-11-02swapping order of post windingSteve Manuel
2016-11-02testing fix for -1 case in count lengthSteve Manuel
2016-11-02adding test fix for asc orderSteve Manuel
2016-11-02adding test fix for asc orderSteve Manuel
2016-11-02adding test fix for asc orderSteve Manuel
2016-11-02reassigning k, v with next or prev recordSteve Manuel
2016-11-02adding addtional stops for count/offsetSteve Manuel
2016-11-01testing start / end positions on cursor - added back bounds check from prior ↵Steve Manuel
version
2016-11-01testing start / end positions on cursorSteve Manuel
2016-11-01adding some bounds checking to the cursor location based on the expected resultsSteve Manuel
2016-11-01do not allow return length longer than number of values in bucketSteve Manuel
2016-11-01moving query like code from handler to new Query func in db package so size ↵Steve Manuel
of posts returned is just what was requested
2016-10-30dont allow non main content types to be sortedSteve Manuel
2016-10-30need to delete _sorted bucket before re-sorting on deleteSteve Manuel
2016-10-30fixing _ specifier locationSteve Manuel
2016-10-30left out _ separator from ns+specifier in db callSteve Manuel
2016-10-30refactor some db code and update how status vars interpolate throughour UI codeSteve Manuel
2016-10-30slight refactor of pending content code & reimplementing where neededSteve Manuel
2016-10-29adding db procedures and updating handler for external submissions / pending ↵Steve Manuel
content
2016-10-29adding db procedures and updating handler for external submissions / pending ↵Steve Manuel
content
2016-10-29bucket create if not existSteve Manuel
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-29adding db/analytics init back in after reverting for debugSteve Manuel
2016-10-28adding some clean up code and UI toggle for future external vs. internal ↵Steve Manuel
posted content
2016-10-26need to process string in case external suffix is found where it should not beSteve Manuel
2016-10-26debuggingSteve Manuel
2016-10-26implementation of insert content update to support types with no prior idSteve Manuel
2016-10-26debuggingSteve Manuel
2016-10-26debuggingSteve Manuel
2016-10-26adding capability to accept external content type submissionsSteve Manuel
2016-10-24removing debug printlns and modifying other fmt.Println to log.Println for ↵Steve Manuel
consistency
2016-10-18running SortContent from inside DeleteContent in same goroutine so results ↵Steve Manuel
are sync