home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
OS/2 Spezial
/
SPEZIAL2_97.zip
/
SPEZIAL2_97.iso
/
ANWEND
/
ONLINE
/
HTMCK111
/
MAC
/
HCSLINE.MAC
< prev
next >
Wrap
Text File
|
1995-11-13
|
2KB
|
37 lines
/*---------------------------------------------------------------------------*/
/* */
/* hcsLine - This REXX Macro is called when the report sends out a LINE */
/* Item, This is called for ALL types of ITEMS */
/* */
/* Valid Variables are: */
/* hcDeep hclDoc hclPhysical hclFileSize */
/* hclHTMLTag hclFileType hclMatched hclLocalFound */
/* hclServerRoot hclOffSite hclParent hclAccessCount */
/* hcpDoc hcpPhysical hcpFileSize hcpHTMLTag */
/* hcpFileType hcpMatched hcpLocalFound hcpServerRoot */
/* hcpOffSite hcpAccessCount */
/* */
/*---------------------------------------------------------------------------*/
indnt = COPIES(' ', hcDeep * 2)
status = ''
IF (hclMatched == 'No' & hclFileType <> 'HTMLTAG' & hclFileType <> 'DIRECTORY') THEN
status = status || '<Not used by any HTML file>, '
IF (hclFileType == 'DIRECTORY') THEN
status = status || '<Directory>, '
IF (hclLocalFound == 'No') then
status = status || '<FILE NOT FOUND>, '
IF (hclOffSite == 'Yes') then
status = status || '<Access to another server>, '
fs = ''
IF (hclFileSize > 0) THEN
fs = 'FileSize=' || FORMAT(hclFileSize,9, 0)
Call RxhcLineOut indnt || FORMAT(hclAccessCount,3) || ' ' ||hclDoc || ' (' || hclPhysical || ') ' || fs || ' ' ||status
RETURN