[wwwdocs] Push DOCTYPEs into individual pages and switch to HTML 5

Gerald Pfeifer gerald@pfeifer.com
Sun Sep 2 08:12:00 GMT 2018


This simplifies our web infrastructure by pushing DOCTYPEs into the 
individual pages, thus (a) reducing the preprocessing of our pages 
on the server end, (b) hence reducing the dependency on MetaHTML 
which makes that tool it easier to replace, and last but not least 
(c) makes it easier to edit pages locally now that they carry both 
CSS and DOCTYPE information.

In the course of this I went ahead and, after all the preliminary
changes in that direction that I made in the past weeks, flagged
all pages except for our main page as HTML 5 and removed XML markers.

Some of the pages still are not fully HTML 5, and I am going to 
address that in the coming days and weeks, though this should not 
cause any practical issues for browsers or users.  

Fully converting our main page and those others may take a little, but 
I figured progressing faster for the majority of pages and then taking 
it from there was the better approach.  Progress trumps perfection.


I already adjusted my validator that provides feedback to the committer
of any web page change, and am running a full validation of our site to
flag and address any outstanding issues.

David, let's give this a few days to settle; it should then allow 
simplifying your nice script to replace MetaHTML altogether a little 
(and there is room for a bit more).

Gerald


Push DOCTYPEs into the individual web pages, reducing the preprocessing
of our pages on the server end and simplifying our MetaHTML style sheet
accordingly.
In the course of that flag all pages as HTML 5, except for the main page
which remains XHTML for the time being.

Index: style.mhtml
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/style.mhtml,v
retrieving revision 1.147
diff -u -r1.147 style.mhtml
--- style.mhtml	26 Aug 2018 18:54:40 -0000	1.147
+++ style.mhtml	1 Sep 2018 23:11:48 -0000
@@ -10,17 +10,10 @@
   <unset-var XHTML>
 >
 
-;;; Note that the <?xml...> line really needs to start in the first column.
-
 <if <var-exists XHTML>
  <group
-<?xml version="1.0" encoding="utf-8"?>
-  <!DOCTYPE html
-            PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
-            "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  >
  <group
-  <?xml version="1.0" encoding="utf-8"?>
   <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
  >
 >
Index: index.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/index.html,v
retrieving revision 1.1095
diff -u -r1.1095 index.html
--- index.html	26 Aug 2018 18:40:30 -0000	1.1095
+++ index.html	1 Sep 2018 23:11:49 -0000
@@ -1,3 +1,8 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!DOCTYPE html
+          PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
+          "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+
 <html>
 <head>
 <meta name="google-site-verification" content="FUv_3eEIkimd6LAoWned4TPMqmKKQmw3aA2_PBJ5SAY" />
Index: about.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/about.html,v
retrieving revision 1.30
diff -u -r1.30 about.html
--- about.html	2 Jun 2018 21:16:09 -0000	1.30
+++ about.html	1 Sep 2018 23:11:49 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 
 <head>
Index: backends.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/backends.html,v
retrieving revision 1.79
diff -u -r1.79 backends.html
--- backends.html	17 Aug 2018 19:22:22 -0000	1.79
+++ backends.html	1 Sep 2018 23:11:49 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 
 <head>
Index: badspammer.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/badspammer.html,v
retrieving revision 1.8
diff -u -r1.8 badspammer.html
--- badspammer.html	2 Jun 2018 21:16:09 -0000	1.8
+++ badspammer.html	1 Sep 2018 23:11:49 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 
 <head>
Index: branch-closing.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/branch-closing.html,v
retrieving revision 1.2
diff -u -r1.2 branch-closing.html
--- branch-closing.html	2 Jun 2018 21:16:09 -0000	1.2
+++ branch-closing.html	1 Sep 2018 23:11:49 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 
 <head>
Index: branching.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/branching.html,v
retrieving revision 1.35
diff -u -r1.35 branching.html
--- branching.html	2 Jun 2018 21:16:09 -0000	1.35
+++ branching.html	1 Sep 2018 23:11:49 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 
 <head>
Index: buildstat.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/buildstat.html,v
retrieving revision 1.28
diff -u -r1.28 buildstat.html
--- buildstat.html	2 Jun 2018 21:16:09 -0000	1.28
+++ buildstat.html	1 Sep 2018 23:11:49 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 
 <head>
Index: c99status.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/c99status.html,v
retrieving revision 1.65
diff -u -r1.65 c99status.html
--- c99status.html	2 Jun 2018 21:16:09 -0000	1.65
+++ c99status.html	1 Sep 2018 23:11:49 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 
 <head>
Index: codingconventions.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/codingconventions.html,v
retrieving revision 1.82
diff -u -r1.82 codingconventions.html
--- codingconventions.html	1 Sep 2018 10:14:47 -0000	1.82
+++ codingconventions.html	1 Sep 2018 23:11:49 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 
 <head>
Index: codingrationale.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/codingrationale.html,v
retrieving revision 1.5
diff -u -r1.5 codingrationale.html
--- codingrationale.html	1 Sep 2018 10:14:50 -0000	1.5
+++ codingrationale.html	1 Sep 2018 23:11:50 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 
 <head>
Index: contribute.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/contribute.html,v
retrieving revision 1.89
diff -u -r1.89 contribute.html
--- contribute.html	10 Jun 2018 13:33:26 -0000	1.89
+++ contribute.html	1 Sep 2018 23:11:50 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 <head>
 <meta name="description" content="Contributing to the GCC project." />
Index: contributewhy.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/contributewhy.html,v
retrieving revision 1.10
diff -u -r1.10 contributewhy.html
--- contributewhy.html	2 Jun 2018 21:16:09 -0000	1.10
+++ contributewhy.html	1 Sep 2018 23:11:50 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 
 <head>
Index: develop.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/develop.html,v
retrieving revision 1.185
diff -u -r1.185 develop.html
--- develop.html	26 Jul 2018 10:40:16 -0000	1.185
+++ develop.html	1 Sep 2018 23:11:50 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 <head>
 <title>GCC Development Plan</title>
Index: extensions.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/extensions.html,v
retrieving revision 1.60
diff -u -r1.60 extensions.html
--- extensions.html	14 Jul 2018 20:17:18 -0000	1.60
+++ extensions.html	1 Sep 2018 23:11:50 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 
 <head>
Index: faq.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/faq.html,v
retrieving revision 1.228
diff -u -r1.228 faq.html
--- faq.html	26 Aug 2018 16:42:56 -0000	1.228
+++ faq.html	1 Sep 2018 23:11:51 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 
 <head>
Index: frontends.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/frontends.html,v
retrieving revision 1.42
diff -u -r1.42 frontends.html
--- frontends.html	2 Jun 2018 21:16:10 -0000	1.42
+++ frontends.html	1 Sep 2018 23:11:51 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 
 <head>
Index: gcc-2.96.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-2.96.html,v
retrieving revision 1.5
diff -u -r1.5 gcc-2.96.html
--- gcc-2.96.html	2 Jun 2018 21:16:10 -0000	1.5
+++ gcc-2.96.html	1 Sep 2018 23:11:51 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 
 <head>
Index: gccmission.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gccmission.html,v
retrieving revision 1.11
diff -u -r1.11 gccmission.html
--- gccmission.html	2 Jun 2018 21:16:10 -0000	1.11
+++ gccmission.html	1 Sep 2018 23:11:51 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 
 <head>
Index: lists.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/lists.html,v
retrieving revision 1.115
diff -u -r1.115 lists.html
--- lists.html	10 Jun 2018 13:33:26 -0000	1.115
+++ lists.html	1 Sep 2018 23:11:51 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 
 <head>
Index: mirrors.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/mirrors.html,v
retrieving revision 1.252
diff -u -r1.252 mirrors.html
--- mirrors.html	1 Sep 2018 12:10:25 -0000	1.252
+++ mirrors.html	1 Sep 2018 23:11:51 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 
 <head>
Index: news.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/news.html,v
retrieving revision 1.162
diff -u -r1.162 news.html
--- news.html	29 Jul 2018 22:26:15 -0000	1.162
+++ news.html	1 Sep 2018 23:11:52 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 
 <head>
Index: readings.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/readings.html,v
retrieving revision 1.299
diff -u -r1.299 readings.html
--- readings.html	1 Sep 2018 13:34:42 -0000	1.299
+++ readings.html	1 Sep 2018 23:11:52 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 
 <!-- GCC maintainers, do not hesitate to update/contribute entries as long
Index: releases.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/releases.html,v
retrieving revision 1.135
diff -u -r1.135 releases.html
--- releases.html	26 Jul 2018 10:40:16 -0000	1.135
+++ releases.html	1 Sep 2018 23:11:52 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 
 <head>
Index: releasing.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/releasing.html,v
retrieving revision 1.50
diff -u -r1.50 releasing.html
--- releasing.html	2 Jun 2018 21:16:11 -0000	1.50
+++ releasing.html	1 Sep 2018 23:11:52 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 
 <head>
Index: rsync.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/rsync.html,v
retrieving revision 1.22
diff -u -r1.22 rsync.html
--- rsync.html	2 Jun 2018 21:16:11 -0000	1.22
+++ rsync.html	1 Sep 2018 23:11:52 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 
 <head>
Index: search.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/search.html,v
retrieving revision 1.194
diff -u -r1.194 search.html
--- search.html	10 Jun 2018 13:33:27 -0000	1.194
+++ search.html	1 Sep 2018 23:11:54 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 
 <head>
Index: simtest-howto.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/simtest-howto.html,v
retrieving revision 1.33
diff -u -r1.33 simtest-howto.html
--- simtest-howto.html	26 Aug 2018 16:26:04 -0000	1.33
+++ simtest-howto.html	1 Sep 2018 23:11:54 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
   <head>
     <title>How to test GCC on a simulator</title>
Index: snapshots.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/snapshots.html,v
retrieving revision 1.22
diff -u -r1.22 snapshots.html
--- snapshots.html	2 Jun 2018 21:16:11 -0000	1.22
+++ snapshots.html	1 Sep 2018 23:11:54 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 
 <head>
Index: spam.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/spam.html,v
retrieving revision 1.9
diff -u -r1.9 spam.html
--- spam.html	2 Jun 2018 21:16:11 -0000	1.9
+++ spam.html	1 Sep 2018 23:11:54 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 
 <head>
Index: steering.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/steering.html,v
retrieving revision 1.43
diff -u -r1.43 steering.html
--- steering.html	2 Jun 2018 21:16:11 -0000	1.43
+++ steering.html	1 Sep 2018 23:11:54 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 
 <head>
Index: svn.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/svn.html,v
retrieving revision 1.223
diff -u -r1.223 svn.html
--- svn.html	18 Jul 2018 18:17:42 -0000	1.223
+++ svn.html	1 Sep 2018 23:11:55 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 
 <head>
Index: svnwrite.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/svnwrite.html,v
retrieving revision 1.40
diff -u -r1.40 svnwrite.html
--- svnwrite.html	10 Jun 2018 13:33:27 -0000	1.40
+++ svnwrite.html	1 Sep 2018 23:11:55 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 <head>
 <title>Read-write SVN access</title>
Index: translation.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/translation.html,v
retrieving revision 1.13
diff -u -r1.13 translation.html
--- translation.html	2 Jun 2018 21:16:11 -0000	1.13
+++ translation.html	1 Sep 2018 23:11:55 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 
 <head>
