Overview
Comment: | Added simplistic control over button size and font size in runs view |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | v1.61 |
Files: | files | file ages | folders |
SHA1: |
5dc410e7d5f26a05b3d9a645ef71a9a5 |
User & Date: | matt on 2016-08-14 16:17:56 |
Other Links: | branch diff | manifest | tags |
Context
2016-08-14
| ||
20:20 | Added tree to runs view. Tweaked some widget sizes check-in: 0de43680a2 user: matt tags: v1.61 | |
16:17 | Added simplistic control over button size and font size in runs view check-in: 5dc410e7d5 user: matt tags: v1.61 | |
15:13 | More runs.scm refactoring check-in: bb06286ccb user: matt tags: v1.61 | |
Changes
Modified dashboard.scm from [3d80491849] to [865b5d7ea8].
︙ | |||
52 53 54 55 56 57 58 | 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 | - + + + | Usage: dashboard [options] -h : this help -test run-id,test-id : control test identified by testid -skip-version-check : skip the version check Misc |
︙ | |||
164 165 166 167 168 169 170 | 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 | - + + + | ;; runs ((allruns '()) : list) ;; list of dboard:rundat records ((allruns-by-id (make-hash-table)) : hash-table) ;; hash of run-id -> dboard:rundat records ((done-runs '()) : list) ;; list of runs already drawn ((not-done-runs '()) : list) ;; list of runs not yet drawn (header #f) ;; header for decoding the run records (keys #f) ;; keys for this run (i.e. target components) |
︙ | |||
1951 1952 1953 1954 1955 1956 1957 | 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 | - + - + | (apply iup:vbox (reverse res))))))) (else (let ((labl (iup:button "" #:flat "YES" #:alignment "ALEFT" ; #:image img1 ; #:impress img2 |
︙ | |||
1989 1990 1991 1992 1993 1994 1995 | 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 | - + - + | (vector-set! runsvec runnum testvec) (set! bdylst (cons (apply iup:vbox (reverse res)) bdylst)) (loop (+ runnum 1) 0 (make-vector ntests) '())) (else (let* ((button-key (mkstr runnum testnum)) (butn (iup:button "" ;; button-key |
︙ |