From mboxrd@z Thu Jan 1 00:00:00 1970 From: wub at partyvan.eu (Juuso Lapinlampi) Date: Wed, 11 May 2016 18:04:14 +0000 Subject: [PATCH 1/5] ui-shared: HTML-ize DOCTYPE and In-Reply-To: <1462989858-15825-1-git-send-email-wub@partyvan.eu> References: <1462989858-15825-1-git-send-email-wub@partyvan.eu> Message-ID: <1462989858-15825-2-git-send-email-wub@partyvan.eu> Get rid of the XHTML headers, bringing cgit slowly to the modern age of HTML. --- ui-shared.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/ui-shared.c b/ui-shared.c index 9a38aa9..1ded2d6 100644 --- a/ui-shared.c +++ b/ui-shared.c @@ -12,8 +12,7 @@ #include "html.h" static const char cgit_doctype[] = -"\n"; +""\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("\n"); + html("\n"); html("\n"); html(""); html_txt(ctx.page.title); -- 2.8.1