Index: benchmarks/index.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/benchmarks/index.html,v
retrieving revision 1.41
diff -u -r1.41 index.html
--- benchmarks/index.html	2 Jun 2018 21:16:11 -0000	1.41
+++ benchmarks/index.html	1 Sep 2018 23:11:55 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 <head>
 <title>Benchmarking GCC</title>
Index: bugs/index.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/bugs/index.html,v
retrieving revision 1.125
diff -u -r1.125 index.html
--- bugs/index.html	25 Aug 2018 12:02:43 -0000	1.125
+++ bugs/index.html	1 Sep 2018 23:11:55 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 
 <head>
Index: bugs/management.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/bugs/management.html,v
retrieving revision 1.37
diff -u -r1.37 management.html
--- bugs/management.html	25 Aug 2018 10:35:48 -0000	1.37
+++ bugs/management.html	1 Sep 2018 23:11:56 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 
 <head>
Index: bugs/minimize.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/bugs/minimize.html,v
retrieving revision 1.10
diff -u -r1.10 minimize.html
--- bugs/minimize.html	2 Jun 2018 21:16:12 -0000	1.10
+++ bugs/minimize.html	1 Sep 2018 23:11:56 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 
 <head>
Index: bugs/reghunt.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/bugs/reghunt.html,v
retrieving revision 1.22
diff -u -r1.22 reghunt.html
--- bugs/reghunt.html	2 Jun 2018 21:16:12 -0000	1.22
+++ bugs/reghunt.html	1 Sep 2018 23:11:56 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 
 <head>
Index: bugs/segfault.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/bugs/segfault.html,v
retrieving revision 1.2
diff -u -r1.2 segfault.html
--- bugs/segfault.html	2 Jun 2018 21:16:12 -0000	1.2
+++ bugs/segfault.html	1 Sep 2018 23:11:56 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 
 <head>
Index: bzkanban/index.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/bzkanban/index.html,v
retrieving revision 1.4
diff -u -r1.4 index.html
--- bzkanban/index.html	2 Jun 2018 21:16:12 -0000	1.4
+++ bzkanban/index.html	1 Sep 2018 23:11:56 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 
     <head>
Index: egcs-1.0/buildstat.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/egcs-1.0/buildstat.html,v
retrieving revision 1.12
diff -u -r1.12 buildstat.html
--- egcs-1.0/buildstat.html	2 Jun 2018 21:16:12 -0000	1.12
+++ egcs-1.0/buildstat.html	1 Sep 2018 23:11:56 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 <head>
 <title> Build and Test status for EGCS 1.0</title>
Index: egcs-1.0/c++features.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/egcs-1.0/c++features.html,v
retrieving revision 1.6
diff -u -r1.6 c++features.html
--- egcs-1.0/c++features.html	2 Jun 2018 21:16:12 -0000	1.6
+++ egcs-1.0/c++features.html	1 Sep 2018 23:11:56 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 <head>
 <title>EGCS 1.0 C++ Features</title>
Index: egcs-1.0/caveats.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/egcs-1.0/caveats.html,v
retrieving revision 1.13
diff -u -r1.13 caveats.html
--- egcs-1.0/caveats.html	2 Jun 2018 21:16:12 -0000	1.13
+++ egcs-1.0/caveats.html	1 Sep 2018 23:11:56 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 <head>
 <title>EGCS 1.0 Caveats</title>
Index: egcs-1.0/features-2.8.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/egcs-1.0/features-2.8.html,v
retrieving revision 1.8
diff -u -r1.8 features-2.8.html
--- egcs-1.0/features-2.8.html	2 Jun 2018 21:16:12 -0000	1.8
+++ egcs-1.0/features-2.8.html	1 Sep 2018 23:11:56 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 <head>
 <title>GCC 2.8 features in egcs</title>
Index: egcs-1.0/features.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/egcs-1.0/features.html,v
retrieving revision 1.9
diff -u -r1.9 features.html
--- egcs-1.0/features.html	2 Jun 2018 21:16:12 -0000	1.9
+++ egcs-1.0/features.html	1 Sep 2018 23:11:56 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 <head>
 <title>EGCS 1.0 Features</title>
Index: egcs-1.0/index.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/egcs-1.0/index.html,v
retrieving revision 1.5
diff -u -r1.5 index.html
--- egcs-1.0/index.html	2 Jun 2018 21:16:12 -0000	1.5
+++ egcs-1.0/index.html	1 Sep 2018 23:11:56 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 <head>
 <title>EGCS 1.0</title>
Index: egcs-1.1/buildstat.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/egcs-1.1/buildstat.html,v
retrieving revision 1.38
diff -u -r1.38 buildstat.html
--- egcs-1.1/buildstat.html	2 Jun 2018 21:16:12 -0000	1.38
+++ egcs-1.1/buildstat.html	1 Sep 2018 23:11:56 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 <head>
 <title> Build and Test status for EGCS 1.1</title>
Index: egcs-1.1/c++features.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/egcs-1.1/c++features.html,v
retrieving revision 1.7
diff -u -r1.7 c++features.html
--- egcs-1.1/c++features.html	2 Jun 2018 21:16:13 -0000	1.7
+++ egcs-1.1/c++features.html	1 Sep 2018 23:11:57 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 <head>
 <title>EGCS 1.1 C++ Features</title>
Index: egcs-1.1/caveats.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/egcs-1.1/caveats.html,v
retrieving revision 1.16
diff -u -r1.16 caveats.html
--- egcs-1.1/caveats.html	2 Jun 2018 21:16:13 -0000	1.16
+++ egcs-1.1/caveats.html	1 Sep 2018 23:11:57 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 <head>
 <title>EGCS 1.1 Caveats</title>
Index: egcs-1.1/egcs-1.1-branch.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/egcs-1.1/egcs-1.1-branch.html,v
retrieving revision 1.8
diff -u -r1.8 egcs-1.1-branch.html
--- egcs-1.1/egcs-1.1-branch.html	2 Jun 2018 21:16:13 -0000	1.8
+++ egcs-1.1/egcs-1.1-branch.html	1 Sep 2018 23:11:57 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 <head>
 <title>EGCS 1.1 branch </title>
Index: egcs-1.1/egcs-1.1-test.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/egcs-1.1/egcs-1.1-test.html,v
retrieving revision 1.10
diff -u -r1.10 egcs-1.1-test.html
--- egcs-1.1/egcs-1.1-test.html	2 Jun 2018 21:16:13 -0000	1.10
+++ egcs-1.1/egcs-1.1-test.html	1 Sep 2018 23:11:57 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 <head>
 <title>EGCS 1.1 test strategy</title>
Index: egcs-1.1/features.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/egcs-1.1/features.html,v
retrieving revision 1.22
diff -u -r1.22 features.html
--- egcs-1.1/features.html	2 Jun 2018 21:16:13 -0000	1.22
+++ egcs-1.1/features.html	1 Sep 2018 23:11:57 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 <head>
 <title>EGCS 1.1 New Features</title>
Index: egcs-1.1/index.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/egcs-1.1/index.html,v
retrieving revision 1.9
diff -u -r1.9 index.html
--- egcs-1.1/index.html	2 Jun 2018 21:16:13 -0000	1.9
+++ egcs-1.1/index.html	1 Sep 2018 23:11:57 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 <head>
 <title>EGCS 1.1</title>
Index: egcs-1.1/regress.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/egcs-1.1/regress.html,v
retrieving revision 1.10
diff -u -r1.10 regress.html
--- egcs-1.1/regress.html	1 Sep 2018 12:27:09 -0000	1.10
+++ egcs-1.1/regress.html	1 Sep 2018 23:11:57 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 <head>
 <title>EGCS 1.1 regression test strategy</title>
Index: egcs-1.1/schedule.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/egcs-1.1/schedule.html,v
retrieving revision 1.13
diff -u -r1.13 schedule.html
--- egcs-1.1/schedule.html	2 Jun 2018 21:16:13 -0000	1.13
+++ egcs-1.1/schedule.html	1 Sep 2018 23:11:57 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 <head>
 <title>EGCS 1.1</title>
Index: fortran/contributors.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/fortran/contributors.html,v
retrieving revision 1.6
diff -u -r1.6 contributors.html
--- fortran/contributors.html	2 Jun 2018 21:16:13 -0000	1.6
+++ fortran/contributors.html	1 Sep 2018 23:11:57 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 <head>
 <title>Contributors to GNU Fortran</title>
Index: fortran/index.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/fortran/index.html,v
retrieving revision 1.36
diff -u -r1.36 index.html
--- fortran/index.html	2 Jun 2018 21:16:13 -0000	1.36
+++ fortran/index.html	1 Sep 2018 23:11:57 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 
 <head>
Index: gcc-2.95/branch.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-2.95/branch.html,v
retrieving revision 1.10
diff -u -r1.10 branch.html
--- gcc-2.95/branch.html	2 Jun 2018 21:16:13 -0000	1.10
+++ gcc-2.95/branch.html	1 Sep 2018 23:11:57 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 
 <head>
Index: gcc-2.95/buildstat.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-2.95/buildstat.html,v
retrieving revision 1.80
diff -u -r1.80 buildstat.html
--- gcc-2.95/buildstat.html	2 Jun 2018 21:16:13 -0000	1.80
+++ gcc-2.95/buildstat.html	1 Sep 2018 23:11:57 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 
 <head>
Index: gcc-2.95/c++features.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-2.95/c++features.html,v
retrieving revision 1.9
diff -u -r1.9 c++features.html
--- gcc-2.95/c++features.html	2 Jun 2018 21:16:13 -0000	1.9
+++ gcc-2.95/c++features.html	1 Sep 2018 23:11:57 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 
 <head>
Index: gcc-2.95/caveats.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-2.95/caveats.html,v
retrieving revision 1.20
diff -u -r1.20 caveats.html
--- gcc-2.95/caveats.html	2 Jun 2018 21:16:13 -0000	1.20
+++ gcc-2.95/caveats.html	1 Sep 2018 23:11:57 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 
 <head>
Index: gcc-2.95/features.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-2.95/features.html,v
retrieving revision 1.42
diff -u -r1.42 features.html
--- gcc-2.95/features.html	2 Jun 2018 21:16:13 -0000	1.42
+++ gcc-2.95/features.html	1 Sep 2018 23:11:57 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 
 <head>
Index: gcc-2.95/index.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-2.95/index.html,v
retrieving revision 1.7
diff -u -r1.7 index.html
--- gcc-2.95/index.html	2 Jun 2018 21:16:13 -0000	1.7
+++ gcc-2.95/index.html	1 Sep 2018 23:11:58 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 
 <head>
Index: gcc-2.95/othertest.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-2.95/othertest.html,v
retrieving revision 1.9
diff -u -r1.9 othertest.html
--- gcc-2.95/othertest.html	1 Sep 2018 12:27:09 -0000	1.9
+++ gcc-2.95/othertest.html	1 Sep 2018 23:11:58 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 
 <head>
Index: gcc-2.95/regress.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-2.95/regress.html,v
retrieving revision 1.110
diff -u -r1.110 regress.html
--- gcc-2.95/regress.html	1 Sep 2018 12:27:10 -0000	1.110
+++ gcc-2.95/regress.html	1 Sep 2018 23:11:58 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 
 <head>
