SASUnit Examples  Version 1.5.0
_reportheaderhtml.sas
Go to the documentation of this file.
1 
22 %MACRO _reportHeaderHTML (i_title
23  );
24 
25  PUT "<html xmlns=""http://www.w3.org/1999/xhtml"" xml:lang=""en"" lang=""en"">";
26  PUT " <head>";
27  PUT " <meta http-equiv=""Content-Type"" content=""text/xhtml;charset=utf-8"" />";
28  PUT " <meta http-equiv=""Content-Style-Type"" content=""text/css"" />";
29  PUT " <meta http-equiv=""Content-Language"" content=""de"" />";
30  PUT " <link href=""css/SAS_SASUnit.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;