Introduction

This pseudo-module is used by TCB scripts to offer a consistent user interface with the outside world. The following script shows how it works:

  #!/usr/local/bin/perl

  use CGI::SHTML;
  use TCB::Internal;
  $HTMLHEAD = \&tbhtml_head;
  $HTMLFOOT = \&tbhtml_foot;

  $TITLE = "Testing Page";  
  print CGI->header(), &$HTMLHEAD($TITLE), "\n";
  print "<h2>$TITLE</h2>>\n";
  print &$HTMLFOOT();
  exit(0);

Example output from the above code is here. Full documentation is provided within the source code, as well as here.

Prerequisites

Requires CGI::SHTML and a copy of our internal server-side includes.

Contact

If you have questions please send email to tskirvin@ks.uiuc.edu

Download

License

UIUC Open Source License