Overview
Comment: | Add support for Notes, closing [ce23bb4086]. The old dates.rkt is now dust.rkt: helper functions for use everywhere. Functions returning HTML strings have html$ prefix. |
---|---|
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
de9f12152b1c9cec85bb7b3a2e679d31 |
User & Date: | joel on 2018-09-19 19:04:38 |
Other Links: | manifest | tags |
Context
2018-09-19
| ||
19:13 | Remove debugging call check-in: 06f21d86 user: joel tags: trunk | |
19:04 | Add support for Notes, closing [ce23bb4086]. The old dates.rkt is now dust.rkt: helper functions for use everywhere. Functions returning HTML strings have html$ prefix. check-in: de9f1215 user: joel tags: trunk | |
2018-09-02
| ||
21:04 | Add Flammarion engraving to home.wiki check-in: 4ec64ff2 user: joel tags: trunk | |
Changes
Modified crystalize.rkt from [c9502c11] to [29b5c625].
︙ | |||
32 33 34 35 36 37 38 39 40 | 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 | + - + + + + + + - + + - - + + + + + + + - - + + + + + + + - + - + - - - + + + - - - - - - - + + + + + + + + + + - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - + + + + + + + + + + + + + + + | ;; will be coming from me. (require pollen/setup pollen/core pollen/template pollen/pagetree racket/string txexpr "sqlite-tools.rkt" "template-html.rkt" |
Modified dust.rkt from [46a355ed] to [a49e4077].
︙ | |||
17 18 19 20 21 22 23 | 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 | + + + + + + + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + + - + - | ;; limitations under the License. ;; ;; Author contact information: ;; joel@jdueck.net ;; https://joeldueck.com ;; ------------------------------------------------------------------------- (require pollen/core pollen/pagetree net/uri-codec gregor txexpr racket/list racket/string) |
Modified pollen.rkt from [8a4112bd] to [3ae0eb3e].
︙ | |||
41 42 43 44 45 46 47 | 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 | - + | (module setup racket/base (require syntax/modresolve) (provide (all-defined-out)) (define poly-targets '(html)) (define cache-watchlist (map resolve-module-path '("tags-html.rkt" "template-html.rkt" |
︙ |
Modified tags-html.rkt from [ebae6f02] to [f673367b].
︙ | |||
24 25 26 27 28 29 30 | 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 | - + + | ;; Tag functions used by pollen.rkt when HTML is the output format. (require (for-syntax racket/base racket/syntax)) (require racket/list racket/function pollen/decode pollen/tag |
︙ |
Modified template-html.rkt from [c19af359] to [7a13118b].
︙ | |||
19 20 21 22 23 24 25 | 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 | + + + + - + - + + + + + + + + + + - - - - - - - + + + + + + + + - - - - - - + + + + + + - + - - - - - - - - - - - - - - - + + + + + + + + + + + + + + - + - - - + + + - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + | ;; Author contact information: ;; joel@jdueck.net ;; https://joeldueck.com ;; ------------------------------------------------------------------------- ;; Provides functions for displaying content in HTML templates. (require pollen/core pollen/template racket/string txexpr openssl/sha1 |
Modified template.html.p from [e6133aaa] to [b0e9b3b5].
1 2 | 1 2 3 4 5 6 7 8 9 10 11 12 13 | - + - + - + | <!DOCTYPE html> <html> |
Modified web-extra/martin.css.pp from [0f5d5375] to [2a8d5a40].
︙ | |||
445 446 447 448 449 450 451 452 453 454 455 456 457 458 | 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 | + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + | width: 75%; text-align: left; } section.footnotes ol { margin: ◊x-lineheight[0.5] 0 0 0; } /* ******* “Further Notes” added to articles ******** */ div.further-notes { margin-top: ◊x-lineheight[3]; } div.further-notes>h2 { font-style: normal; font-feature-settings: "smcp" on; border-top: solid 2px ◊color-bodytext; text-transform: lowercase; } div.note h3 { margin-top: 0; font-size: 1rem; font-weight: normal; font-style: italic; } div.note-meta { margin-top: ◊x-lineheight[1]; font-feature-settings: "smcp" on; color: #888; } span.disposition-mark { color: ◊color-xrefmark; display: inline-block; width: 1em; } /* ******* (Mobile first) Journal View styling ******* */ section.article-listing h2 { font-weight: normal; font-style: italic; font-size: ◊x-lineheight[1]; |
︙ | |||
630 631 632 633 634 635 636 637 638 639 640 641 642 643 | 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 | + + + + + + + + + + + + + + + | grid-area: main; } section.entry-content figure figcaption { grid-area: margin; text-align: right; align-self: end; } /* ******* (Grid support) “Further Notes” added to articles ******* */ div.further-notes>h2 { width: calc(100% + 8rem); margin-left: -8rem; } div.note h3 { float: left; margin-left: -8rem; width: 7rem; text-align: right; } /* ******* (Grid support) Journal View styling ******* */ section.article-listing { display: grid; grid-template-columns: 8rem 7fr 1fr; |
︙ |