forked from hummypkg/webif
22320536ee
git-svn-id: file:///root/webif/svn/humax/pkg/src/webif/trunk@1420 2a923420-c742-0410-a762-8d5b09965624
15 lines
226 B
Plaintext
Executable File
15 lines
226 B
Plaintext
Executable File
#!/mod/bin/jimsh
|
|
|
|
package require cgi
|
|
source /mod/webif/lib/setup
|
|
require browse.class
|
|
|
|
httpheader
|
|
|
|
set file [cgi_get file]
|
|
|
|
if {[file isdirectory $file]} {
|
|
lassign [{dir iconset} $file] icons #attrs
|
|
puts [join $icons ""]
|
|
}
|