Index: gcc-2.95/schedule.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-2.95/schedule.html,v
retrieving revision 1.14
diff -u -r1.14 schedule.html
--- gcc-2.95/schedule.html	2 Jun 2018 21:16:14 -0000	1.14
+++ gcc-2.95/schedule.html	1 Sep 2018 23:11:58 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 
 <head>
Index: gcc-2.95/testing.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-2.95/testing.html,v
retrieving revision 1.6
diff -u -r1.6 testing.html
--- gcc-2.95/testing.html	2 Jun 2018 21:16:14 -0000	1.6
+++ gcc-2.95/testing.html	1 Sep 2018 23:11:58 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 
 <head>
Index: gcc-3.0/buildstat.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-3.0/buildstat.html,v
retrieving revision 1.157
diff -u -r1.157 buildstat.html
--- gcc-3.0/buildstat.html	2 Jun 2018 21:16:14 -0000	1.157
+++ gcc-3.0/buildstat.html	1 Sep 2018 23:11:58 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 
 <head>
Index: gcc-3.0/c++features.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-3.0/c++features.html,v
retrieving revision 1.5
diff -u -r1.5 c++features.html
--- gcc-3.0/c++features.html	2 Jun 2018 21:16:14 -0000	1.5
+++ gcc-3.0/c++features.html	1 Sep 2018 23:11:58 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 
 <head>
Index: gcc-3.0/caveats.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-3.0/caveats.html,v
retrieving revision 1.10
diff -u -r1.10 caveats.html
--- gcc-3.0/caveats.html	2 Jun 2018 21:16:14 -0000	1.10
+++ gcc-3.0/caveats.html	1 Sep 2018 23:11:58 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 
 <head>
Index: gcc-3.0/criteria.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-3.0/criteria.html,v
retrieving revision 1.33
diff -u -r1.33 criteria.html
--- gcc-3.0/criteria.html	1 Sep 2018 22:27:10 -0000	1.33
+++ gcc-3.0/criteria.html	1 Sep 2018 23:11:58 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 
 <head>
Index: gcc-3.0/features.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-3.0/features.html,v
retrieving revision 1.38
diff -u -r1.38 features.html
--- gcc-3.0/features.html	2 Jun 2018 21:16:14 -0000	1.38
+++ gcc-3.0/features.html	1 Sep 2018 23:11:58 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 
 <head>
Index: gcc-3.0/index.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-3.0/index.html,v
retrieving revision 1.19
diff -u -r1.19 index.html
--- gcc-3.0/index.html	2 Jun 2018 21:16:14 -0000	1.19
+++ gcc-3.0/index.html	1 Sep 2018 23:11:58 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 
 <head>
Index: gcc-3.0/lapack-guide.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-3.0/lapack-guide.html,v
retrieving revision 1.6
diff -u -r1.6 lapack-guide.html
--- gcc-3.0/lapack-guide.html	2 Jun 2018 21:16:14 -0000	1.6
+++ gcc-3.0/lapack-guide.html	1 Sep 2018 23:11:58 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 
 <head>
Index: gcc-3.0/libgcc.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-3.0/libgcc.html,v
retrieving revision 1.7
diff -u -r1.7 libgcc.html
--- gcc-3.0/libgcc.html	2 Jun 2018 21:16:14 -0000	1.7
+++ gcc-3.0/libgcc.html	1 Sep 2018 23:11:58 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 
 <head>
Index: gcc-3.0/pooma-guide.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-3.0/pooma-guide.html,v
retrieving revision 1.5
diff -u -r1.5 pooma-guide.html
--- gcc-3.0/pooma-guide.html	2 Jun 2018 21:16:14 -0000	1.5
+++ gcc-3.0/pooma-guide.html	1 Sep 2018 23:11:58 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 
 <head>
Index: gcc-3.1/buildstat.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-3.1/buildstat.html,v
retrieving revision 1.46
diff -u -r1.46 buildstat.html
--- gcc-3.1/buildstat.html	2 Jun 2018 21:16:14 -0000	1.46
+++ gcc-3.1/buildstat.html	1 Sep 2018 23:11:59 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 
 <head>
Index: gcc-3.1/changes.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-3.1/changes.html,v
retrieving revision 1.76
diff -u -r1.76 changes.html
--- gcc-3.1/changes.html	26 Aug 2018 13:04:28 -0000	1.76
+++ gcc-3.1/changes.html	1 Sep 2018 23:11:59 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 
 <head>
Index: gcc-3.1/criteria.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-3.1/criteria.html,v
retrieving revision 1.38
diff -u -r1.38 criteria.html
--- gcc-3.1/criteria.html	1 Sep 2018 22:27:10 -0000	1.38
+++ gcc-3.1/criteria.html	1 Sep 2018 23:11:59 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 
 <head>
Index: gcc-3.1/gcj-status.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-3.1/gcj-status.html,v
retrieving revision 1.4
diff -u -r1.4 gcj-status.html
--- gcc-3.1/gcj-status.html	2 Jun 2018 21:16:14 -0000	1.4
+++ gcc-3.1/gcj-status.html	1 Sep 2018 23:11:59 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 
 <head>
Index: gcc-3.1/index.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-3.1/index.html,v
retrieving revision 1.8
diff -u -r1.8 index.html
--- gcc-3.1/index.html	2 Jun 2018 21:16:14 -0000	1.8
+++ gcc-3.1/index.html	1 Sep 2018 23:11:59 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 
 <head>
Index: gcc-3.2/buildstat.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-3.2/buildstat.html,v
retrieving revision 1.81
diff -u -r1.81 buildstat.html
--- gcc-3.2/buildstat.html	2 Jun 2018 21:16:14 -0000	1.81
+++ gcc-3.2/buildstat.html	1 Sep 2018 23:12:00 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 
 <head>
Index: gcc-3.2/c++-abi.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-3.2/c++-abi.html,v
retrieving revision 1.12
diff -u -r1.12 c++-abi.html
--- gcc-3.2/c++-abi.html	2 Jun 2018 21:16:14 -0000	1.12
+++ gcc-3.2/c++-abi.html	1 Sep 2018 23:12:00 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
   <head>
     <title>A Common C++ ABI for GNU/Linux</title>
Index: gcc-3.2/changes.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-3.2/changes.html,v
retrieving revision 1.59
diff -u -r1.59 changes.html
--- gcc-3.2/changes.html	26 Aug 2018 13:04:28 -0000	1.59
+++ gcc-3.2/changes.html	1 Sep 2018 23:12:00 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 
 <head>
Index: gcc-3.2/index.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-3.2/index.html,v
retrieving revision 1.16
diff -u -r1.16 index.html
--- gcc-3.2/index.html	27 Aug 2018 04:20:18 -0000	1.16
+++ gcc-3.2/index.html	1 Sep 2018 23:12:01 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 
 <head>
Index: gcc-3.3/buildstat.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-3.3/buildstat.html,v
retrieving revision 1.58
diff -u -r1.58 buildstat.html
--- gcc-3.3/buildstat.html	2 Jun 2018 21:16:14 -0000	1.58
+++ gcc-3.3/buildstat.html	1 Sep 2018 23:12:01 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 
 <head>
Index: gcc-3.3/changes.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-3.3/changes.html,v
retrieving revision 1.64
diff -u -r1.64 changes.html
--- gcc-3.3/changes.html	26 Aug 2018 13:04:28 -0000	1.64
+++ gcc-3.3/changes.html	1 Sep 2018 23:12:02 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 
 <head>
Index: gcc-3.3/criteria.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-3.3/criteria.html,v
retrieving revision 1.14
diff -u -r1.14 criteria.html
--- gcc-3.3/criteria.html	1 Sep 2018 22:27:11 -0000	1.14
+++ gcc-3.3/criteria.html	1 Sep 2018 23:12:02 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 
 <head>
Index: gcc-3.3/gcj-status.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-3.3/gcj-status.html,v
retrieving revision 1.9
diff -u -r1.9 gcj-status.html
--- gcc-3.3/gcj-status.html	2 Jun 2018 21:16:15 -0000	1.9
+++ gcc-3.3/gcj-status.html	1 Sep 2018 23:12:02 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 
 <head>
Index: gcc-3.3/index.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-3.3/index.html,v
retrieving revision 1.24
diff -u -r1.24 index.html
--- gcc-3.3/index.html	27 Aug 2018 04:20:18 -0000	1.24
+++ gcc-3.3/index.html	1 Sep 2018 23:12:02 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 
 <head>
Index: gcc-3.4/buildstat.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-3.4/buildstat.html,v
retrieving revision 1.37
diff -u -r1.37 buildstat.html
--- gcc-3.4/buildstat.html	2 Jun 2018 21:16:15 -0000	1.37
+++ gcc-3.4/buildstat.html	1 Sep 2018 23:12:06 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 
 <head>
Index: gcc-3.4/changes.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-3.4/changes.html,v
retrieving revision 1.168
diff -u -r1.168 changes.html
--- gcc-3.4/changes.html	26 Aug 2018 15:34:41 -0000	1.168
+++ gcc-3.4/changes.html	1 Sep 2018 23:12:06 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 
 <head>
Index: gcc-3.4/criteria.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-3.4/criteria.html,v
retrieving revision 1.7
diff -u -r1.7 criteria.html
--- gcc-3.4/criteria.html	1 Sep 2018 22:27:11 -0000	1.7
+++ gcc-3.4/criteria.html	1 Sep 2018 23:12:06 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 
 <head>
Index: gcc-3.4/index.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-3.4/index.html,v
retrieving revision 1.16
diff -u -r1.16 index.html
--- gcc-3.4/index.html	27 Aug 2018 04:20:18 -0000	1.16
+++ gcc-3.4/index.html	1 Sep 2018 23:12:06 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 
 <head>
Index: gcc-3.4/mips-abi.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-3.4/mips-abi.html,v
retrieving revision 1.5
diff -u -r1.5 mips-abi.html
--- gcc-3.4/mips-abi.html	1 Sep 2018 21:44:55 -0000	1.5
+++ gcc-3.4/mips-abi.html	1 Sep 2018 23:12:06 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 
 <head>
Index: gcc-3.4/powerpc-abi.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-3.4/powerpc-abi.html,v
retrieving revision 1.2
diff -u -r1.2 powerpc-abi.html
--- gcc-3.4/powerpc-abi.html	2 Jun 2018 21:16:15 -0000	1.2
+++ gcc-3.4/powerpc-abi.html	1 Sep 2018 23:12:06 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 
 <head>
Index: gcc-3.4/sparc-abi.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-3.4/sparc-abi.html,v
retrieving revision 1.5
diff -u -r1.5 sparc-abi.html
--- gcc-3.4/sparc-abi.html	2 Jun 2018 21:16:15 -0000	1.5
+++ gcc-3.4/sparc-abi.html	1 Sep 2018 23:12:07 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 
 <head>
Index: gcc-4.0/buildstat.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-4.0/buildstat.html,v
retrieving revision 1.33
diff -u -r1.33 buildstat.html
--- gcc-4.0/buildstat.html	2 Jun 2018 21:16:15 -0000	1.33
+++ gcc-4.0/buildstat.html	1 Sep 2018 23:12:07 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 
 <head>
