public inbox for gcc-cvs-wwwdocs@sourceware.org
help / color / mirror / Atom feed
* gcc-wwwdocs branch master updated. afe4061ed96722d9b9521526df12c299b5e01e7a
@ 2022-10-20  7:54 Gerald Pfeifer
  0 siblings, 0 replies; only message in thread
From: Gerald Pfeifer @ 2022-10-20  7:54 UTC (permalink / raw)
  To: gcc-cvs-wwwdocs

This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "gcc-wwwdocs".

The branch, master has been updated
       via  afe4061ed96722d9b9521526df12c299b5e01e7a (commit)
      from  69102e7bf8c4afdc6380e0e6547c84cc5649eae5 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit afe4061ed96722d9b9521526df12c299b5e01e7a
Author: Gerald Pfeifer <gerald@pfeifer.com>
Date:   Thu Oct 20 09:53:16 2022 +0200

    *: Omit trailing slash for <img> tags
    
    HTML 5 now recommends against trailing slashes on void elements, so
    <img ...> it is instead of <img ... />.

diff --git a/htdocs/index.html b/htdocs/index.html
index 761a598a..f4eb4817 100644
--- a/htdocs/index.html
+++ b/htdocs/index.html
@@ -13,7 +13,7 @@
 
 <h1 class="no-margin-top">GCC, the GNU Compiler Collection</h1>
 
-<img src="img/gccegg-65.png" alt="" class="right" />
+<img src="img/gccegg-65.png" alt="" class="right">
 
 <p>The GNU Compiler Collection includes front ends for
 <a href="c99status.html">C</a>,
diff --git a/htdocs/news/egcs-vcg.html b/htdocs/news/egcs-vcg.html
index 5213152d..2817ad06 100644
--- a/htdocs/news/egcs-vcg.html
+++ b/htdocs/news/egcs-vcg.html
@@ -141,7 +141,7 @@ test.c.cse.vcg        test.c.greg.vcg  test.c.lreg.vcg   test.c.stack.vcg
     <p>If you view these files using a suitable program, you'll get output
     similar to the following:</p>
 
-    <img src="vcg1.png" alt="completely folded graph" width="112" height="41" />
+    <img src="vcg1.png" alt="completely folded graph" width="112" height="41">
 
     <p>These are nodes representing all the functions in the file.  If
     you expand the nodes you can get a picture like
diff --git a/htdocs/news/gcse.html b/htdocs/news/gcse.html
index 80244281..5da4749b 100644
--- a/htdocs/news/gcse.html
+++ b/htdocs/news/gcse.html
@@ -52,7 +52,7 @@ Fred Chow's thesis.</p>
 flow graph:</p>
 
 <br>
-<img src="gcse.jpg" alt="PRE example" width="425" height="425" />
+<img src="gcse.jpg" alt="PRE example" width="425" height="425">
 <br>
 
 
diff --git a/htdocs/projects/gupc.html b/htdocs/projects/gupc.html
index a48d44c3..e38cd240 100644
--- a/htdocs/projects/gupc.html
+++ b/htdocs/projects/gupc.html
@@ -12,7 +12,7 @@
 <h1>GNU Unified Parallel C (GUPC)</h1>
 
 <img class="imgleft" src="gupc.png" width="109" height="130"
-     alt="GUPC Logo" title="GUPC" />
+     alt="GUPC Logo" title="GUPC">
 
 <p>The GNU UPC project implements a compilation and execution environment for
 programs written in the
diff --git a/htdocs/projects/tree-ssa/index.html b/htdocs/projects/tree-ssa/index.html
index afe7ac35..7d3740e4 100644
--- a/htdocs/projects/tree-ssa/index.html
+++ b/htdocs/projects/tree-ssa/index.html
@@ -192,7 +192,7 @@ based on the algorithms described by Cytron <em>et. al.</em>
 
 <p>The graph below describes the process:</p>
 
-<p><img src="tree-opt.png" alt=""/></p>
+<p><img src="tree-opt.png" alt=""></p>
 
 <p>The front ends described in the graph are just an example.  In
 general, any front end that can emit functions-as-trees can be
diff --git a/htdocs/style.mhtml b/htdocs/style.mhtml
index 4fc5e8ad..0790a972 100644
--- a/htdocs/style.mhtml
+++ b/htdocs/style.mhtml
@@ -74,14 +74,13 @@
   <div class="center">
   <a href="https://twitter.com/gnutools">
     <img src="<get-var BACKPATH>twitter-bird-light-bgs.png"
-      height="42" width="42" class="middle" alt="@gnutools on Twitter"
-      />@gnutools</a>
+      height="42" width="42" class="middle"
+      alt="@gnutools on Twitter">@gnutools</a>
   </div>
   <div class="center">
   <a href="https://my.fsf.org/civicrm/contribute/transact?reset=1&amp;id=57">
     <img src="<get-var BACKPATH>donate-110-23.png"
-      height="23" width="100" alt="Donate to GNU Toolchain Fund"
-      /></a>
+      height="23" width="100" alt="Donate to GNU Toolchain Fund"></a>
   </div>
   </td></tr>
   </table></td></tr>

-----------------------------------------------------------------------

Summary of changes:
 htdocs/index.html                   | 2 +-
 htdocs/news/egcs-vcg.html           | 2 +-
 htdocs/news/gcse.html               | 2 +-
 htdocs/projects/gupc.html           | 2 +-
 htdocs/projects/tree-ssa/index.html | 2 +-
 htdocs/style.mhtml                  | 7 +++----
 6 files changed, 8 insertions(+), 9 deletions(-)


hooks/post-receive
-- 
gcc-wwwdocs

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2022-10-20  7:54 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-10-20  7:54 gcc-wwwdocs branch master updated. afe4061ed96722d9b9521526df12c299b5e01e7a Gerald Pfeifer

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).