Overview
Comment: | Updated to give more information for ActiveState packages |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
69fb00861cf4e937404d858cde42508c |
User & Date: | rkeene on 2010-02-10 03:00:11 |
Other Links: | manifest | tags |
Context
2010-02-10
| ||
03:11 | Minor cleanup check-in: 88598f958f user: rkeene tags: trunk | |
03:00 | Updated to give more information for ActiveState packages check-in: 69fb00861c user: rkeene tags: trunk | |
2010-02-09
| ||
21:19 | Updated to only produce TPM header if the package info is complete check-in: a29f966f9d user: rkeene tags: trunk | |
Changes
Modified server/teapot_index from [67f47fd5d7] to [bf14c565da].
︙ | |||
18 19 20 21 22 23 24 | 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 | - + | set entity_fieldnames([list package arch]) "Platform" set entity_fieldnames([list entity]) "What" # Index all packages proc teapot_index {srcdir} { array set pkginfo [list] |
︙ | |||
83 84 85 86 87 88 89 | 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 | - + | set currpkginfo(name) $name set currpkginfo(vers) $vers } "META" { set var [string tolower [lindex $line 1]] set val [lrange $line 2 end] |
︙ | |||
213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 | 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 | + - + | } lappend pkglist $addent } set pkglist [lsort -dictionary $pkglist] file mkdir [file dirname $indexfile] set fd [open $indexfile w] puts $fd "<html>" puts $fd " <head>" puts $fd " <title>List of all entities</title>" puts $fd " </head>" puts $fd " <body>" puts $fd [generate_tpm $pkglist] puts $fd " <h1>List of all entities</h1>" puts $fd " <table>" puts $fd [generate_table $pkglist 1] puts $fd " </table>" puts $fd " </body>" puts $fd "</html>" close $fd |
︙ | |||
315 316 317 318 319 320 321 | 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 | - + | file delete -- $extfile exec zip -r $extfile . -x build.log } err]} { puts "Error while zipping: $err" } } else { |
︙ | |||
453 454 455 456 457 458 459 | 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 | - + - + - + - + - - + | set pathname_tail "file" } set pathname_uri "/$pathname_dir/$pathname_tail" puts $fd " <h1>Details of $entity_type [join $dispname_list]</h1>" puts $fd " <p><a href=\"$pathname_uri\">Package archive</a></p>" puts $fd " <p>Details</p>" |
︙ |