Comment: | Removed few more non-module compilation unit files |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | v1.90 |
Files: | files | file ages | folders |
SHA1: |
6ccaee78f16d88f1db9aeca90e5640c3 |
User & Date: | matt on 2024-02-15 19:32:27 |
Other Links: | branch diff | manifest | tags |
2024-02-15
| ||
20:43 | Disable mutex in dbmod:with-db as it was blocking forever check-in: 049806b5f6 user: matt tags: v1.90 | |
19:32 | Removed few more non-module compilation unit files check-in: 6ccaee78f1 user: matt tags: v1.90 | |
19:14 | Removed junk from Makefile check-in: db2bd38f1e user: matt tags: v1.90 | |
Modified Makefile from [ceee171066] to [8fed792a75].
24 25 26 27 28 29 30 | fossil timeline -n 350 -t ci -F "%h,%a,%b,%t,\"%c\"" > recent-commits.csv SHELL=/bin/bash PREFIX=$(PWD) CSCOPTS= INSTALL=install | < | < | | 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 | fossil timeline -n 350 -t ci -F "%h,%a,%b,%t,\"%c\"" > recent-commits.csv SHELL=/bin/bash PREFIX=$(PWD) CSCOPTS= INSTALL=install SRCFILES = server.scm \ env.scm pgdb.scm : cgisetup/models/pgdb.scm # module source files MSRCFILES = dbfile.scm debugprint.scm mtargs.scm commonmod.scm dbmod.scm \ tcp-transportmod.scm rmtmod.scm portlogger.scm apimod.scm \ configfmod.scm processmod.scm servermod.scm megatestmod.scm \ |
89 90 91 92 93 94 95 | ifeq ($(MTESTHASH),) $(error MTESTHASH is broken!) endif ARCHSTR=$(shell if [[ -e /usr/bin/sw_vers ]]; then /usr/bin/sw_vers -productVersion; else lsb_release -sr; fi) PNGFILES = $(shell cd docs/manual;ls *png) | < | 87 88 89 90 91 92 93 94 95 96 97 98 99 100 | ifeq ($(MTESTHASH),) $(error MTESTHASH is broken!) endif ARCHSTR=$(shell if [[ -e /usr/bin/sw_vers ]]; then /usr/bin/sw_vers -productVersion; else lsb_release -sr; fi) PNGFILES = $(shell cd docs/manual;ls *png) mtest: $(OFILES) readline-fix.scm $(MOFILES) $(MOIMPFILES) megatest.o megatest-version.scm csc $(CSCOPTS) $(OFILES) $(MOFILES) $(MOIMPFILES) megatest.o -o mtest showmtesthash: @echo $(MTESTHASH) |
Deleted archive.scm version [e534969391].
|
| < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < |
Modified configf-guts.scm from [b19d28d0fb] to [bdcf52448f].
18 19 20 21 22 23 24 | ;;====================================================================== ;;====================================================================== ;; Config file handling ;;====================================================================== | < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < | 18 19 20 21 22 23 24 25 26 27 28 29 30 31 | ;;====================================================================== ;;====================================================================== ;; Config file handling ;;====================================================================== (define configf:imports "(import commonmod configfmod processmod (prefix mtargs args:))") (define (configf:process-line l ht allow-system #!key (linenum #f)) (let loop ((res l)) (if (string? res) (let ((matchdat (string-search configf:var-expand-regex res))) |
Modified dashboard-guimonitor.scm from [d5889ea640] to [0bd9fdefce].
28 29 30 31 32 33 34 | (use canvas-draw) (use sqlite3 srfi-1 posix regex regex-case srfi-69) (import (prefix sqlite3 sqlite3:)) (declare (unit dashboard-guimonitor)) | < < | 28 29 30 31 32 33 34 35 36 37 38 39 40 41 | (use canvas-draw) (use sqlite3 srfi-1 posix regex regex-case srfi-69) (import (prefix sqlite3 sqlite3:)) (declare (unit dashboard-guimonitor)) (declare (uses commonmod)) (import commonmod) (include "run_records.scm") (define (control-panel db tdb keys) (let* ((var-params (make-hash-table)) ;; register all the widgets here for querying on run, rollup, remove? |
Modified dashboard.scm from [2c10ce13af] to [55881f68d1].
63 64 65 66 67 68 69 | (declare (uses archivemod)) (declare (uses archivemod.import)) (declare (uses runsmod)) (declare (uses runsmod.import)) (declare (uses launchmod)) (declare (uses launchmod.import)) | < < | 63 64 65 66 67 68 69 70 71 72 73 74 75 76 | (declare (uses archivemod)) (declare (uses archivemod.import)) (declare (uses runsmod)) (declare (uses runsmod.import)) (declare (uses launchmod)) (declare (uses launchmod.import)) (declare (uses dcommon)) (declare (uses vgmod)) (use format) (require-library iup) (import (prefix iup iup:)) |
Deleted ezsteps.scm version [8e5e826481].
|
| < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < |
Deleted keys.scm version [727b92d3a4].
|
| < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < |
Deleted monitor.scm version [5284c87b1f].
|
| < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < |
Deleted runconfig.scm version [5190dce4cd].
|
| < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < |
Modified tdb.scm from [3e43699d7a] to [fb7df3269f].
20 21 22 23 24 25 26 | ;;====================================================================== ;; Database access ;;====================================================================== (declare (unit tdb)) (declare (uses debugprint)) | < | 20 21 22 23 24 25 26 27 28 29 30 31 32 33 | ;;====================================================================== ;; Database access ;;====================================================================== (declare (unit tdb)) (declare (uses debugprint)) (declare (uses commonmod)) (declare (uses mtargs)) (declare (uses rmtmod)) (module tdb * |