Index: gcc-4.0/changes.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-4.0/changes.html,v
retrieving revision 1.74
diff -u -r1.74 changes.html
--- gcc-4.0/changes.html	1 Sep 2018 21:24:26 -0000	1.74
+++ gcc-4.0/changes.html	1 Sep 2018 23:12:07 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 
 <head>
Index: gcc-4.0/criteria.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-4.0/criteria.html,v
retrieving revision 1.6
diff -u -r1.6 criteria.html
--- gcc-4.0/criteria.html	2 Jun 2018 21:16:15 -0000	1.6
+++ gcc-4.0/criteria.html	1 Sep 2018 23:12:07 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 
 <head>
Index: gcc-4.0/index.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-4.0/index.html,v
retrieving revision 1.15
diff -u -r1.15 index.html
--- gcc-4.0/index.html	27 Aug 2018 04:20:18 -0000	1.15
+++ gcc-4.0/index.html	1 Sep 2018 23:12:07 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 
 <head>
Index: gcc-4.1/buildstat.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-4.1/buildstat.html,v
retrieving revision 1.20
diff -u -r1.20 buildstat.html
--- gcc-4.1/buildstat.html	2 Jun 2018 21:16:15 -0000	1.20
+++ gcc-4.1/buildstat.html	1 Sep 2018 23:12:07 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 
 <head>
Index: gcc-4.1/changes.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-4.1/changes.html,v
retrieving revision 1.32
diff -u -r1.32 changes.html
--- gcc-4.1/changes.html	26 Aug 2018 13:04:29 -0000	1.32
+++ gcc-4.1/changes.html	1 Sep 2018 23:12:07 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 
 <head>
Index: gcc-4.1/criteria.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-4.1/criteria.html,v
retrieving revision 1.2
diff -u -r1.2 criteria.html
--- gcc-4.1/criteria.html	2 Jun 2018 21:16:15 -0000	1.2
+++ gcc-4.1/criteria.html	1 Sep 2018 23:12:07 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 
 <head>
Index: gcc-4.1/index.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-4.1/index.html,v
retrieving revision 1.12
diff -u -r1.12 index.html
--- gcc-4.1/index.html	27 Aug 2018 04:20:18 -0000	1.12
+++ gcc-4.1/index.html	1 Sep 2018 23:12:07 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 
 <head>
Index: gcc-4.2/buildstat.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-4.2/buildstat.html,v
retrieving revision 1.19
diff -u -r1.19 buildstat.html
--- gcc-4.2/buildstat.html	2 Jun 2018 21:16:15 -0000	1.19
+++ gcc-4.2/buildstat.html	1 Sep 2018 23:12:07 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 
 <head>
Index: gcc-4.2/changes.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-4.2/changes.html,v
retrieving revision 1.45
diff -u -r1.45 changes.html
--- gcc-4.2/changes.html	26 Aug 2018 13:04:29 -0000	1.45
+++ gcc-4.2/changes.html	1 Sep 2018 23:12:07 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 
 <head>
Index: gcc-4.2/criteria.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-4.2/criteria.html,v
retrieving revision 1.2
diff -u -r1.2 criteria.html
--- gcc-4.2/criteria.html	2 Jun 2018 21:16:16 -0000	1.2
+++ gcc-4.2/criteria.html	1 Sep 2018 23:12:07 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 
 <head>
Index: gcc-4.2/index.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-4.2/index.html,v
retrieving revision 1.12
diff -u -r1.12 index.html
--- gcc-4.2/index.html	27 Aug 2018 04:20:18 -0000	1.12
+++ gcc-4.2/index.html	1 Sep 2018 23:12:07 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 
 <head>
Index: gcc-4.3/buildstat.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-4.3/buildstat.html,v
retrieving revision 1.40
diff -u -r1.40 buildstat.html
--- gcc-4.3/buildstat.html	2 Jun 2018 21:16:16 -0000	1.40
+++ gcc-4.3/buildstat.html	1 Sep 2018 23:12:07 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 
 <head>
Index: gcc-4.3/changes.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-4.3/changes.html,v
retrieving revision 1.136
diff -u -r1.136 changes.html
--- gcc-4.3/changes.html	1 Sep 2018 11:47:29 -0000	1.136
+++ gcc-4.3/changes.html	1 Sep 2018 23:12:08 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 
 
Index: gcc-4.3/criteria.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-4.3/criteria.html,v
retrieving revision 1.3
diff -u -r1.3 criteria.html
--- gcc-4.3/criteria.html	2 Jun 2018 21:16:16 -0000	1.3
+++ gcc-4.3/criteria.html	1 Sep 2018 23:12:08 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 
 <head>
Index: gcc-4.3/cxx0x_status.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-4.3/cxx0x_status.html,v
retrieving revision 1.14
diff -u -r1.14 cxx0x_status.html
--- gcc-4.3/cxx0x_status.html	2 Jun 2018 21:16:16 -0000	1.14
+++ gcc-4.3/cxx0x_status.html	1 Sep 2018 23:12:08 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 
 <head>
Index: gcc-4.3/index.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-4.3/index.html,v
retrieving revision 1.13
diff -u -r1.13 index.html
--- gcc-4.3/index.html	27 Aug 2018 04:20:18 -0000	1.13
+++ gcc-4.3/index.html	1 Sep 2018 23:12:08 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 
 <head>
Index: gcc-4.3/porting_to.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-4.3/porting_to.html,v
retrieving revision 1.16
diff -u -r1.16 porting_to.html
--- gcc-4.3/porting_to.html	2 Jun 2018 21:16:16 -0000	1.16
+++ gcc-4.3/porting_to.html	1 Sep 2018 23:12:08 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 
 <head>
Index: gcc-4.4/buildstat.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-4.4/buildstat.html,v
retrieving revision 1.33
diff -u -r1.33 buildstat.html
--- gcc-4.4/buildstat.html	2 Jun 2018 21:16:16 -0000	1.33
+++ gcc-4.4/buildstat.html	1 Sep 2018 23:12:08 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 
 <head>
Index: gcc-4.4/changes.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-4.4/changes.html,v
retrieving revision 1.92
diff -u -r1.92 changes.html
--- gcc-4.4/changes.html	26 Aug 2018 13:04:29 -0000	1.92
+++ gcc-4.4/changes.html	1 Sep 2018 23:12:09 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 
 <head>
Index: gcc-4.4/criteria.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-4.4/criteria.html,v
retrieving revision 1.2
diff -u -r1.2 criteria.html
--- gcc-4.4/criteria.html	2 Jun 2018 21:16:16 -0000	1.2
+++ gcc-4.4/criteria.html	1 Sep 2018 23:12:09 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 
 <head>
Index: gcc-4.4/cxx0x_status.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-4.4/cxx0x_status.html,v
retrieving revision 1.14
diff -u -r1.14 cxx0x_status.html
--- gcc-4.4/cxx0x_status.html	2 Jun 2018 21:16:16 -0000	1.14
+++ gcc-4.4/cxx0x_status.html	1 Sep 2018 23:12:09 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 
 <head>
Index: gcc-4.4/index.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-4.4/index.html,v
retrieving revision 1.15
diff -u -r1.15 index.html
--- gcc-4.4/index.html	27 Aug 2018 04:20:18 -0000	1.15
+++ gcc-4.4/index.html	1 Sep 2018 23:12:09 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 
 <head>
Index: gcc-4.4/porting_to.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-4.4/porting_to.html,v
retrieving revision 1.11
diff -u -r1.11 porting_to.html
--- gcc-4.4/porting_to.html	2 Jun 2018 21:16:16 -0000	1.11
+++ gcc-4.4/porting_to.html	1 Sep 2018 23:12:09 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 
 <head>
Index: gcc-4.5/buildstat.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-4.5/buildstat.html,v
retrieving revision 1.21
diff -u -r1.21 buildstat.html
--- gcc-4.5/buildstat.html	2 Jun 2018 21:16:16 -0000	1.21
+++ gcc-4.5/buildstat.html	1 Sep 2018 23:12:09 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 
 <head>
Index: gcc-4.5/changes.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-4.5/changes.html,v
retrieving revision 1.120
diff -u -r1.120 changes.html
--- gcc-4.5/changes.html	26 Aug 2018 13:04:29 -0000	1.120
+++ gcc-4.5/changes.html	1 Sep 2018 23:12:12 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 
 <head>
Index: gcc-4.5/criteria.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-4.5/criteria.html,v
retrieving revision 1.4
diff -u -r1.4 criteria.html
--- gcc-4.5/criteria.html	2 Jun 2018 21:16:16 -0000	1.4
+++ gcc-4.5/criteria.html	1 Sep 2018 23:12:12 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 
 <head>
Index: gcc-4.5/cxx0x_status.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-4.5/cxx0x_status.html,v
retrieving revision 1.13
diff -u -r1.13 cxx0x_status.html
--- gcc-4.5/cxx0x_status.html	2 Jun 2018 21:16:16 -0000	1.13
+++ gcc-4.5/cxx0x_status.html	1 Sep 2018 23:12:12 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 
 <head>
Index: gcc-4.5/index.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-4.5/index.html,v
retrieving revision 1.11
diff -u -r1.11 index.html
--- gcc-4.5/index.html	27 Aug 2018 04:20:19 -0000	1.11
+++ gcc-4.5/index.html	1 Sep 2018 23:12:12 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 
 <head>
Index: gcc-4.6/buildstat.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-4.6/buildstat.html,v
retrieving revision 1.20
diff -u -r1.20 buildstat.html
--- gcc-4.6/buildstat.html	2 Jun 2018 21:16:16 -0000	1.20
+++ gcc-4.6/buildstat.html	1 Sep 2018 23:12:12 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 
 <head>
Index: gcc-4.6/changes.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-4.6/changes.html,v
retrieving revision 1.157
diff -u -r1.157 changes.html
--- gcc-4.6/changes.html	26 Aug 2018 13:04:29 -0000	1.157
+++ gcc-4.6/changes.html	1 Sep 2018 23:12:13 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 
 <head>
Index: gcc-4.6/criteria.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-4.6/criteria.html,v
retrieving revision 1.5
diff -u -r1.5 criteria.html
--- gcc-4.6/criteria.html	2 Jun 2018 21:16:16 -0000	1.5
+++ gcc-4.6/criteria.html	1 Sep 2018 23:12:13 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 
 <head>
Index: gcc-4.6/cxx0x_status.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-4.6/cxx0x_status.html,v
retrieving revision 1.14
diff -u -r1.14 cxx0x_status.html
--- gcc-4.6/cxx0x_status.html	2 Jun 2018 21:16:17 -0000	1.14
+++ gcc-4.6/cxx0x_status.html	1 Sep 2018 23:12:13 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 
 <head>
Index: gcc-4.6/index.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-4.6/index.html,v
retrieving revision 1.12
diff -u -r1.12 index.html
--- gcc-4.6/index.html	27 Aug 2018 04:20:19 -0000	1.12
+++ gcc-4.6/index.html	1 Sep 2018 23:12:13 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 
 <head>
Index: gcc-4.6/porting_to.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-4.6/porting_to.html,v
retrieving revision 1.10
diff -u -r1.10 porting_to.html
--- gcc-4.6/porting_to.html	2 Jun 2018 21:16:17 -0000	1.10
+++ gcc-4.6/porting_to.html	1 Sep 2018 23:12:13 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 
 <head>
