Overview
Comment: | info from -show commands should go to stdout. Misc progress on newdashboard |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | v1.70-ndboard |
Files: | files | file ages | folders |
SHA1: |
e4d1922be49e6dce866c301c6cec225d |
User & Date: | matt on 2022-10-30 22:59:14 |
Other Links: | branch diff | manifest | tags |
Context
2022-10-31
| ||
09:47 | If .megatest does not exist but megatest.db does, try using it. NOTE: can't work with current calls creating .megatest area. Abandon this but keep the code for now. check-in: 533667efde user: matt tags: v1.70-ndboard | |
2022-10-30
| ||
22:59 | info from -show commands should go to stdout. Misc progress on newdashboard check-in: e4d1922be4 user: matt tags: v1.70-ndboard | |
21:56 | Clean up output of -show-keys. Use struct for keeping all the misc data associated with an area check-in: b0b795e94c user: matt tags: v1.70-ndboard | |
Changes
Modified megatest.scm from [806d7f7e0d] to [1caaf81211].
︙ | |||
2277 2278 2279 2280 2281 2282 2283 | 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 | - + | (let ((db #f) (keys #f)) (if (not (launch:setup)) (begin (debug:print 0 *default-log-port* "Failed to setup, exiting") (exit 1))) (set! keys (rmt:get-keys)) ;; db)) |
︙ |
Modified newdashboard.scm from [f00b30fbcd] to [67df0a6428].
︙ | |||
24 25 26 27 28 29 30 | 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 53 54 55 56 57 58 | - + + + - + | (declare (uses treemod)) (use srfi-1 posix regex regex-case srfi-69 typed-records sparse-vectors format extras (prefix iup iup:) |
︙ | |||
119 120 121 122 123 124 125 | 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 | - + - + + + + + + + | (define *areas* (make-hash-table)) (defstruct area path keys targets targets-update-time |
︙ | |||
171 172 173 174 175 176 177 | 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 | - - - - + + + + - - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + | (define (megatest-get-keys area-name) (let* ((ainfo (get-area-info area-name)) (keys (area-keys ainfo))) (if keys keys (let* ((path (area-path ainfo)) |
︙ | |||
228 229 230 231 232 233 234 | 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 | - + + - + + + + + + | #:size "10x" #:selection-cb (lambda (obj id state) (let* ((path (tree:node->path obj id))) (match path ((treename) #f) ;;(print "nothing to do here")) ((treename area) |
︙ |