@@ -42,16 +42,10 @@ in the project root folder) by running queries to create tables in the database if they do not exist. } -@defproc[(preheat-series!) void?]{ - -Save info about each series in @racket[series-folder] to the cache. - -} - @section{Retrieving cached data} Some of this looks a little wacky, but it’s a case of putting a little extra complextity into the back end to make things simple on the front end. These functions are most commonly used inside the @emph{body} of a Pollen document (i.e., series pages). @@ -144,17 +138,10 @@ Use this in templates with strings returned from @racket[->html] when called on docs that use the @racket[fenced-listing] tag function. } -@defproc[(series-grouped-list) (listof (listof cache:series?))]{ - -Return a list of lists of all @racket[cache:series] in the cache database. The series are grouped so -that series using the same value in the @tt{noun_plural} column appear together. - -} - @section{Deleting records} @deftogether[(@defproc[(delete-article! [page stringish?]) void?] @defproc[(delete-notes! [page stringish?]) void?])]{ @@ -218,22 +205,10 @@ [listing-short-html string/f]) #:constructor-name make-cache:note]{ Table holding cached information on notes. -} - -@defstruct*[cache:series ([id id/f] - [page symbol/f] - [title string/f] - [published string/f] - [noun-plural string/f] - [noun-singular string/f]) - #:constructor-name make-cache:series]{ - -Table holding cached information on series. - } @defstruct*[cache:index-entry ([id id/f] [entry string/f] [subentry string/f]