Index: gcc-4.7/buildstat.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-4.7/buildstat.html,v
retrieving revision 1.16
diff -u -r1.16 buildstat.html
--- gcc-4.7/buildstat.html	2 Jun 2018 21:16:17 -0000	1.16
+++ gcc-4.7/buildstat.html	1 Sep 2018 23:12:13 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 
 <head>
Index: gcc-4.7/changes.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-4.7/changes.html,v
retrieving revision 1.151
diff -u -r1.151 changes.html
--- gcc-4.7/changes.html	26 Aug 2018 15:34:41 -0000	1.151
+++ gcc-4.7/changes.html	1 Sep 2018 23:12:13 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 
 <head>
Index: gcc-4.7/criteria.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-4.7/criteria.html,v
retrieving revision 1.3
diff -u -r1.3 criteria.html
--- gcc-4.7/criteria.html	2 Jun 2018 21:16:17 -0000	1.3
+++ gcc-4.7/criteria.html	1 Sep 2018 23:12:13 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 
 <head>
Index: gcc-4.7/cxx0x_status.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-4.7/cxx0x_status.html,v
retrieving revision 1.10
diff -u -r1.10 cxx0x_status.html
--- gcc-4.7/cxx0x_status.html	2 Jun 2018 21:16:17 -0000	1.10
+++ gcc-4.7/cxx0x_status.html	1 Sep 2018 23:12:13 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 
 <head>
Index: gcc-4.7/index.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-4.7/index.html,v
retrieving revision 1.12
diff -u -r1.12 index.html
--- gcc-4.7/index.html	27 Aug 2018 04:20:19 -0000	1.12
+++ gcc-4.7/index.html	1 Sep 2018 23:12:13 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 
 <head>
Index: gcc-4.7/porting_to.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-4.7/porting_to.html,v
retrieving revision 1.12
diff -u -r1.12 porting_to.html
--- gcc-4.7/porting_to.html	2 Jun 2018 21:16:17 -0000	1.12
+++ gcc-4.7/porting_to.html	1 Sep 2018 23:12:13 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 
 <head>
Index: gcc-4.8/buildstat.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-4.8/buildstat.html,v
retrieving revision 1.18
diff -u -r1.18 buildstat.html
--- gcc-4.8/buildstat.html	2 Jun 2018 21:16:17 -0000	1.18
+++ gcc-4.8/buildstat.html	1 Sep 2018 23:12:13 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 
 <head>
Index: gcc-4.8/changes.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-4.8/changes.html,v
retrieving revision 1.141
diff -u -r1.141 changes.html
--- gcc-4.8/changes.html	26 Aug 2018 13:04:29 -0000	1.141
+++ gcc-4.8/changes.html	1 Sep 2018 23:12:13 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 
 <head>
Index: gcc-4.8/criteria.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-4.8/criteria.html,v
retrieving revision 1.3
diff -u -r1.3 criteria.html
--- gcc-4.8/criteria.html	2 Jun 2018 21:16:17 -0000	1.3
+++ gcc-4.8/criteria.html	1 Sep 2018 23:12:13 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 
 <head>
Index: gcc-4.8/cxx0x_status.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-4.8/cxx0x_status.html,v
retrieving revision 1.12
diff -u -r1.12 cxx0x_status.html
--- gcc-4.8/cxx0x_status.html	2 Jun 2018 21:16:17 -0000	1.12
+++ gcc-4.8/cxx0x_status.html	1 Sep 2018 23:12:13 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 
 <head>
Index: gcc-4.8/index.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-4.8/index.html,v
retrieving revision 1.12
diff -u -r1.12 index.html
--- gcc-4.8/index.html	27 Aug 2018 04:20:19 -0000	1.12
+++ gcc-4.8/index.html	1 Sep 2018 23:12:13 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 
 <head>
Index: gcc-4.8/porting_to.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-4.8/porting_to.html,v
retrieving revision 1.7
diff -u -r1.7 porting_to.html
--- gcc-4.8/porting_to.html	2 Jun 2018 21:16:17 -0000	1.7
+++ gcc-4.8/porting_to.html	1 Sep 2018 23:12:14 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 
 <head>
Index: gcc-4.9/buildstat.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-4.9/buildstat.html,v
retrieving revision 1.13
diff -u -r1.13 buildstat.html
--- gcc-4.9/buildstat.html	2 Jun 2018 21:16:17 -0000	1.13
+++ gcc-4.9/buildstat.html	1 Sep 2018 23:12:14 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 
 <head>
Index: gcc-4.9/changes.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-4.9/changes.html,v
retrieving revision 1.93
diff -u -r1.93 changes.html
--- gcc-4.9/changes.html	26 Aug 2018 13:04:29 -0000	1.93
+++ gcc-4.9/changes.html	1 Sep 2018 23:12:14 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 
 <head>
Index: gcc-4.9/criteria.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-4.9/criteria.html,v
retrieving revision 1.4
diff -u -r1.4 criteria.html
--- gcc-4.9/criteria.html	2 Jun 2018 21:16:17 -0000	1.4
+++ gcc-4.9/criteria.html	1 Sep 2018 23:12:14 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 
 <head>
Index: gcc-4.9/index.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-4.9/index.html,v
retrieving revision 1.10
diff -u -r1.10 index.html
--- gcc-4.9/index.html	27 Aug 2018 04:20:19 -0000	1.10
+++ gcc-4.9/index.html	1 Sep 2018 23:12:14 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 
 <head>
Index: gcc-4.9/porting_to.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-4.9/porting_to.html,v
retrieving revision 1.10
diff -u -r1.10 porting_to.html
--- gcc-4.9/porting_to.html	2 Jun 2018 21:16:17 -0000	1.10
+++ gcc-4.9/porting_to.html	1 Sep 2018 23:12:14 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 
 <head>
Index: gcc-5/buildstat.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-5/buildstat.html,v
retrieving revision 1.13
diff -u -r1.13 buildstat.html
--- gcc-5/buildstat.html	2 Jun 2018 21:16:17 -0000	1.13
+++ gcc-5/buildstat.html	1 Sep 2018 23:12:15 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 
 <head>
Index: gcc-5/changes.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-5/changes.html,v
retrieving revision 1.152
diff -u -r1.152 changes.html
--- gcc-5/changes.html	1 Sep 2018 12:30:57 -0000	1.152
+++ gcc-5/changes.html	1 Sep 2018 23:12:15 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 
 <head>
Index: gcc-5/criteria.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-5/criteria.html,v
retrieving revision 1.5
diff -u -r1.5 criteria.html
--- gcc-5/criteria.html	2 Jun 2018 21:16:17 -0000	1.5
+++ gcc-5/criteria.html	1 Sep 2018 23:12:15 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 
 <head>
Index: gcc-5/index.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-5/index.html,v
retrieving revision 1.8
diff -u -r1.8 index.html
--- gcc-5/index.html	27 Aug 2018 04:20:19 -0000	1.8
+++ gcc-5/index.html	1 Sep 2018 23:12:15 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 
 <head>
Index: gcc-5/porting_to.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-5/porting_to.html,v
retrieving revision 1.13
diff -u -r1.13 porting_to.html
--- gcc-5/porting_to.html	2 Jun 2018 21:16:17 -0000	1.13
+++ gcc-5/porting_to.html	1 Sep 2018 23:12:15 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 
 <head>
Index: gcc-6/buildstat.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-6/buildstat.html,v
retrieving revision 1.8
diff -u -r1.8 buildstat.html
--- gcc-6/buildstat.html	3 Jun 2018 22:49:54 -0000	1.8
+++ gcc-6/buildstat.html	1 Sep 2018 23:12:15 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 
 <head>
Index: gcc-6/changes.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-6/changes.html,v
retrieving revision 1.105
diff -u -r1.105 changes.html
--- gcc-6/changes.html	10 Jun 2018 14:12:46 -0000	1.105
+++ gcc-6/changes.html	1 Sep 2018 23:12:16 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 
 <head>
Index: gcc-6/criteria.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-6/criteria.html,v
retrieving revision 1.2
diff -u -r1.2 criteria.html
--- gcc-6/criteria.html	2 Jun 2018 21:16:17 -0000	1.2
+++ gcc-6/criteria.html	1 Sep 2018 23:12:16 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 
 <head>
Index: gcc-6/index.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-6/index.html,v
retrieving revision 1.10
diff -u -r1.10 index.html
--- gcc-6/index.html	10 Jun 2018 14:15:22 -0000	1.10
+++ gcc-6/index.html	1 Sep 2018 23:12:16 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 
 <head>
Index: gcc-6/porting_to.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-6/porting_to.html,v
retrieving revision 1.26
diff -u -r1.26 porting_to.html
--- gcc-6/porting_to.html	2 Jun 2018 21:16:18 -0000	1.26
+++ gcc-6/porting_to.html	1 Sep 2018 23:12:16 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 
 <head>
Index: gcc-7/buildstat.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-7/buildstat.html,v
retrieving revision 1.4
diff -u -r1.4 buildstat.html
--- gcc-7/buildstat.html	2 Jun 2018 21:16:18 -0000	1.4
+++ gcc-7/buildstat.html	1 Sep 2018 23:12:16 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 
 <head>
Index: gcc-7/changes.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-7/changes.html,v
retrieving revision 1.108
diff -u -r1.108 changes.html
--- gcc-7/changes.html	1 Sep 2018 12:30:57 -0000	1.108
+++ gcc-7/changes.html	1 Sep 2018 23:12:17 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 
 <head>
Index: gcc-7/criteria.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-7/criteria.html,v
retrieving revision 1.5
diff -u -r1.5 criteria.html
--- gcc-7/criteria.html	2 Jun 2018 21:16:18 -0000	1.5
+++ gcc-7/criteria.html	1 Sep 2018 23:12:17 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 
 <head>
Index: gcc-7/index.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-7/index.html,v
retrieving revision 1.8
diff -u -r1.8 index.html
--- gcc-7/index.html	10 Jun 2018 14:15:44 -0000	1.8
+++ gcc-7/index.html	1 Sep 2018 23:12:17 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 
 <head>
Index: gcc-7/porting_to.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-7/porting_to.html,v
retrieving revision 1.15
diff -u -r1.15 porting_to.html
--- gcc-7/porting_to.html	2 Jun 2018 21:16:18 -0000	1.15
+++ gcc-7/porting_to.html	1 Sep 2018 23:12:17 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 
 <head>
Index: gcc-8/buildstat.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-8/buildstat.html,v
retrieving revision 1.3
diff -u -r1.3 buildstat.html
--- gcc-8/buildstat.html	3 Jun 2018 22:32:02 -0000	1.3
+++ gcc-8/buildstat.html	1 Sep 2018 23:12:17 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 
 <head>
Index: gcc-8/changes.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-8/changes.html,v
retrieving revision 1.93
diff -u -r1.93 changes.html
--- gcc-8/changes.html	26 Jul 2018 09:43:47 -0000	1.93
+++ gcc-8/changes.html	1 Sep 2018 23:12:18 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 <head>
 <title>GCC 8 Release Series — Changes, New Features, and Fixes</title>
