SASUnit Examples  Version 1.3.0
_reportheaderhtml.sas
Go to the documentation of this file.
1 
21 %MACRO _reportHeaderHTML (i_title
22  );
23 
24  PUT "<html xmlns=""http://www.w3.org/1999/xhtml"" xml:lang=""en"" lang=""en"">";
25  PUT " <head>";
26  PUT " <meta http-equiv=""Content-Type"" content=""text/xhtml;charset=windows-1252"" />";
27  PUT " <meta http-equiv=""Content-Style-Type"" content=""text/css"" />";
28  PUT " <meta http-equiv=""Content-Language"" content=""de"" />";
29  PUT " <link href=""sasunit.css"" rel=""stylesheet"" type=""text/css"">";
30  PUT " <link href=""tabs.css"" rel=""stylesheet"" type=""text/css"">";
31  PUT " <link rel=""shortcut icon"" href=""./favicon.ico"" type=""image/x-icon"" />";
32  PUT " <title>&i_title</title>";
33  PUT " </head>";
34 
35 %MEND _reportHeaderHTML;