SASUnit Examples  Version 1.2
_sasunit_reportfooterhtml.sas
Go to the documentation of this file.
1 
17 /* change log
18  07.01.2013 BB Open link zu sourceforge in new tab
19  Added class="link" to sourceforge link
20  03.09.2012 KL New logo; updated link to new resource
21  30.10.2010 AM Link to sourceforge project page
22  18.08.2008 AM Added national language support
23 */
24 
25 %MACRO _sasunit_reportFooterHTML (
26 );
27 
28  PUT '<hr size="1">';
29  PUT '<address style="text-align: right;"><small>' "&g_nls_reportFooter_001 " @;
30  _sasunit_reportFooterHTML =
31  trim(left(put(today(),&g_nls_reportFooter_002))) !! ', ' !!
32  trim(left(put(today(),&g_nls_reportFooter_003))) !! ', ' !!
33  put(time(),time8.0) !! " &g_nls_reportFooter_004 "
34  ;
35  PUT _sasunit_reportFooterHTML +(-1);
36  PUT '<a href="http://sourceforge.net/projects/sasunit/" class="link" onclick="window.open(this.href); return false;">';
37  PUT 'SASUnit <img src="SASUnit_Logo.png" alt="SASUnit" width=20px height=20px align="top" border="0"></a>';
38  PUT "Version &g_version (&g_revision)</small></address>";
39  PUT '</body>';
40  PUT '</html>';
41 
42 %MEND _sasunit_reportFooterHTML;
43