forked from hummypkg/webif
b2c7be03a4
git-svn-id: file:///root/webif/svn/humax/pkg/src/webif/trunk@1445 2a923420-c742-0410-a762-8d5b09965624
16 lines
206 B
Plaintext
Executable File
16 lines
206 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 pos [cgi_get pos 0]
|
|
|
|
if {![catch {set ts [ts fetch $file]}]} {
|
|
$ts mkthm $pos
|
|
}
|
|
|