Artifact 54080668d3070be2cf3f49dc8555f3b15617c6c4:
- File bindings/s2/require.d/fsl/db/config.s2 — part of check-in [fdc5e1014e] at 2021-02-11 12:42:23 on branch trunk — Moved C++ and s2 bindings to bindings/{cpp,s2}. Got the C++ bindings compiling for new gcc breakage and new, stricter T-card validation. (user: stephan size: 398)
- File s2/require.d/fsl/db/config.s2 — part of check-in [b1c814aa9a] at 2014-11-08 10:15:27 on branch trunk — cleanups in the Fossil require.s2 modules in prep for upcoming test code. (user: stephan size: 398)
/* require() plugin which returns a handle to the repo Db object for Fossil.require's shared Fossil.Context. If no repo has been opened when this is called, it opens the repo specified via the --repo-db|-R=FILENAME CLI script flag. */ return requireS2(['fsl/context'], proc(F,args){ affirm const d = F.db; d.config || F.openConfig(); affirm d.config; return d.config; });