Remove external resources and make log files standalone, to simplify installation

This was SVN commit r7062.
This commit is contained in:
Ykkrosh 2009-08-01 18:16:12 +00:00
parent c67e2429b0
commit 7976d84a3d
3 changed files with 9 additions and 38 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 8.8 KiB

View File

@ -1,33 +0,0 @@
body {
background-color: #eee;
font-family: sans-serif;
color: black;
}
p.logo {
margin: 0;
padding: 0;
text-align: center;
}
p {
margin-top: 0.2em;
margin-bottom: 0.2em;
padding: 1px;
}
h1 {
font-size: 1.3em;
}
p {
background-color: white;
}
.error {
color: red;
}
.warning {
color: blue;
}

View File

@ -39,13 +39,17 @@ CLogger nullLogger(&blackHoleStream, &blackHoleStream, false, true);
CLogger* g_Logger = &nullLogger;
const char* html_header0 =
"<!DOCTYPE HTML>\n"
"<!DOCTYPE html>\n"
"<title>Pyrogenesis Log</title>\n"
"<link rel=\"stylesheet\" href=\"style.css\" type=\"text/css\">\n"
"<p class=\"logo\"><img src=\"0adlogo.jpg\" alt=\"0 A.D.\"></p>\n"
"<h1>";
"<style>\n"
"body { background: #eee; color: black; font-family: sans-serif; }\n"
"p { background: white; margin: 3px 0 3px 0; }\n"
".error { color: red; }\n"
".warning { color: blue; }\n"
"</style>\n"
"<h2>0 A.D. ";
const char* html_header1 = "</h1>\n";
const char* html_header1 = "</h2>\n";
const char* html_footer = "";