• R/O
  • HTTP
  • SSH
  • HTTPS

website: 提交

HTML source code, style-sheets, scripts, and images for deployment on mingw.osdn.io


Commit MetaInfo

修订版72b5d2b26031b97e27ebc423a592c36e4da6338b (tree)
时间2020-10-28 06:07:50
作者Keith Marshall <keith@user...>
CommiterKeith Marshall

Log Message

Move charset assignment to valid file offset.

* index.html (charset): The HTML5 specification requires this
meta-data attribute to be assigned within the first 1024 bytes of
the page data; move it above the licensing terms, to keep it so.

更改概述

差异

--- a/index.html
+++ b/index.html
@@ -2,58 +2,62 @@
22 *
33 * index.html
44 *
5- * $Id$
6- *
7- * Written by Keith Marshall <keith@users.osdn.me>
8- * Copyright (C) 2020, MinGW.org Project
9- *
10- *
11- * Redistribution and use in source and 'compiled' forms (SGML, HTML,
12- * PDF, PostScript, RTF, etc) with or without modification, are permitted
13- * provided that the following conditions are met:
14- *
15- * 1. Redistributions of source code must retain the above copyright
16- * notice, this list of conditions and the following disclaimer as
17- * the first lines of this file, unmodified.
18- *
19- * 2. Redistributions in compiled form (transformed to other DTDs,
20- * converted to PDF, PostScript, RTF and other formats) must
21- * reproduce the above copyright notice, this list of conditions
22- * and the following disclaimer in the documentation and/or other
23- * materials provided with the distribution.
24- *
25- * THIS DOCUMENTATION IS PROVIDED BY THE MINGW.ORG PROJECT "AS IS" AND
26- * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
27- * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
28- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE MINGW.ORG PROJECT, OR
29- * ITS CONTRIBUTORS, BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
30- * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
31- * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
32- * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
33- * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
34- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
35- * OF THIS DOCUMENTATION, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
36- * DAMAGE.
5+ * Default site landing page, and generic HTML loader template for all
6+ * MinGW.org web-site content.
377 *
388 -->
399 <html lang="en">
40- <head>
41- <meta charset="utf-8" />
42- <title>Welcome to MinGW.org</title>
43- <link href="https://fonts.googleapis.com/css2?family=Alegreya+Sans+SC:wght@500&family=Roboto&display=swap" rel="stylesheet" />
44- <link rel="stylesheet" href="site.css" />
45- <script src="site.js"></script>
46- </head>
47- <body onload="new_page('about.html', 'Home of the MinGW and MSYS Projects')">
48- <div id="header"></div>
49- <div class="page-view">
50- <div class="masthead">
51- <h1 id="page-title"></h1>
52- <h2 id="page-subtitle"></h2>
53- </div><!-- masthead --><hr />
54- <div id="page-content"></div>
55- </div><!-- page-view -->
56- </body>
10+ <head>
11+ <meta charset="utf-8" />
12+ <title>Welcome to MinGW.org</title>
13+ <!--
14+ * $Id$
15+ *
16+ * Written by Keith Marshall <keith@users.osdn.me>
17+ * Copyright (C) 2020, MinGW.org Project
18+ *
19+ *
20+ * Redistribution and use in source and 'compiled' forms (SGML, HTML,
21+ * PDF, PostScript, RTF, etc) with or without modification, are permitted
22+ * provided that the following conditions are met:
23+ *
24+ * 1. Redistributions of source code must retain the above copyright
25+ * notice, this list of conditions and the following disclaimer as
26+ * the first lines of this file, unmodified.
27+ *
28+ * 2. Redistributions in compiled form (transformed to other DTDs,
29+ * converted to PDF, PostScript, RTF and other formats) must
30+ * reproduce the above copyright notice, this list of conditions
31+ * and the following disclaimer in the documentation and/or other
32+ * materials provided with the distribution.
33+ *
34+ * THIS DOCUMENTATION IS PROVIDED BY THE MINGW.ORG PROJECT "AS IS" AND
35+ * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
36+ * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
37+ * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE MINGW.ORG PROJECT, OR
38+ * ITS CONTRIBUTORS, BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
39+ * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
40+ * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
41+ * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
42+ * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
43+ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
44+ * OF THIS DOCUMENTATION, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
45+ * DAMAGE.
46+ *
47+ -->
48+ <link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Alegreya+Sans+SC:wght@500&family=Roboto&display=swap" />
49+ <link rel="stylesheet" href="site.css" />
50+ <script src="site.js"></script>
51+ </head>
52+ <body onload="new_page('about.html', 'Home of the MinGW and MSYS Projects')">
53+ <div id="header"></div>
54+ <div class="page-view">
55+ <div class="masthead">
56+ <h1 id="page-title"></h1>
57+ <h2 id="page-subtitle"></h2>
58+ </div><!-- masthead --><hr />
59+ <div id="page-content"></div>
60+ </div><!-- page-view -->
61+ </body>
5762 </html>
58-
5963 <!-- $RCSfile$: end of file -->
Show on old repository browser