Index: gcc-8/criteria.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-8/criteria.html,v
retrieving revision 1.3
diff -u -r1.3 criteria.html
--- gcc-8/criteria.html	17 Jul 2018 18:44:19 -0000	1.3
+++ gcc-8/criteria.html	1 Sep 2018 23:12:18 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 
 <head>
Index: gcc-8/index.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-8/index.html,v
retrieving revision 1.9
diff -u -r1.9 index.html
--- gcc-8/index.html	27 Aug 2018 04:20:19 -0000	1.9
+++ gcc-8/index.html	1 Sep 2018 23:12:18 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 
 <head>
Index: gcc-8/porting_to.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-8/porting_to.html,v
retrieving revision 1.9
diff -u -r1.9 porting_to.html
--- gcc-8/porting_to.html	2 Jun 2018 21:16:18 -0000	1.9
+++ gcc-8/porting_to.html	1 Sep 2018 23:12:18 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 
 <head>
Index: gcc-9/changes.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-9/changes.html,v
retrieving revision 1.18
diff -u -r1.18 changes.html
--- gcc-9/changes.html	22 Aug 2018 21:57:49 -0000	1.18
+++ gcc-9/changes.html	1 Sep 2018 23:12:19 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 <head>
 <title>GCC 9 Release Series — Changes, New Features, and Fixes</title>
Index: gcc-9/criteria.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-9/criteria.html,v
retrieving revision 1.2
diff -u -r1.2 criteria.html
--- gcc-9/criteria.html	2 Jun 2018 21:16:18 -0000	1.2
+++ gcc-9/criteria.html	1 Sep 2018 23:12:19 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 
 <head>
Index: news/alias.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/news/alias.html,v
retrieving revision 1.6
diff -u -r1.6 alias.html
--- news/alias.html	2 Jun 2018 21:16:18 -0000	1.6
+++ news/alias.html	1 Sep 2018 23:12:19 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 
 <head>
Index: news/announcement.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/news/announcement.html,v
retrieving revision 1.3
diff -u -r1.3 announcement.html
--- news/announcement.html	2 Jun 2018 21:16:18 -0000	1.3
+++ news/announcement.html	1 Sep 2018 23:12:19 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 
 <head>
Index: news/cfg.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/news/cfg.html,v
retrieving revision 1.7
diff -u -r1.7 cfg.html
--- news/cfg.html	2 Jun 2018 21:16:18 -0000	1.7
+++ news/cfg.html	1 Sep 2018 23:12:19 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 
 <head>
Index: news/chill.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/news/chill.html,v
retrieving revision 1.7
diff -u -r1.7 chill.html
--- news/chill.html	2 Jun 2018 21:16:18 -0000	1.7
+++ news/chill.html	1 Sep 2018 23:12:19 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 
 <head>
Index: news/cprop.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/news/cprop.html,v
retrieving revision 1.6
diff -u -r1.6 cprop.html
--- news/cprop.html	2 Jun 2018 21:16:18 -0000	1.6
+++ news/cprop.html	1 Sep 2018 23:12:19 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 
 <head>
Index: news/dependencies.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/news/dependencies.html,v
retrieving revision 1.5
diff -u -r1.5 dependencies.html
--- news/dependencies.html	2 Jun 2018 21:16:18 -0000	1.5
+++ news/dependencies.html	1 Sep 2018 23:12:19 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 
 <head>
Index: news/dfa.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/news/dfa.html,v
retrieving revision 1.9
diff -u -r1.9 dfa.html
--- news/dfa.html	2 Jun 2018 21:16:18 -0000	1.9
+++ news/dfa.html	1 Sep 2018 23:12:19 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 
 <head>
Index: news/dse.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/news/dse.html,v
retrieving revision 1.5
diff -u -r1.5 dse.html
--- news/dse.html	2 Jun 2018 21:16:18 -0000	1.5
+++ news/dse.html	1 Sep 2018 23:12:19 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 
 <head>
Index: news/egcs-vcg.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/news/egcs-vcg.html,v
retrieving revision 1.13
diff -u -r1.13 egcs-vcg.html
--- news/egcs-vcg.html	2 Jun 2018 21:16:18 -0000	1.13
+++ news/egcs-vcg.html	1 Sep 2018 23:12:19 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 
 <head>
Index: news/gcse.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/news/gcse.html,v
retrieving revision 1.5
diff -u -r1.5 gcse.html
--- news/gcse.html	2 Jun 2018 21:16:18 -0000	1.5
+++ news/gcse.html	1 Sep 2018 23:12:19 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 
 <head>
Index: news/hoist.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/news/hoist.html,v
retrieving revision 1.5
diff -u -r1.5 hoist.html
--- news/hoist.html	2 Jun 2018 21:16:18 -0000	1.5
+++ news/hoist.html	1 Sep 2018 23:12:19 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 
 <head>
Index: news/ia32.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/news/ia32.html,v
retrieving revision 1.8
diff -u -r1.8 ia32.html
--- news/ia32.html	2 Jun 2018 21:16:18 -0000	1.8
+++ news/ia32.html	1 Sep 2018 23:12:19 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 
 <head>
Index: news/inlining.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/news/inlining.html,v
retrieving revision 1.8
diff -u -r1.8 inlining.html
--- news/inlining.html	2 Jun 2018 21:16:18 -0000	1.8
+++ news/inlining.html	1 Sep 2018 23:12:19 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 
 <head>
Index: news/javaannounce.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/news/javaannounce.html,v
retrieving revision 1.8
diff -u -r1.8 javaannounce.html
--- news/javaannounce.html	2 Jun 2018 21:16:18 -0000	1.8
+++ news/javaannounce.html	1 Sep 2018 23:12:19 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 
 <head>
Index: news/lcm.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/news/lcm.html,v
retrieving revision 1.4
diff -u -r1.4 lcm.html
--- news/lcm.html	2 Jun 2018 21:16:18 -0000	1.4
+++ news/lcm.html	1 Sep 2018 23:12:19 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 
 <head>
Index: news/null.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/news/null.html,v
retrieving revision 1.6
diff -u -r1.6 null.html
--- news/null.html	2 Jun 2018 21:16:18 -0000	1.6
+++ news/null.html	1 Sep 2018 23:12:19 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 
 <head>
Index: news/profiledriven.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/news/profiledriven.html,v
retrieving revision 1.14
diff -u -r1.14 profiledriven.html
--- news/profiledriven.html	26 Aug 2018 12:01:28 -0000	1.14
+++ news/profiledriven.html	1 Sep 2018 23:12:20 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 
 <head>
Index: news/reorder.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/news/reorder.html,v
retrieving revision 1.4
diff -u -r1.4 reorder.html
--- news/reorder.html	2 Jun 2018 21:16:18 -0000	1.4
+++ news/reorder.html	1 Sep 2018 23:12:20 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 
 <head>
Index: news/server.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/news/server.html,v
retrieving revision 1.5
diff -u -r1.5 server.html
--- news/server.html	2 Jun 2018 21:16:18 -0000	1.5
+++ news/server.html	1 Sep 2018 23:12:20 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 
 <head>
Index: news/sms.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/news/sms.html,v
retrieving revision 1.8
diff -u -r1.8 sms.html
--- news/sms.html	2 Jun 2018 21:16:18 -0000	1.8
+++ news/sms.html	1 Sep 2018 23:12:20 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 
 <head>
Index: news/sparc.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/news/sparc.html,v
retrieving revision 1.8
diff -u -r1.8 sparc.html
--- news/sparc.html	2 Jun 2018 21:16:18 -0000	1.8
+++ news/sparc.html	1 Sep 2018 23:12:20 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 
 <head>
Index: news/spill.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/news/spill.html,v
retrieving revision 1.5
diff -u -r1.5 spill.html
--- news/spill.html	2 Jun 2018 21:16:18 -0000	1.5
+++ news/spill.html	1 Sep 2018 23:12:20 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 
 <head>
Index: news/ssa-ccp.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/news/ssa-ccp.html,v
retrieving revision 1.4
diff -u -r1.4 ssa-ccp.html
--- news/ssa-ccp.html	2 Jun 2018 21:16:18 -0000	1.4
+++ news/ssa-ccp.html	1 Sep 2018 23:12:20 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 
 <head>
Index: news/ssa.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/news/ssa.html,v
retrieving revision 1.10
diff -u -r1.10 ssa.html
--- news/ssa.html	2 Jun 2018 21:16:18 -0000	1.10
+++ news/ssa.html	1 Sep 2018 23:12:20 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 
 <head>
Index: news/unify.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/news/unify.html,v
retrieving revision 1.5
diff -u -r1.5 unify.html
--- news/unify.html	2 Jun 2018 21:16:18 -0000	1.5
+++ news/unify.html	1 Sep 2018 23:12:20 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 
 <head>
Index: onlinedocs/index.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/onlinedocs/index.html,v
retrieving revision 1.171
diff -u -r1.171 index.html
--- onlinedocs/index.html	26 Jul 2018 10:40:16 -0000	1.171
+++ onlinedocs/index.html	1 Sep 2018 23:12:21 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 
 <head>
Index: projects/ast-optimizer.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/projects/ast-optimizer.html,v
retrieving revision 1.11
diff -u -r1.11 ast-optimizer.html
--- projects/ast-optimizer.html	29 Jul 2018 20:31:35 -0000	1.11
+++ projects/ast-optimizer.html	1 Sep 2018 23:12:21 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 <head>
 <title>Abstract Syntax Tree Optimizations</title>
Index: projects/beginner.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/projects/beginner.html,v
retrieving revision 1.67
diff -u -r1.67 beginner.html
--- projects/beginner.html	2 Jun 2018 21:16:20 -0000	1.67
+++ projects/beginner.html	1 Sep 2018 23:12:21 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 
 <head>
Index: projects/c-frontend.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/projects/c-frontend.html,v
retrieving revision 1.4
diff -u -r1.4 c-frontend.html
--- projects/c-frontend.html	2 Jun 2018 21:16:20 -0000	1.4
+++ projects/c-frontend.html	1 Sep 2018 23:12:21 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 
 <head>
Index: projects/cfg.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/projects/cfg.html,v
retrieving revision 1.27
diff -u -r1.27 cfg.html
--- projects/cfg.html	29 Jul 2018 20:43:42 -0000	1.27
+++ projects/cfg.html	1 Sep 2018 23:12:22 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 
 <head>
Index: projects/cfo.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/projects/cfo.html,v
retrieving revision 1.13
diff -u -r1.13 cfo.html
--- projects/cfo.html	29 Jul 2018 20:43:42 -0000	1.13
+++ projects/cfo.html	1 Sep 2018 23:12:22 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 <head>
 <title>Code Factoring Optimizations</title>
Index: projects/cli.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/projects/cli.html,v
retrieving revision 1.33
diff -u -r1.33 cli.html
--- projects/cli.html	1 Sep 2018 12:04:05 -0000	1.33
+++ projects/cli.html	1 Sep 2018 23:12:22 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 <head>
 <title>CLI Back-End and Front-End</title>
Index: projects/cpplib.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/projects/cpplib.html,v
retrieving revision 1.25
diff -u -r1.25 cpplib.html
--- projects/cpplib.html	29 Jul 2018 20:31:35 -0000	1.25
+++ projects/cpplib.html	1 Sep 2018 23:12:22 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 
 <head>
