about summary refs log tree commit diff
diff options
context:
space:
mode:
authorJuuso Lapinlampi <wub@partyvan.eu>2016-05-11 18:04:14 +0000
committerJason A. Donenfeld <Jason@zx2c4.com>2016-05-12 17:38:01 +0200
commit8d05b398bb1f4effcb59dddc62a3ea1f021f8631 (patch)
treeef33607c07b7be45bf825473e7ed973a8a06b246
parentui-shared: Simplify cgit_print_error_page() logic (diff)
downloadcgit-magenta-8d05b398bb1f4effcb59dddc62a3ea1f021f8631.tar.xz
ui-shared: HTML-ize DOCTYPE and <html>
Get rid of the XHTML headers, bringing cgit slowly to the modern age of
HTML.
-rw-r--r--ui-shared.c5
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 @@ #include "html.h" static const char cgit_doctype[] = -"<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n" -" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n"; +"<!DOCTYPE html>\n"; static char *http_date(time_t t) { @@ -723,7 +722,7 @@ void cgit_print_docstart(void) char *host = cgit_hosturl(); html(cgit_doctype); - html("<html xmlns='http://www.w3.org/1999/xhtml' xml:lang='en' lang='en'>\n"); + html("<html lang='en'>\n"); html("<head>\n"); html("<title>"); html_txt(ctx.page.title);