sweeper/webif/plugin/sweeper/config.jim

20 lines
226 B
Plaintext
Raw Normal View History

2014-06-03 17:23:03 +00:00
#!/mod/bin/jimsh
package require cgi
source /mod/webif/lib/setup
require system.class
httpheader "text/javascript"
2014-06-05 21:12:25 +00:00
set raw 0
if {[file exists /mod/webif/plugin/sweeper/.raw]} {
set raw 1
}
2014-06-03 17:23:03 +00:00
2014-06-05 21:12:25 +00:00
puts "
2014-06-03 17:23:03 +00:00
2014-06-05 21:12:25 +00:00
var showraw = $raw;
"
2014-06-03 17:23:03 +00:00