Overview
Comment: | added filter to runs page |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | v1.64 |
Files: | files | file ages | folders |
SHA1: |
f7eea52531b1753b7e824e297fc86395 |
User & Date: | pjhatwal on 2017-03-08 18:52:08 |
Other Links: | branch diff | manifest | tags |
Context
2017-03-15
| ||
21:14 | bug squashing frenzy using overriding of handle-exceptions to expose problems. partial progress snapshot check-in: 8e70f505b7 user: matt tags: v1.64-bug-sqlish | |
17:32 | added flag to allow adding prefix to target check-in: 1fee8d8e98 user: srehman tags: v1.64 | |
2017-03-08
| ||
18:52 | added filter to runs page check-in: f7eea52531 user: pjhatwal tags: v1.64 | |
10:47 | Typos check-in: 6f6ebb3edd user: matt tags: v1.64 | |
Changes
Modified cgisetup/models/pgdb.scm from [ea892855e8] to [c3a02037dc].
︙ | |||
198 199 200 201 202 203 204 | 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 | - + - + | "SELECT DISTINCT target FROM runs WHERE target LIKE ? AND ttype_id=?;" target-patt tt-id)) )) ttypes))) (define (pgdb:get-targets-of-type dbh ttype-id target-patt) (dbi:get-rows dbh "SELECT DISTINCT target FROM runs WHERE target LIKE ? AND ttype_id=?;" target-patt ttype-id)) |
︙ |
Modified cgisetup/pages/home_view.scm from [79736d1aeb] to [0d15bde503].
︙ | |||
114 115 116 117 118 119 120 | 114 115 116 117 118 119 120 121 122 123 124 125 126 | - - + + | (failper (- 100 passper)) (run-key ;; (string-substitute ;; %2F = / ;; "-" "%2D" ;;(string-substitute "/" "%2F" (conc col-key "/" row-key) 'all) (string-substitute "[/]" "_x_" (conc col-key "/" row-key) 'all) ;; 'all))) )) |
Modified cgisetup/pages/run_ctrl.scm from [4336cde456] to [b5550ef418].
︙ | |||
9 10 11 12 13 14 15 | 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | - - + + + + + | ;; PURPOSE. ;;====================================================================== ;; a function <pagename>-action is called on POST (define (run-action action) (case (string->symbol action) |
Modified cgisetup/pages/run_view.scm from [c77bd39564] to [8edac034a0].
1 2 3 4 5 6 7 8 9 10 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 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 59 60 61 | - + + + + + + - - + + + + + + + + + + + + + + + + + + + + - + - + | ;;====================================================================== ;; Copyright 2017, Matthew Welland. ;; ;; This program is made available under the GNU GPL version 2.0 or ;; greater. See the accompanying file COPYING for details. ;; ;; This program is distributed WITHOUT ANY WARRANTY; without even the ;; implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR ;; PURPOSE. ;;====================================================================== |
︙ |