423
424
425
426
427
428
429
430
431
432
433
434
435
436
|
if {[lsearch -exact $pkglist $currpkgdata] != -1} {
continue
}
lappend pkglist $currpkgdata
}
puts $fd [generate_tpm $pkglist]
puts $fd " <h1>$pkgnextlevel</h1>"
puts $fd " <table>"
puts $fd " <tr>"
foreach dispfield [join [list entity $dispfields]] {
|
>
>
|
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
|
if {[lsearch -exact $pkglist $currpkgdata] != -1} {
continue
}
lappend pkglist $currpkgdata
}
set pkglist [lsort -dictionary $pkglist]
puts $fd [generate_tpm $pkglist]
puts $fd " <h1>$pkgnextlevel</h1>"
puts $fd " <table>"
puts $fd " <tr>"
foreach dispfield [join [list entity $dispfields]] {
|