forked from hummypkg/webif
2ab6f7caa2
git-svn-id: file:///root/webif/svn/humax/pkg/src/webif/trunk@1398 2a923420-c742-0410-a762-8d5b09965624
40 lines
907 B
Plaintext
Executable File
40 lines
907 B
Plaintext
Executable File
#!/mod/bin/jimsh
|
|
|
|
package require cgi
|
|
source /mod/webif/lib/setup
|
|
|
|
httpheader
|
|
|
|
set root [cgi_get dir]
|
|
|
|
set files [lsort [readdir -nocomplain $root]]
|
|
|
|
puts "<ul class=jqueryFileTree class=hidden>"
|
|
|
|
foreach dir $files {
|
|
set path "$root/$dir"
|
|
regsub -all -- {\/+} $path "/" path
|
|
if {![file isdirectory $path]} continue
|
|
puts -nonewline "<li class=\"directory collapsed\"><a href=# rel=\""
|
|
puts -nonewline [cgi_quote_html $path]
|
|
puts "\">[cgi_quote_html $dir]</a></li>"
|
|
}
|
|
|
|
foreach file $files {
|
|
set path "$root/$file"
|
|
regsub -all -- {\/+} $path "/" path
|
|
if {[file isdirectory $path]} continue
|
|
set ext [file extension $file]
|
|
puts -nonewline "<li class=\"file"
|
|
if {[string length $ext]} {
|
|
puts -nonewline " ext_[string range $ext 1 end]"
|
|
}
|
|
puts -nonewline "\">"
|
|
puts -nonewline "<a href=# rel=\"[cgi_quote_html $path]\">"
|
|
puts -nonewline [cgi_quote_html $file]
|
|
puts "</a></li>"
|
|
}
|
|
|
|
puts "</ul>"
|
|
|