Differences From Artifact [9494e07667]:
- File misc-stml.scm — part of check-in [1936d7e2b4] at 2014-09-03 05:46:33 on branch selfcontained — Converted to using openssl for crypt. Added type checks to password compare to fix empty password compare failing (user: matt, size: 10128) [annotate] [blame] [check-ins using] [more...]
To Artifact [1a4eccad68]:
- File misc-stml.scm — part of check-in [e78a65d865] at 2016-09-19 05:55:31 on branch trunk — Add filtering to s:get-input. Switch to dbi. (user: matt, size: 10165) [annotate] [blame] [check-ins using]
︙ | |||
9 10 11 12 13 14 15 16 17 18 19 20 21 22 | 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | + + | ;;====================================================================== ;; dumbobj helpers ;;====================================================================== (declare (unit misc-stml)) (use regex) (use dbi) (import (prefix dbi dbi:)) ;; given a list of symbols give the count of the matching symbol ;; l => '(a b c) (dumobj:indx a 'b) => 1 (define (s:get-fieldnum lst field-name) (let loop ((head (car lst)) (tail (cdr lst)) (fnum 0)) |
︙ |