home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
OS/2 Spezial
/
SPEZIAL2_97.zip
/
SPEZIAL2_97.iso
/
ANWEND
/
ONLINE
/
HTMCK111
/
MAC
/
HCNINIT.MAC
< prev
next >
Wrap
Text File
|
1995-11-14
|
1KB
|
25 lines
/*---------------------------------------------------------------------------*/
/* */
/* hcnInit - This REXX Macro is called when the report is first called */
/* This is where you can set up your Header and such */
/* */
/* Valid Variables are: */
/* hcReportName hcReportDescription hcServerURL */
/* hcServerRoot hcDocumentRoot hcTopHTML */
/* */
/* */
/*---------------------------------------------------------------------------*/
Call RxhcLineOut COPIES('-', 78)
title = 'Report -' hcReportDescription
extra = 58 - LENGTH(title)
Call RxhcLineOut title || COPIES(' ', extra) || Date() || ' ' || Time()
Call RxhcLineOut 'For Server [' || hcServerURL || ']'
Call RxhcLineOut 'This report started from [' || hcDocumentRoot || ']'
Call RxhcLineOut COPIES('-', 78)
Call RxhcLineOut 'This report will show files that are missing from the server and are '
Call RxhcLineOut 'Referenced by an HTML file'
Call RxhcLineOut COPIES('-', 78)
RETURN