Differences From Artifact [2f0f47315f]:
- File setup.scm — part of check-in [53f9eeed61] at 2013-10-26 04:26:11 on branch selfcontained — Added some sugar; a default to s:shared-get and s:label (user: matt, size: 3331) [annotate] [blame] [check-ins using]
To Artifact [e52dd0f926]:
- File setup.scm — part of check-in [a7378b56d4] at 2014-04-17 06:26:40 on branch selfcontained — Added method to get all input keys. Made get from forms be liberal and take either string or symbol (user: matt, size: 3397) [annotate] [blame] [check-ins using] [more...]
︙ | |||
87 88 89 90 91 92 93 94 95 96 97 98 99 100 | 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 | + + + | (sdat-get-sessionvars s:session)) ;; inputs ;; (define (s:get-input key) (session:get-input s:session key)) (define (s:get-input-keys) (session:get-input-keys s:session)) (define (s:load-model model) (session:load-model s:session model)) (define (s:model-path model) (session:model-path s:session model)) ;; share data between pages calls. NOTE: This is not persistent |
︙ |