Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Add a blue tint to requirements matrix summary entries that are partially completed, with darker colors indicating more completion. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
4eb9d03d43296c777267dabef9551f91 |
User & Date: | drh 2010-07-28 13:42:57.000 |
Context
2010-07-28
| ||
15:04 | Add sqlite3_prepare16_v2() to the list of routines that accept SQL. (check-in: 83cbf2ca08 user: drh tags: trunk) | |
13:42 | Add a blue tint to requirements matrix summary entries that are partially completed, with darker colors indicating more completion. (check-in: 4eb9d03d43 user: drh tags: trunk) | |
2010-07-27
| ||
15:25 | Add support for gathering evidence from SLT. (check-in: 0b915cf1f8 user: drh tags: trunk) | |
Changes
Changes to matrix.tcl.
︙ | ︙ | |||
210 211 212 213 214 215 216 217 218 219 220 221 222 223 | font-style: normal; background: #a0ffa0; border-style: solid; border-width: 2px; border-color: #00a000; padding: 0px 5px 0px 5px; } .evnil { font-family: monospace; font-style: normal; border-style: solid; border-width: 1px; padding: 0px 5px 0px 5px; } | > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 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 251 252 253 254 255 256 257 258 259 | font-style: normal; background: #a0ffa0; border-style: solid; border-width: 2px; border-color: #00a000; padding: 0px 5px 0px 5px; } .evl0 { font-family: monospace; font-style: normal; background: #ffffff; border-style: solid; border-width: 2px; border-color: #0060c0; padding: 0px 5px 0px 5px; } .evl1 { font-family: monospace; font-style: normal; background: #c0f0ff; border-style: solid; border-width: 2px; border-color: #0060c0; padding: 0px 5px 0px 5px; } .evl2 { font-family: monospace; font-style: normal; background: #90c7fe; border-style: solid; border-width: 2px; border-color: #0060c0; padding: 0px 5px 0px 5px; } .evl3 { font-family: monospace; font-style: normal; background: #40a0ff; border-style: solid; border-width: 2px; border-color: #0060c0; padding: 0px 5px 0px 5px; } .evnil { font-family: monospace; font-style: normal; border-style: solid; border-width: 1px; padding: 0px 5px 0px 5px; } |
︙ | ︙ | |||
299 300 301 302 303 304 305 306 307 308 309 310 311 312 | } { set ev(any) $cnt } foreach srcclass {tcl slt th3 src any} { set cnt $ev($srcclass) if {$cnt==$totalcnt} { set cx evok } else { set cx evnil } puts $out "<td><cite class=$cx>$srcclass: $cnt/$totalcnt</cite></td>" } regsub -all {[^a-zA-Z0-9]} [file tail [file root $srcfile]] _ docid puts $out "<td><a href=\"matrix_s$docid.html\">summary</a></td>" | > > > > > > > > | 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 | } { set ev(any) $cnt } foreach srcclass {tcl slt th3 src any} { set cnt $ev($srcclass) if {$cnt==$totalcnt} { set cx evok } elseif {$cnt>=0.75*$totalcnt} { set cx evl3 } elseif {$cnt>=0.5*$totalcnt} { set cx evl2 } elseif {$cnt>=0.25*$totalcnt} { set cx evl1 } elseif {$cnt>0} { set cx evl0 } else { set cx evnil } puts $out "<td><cite class=$cx>$srcclass: $cnt/$totalcnt</cite></td>" } regsub -all {[^a-zA-Z0-9]} [file tail [file root $srcfile]] _ docid puts $out "<td><a href=\"matrix_s$docid.html\">summary</a></td>" |
︙ | ︙ |