Overview
Comment: | wip |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | v1.70-refactor02 | v1.70-defunct-try |
Files: | files | file ages | folders |
SHA1: |
b7dc85fea26b752641edaf9afbe108d5 |
User & Date: | mrwellan on 2019-12-31 10:57:59 |
Other Links: | branch diff | manifest | tags |
Context
2019-12-31
| ||
11:13 | wip check-in: 54c85dfff6 user: mrwellan tags: v1.70-refactor02, v1.70-defunct-try | |
10:57 | wip check-in: b7dc85fea2 user: mrwellan tags: v1.70-refactor02, v1.70-defunct-try | |
10:00 | wip check-in: 615f8750c8 user: mrwellan tags: v1.70-refactor02, v1.70-defunct-try | |
Changes
Modified docs/code/module-hierarchy.dot from [fbbdb982aa] to [93f30ed067].
︙ | |||
70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 | 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 | + + + + + | taskmod -> mtmod; mtargs -> mtmod; // launchmod -> mtmod; // runsmod mtmod -> runsmod; commonmod -> runsmod; testsmod -> runsmod; rmtmod -> runsmod; subrunmod -> runsmod; // pgdbmod commonmod -> pgdbmod; mtconfigf -> pgdbmod; //servermod commonmod -> servermod; dbmod -> servermod; mtconfigf -> servermod; mtargs -> servermod; tasksmod -> servermod; // subrunsmod mtconfigf -> subrunmod; commonmod -> subrunmod; // launchmod // commonmod -> launchmod; // rmtmod -> launchmod; // testsmod -> launchmod; // mtconfigf -> launchmod; // mtargs -> launchmod; // subrunmod -> launchmod; |
︙ |
Modified megamod.scm from [8e380fd6d6] to [e5bfc454fa].
︙ | |||
30 31 32 33 34 35 36 | 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 | - + + | (declare (uses ducttape-lib)) (declare (uses itemsmod)) (declare (uses mtconfigf)) (declare (uses odsmod)) (declare (uses pgdbmod)) (declare (uses pkts)) (declare (uses rmtmod)) |
︙ | |||
114 115 116 117 118 119 120 121 122 123 124 125 | 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 | + + - - - + + + - - + | (import stml2) (import (prefix mtargs args:)) ;; Order here is important! (import commonmod) (import keysmod) (import pgdbmod) (import tasksmod) (import dbmod) (import apimod) (import ducttape-lib) (import itemsmod) (import pkts) |
︙ |
Modified megatest.scm from [eadab888d3] to [16fcbee679].
︙ | |||
28 29 30 31 32 33 34 35 36 37 38 | 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 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 | + + + + + - + + - - - + + + + - - + + + - + + - - - - - - - + + + + + + + + - - - - + + + + + + + + + + + + + - - - - - - - - + + + + + | ;; Added for csv stuff - will be removed ;; (use sparse-vectors) (declare (uses mtargs)) (declare (uses mtconfigf)) (declare (uses stml2)) (declare (uses ulex)) (import (prefix mtargs args:)) (import (prefix mtconfigf configf:)) (import cookie) (import stml2) (import ulex) |
︙ |