# File bin/dskexplorer.rb, line 287
        def do_GET(req,res)
                relative_path=URI.unescape(req.path).sub(/^\/showfile/,"")
                filename=URI.unescape(req.query['filename'])
                display_mode=req.query['mode']
                res['Content-Type']="text/html"
                res.body=common_header+make_navigation_path(relative_path,filename,display_mode)+show_file(relative_path,filename,display_mode)+common_footer
        end