Index: projects/cxx-status.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/projects/cxx-status.html,v
retrieving revision 1.57
diff -u -r1.57 cxx-status.html
--- projects/cxx-status.html	13 Aug 2018 15:57:29 -0000	1.57
+++ projects/cxx-status.html	1 Sep 2018 23:12:22 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 <head>
   <title>C++ Standards Support in GCC</title>
Index: projects/cxx0x.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/projects/cxx0x.html,v
retrieving revision 1.75
diff -u -r1.75 cxx0x.html
--- projects/cxx0x.html	2 Jun 2018 21:16:20 -0000	1.75
+++ projects/cxx0x.html	1 Sep 2018 23:12:22 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
   <head> 
     <meta http-equiv="refresh" content="1; url=cxx-status.html#cxx11" />
Index: projects/cxx1y.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/projects/cxx1y.html,v
retrieving revision 1.31
diff -u -r1.31 cxx1y.html
--- projects/cxx1y.html	2 Jun 2018 21:16:20 -0000	1.31
+++ projects/cxx1y.html	1 Sep 2018 23:12:22 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
   <head> 
     <meta http-equiv="refresh" content="1; url=cxx-status.html#cxx14" />
Index: projects/documentation.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/projects/documentation.html,v
retrieving revision 1.12
diff -u -r1.12 documentation.html
--- projects/documentation.html	29 Jul 2018 20:31:35 -0000	1.12
+++ projects/documentation.html	1 Sep 2018 23:12:23 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 
 <head>
Index: projects/gupc.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/projects/gupc.html,v
retrieving revision 1.15
diff -u -r1.15 gupc.html
--- projects/gupc.html	2 Jun 2018 21:16:20 -0000	1.15
+++ projects/gupc.html	1 Sep 2018 23:12:23 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 <head>
 <title>GUPC — A UPC implementation for GCC</title>
Index: projects/h8300-abi.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/projects/h8300-abi.html,v
retrieving revision 1.8
diff -u -r1.8 h8300-abi.html
--- projects/h8300-abi.html	2 Jun 2018 21:16:20 -0000	1.8
+++ projects/h8300-abi.html	1 Sep 2018 23:12:23 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 <head>
 <title>H8/300 Application Binary Interface for GCC</title>
Index: projects/ia64.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/projects/ia64.html,v
retrieving revision 1.26
diff -u -r1.26 ia64.html
--- projects/ia64.html	29 Jul 2018 20:31:35 -0000	1.26
+++ projects/ia64.html	1 Sep 2018 23:12:23 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 
 <head>
Index: projects/index.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/projects/index.html,v
retrieving revision 1.73
diff -u -r1.73 index.html
--- projects/index.html	29 Jul 2018 20:31:35 -0000	1.73
+++ projects/index.html	1 Sep 2018 23:12:23 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 
 <head>
Index: projects/mipso64-abi.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/projects/mipso64-abi.html,v
retrieving revision 1.2
diff -u -r1.2 mipso64-abi.html
--- projects/mipso64-abi.html	2 Jun 2018 21:16:20 -0000	1.2
+++ projects/mipso64-abi.html	1 Sep 2018 23:12:23 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 <head>
 <title>MIPS O64 Application Binary Interface for GCC</title>
Index: projects/optimize.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/projects/optimize.html,v
retrieving revision 1.16
diff -u -r1.16 optimize.html
--- projects/optimize.html	29 Jul 2018 20:31:35 -0000	1.16
+++ projects/optimize.html	1 Sep 2018 23:12:23 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 
 <head>
Index: projects/prefetch.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/projects/prefetch.html,v
retrieving revision 1.35
diff -u -r1.35 prefetch.html
--- projects/prefetch.html	29 Jul 2018 20:43:43 -0000	1.35
+++ projects/prefetch.html	1 Sep 2018 23:12:24 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 
 <head>
Index: projects/sched-treegion.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/projects/sched-treegion.html,v
retrieving revision 1.9
diff -u -r1.9 sched-treegion.html
--- projects/sched-treegion.html	29 Jul 2018 20:31:35 -0000	1.9
+++ projects/sched-treegion.html	1 Sep 2018 23:12:24 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 <head>
 <title>Treegion Scheduling</title>
Index: projects/tree-profiling.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/projects/tree-profiling.html,v
retrieving revision 1.4
diff -u -r1.4 tree-profiling.html
--- projects/tree-profiling.html	2 Jun 2018 21:16:21 -0000	1.4
+++ projects/tree-profiling.html	1 Sep 2018 23:12:24 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 
 <head>
Index: projects/x86.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/projects/x86.html,v
retrieving revision 1.4
diff -u -r1.4 x86.html
--- projects/x86.html	29 Jul 2018 20:31:36 -0000	1.4
+++ projects/x86.html	1 Sep 2018 23:12:24 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 
 <head>
Index: testing/index.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/testing/index.html,v
retrieving revision 1.39
diff -u -r1.39 index.html
--- testing/index.html	2 Jun 2018 21:16:21 -0000	1.39
+++ testing/index.html	1 Sep 2018 23:12:25 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 
 <head>
Index: testing/testing-blitz.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/testing/testing-blitz.html,v
retrieving revision 1.9
diff -u -r1.9 testing-blitz.html
--- testing/testing-blitz.html	2 Jun 2018 21:16:21 -0000	1.9
+++ testing/testing-blitz.html	1 Sep 2018 23:12:25 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 
 <head>
Index: testing/testing-boost.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/testing/testing-boost.html,v
retrieving revision 1.8
diff -u -r1.8 testing-boost.html
--- testing/testing-boost.html	2 Jun 2018 21:16:21 -0000	1.8
+++ testing/testing-boost.html	1 Sep 2018 23:12:25 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 
 <head>
Index: testing/testing-ftensor.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/testing/testing-ftensor.html,v
retrieving revision 1.7
diff -u -r1.7 testing-ftensor.html
--- testing/testing-ftensor.html	2 Jun 2018 21:16:21 -0000	1.7
+++ testing/testing-ftensor.html	1 Sep 2018 23:12:25 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 
 <head>
Index: testing/testing-lapack.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/testing/testing-lapack.html,v
retrieving revision 1.4
diff -u -r1.4 testing-lapack.html
--- testing/testing-lapack.html	2 Jun 2018 21:16:21 -0000	1.4
+++ testing/testing-lapack.html	1 Sep 2018 23:12:25 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 
 <head>
Index: testing/testing-pooma.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/testing/testing-pooma.html,v
retrieving revision 1.8
diff -u -r1.8 testing-pooma.html
--- testing/testing-pooma.html	2 Jun 2018 21:16:21 -0000	1.8
+++ testing/testing-pooma.html	1 Sep 2018 23:12:25 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 
 <head>
Index: testing/testing-qt.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/testing/testing-qt.html,v
retrieving revision 1.8
diff -u -r1.8 testing-qt.html
--- testing/testing-qt.html	2 Jun 2018 21:16:21 -0000	1.8
+++ testing/testing-qt.html	1 Sep 2018 23:12:25 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 
 <head>
Index: onlinedocs/4.6.0/index.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/onlinedocs/4.6.0/index.html,v
retrieving revision 1.3
diff -u -r1.3 index.html
--- onlinedocs/4.6.0/index.html	2 Jun 2018 21:16:19 -0000	1.3
+++ onlinedocs/4.6.0/index.html	1 Sep 2018 23:12:25 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 
 <head>
Index: onlinedocs/4.6.1/index.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/onlinedocs/4.6.1/index.html,v
retrieving revision 1.3
diff -u -r1.3 index.html
--- onlinedocs/4.6.1/index.html	2 Jun 2018 21:16:19 -0000	1.3
+++ onlinedocs/4.6.1/index.html	1 Sep 2018 23:12:25 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 
 <head>
Index: onlinedocs/4.6.2/index.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/onlinedocs/4.6.2/index.html,v
retrieving revision 1.3
diff -u -r1.3 index.html
--- onlinedocs/4.6.2/index.html	2 Jun 2018 21:16:19 -0000	1.3
+++ onlinedocs/4.6.2/index.html	1 Sep 2018 23:12:25 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 
 <head>
Index: onlinedocs/4.6.3/index.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/onlinedocs/4.6.3/index.html,v
retrieving revision 1.3
diff -u -r1.3 index.html
--- onlinedocs/4.6.3/index.html	2 Jun 2018 21:16:19 -0000	1.3
+++ onlinedocs/4.6.3/index.html	1 Sep 2018 23:12:25 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 
 <head>
Index: onlinedocs/4.6.4/index.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/onlinedocs/4.6.4/index.html,v
retrieving revision 1.4
diff -u -r1.4 index.html
--- onlinedocs/4.6.4/index.html	2 Jun 2018 21:16:19 -0000	1.4
+++ onlinedocs/4.6.4/index.html	1 Sep 2018 23:12:25 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 
 <head>
Index: onlinedocs/4.7.0/index.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/onlinedocs/4.7.0/index.html,v
retrieving revision 1.3
diff -u -r1.3 index.html
--- onlinedocs/4.7.0/index.html	2 Jun 2018 21:16:19 -0000	1.3
+++ onlinedocs/4.7.0/index.html	1 Sep 2018 23:12:25 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 
 <head>
Index: onlinedocs/4.7.1/index.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/onlinedocs/4.7.1/index.html,v
retrieving revision 1.3
diff -u -r1.3 index.html
--- onlinedocs/4.7.1/index.html	2 Jun 2018 21:16:19 -0000	1.3
+++ onlinedocs/4.7.1/index.html	1 Sep 2018 23:12:25 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 
 <head>
Index: onlinedocs/4.7.2/index.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/onlinedocs/4.7.2/index.html,v
retrieving revision 1.3
diff -u -r1.3 index.html
--- onlinedocs/4.7.2/index.html	2 Jun 2018 21:16:19 -0000	1.3
+++ onlinedocs/4.7.2/index.html	1 Sep 2018 23:12:27 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 
 <head>
Index: onlinedocs/4.7.3/index.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/onlinedocs/4.7.3/index.html,v
retrieving revision 1.4
diff -u -r1.4 index.html
--- onlinedocs/4.7.3/index.html	2 Jun 2018 21:16:19 -0000	1.4
+++ onlinedocs/4.7.3/index.html	1 Sep 2018 23:12:27 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 
 <head>
Index: onlinedocs/4.7.4/index.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/onlinedocs/4.7.4/index.html,v
retrieving revision 1.3
diff -u -r1.3 index.html
--- onlinedocs/4.7.4/index.html	2 Jun 2018 21:16:19 -0000	1.3
+++ onlinedocs/4.7.4/index.html	1 Sep 2018 23:12:27 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 
 <head>
Index: onlinedocs/4.8.0/index.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/onlinedocs/4.8.0/index.html,v
retrieving revision 1.5
diff -u -r1.5 index.html
--- onlinedocs/4.8.0/index.html	2 Jun 2018 21:16:19 -0000	1.5
+++ onlinedocs/4.8.0/index.html	1 Sep 2018 23:12:27 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 
 <head>
Index: onlinedocs/4.8.1/index.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/onlinedocs/4.8.1/index.html,v
retrieving revision 1.4
diff -u -r1.4 index.html
--- onlinedocs/4.8.1/index.html	2 Jun 2018 21:16:19 -0000	1.4
+++ onlinedocs/4.8.1/index.html	1 Sep 2018 23:12:27 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 
 <head>
