tclhttpd

test.cgi at [367b5e1d4c]
Login

test.cgi at [367b5e1d4c]

File htdocs/access/auth/test.cgi artifact 98a9bbd4fa part of check-in 367b5e1d4c


#!/bin/sh
# \
exec tclsh8.3 "$0" ${1+"$@"}

if {[catch {
    package require ncgi
    package require html

    ncgi::header
    html::head Hello
    flush stdout

    set query [ncgi::nvlist]

    puts [html::h1 "Hello, World!"]
    puts [html::h2 [clock format [clock seconds]]]

    puts [html::h3 "CGI Values"]
    puts [html::tableFromList $query]

    puts [html::h3 Environment]
    puts [html::tableFromArray env]
    flush stdout
    exit 0
}]} {
    puts "Content-Type: text/html\n"
    puts "<h1>CGI Error</h1>"
    puts "<pre>$errorInfo</pre>"
}