Skip to content

Commit 63451b8

Browse files
committed
add RacketCon UMB navigation PDF
1 parent fb8f4e7 commit 63451b8

File tree

3 files changed

+8
-4
lines changed

3 files changed

+8
-4
lines changed

annual-utils.rkt

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -39,9 +39,12 @@
3939
(define (copy-annual-site! site starting-dir year
4040
#:current [current? #f]
4141
#:copy-current-index? [copy-current-index? #t])
42-
(for* ([p (in-directory starting-dir)]
42+
(define subdirs '("fonts" "slides"))
43+
(for* ([p (in-directory starting-dir (lambda (dir)
44+
(not (for/or ([subdir (in-list subdirs)])
45+
(equal? (build-path starting-dir subdir) dir)))))]
4346
[fn (in-value (filename p))]
44-
[ext (in-list '(#".html" #".css" #".svg" #".png" #".jpg"))]
47+
[ext (in-list '(#".html" #".css" #".svg" #".png" #".jpg" #".pdf"))]
4548
#:unless (or (not (path-has-extension? fn ext))
4649
(excluded-path? fn)
4750
(and current?
@@ -68,5 +71,4 @@
6871
(if current? null (list year))
6972
(list subdir-name (filename p)))) "/")))))
7073

71-
(copy-subdir-if-extant "fonts")
72-
(copy-subdir-if-extant "slides"))
74+
(for-each copy-subdir-if-extant subdirs))

rcon/2025/index.rkt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -803,6 +803,8 @@ Gathering with drinks and snacks.
803803

804804
(column
805805

806+
@vpara{@a[#:href "umb-navigation.pdf"]{Navigation Summary (PDF)}}
807+
806808
@fromplace{From DoubleTree Boston Bayside}
807809

808810
@vpara{Walk (15-20 minutes):}

rcon/2025/umb-navigation.pdf

191 KB
Binary file not shown.

0 commit comments

Comments
 (0)