forked from hummypkg/webif
9d8d630b07
git-svn-id: file:///root/webif/svn/humax/pkg/src/webif/trunk@1066 2a923420-c742-0410-a762-8d5b09965624
34 lines
636 B
Plaintext
Executable File
34 lines
636 B
Plaintext
Executable File
#!/mod/bin/jimsh
|
|
|
|
package require cgi
|
|
|
|
#puts "Content-Type: text/plain"
|
|
puts "Content-Type: application/json"
|
|
puts ""
|
|
|
|
cgi_input
|
|
#cgi_dump
|
|
|
|
set dir [cgi_get dir "/media/My Video/Children"]
|
|
|
|
puts "{"
|
|
regsub -all {([\\["$])} $dir {\\\1} xdir
|
|
foreach file [readdir -nocomplain $dir] {
|
|
if {![string match {*.ts} $file]} { continue }
|
|
|
|
regsub -all {([\\["$])} [file rootname $file] {\\\1} xfile
|
|
if {[catch {set perc [exec /mod/bin/stripts -Aq "$xdir/$xfile"]}]} {
|
|
continue
|
|
}
|
|
if {[string match {*%} $perc]} {
|
|
set perc [string range $perc 0 end-1]
|
|
} else {
|
|
set perc 0
|
|
}
|
|
|
|
puts " \"$file\": $perc,"
|
|
}
|
|
puts " \"dummy\": 0"
|
|
puts "}"
|
|
|