Here is a description of the blank template file and what you should put where. Anything in
<bold> should be added by you.
# ======================================================================
# <A short description of what this does>
# ======================================================================
sub <routine_name> {
$NAME="<The title of your report, such as 'visitor summary'>";
$DESC="<A short description of this report>";
$CATEGORY="<One of: SUMMARY,WHO,WHAT,WHEN,REFERER,BROWSER,ERROR,MISC>";
$LINK="<The filename of your report, such as 'my_report.html' or 'my_report.txt'>";
&AddToIndex($NAME,$DESC,$CATEGORY,$LINK);
# ----------------------------------------------------------------------
# Local Settings:
<Put any local variables used here, so they can be configured>
# ----------------------------------------------------------------------
open(OUT,"> ${REPORT_DIR}$LINK");
<Your routine goes here>
}
1;