forked from hummypkg/webif
775add8c04
git-svn-id: file:///root/webif/svn/humax/pkg/src/webif/trunk@1231 2a923420-c742-0410-a762-8d5b09965624
24 lines
457 B
Plaintext
Executable File
24 lines
457 B
Plaintext
Executable File
#!/mod/bin/jimsh
|
|
|
|
package require cgi
|
|
source /mod/webif/lib/ts.class
|
|
|
|
puts "Content-Type: application/json"
|
|
puts ""
|
|
|
|
cgi_input
|
|
#cgi_dump
|
|
#set _cgi(file) "/media/My Video/Doctor Who/6.13._The_Almost_People.ts"
|
|
|
|
if {![dict exists $_cgi file]} { exit }
|
|
|
|
set file [dict get $_cgi file]
|
|
set ts [ts fetch $file]
|
|
|
|
puts "{"
|
|
puts "\"title\" : \"[$ts get title]\","
|
|
puts "\"synopsis\" : \"[$ts get synopsis]\","
|
|
puts "\"guidance\" : \"[$ts get guidance]\""
|
|
puts "}"
|
|
|