diff options
author | Juuso Lapinlampi | 2016-05-11 18:04:14 +0000 |
---|---|---|
committer | Jason A. Donenfeld | 2016-05-12 17:38:01 +0200 |
commit | 8d05b398bb1f4effcb59dddc62a3ea1f021f8631 (patch) | |
tree | ef33607c07b7be45bf825473e7ed973a8a06b246 /ui-shared.c | |
parent | 80f12b3e7e43edcb06aea9811b790b16ca204c81 (diff) | |
download | cgit-8d05b398bb1f4effcb59dddc62a3ea1f021f8631.tar.gz cgit-8d05b398bb1f4effcb59dddc62a3ea1f021f8631.tar.bz2 cgit-8d05b398bb1f4effcb59dddc62a3ea1f021f8631.zip |
ui-shared: HTML-ize DOCTYPE and <html>
Get rid of the XHTML headers, bringing cgit slowly to the modern age of
HTML.
Diffstat (limited to 'ui-shared.c')
-rw-r--r-- | ui-shared.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/ui-shared.c b/ui-shared.c index bf92747..1529ff1 100644 --- a/ui-shared.c +++ b/ui-shared.c | |||
@@ -12,8 +12,7 @@ | |||
12 | #include "html.h" | 12 | #include "html.h" |
13 | 13 | ||
14 | static const char cgit_doctype[] = | 14 | static const char cgit_doctype[] = |
15 | "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n" | 15 | "<!DOCTYPE html>\n"; |
16 | " \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n"; | ||
17 | 16 | ||
18 | static char *http_date(time_t t) | 17 | static char *http_date(time_t t) |
19 | { | 18 | { |
@@ -723,7 +722,7 @@ void cgit_print_docstart(void) | |||
723 | 722 | ||
724 | char *host = cgit_hosturl(); | 723 | char *host = cgit_hosturl(); |
725 | html(cgit_doctype); | 724 | html(cgit_doctype); |
726 | html("<html xmlns='http://www.w3.org/1999/xhtml' xml:lang='en' lang='en'>\n"); | 725 | html("<html lang='en'>\n"); |
727 | html("<head>\n"); | 726 | html("<head>\n"); |
728 | html("<title>"); | 727 | html("<title>"); |
729 | html_txt(ctx.page.title); | 728 | html_txt(ctx.page.title); |