Differences From Artifact [2c1663032f]:
- File attic/datashare.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: 33556) [annotate] [blame] [check-ins using]
- File datashare-src/datashare.scm — part of check-in [155720494a] at 2021-01-16 23:19:38 on branch v1.6569-diet — Moved sauth and datashare files to appropriate subdirs, commented couple more unused functions. (user: matt, size: 33556) [annotate] [blame] [check-ins using]
- File datashare.scm — part of check-in [d668d912e4] at 2018-02-21 13:47:56 on branch v1.65 — More license clean up (missed a whole bunch) (user: mrwellan, size: 33556) [annotate] [blame] [check-ins using]
- File datashare/datashare.scm — part of check-in [a7636bcfcc] at 2019-12-06 04:50:12 on branch v1.65-try3 — Clean up (user: matt, size: 33556) [annotate] [blame] [check-ins using]
To Artifact [f48b85f5bd]:
- File datashare.scm — part of check-in [6929385e83] at 2018-05-09 00:14:58 on branch v1.65-margs — Switch to margs module/egg (user: matt, size: 33586) [annotate] [blame] [check-ins using]
︙ | |||
23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 | 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 | + - + | (use srfi-69) (use regex-case) (use posix) (use json) (use csv) (use srfi-18) (use format) (use (prefix margs args:)) (require-library iup) (import (prefix iup iup:)) (require-library ini-file) (import (prefix ini-file ini:)) (use canvas-draw) (import canvas-draw-iup) (use sqlite3 srfi-1 posix regex regex-case srfi-69) (import (prefix sqlite3 sqlite3:)) (declare (uses configf)) (declare (uses tree)) |
︙ |