forked from hummypkg/webif
8a802e5c1d
git-svn-id: file:///root/webif/svn/humax/pkg/src/webif/trunk@1662 2a923420-c742-0410-a762-8d5b09965624
24 lines
434 B
Plaintext
Executable File
24 lines
434 B
Plaintext
Executable File
#!/mod/bin/jimsh
|
|
|
|
package require cgi
|
|
source /mod/webif/lib/setup
|
|
require ts.class
|
|
|
|
httpheader
|
|
|
|
set file [cgi_get file]
|
|
set ts [ts fetch $file]
|
|
if {[set ts [ts fetch $file]] != 0} {
|
|
set action new
|
|
if {[$ts flag "New"]} { set action watched }
|
|
|
|
if {[$ts set_$action]} {
|
|
puts "Successfully marked $file as $action."
|
|
ts resetnew [file dirname $file]
|
|
} else {
|
|
puts "Problem marking $file as $action,
|
|
[$ts get error]"
|
|
}
|
|
}
|
|
|