Index: onlinedocs/4.8.2/index.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/onlinedocs/4.8.2/index.html,v
retrieving revision 1.3
diff -u -r1.3 index.html
--- onlinedocs/4.8.2/index.html	2 Jun 2018 21:16:19 -0000	1.3
+++ onlinedocs/4.8.2/index.html	1 Sep 2018 23:12:27 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 
 <head>
Index: onlinedocs/4.8.3/index.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/onlinedocs/4.8.3/index.html,v
retrieving revision 1.3
diff -u -r1.3 index.html
--- onlinedocs/4.8.3/index.html	2 Jun 2018 21:16:19 -0000	1.3
+++ onlinedocs/4.8.3/index.html	1 Sep 2018 23:12:27 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 
 <head>
Index: onlinedocs/4.8.4/index.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/onlinedocs/4.8.4/index.html,v
retrieving revision 1.3
diff -u -r1.3 index.html
--- onlinedocs/4.8.4/index.html	2 Jun 2018 21:16:19 -0000	1.3
+++ onlinedocs/4.8.4/index.html	1 Sep 2018 23:12:27 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 
 <head>
Index: onlinedocs/4.8.5/index.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/onlinedocs/4.8.5/index.html,v
retrieving revision 1.3
diff -u -r1.3 index.html
--- onlinedocs/4.8.5/index.html	2 Jun 2018 21:16:19 -0000	1.3
+++ onlinedocs/4.8.5/index.html	1 Sep 2018 23:12:27 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 
 <head>
Index: onlinedocs/4.9.0/index.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/onlinedocs/4.9.0/index.html,v
retrieving revision 1.3
diff -u -r1.3 index.html
--- onlinedocs/4.9.0/index.html	2 Jun 2018 21:16:19 -0000	1.3
+++ onlinedocs/4.9.0/index.html	1 Sep 2018 23:12:27 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 
 <head>
Index: onlinedocs/4.9.1/index.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/onlinedocs/4.9.1/index.html,v
retrieving revision 1.2
diff -u -r1.2 index.html
--- onlinedocs/4.9.1/index.html	2 Jun 2018 21:16:19 -0000	1.2
+++ onlinedocs/4.9.1/index.html	1 Sep 2018 23:12:27 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 
 <head>
Index: onlinedocs/4.9.2/index.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/onlinedocs/4.9.2/index.html,v
retrieving revision 1.3
diff -u -r1.3 index.html
--- onlinedocs/4.9.2/index.html	2 Jun 2018 21:16:19 -0000	1.3
+++ onlinedocs/4.9.2/index.html	1 Sep 2018 23:12:27 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 
 <head>
Index: onlinedocs/4.9.3/index.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/onlinedocs/4.9.3/index.html,v
retrieving revision 1.3
diff -u -r1.3 index.html
--- onlinedocs/4.9.3/index.html	2 Jun 2018 21:16:19 -0000	1.3
+++ onlinedocs/4.9.3/index.html	1 Sep 2018 23:12:27 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 
 <head>
Index: onlinedocs/4.9.4/index.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/onlinedocs/4.9.4/index.html,v
retrieving revision 1.2
diff -u -r1.2 index.html
--- onlinedocs/4.9.4/index.html	2 Jun 2018 21:16:19 -0000	1.2
+++ onlinedocs/4.9.4/index.html	1 Sep 2018 23:12:27 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 
 <head>
Index: onlinedocs/5.1.0/index.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/onlinedocs/5.1.0/index.html,v
retrieving revision 1.3
diff -u -r1.3 index.html
--- onlinedocs/5.1.0/index.html	2 Jun 2018 21:16:19 -0000	1.3
+++ onlinedocs/5.1.0/index.html	1 Sep 2018 23:12:27 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 
 <head>
Index: onlinedocs/5.2.0/index.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/onlinedocs/5.2.0/index.html,v
retrieving revision 1.2
diff -u -r1.2 index.html
--- onlinedocs/5.2.0/index.html	2 Jun 2018 21:16:19 -0000	1.2
+++ onlinedocs/5.2.0/index.html	1 Sep 2018 23:12:27 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 
 <head>
Index: onlinedocs/5.3.0/index.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/onlinedocs/5.3.0/index.html,v
retrieving revision 1.2
diff -u -r1.2 index.html
--- onlinedocs/5.3.0/index.html	2 Jun 2018 21:16:19 -0000	1.2
+++ onlinedocs/5.3.0/index.html	1 Sep 2018 23:12:27 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 
 <head>
Index: onlinedocs/5.4.0/index.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/onlinedocs/5.4.0/index.html,v
retrieving revision 1.2
diff -u -r1.2 index.html
--- onlinedocs/5.4.0/index.html	2 Jun 2018 21:16:19 -0000	1.2
+++ onlinedocs/5.4.0/index.html	1 Sep 2018 23:12:27 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 
 <head>
Index: onlinedocs/5.5.0/index.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/onlinedocs/5.5.0/index.html,v
retrieving revision 1.2
diff -u -r1.2 index.html
--- onlinedocs/5.5.0/index.html	2 Jun 2018 21:16:20 -0000	1.2
+++ onlinedocs/5.5.0/index.html	1 Sep 2018 23:12:27 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 
 <head>
Index: onlinedocs/6.1.0/index.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/onlinedocs/6.1.0/index.html,v
retrieving revision 1.2
diff -u -r1.2 index.html
--- onlinedocs/6.1.0/index.html	2 Jun 2018 21:16:20 -0000	1.2
+++ onlinedocs/6.1.0/index.html	1 Sep 2018 23:12:27 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 
 <head>
Index: onlinedocs/6.2.0/index.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/onlinedocs/6.2.0/index.html,v
retrieving revision 1.2
diff -u -r1.2 index.html
--- onlinedocs/6.2.0/index.html	2 Jun 2018 21:16:20 -0000	1.2
+++ onlinedocs/6.2.0/index.html	1 Sep 2018 23:12:27 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 
 <head>
Index: onlinedocs/6.3.0/index.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/onlinedocs/6.3.0/index.html,v
retrieving revision 1.2
diff -u -r1.2 index.html
--- onlinedocs/6.3.0/index.html	2 Jun 2018 21:16:20 -0000	1.2
+++ onlinedocs/6.3.0/index.html	1 Sep 2018 23:12:27 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 
 <head>
Index: onlinedocs/6.4.0/index.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/onlinedocs/6.4.0/index.html,v
retrieving revision 1.2
diff -u -r1.2 index.html
--- onlinedocs/6.4.0/index.html	2 Jun 2018 21:16:20 -0000	1.2
+++ onlinedocs/6.4.0/index.html	1 Sep 2018 23:12:27 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 
 <head>
Index: onlinedocs/7.1.0/index.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/onlinedocs/7.1.0/index.html,v
retrieving revision 1.3
diff -u -r1.3 index.html
--- onlinedocs/7.1.0/index.html	2 Jun 2018 21:16:20 -0000	1.3
+++ onlinedocs/7.1.0/index.html	1 Sep 2018 23:12:27 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 
 <head>
Index: onlinedocs/7.2.0/index.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/onlinedocs/7.2.0/index.html,v
retrieving revision 1.2
diff -u -r1.2 index.html
--- onlinedocs/7.2.0/index.html	2 Jun 2018 21:16:20 -0000	1.2
+++ onlinedocs/7.2.0/index.html	1 Sep 2018 23:12:27 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 
 <head>
Index: onlinedocs/7.3.0/index.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/onlinedocs/7.3.0/index.html,v
retrieving revision 1.2
diff -u -r1.2 index.html
--- onlinedocs/7.3.0/index.html	2 Jun 2018 21:16:20 -0000	1.2
+++ onlinedocs/7.3.0/index.html	1 Sep 2018 23:12:27 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 
 <head>
Index: onlinedocs/8.1.0/index.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/onlinedocs/8.1.0/index.html,v
retrieving revision 1.2
diff -u -r1.2 index.html
--- onlinedocs/8.1.0/index.html	2 Jun 2018 21:16:20 -0000	1.2
+++ onlinedocs/8.1.0/index.html	1 Sep 2018 23:12:27 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 
 <head>
Index: onlinedocs/8.2.0/index.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/onlinedocs/8.2.0/index.html,v
retrieving revision 1.1
diff -u -r1.1 index.html
--- onlinedocs/8.2.0/index.html	26 Jul 2018 10:40:17 -0000	1.1
+++ onlinedocs/8.2.0/index.html	1 Sep 2018 23:12:27 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 
 <head>
Index: projects/bp/main.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/projects/bp/main.html,v
retrieving revision 1.21
diff -u -r1.21 main.html
--- projects/bp/main.html	2 Jun 2018 21:16:21 -0000	1.21
+++ projects/bp/main.html	1 Sep 2018 23:12:27 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 
 <head>
Index: projects/cxx-reflection/index.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/projects/cxx-reflection/index.html,v
retrieving revision 1.7
diff -u -r1.7 index.html
--- projects/cxx-reflection/index.html	2 Jun 2018 21:16:21 -0000	1.7
+++ projects/cxx-reflection/index.html	1 Sep 2018 23:12:27 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 <head>
 <title>Compile Time Reflection and Template Meta-Programming in C++</title>
Index: projects/gomp/index.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/projects/gomp/index.html,v
retrieving revision 1.24
diff -u -r1.24 index.html
--- projects/gomp/index.html	1 Sep 2018 12:30:57 -0000	1.24
+++ projects/gomp/index.html	1 Sep 2018 23:12:27 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 <head>
 <title>GOMP — An OpenMP implementation for GCC</title>
Index: projects/strees/index.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/projects/strees/index.html,v
retrieving revision 1.3
diff -u -r1.3 index.html
--- projects/strees/index.html	2 Jun 2018 21:16:21 -0000	1.3
+++ projects/strees/index.html	1 Sep 2018 23:12:28 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 <head><title>Stree design notes</title>
 <link rel="stylesheet" type="text/css" href="https://gcc.gnu.org/gcc.css" /></head>
Index: projects/tree-ssa/index.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/projects/tree-ssa/index.html,v
retrieving revision 1.47
diff -u -r1.47 index.html
--- projects/tree-ssa/index.html	29 Jul 2018 20:31:36 -0000	1.47
+++ projects/tree-ssa/index.html	1 Sep 2018 23:12:28 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 <head>
 <title>SSA for Trees</title>
Index: projects/tree-ssa/lno.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/projects/tree-ssa/lno.html,v
retrieving revision 1.7
diff -u -r1.7 lno.html
--- projects/tree-ssa/lno.html	2 Jun 2018 21:16:21 -0000	1.7
+++ projects/tree-ssa/lno.html	1 Sep 2018 23:12:28 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
 <head>
 <title>Loop Nest Optimizer</title>
Index: projects/tree-ssa/tree-browser.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/projects/tree-ssa/tree-browser.html,v
retrieving revision 1.4
diff -u -r1.4 tree-browser.html
--- projects/tree-ssa/tree-browser.html	2 Jun 2018 21:16:21 -0000	1.4
+++ projects/tree-ssa/tree-browser.html	1 Sep 2018 23:12:28 -0000
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
   <head>
     <title>Tree Browser</title>



More information about the Gcc-patches mailing list