Overview
| Comment: | Small fixes in dust | 
|---|---|
| Timelines: | family | ancestors | descendants | both | trunk | 
| Files: | files | file ages | folders | 
| SHA3-256: | 
e18e8fa4d53834196e5b8b8f5175d7e4 | 
| User & Date: | joel on 2019-03-09 04:00:30 | 
| Other Links: | manifest | tags | 
Context
| 
   2019-03-09 
 | ||
| 04:02 | Small fixes in crystalize check-in: 0e2c0e7e user: joel tags: trunk | |
| 04:00 | Small fixes in dust check-in: e18e8fa4 user: joel tags: trunk | |
| 03:59 | Allow to take zero SQL parameters check-in: 0d3df679 user: joel tags: trunk | |
Changes
Modified dust.rkt from [c1bae001] to [402b4b9e].
| ︙ | |||
19 20 21 22 23 24 25 26 27 28 29 30 31 32  | 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33  | +  | 
;; Author contact information:
;;   joel@jdueck.net
;;   https://joeldueck.com
;; -------------------------------------------------------------------------
(require pollen/core
         pollen/pagetree
         pollen/setup
         net/uri-codec
         gregor
         txexpr
         racket/list
         racket/string)
;; Provides common helper functions used throughout the project
 | 
| ︙ | |||
63 64 65 66 67 68 69  | 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78  | - +  | 
;; Checks current-metas for a 'series meta and returns the pagenode of that series,
;; or '|| if no series is specified.
(define (series-pagenode)
  (define maybe-series (or (select-from-metas 'series (current-metas)) ""))
  (cond
    [(non-empty-string? maybe-series)
 | 
| ︙ | |||
85 86 87 88 89 90 91  | 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107  | - - + + - + - +  | 
;; ~~~ Project-wide Pagetrees ~~~
(define (include-in-pagetree folder extension)
  (define (matching-file? f)
    (string-suffix? f extension))
  (define (file->output-pagenode f)
    (string->symbol (format "~a/~a" folder (string-replace f extension ".html"))))
 | 
| ︙ |