forked from hummypkg/webif
42b5805c45
git-svn-id: file:///root/webif/svn/humax/pkg/src/webif/trunk@253 2a923420-c742-0410-a762-8d5b09965624
28 lines
521 B
Plaintext
Executable File
28 lines
521 B
Plaintext
Executable File
#!/mod/bin/jimsh
|
|
|
|
package require cgi
|
|
source /mod/var/mongoose/lib/ts.class
|
|
|
|
puts "Content-Type: text/html"
|
|
puts ""
|
|
|
|
cgi_input
|
|
#cgi_dump
|
|
|
|
#set _cgi(file) "/media/My Video/The Walking Dead/The Walking Dead S01E06.ts"
|
|
|
|
set file [dict get $_cgi file]
|
|
set ts [ts fetch $file]
|
|
if {[set ts [ts fetch $file]] != 0} {
|
|
set action enc
|
|
if {[$ts flag "Encrypted"]} { set action unenc }
|
|
|
|
if {[$ts $action]} {
|
|
puts "Successfully [set action]ed $file."
|
|
} else {
|
|
puts "Problem [set action]ing $file,
|
|
[$ts get error]"
|
|
}
|
|
}
|
|
|