webif/var/mongoose/lib/altrow
hummypkg 2bbf69f820 schedule restructure
git-svn-id: file:///root/webif/svn/humax/pkg/src/webif/trunk@876 2a923420-c742-0410-a762-8d5b09965624
2012-03-31 21:16:31 +00:00

18 lines
276 B
Plaintext

if {![exists -proc altrow]} {
proc altrow {{attrs ""}} {{i 0}} {
puts -nonewline "<tr class="
if { $i == 0 } {
puts -nonewline "odd"
} else {
puts -nonewline "even"
}
if {$attrs ne ""} {
puts -nonewline " $attrs"
}
puts ">";
set i [expr ! $i]
}
}