forked from hummypkg/sweeper
20 lines
226 B
Plaintext
Executable File
20 lines
226 B
Plaintext
Executable File
#!/mod/bin/jimsh
|
|
|
|
package require cgi
|
|
source /mod/webif/lib/setup
|
|
require system.class
|
|
|
|
httpheader "text/javascript"
|
|
|
|
set raw 0
|
|
if {[file exists /mod/webif/plugin/sweeper/.raw]} {
|
|
set raw 1
|
|
}
|
|
|
|
puts "
|
|
|
|
var showraw = $raw;
|
|
|
|
"
|
|
|