summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
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-14fix pagination on pending items.Steve Manuel
2016-12-14adding cache invalidation to system start/initSteve Manuel
2016-12-14Merge pull request #23 from bosssauce/ponzu-devSteve
[tooling] Better usage and help via CLI
2016-12-14updating usage and adding specific help command to selectively show usage ↵Steve Manuel
for a single command
2016-12-14Merge pull request #22 from bosssauce/ponzu-devSteve
[core] Add a index for content slugs allowing quicker lookup via slug
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-13Merge pull request #21 from bosssauce/ponzu-devSteve
[core] API request metrics are now stored per day
2016-12-13deleting old records after storing in metrics as a cacheSteve Manuel
2016-12-13adding fix for metrics storage and cachingSteve Manuel
2016-12-13testing memory cache of current metrics rather than lookup in dbSteve Manuel
2016-12-13flipping comparison to match previous op changeSteve Manuel
2016-12-13changing or -> and op in checkSteve Manuel
2016-12-13removing debug prints and adding a check for data cached or needs analysisSteve Manuel
2016-12-12adding debug printsSteve Manuel
2016-12-12pulling data range literals out to const, adding check if metric count is 0 ↵Steve Manuel
before writing to cache
2016-12-12using dates as range for metrics putSteve Manuel
2016-12-12inserting metrics data into cacheSteve Manuel
2016-12-12checking for metric data in db firstSteve Manuel
2016-12-12adding initial caching of daily metrics from api requestsSteve Manuel
2016-12-12Merge pull request #20 from bosssauce/ponzu-devSteve
[core] cache-control & db specifier namespace clean-up
2016-12-11fix leftover db specifier name changesSteve Manuel
2016-12-11updating cache control header to be more lenientSteve Manuel
2016-12-11removing print debug for cache checkSteve Manuel
2016-12-11returning api server middleware to original state and adding req header ↵Steve Manuel
lookup for cache implementation
2016-12-07testing cache control exec from CORSSteve Manuel
2016-12-07adding debug prints -- cache control not effecting json responsesSteve Manuel
2016-12-06re-order middleware so Record is called even if cache is activeSteve Manuel
2016-12-06initialize url.Values (map) prior to Add/SetSteve Manuel
2016-12-06checking if first pass through kv of config to call Set before AddSteve Manuel
2016-12-06tracking new fileSteve Manuel
2016-12-06adding cache (client-based, Etag) to API responses in addition to static ↵Steve Manuel
files uploaded
2016-12-06Merge pull request #19 from bosssauce/ponzu-devSteve
[core] Added account recovery process and content pagination in admin UI
2016-12-06missed a renameSteve Manuel
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-06fixing code change from previous featureSteve Manuel
2016-12-06adding content search for both public and pending specifiersSteve 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-06cleanup template, move ContentName into base Item as String on Identifiable ↵Steve Manuel
interface, also makes Item implement Stringer, useful in fmt funcs
2016-12-06adding test for sorting persisted in paginationSteve Manuel
2016-12-06adding disabled zero-content pagination and minor fixesSteve Manuel
2016-12-06fixing Tags input element issuesSteve Manuel
2016-12-06testing fixSteve Manuel
2016-12-06testing fix for only one tag stored, not being displayed as it is ignored ↵Steve Manuel
via string search for __ponzu separator
2016-12-06adding print debug to testSteve Manuel