Overview
Comment: | wip |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | v1.6584-nanomsg |
Files: | files | file ages | folders |
SHA1: |
099e36e67a7109df9cd2e9d9f7c00161 |
User & Date: | matt on 2021-11-26 19:30:27 |
Other Links: | branch diff | manifest | tags |
Context
2021-11-27
| ||
19:55 | wip, but getting some serious traction check-in: 93f367cac6 user: matt tags: v1.6584-nanomsg | |
2021-11-26
| ||
19:30 | wip check-in: 099e36e67a user: matt tags: v1.6584-nanomsg | |
2021-11-25
| ||
20:41 | Various fixes in config handling check-in: 2749ac0d13 user: matt tags: v1.6584-nanomsg | |
Changes
Modified commonmod.scm from [f0766e728c] to [666c77f40f].
︙ | |||
3921 3922 3923 3924 3925 3926 3927 | 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 | - + | ;; first read ~/views.config if it exists, then read $MTRAH/views.config if it exists ;; (define (common:load-views-config) (let* ((view-cfgdat (make-hash-table)) (home-cfgfile (conc (get-environment-variable "HOME") "/.mtviews.config")) (mthome-cfgfile (conc *toppath* "/.mtviews.config"))) (if (common:file-exists? mthome-cfgfile) |
︙ |
Modified configfmod.scm from [fa96749dc9] to [95ee14228c].
︙ | |||
319 320 321 322 323 324 325 | 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 | - + | (rxstr (if (string-contains section-name "%") (string-substitute (regexp "%") ".*" section-name) (string-substitute (regexp "^/(.*)/$") "\\1" section-name))) (rx (regexp rxstr))) ;; (print "\nsection-name: " section-name " rxstr: " rxstr) (for-each (lambda (section) |
︙ | |||
350 351 352 353 354 355 356 | 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 | - - - + + + + + + - + + + + + + + | ;; 'return-string -- return a string representing a proc taking ht as an argument that may be evaulated at some future time ;; envion-patt is a regex spec that identifies sections that will be eval'd ;; in the environment on the fly ;; sections: #f => get all, else list of sections to gather ;; post-section-procs alist of section-pattern => proc, where: (proc section-name next-section-name ht curr-path) ;; apply-wildcards: #t/#f - apply vars from targets with % wildcards to all matching sections ;; |
︙ | |||
971 972 973 974 975 976 977 | 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 | + + - - - - - - - - + + + + + + + + - + - - + + + + - + | ;; convert hierarchial list to ini format ;; (define (configf:config->ini data) (map (lambda (section) (let ((section-name (car section)) (section-dat (cdr section))) (if (string? section-name) (begin |
︙ |
Modified megatest.scm from [bf964b0d3e] to [62c0ff51dd].
︙ | |||
62 63 64 65 66 67 68 69 70 71 72 73 74 75 | 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 | + | (module megatest-main * (import scheme chicken.base chicken.bitwise chicken.condition ;; chicken.csi chicken.eval chicken.file chicken.file.posix chicken.format chicken.io chicken.irregex chicken.pathname |
︙ | |||
2454 2455 2456 2457 2458 2459 2460 | 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 | - + - + - - | ;; EOF (repl)) (else (begin ;; (set! *db* dbstruct) ;; (import extras) ;; might not be needed |
︙ |