archive: minor tweaks.
This commit is contained in:
parent
b2e140389f
commit
67afb6b2ba
|
@ -11,7 +11,7 @@ void listAll(char **data)
|
|||
{
|
||||
puts("Content-type: text/html\r\n\r\n");
|
||||
puts("<input type=\"button\" onclick=\"addFile()\" value=\"Add file\"/>");
|
||||
puts("<table border=\"1\"><tr><td><table>");
|
||||
puts("<br /><table border=\"1\"><tr><td><table>");
|
||||
for (int i = 0; i < MAX_RECORDS && data[i]; i++) {
|
||||
const char *name = getname(data[i]);
|
||||
int version = getversion(data[i]);
|
||||
|
|
|
@ -105,12 +105,12 @@ void generatepage(const char msg[])
|
|||
{
|
||||
puts("Content-type: text/html\r\n\r\n");
|
||||
puts("<html>");
|
||||
puts("<head><script>");
|
||||
puts("<head><script type=\"text/javascript\">");
|
||||
puts("function ok() { window.location = \"http://cppcheck.sourceforge.net/archive/\"; }");
|
||||
puts("</script></head>");
|
||||
puts("<body>");
|
||||
puts(msg);
|
||||
puts("<br><input type=\"button\" value=\"OK\" onclick=\"ok()\"></body></html>");
|
||||
puts("<br /><input type=\"button\" value=\"OK\" onclick=\"ok()\"></body></html>");
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue