home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
OS/2 Spezial
/
SPEZIAL2_97.zip
/
SPEZIAL2_97.iso
/
ANWEND
/
ONLINE
/
HTMCK111
/
MAC
/
HCULINE.MAC
< prev
next >
Wrap
Text File
|
1995-11-13
|
1KB
|
31 lines
/*---------------------------------------------------------------------------*/
/* */
/* hcnLine - 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 */
/* */
/*---------------------------------------------------------------------------*/
IF (hclMatched == 'No' & hclFileType <> 'HTMLTAG' & hclFileType <> 'DIRECTORY') THEN
DO
spaces = ''
len = LENGTH(hclPhysical)
IF (len < 60) THEN
spaces = COPIES(' ', 60 - len)
line = hclPhysical || spaces || '(' || hclDoc || ') '
Call RxhcLineOut line
END
RETURN