[Dicey-cvs] dicey/lib htmlheader.c,1.1.1.1,1.2
Brought to you by:
christhecat,
w0nderd0g
From: <mad...@us...> - 2003-11-13 21:21:38
|
Update of /cvsroot/dicey/dicey/lib In directory sc8-pr-cvs1:/tmp/cvs-serv20538 Modified Files: htmlheader.c Log Message: tuning the appearance of the output html Index: htmlheader.c =================================================================== RCS file: /cvsroot/dicey/dicey/lib/htmlheader.c,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** htmlheader.c 7 Nov 2003 20:05:09 -0000 1.1.1.1 --- htmlheader.c 13 Nov 2003 21:21:35 -0000 1.2 *************** *** 13,26 **** fprintf(out, "<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\n"); fprintf(out, "<head>\n <title>%s</title>\n", title); ! fprintf(out, " <base href=\"%s\">\n", BASE_URL); fprintf(out, " <style type=\"text/css\">\n"); fprintf(out, " .block {border-width: thin; border-style: solid; text-align: center}\n"); ! fprintf(out, " .note {font-weight: bold; font-size: 12px;}\n"); ! fprintf(out, " .error {font-weight: bold; font-size: 14px; color: #FF0000;}\n"); ! fprintf(out, " .main {font-weight: bold; font-size: 18px; " "font-family: 'Lucida Grande', Verdana, Geneva, Lucida, " "Arial, Helvetica, sans-serif;}\n"); fprintf(out, " </style>\n</head>\n"); fprintf(out, "<body background=\"site_bg.jpg\">\n"); ! fprintf(out, "<h class=\"main\">%s</h>\n", title); } --- 13,26 ---- fprintf(out, "<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\n"); fprintf(out, "<head>\n <title>%s</title>\n", title); ! fprintf(out, " <base href=\"%s\" />\n", BASE_URL); fprintf(out, " <style type=\"text/css\">\n"); fprintf(out, " .block {border-width: thin; border-style: solid; text-align: center}\n"); ! fprintf(out, " .note {font-weight: bold; font-size: 18px;}\n"); ! fprintf(out, " .error {font-weight: bold; font-size: 18px; color: #FF0000;}\n"); ! fprintf(out, " .main {font-weight: bold; font-size: 24px; " "font-family: 'Lucida Grande', Verdana, Geneva, Lucida, " "Arial, Helvetica, sans-serif;}\n"); fprintf(out, " </style>\n</head>\n"); fprintf(out, "<body background=\"site_bg.jpg\">\n"); ! fprintf(out, "<h1 class=\"main\">%s</h1>\n", title); } |