Changes In Branch doc-expansion Through [c7350de0] Excluding Merge-Ins
This is equivalent to a diff from c06d4f58 to c7350de0
| 2020-01-19 | ||
| 20:54 | Makefile: turn on tidying; ‘all’→‘web’ check-in: c2036411 user: joel tags: trunk | |
| 05:35 | Filling in tour, design check-in: 71aa7cd9 user: joel tags: doc-expansion | |
| 04:36 | Add custom Scribble styles check-in: c7350de0 user: joel tags: doc-expansion | |
| 03:46 | Ignore generated Scribble support files check-in: 2c745dc9 user: joel tags: doc-expansion | |
| 2020-01-15 | ||
| 03:20 | Start rearranging code docs check-in: 15507b62 user: joel tags: doc-expansion | |
| 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 | |
| 2019-08-19 | ||
| 21:36 | Add RSS feed. Closes [5cca77420922765f] check-in: f06db447 user: joel tags: trunk | |
Modified .fossil-settings/ignore-glob from [76dda5be] to [cd6321cb].
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | + + | *compiled/* *.poly.pm *.woff* x-*/* *.*~ web-extra/martin.css scribbled/* code-docs/*.css code-docs/*.js */images/* *.db *.sqlite *.pdf *.ltx *.html *.out *.ltx *.aux *.log *.xml *.toc *.mark | 
Added code-docs/custom.css version [471eaf45].
| 
 | 
Added code-docs/design.scrbl version [3cfd26b5].
| 
 | 
Modified code-docs/main.scrbl from [6cbd40b5] to [40a6e0fc].
| ︙ | |||
| 9 10 11 12 13 14 15 | 9 10 11 12 13 14 15 16 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 | - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - | 
@author{Joel Dueck}
These are my notes about the internals of the Local Yarn source code. In other words, a personal
reference, rather than a tutorial. These pages concern only the source code itself. Refer to the
wiki for info about deployment, etc.
 | 
Modified code-docs/scribble-helpers.rkt from [95058fad] to [d6d57bb0].
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | + + + + + | 
#lang racket/base
; SPDX-License-Identifier: BlueOak-1.0.0
; This file is licensed under the Blue Oak Model License 1.0.0.
;; Convenience/helper functions for this project’s Scribble documentation
(require scribble/core
         scribble/manual/lang
         scribble/html-properties
         scribble/private/manual-sprop
         scribble/decode
         racket/runtime-path
         (only-in net/uri-codec uri-encode))
(provide (all-defined-out))
(define-runtime-path custom-css "custom.css")
(define repo-url/ "https://thelocalyarn.com/cgi-bin/yarncode/")
;; Link to a ticket on the Fossil repository by specifying the ticket ID.
;; The "_parent" target breaks out of the iframe used by the Fossil repo web UI.
(define (ticket id-str)
  (hyperlink (string-append repo-url/ "tktview?name=" id-str)
 | 
| ︙ | |||
| 41 42 43 44 45 46 47 | 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 | + + + + + + + + + + + + + + + + + + + + + + + + + + + | 
             #:style (style #f (list (attributes '((target . "_parent")))))))
(define (responsive-retina-image img-path)
  (image img-path 
         #:scale 0.5
         #:style (style #f (list (attributes '((style . "max-width:100%;height:auto;")))))))
;;
;; From https://github.com/mbutterick/pollen/blob/master/pollen/scribblings/mb-tools.rkt
;;
(define (terminal . args)
  (compound-paragraph (style "terminal" (list (css-style-addition custom-css) (alt-tag "div")))
                      (list (apply verbatim args))))
(define (cmd . args)
  (elem #:style (style #f (list (color-property "black"))) (tt args)))
(define (fileblock filename . inside)
  (compound-paragraph 
   (style "fileblock" (list* (alt-tag "div") 'multicommand
                             (box-mode "RfileboxBoxT" "RfileboxBoxC" "RfileboxBoxB") 
                             scheme-properties))
   (list
    (paragraph (style "fileblock_filetitle" (list* (alt-tag "div") (box-mode* "RfiletitleBox") scheme-properties))
               (list (make-element
                      (style "fileblock_filename" (list (css-style-addition custom-css)))
                      (if (string? filename)
                          (filepath filename)
                          filename))))
    (compound-paragraph 
     (style "fileblock_filecontent" (list* (alt-tag "div") (box-mode* "RfilecontentBox") scheme-properties))
     (decode-flow inside)))))
 | 
Added code-docs/tour.scrbl version [957f21f4].
| 
 |