Differences From Artifact [dc4c7b41e8]:
- File attic/client.scm — part of check-in [101ee7c52b] at 2021-03-06 04:39:46 on branch v1.65-real-chicken-5 — Try a grounds-up switch to chicken-5 (user: matt, size: 6271) [annotate] [blame] [check-ins using]
- File client.scm — part of check-in [f74b755ed8] at 2021-01-14 14:55:42 on branch v1.6569-refactor-server-key-chk — check server-key on every request server gets (user: pjhatwal, size: 6271) [annotate] [blame] [check-ins using]
To Artifact [cecbbc9d00]:
- File client.scm — part of check-in [77627223bc] at 2021-02-02 23:34:16 on branch v1.6569-multi-db — Added commonmod to all units (user: matt, size: 6318) [annotate] [blame] [check-ins using]
︙ | |||
25 26 27 28 29 30 31 32 33 34 35 36 37 38 | 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 | + + + | spiffy-request-vars uri-common intarweb directory-utils) (declare (unit client)) (declare (uses common)) (declare (uses db)) (declare (uses tasks)) ;; tasks are where stuff is maintained about what is running. (declare (uses commonmod)) (import commonmod) (include "common_records.scm") (include "db_records.scm") ;; client:get-signature (define (client:get-signature) (if *my-client-signature* *my-client-signature* |
︙ |