Overview
Comment: | Fix cache db filename, index page |
---|---|
Timelines: | family | ancestors | descendants | both | deta-refactor |
Files: | files | file ages | folders |
SHA3-256: |
e90a714ad3b5b0151dd31fd0d93eb604 |
User & Date: | joel on 2020-01-13 01:04:21 |
Other Links: | branch diff | manifest | tags |
Context
2020-01-13
| ||
19:38 | Merge deta refactor branch check-in: c06d4f58 user: joel tags: trunk | |
01:04 | Fix cache db filename, index page Leaf check-in: e90a714a user: joel tags: deta-refactor | |
00:52 | Fix series caching check-in: 624e5e2b user: joel tags: deta-refactor | |
Changes
Modified crystalize.rkt from [950c4fe1] to [cb633ea2].
︙ | ︙ | |||
29 30 31 32 33 34 35 | <listing-full> <listing-excerpt> <listing-short> unfence) ;; Cache DB and Schemas | | | 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 | <listing-full> <listing-excerpt> <listing-short> unfence) ;; Cache DB and Schemas (define DBFILE (build-path (current-project-root) "vitreous.sqlite")) (define cache-conn (sqlite3-connect #:database DBFILE #:mode 'create)) (define current-plain-title (make-parameter "void")) (define-schema cache:article #:table "articles" ([id id/f #:primary-key #:auto-increment] [page symbol/f] |
︙ | ︙ |
Modified index.html.pp from [23cc64ef] to [6ce20187].
︙ | ︙ | |||
84 85 86 87 88 89 90 | your own or someone else’s. ◊em{I’ve seen this before} says the voice on the other end. ¶ Everything (almost) is ◊link[1]{arranged in time order, newest first}. There are also a few arranged into named collections: ◊url[1]{/blog-pg1.html} }) | | | 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 | your own or someone else’s. ◊em{I’ve seen this before} says the voice on the other end. ¶ Everything (almost) is ◊link[1]{arranged in time order, newest first}. There are also a few arranged into named collections: ◊url[1]{/blog-pg1.html} }) ◊; stop for now: (crystalize-index-entries! '|index.html| front-page-body) <main> ◊(->html front-page-body #:splice? #t) ◊(->html (series-grouped-list)) </main> </body> </html> |