Re: [wwwdocs] Make it more obvious which releases are still supported

2019-06-09 Thread Gerald Pfeifer
So, this is probably the patch in GCC that's seen the longest delays
between different steps. :-o

On Mon, 30 Jan 2017, Jonathan Wakely wrote:
>> Thanks for doing that, Jonathan!
>>
>> Only one curious question: Why "Supported Releases" on our
>> main page versus "This release is no longer maintained." for
>> the individual releases?  That is, "supported" vs "maintained"?
> No reason. For consistency's sake changing it to "no longer supported"
> makes sense.

Done with the patch below, where I also moved this a little up,
directly below the title (but put it in parentheses), removed a
bit or two which was commented out for ages.

Oh, and also added this comment for GCC 5 and GCC 6, which have
reached end of life since then. ;-)

Committed.

Gerald


Index: gcc-2.95/index.html
===
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-2.95/index.html,v
retrieving revision 1.9
diff -u -r1.9 index.html
--- gcc-2.95/index.html 30 Sep 2018 14:38:49 -  1.9
+++ gcc-2.95/index.html 9 Jun 2019 19:21:03 -
@@ -9,11 +9,12 @@
 
 GCC 2.95
 
+(This release series is no longer supported.)
+
+
 March 16, 2001: The GNU project and the GCC developers are
 pleased to announce the release of GCC version 2.95.3.
 
-This release is no longer maintained.
-
 Release History
 
 
Index: gcc-3.0/index.html
===
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-3.0/index.html,v
retrieving revision 1.21
diff -u -r1.21 index.html
--- gcc-3.0/index.html  30 Sep 2018 14:38:49 -  1.21
+++ gcc-3.0/index.html  9 Jun 2019 19:21:03 -
@@ -10,6 +10,9 @@
 
 GCC 3.0.4
 
+(This release series is no longer supported.)
+
+
 February 20, 2002
 
 The http://www.gnu.org/;>GNU project and the GCC
@@ -17,8 +20,6 @@
 a bug-fix release for the GCC 3.0 series.
 
 
-This release series is no longer maintained.
-
 GCC used to stand for the GNU C Compiler, but since the compiler
 supports several other languages aside from C, it now stands for the
 GNU Compiler Collection.
Index: gcc-3.1/index.html
===
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-3.1/index.html,v
retrieving revision 1.10
diff -u -r1.10 index.html
--- gcc-3.1/index.html  30 Sep 2018 14:38:49 -  1.10
+++ gcc-3.1/index.html  9 Jun 2019 19:21:03 -
@@ -10,6 +10,9 @@
 
 GCC 3.1
 
+(This release series is no longer supported.)
+
+
 July 27, 2002
 
 The http://www.gnu.org/;>GNU project and the GCC
@@ -17,8 +20,6 @@
 
 The links below still apply to GCC 3.1.1.
 
-This release series is no longer maintained.
-
 May 15, 2002
 
 The http://www.gnu.org/;>GNU project and the GCC
Index: gcc-3.2/index.html
===
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-3.2/index.html,v
retrieving revision 1.18
diff -u -r1.18 index.html
--- gcc-3.2/index.html  30 Sep 2018 14:38:50 -  1.18
+++ gcc-3.2/index.html  9 Jun 2019 19:21:03 -
@@ -10,6 +10,9 @@
 
 GCC 3.2 Release Series
 
+(This release series is no longer supported.)
+
+
 April 25, 2003
 
 The http://www.gnu.org;>GNU project and the GCC
@@ -27,7 +30,6 @@
 Please refer to our detailed list of news,
 caveats, and bug-fixes for further information.
 
-This release series is no longer maintained.
 
 Release History
 
Index: gcc-3.3/index.html
===
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-3.3/index.html,v
retrieving revision 1.26
diff -u -r1.26 index.html
--- gcc-3.3/index.html  30 Sep 2018 14:38:50 -  1.26
+++ gcc-3.3/index.html  9 Jun 2019 19:21:03 -
@@ -10,6 +10,9 @@
 
 GCC 3.3 Release Series
 
+(This release series is no longer supported.)
+
+
 May 03, 2005
 
 The http://www.gnu.org;>GNU project and the GCC
@@ -25,12 +28,6 @@
 href="https://gcc.gnu.org/onlinedocs/gcc/Contributors.html;>amazing
 group of volunteers.
 
-This release series is no longer maintained.
-
-
 
 Release History
 
Index: gcc-3.4/index.html
===
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-3.4/index.html,v
retrieving revision 1.18
diff -u -r1.18 index.html
--- gcc-3.4/index.html  30 Sep 2018 14:38:50 -  1.18
+++ gcc-3.4/index.html  9 Jun 2019 19:21:03 -
@@ -10,6 +10,9 @@
 
 GCC 3.4 Release Series
 
+(This release series is no longer supported.)
+
+
 May 26, 2006
 
 The http://www.gnu.org;>GNU project and the GCC developers are
@@ -24,12 +27,6 @@
 href="https://gcc.gnu.org/onlinedocs/gcc/Contributors.html;>amazing
 group of volunteers.
 
-This release series is no longer maintained.
-
-
 
 Release History
 
Index: gcc-4.0/index.html
===
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-4.0/index.html,v
retrieving revision 1.17
diff -u -r1.17 index.html
--- gcc-4.0/index.html  30 Sep 2018 14:38:50 -  1.17
+++ gcc-4.0/index.html  9 Jun 2019 

Re: [wwwdocs] Make it more obvious which releases are still supported

2017-01-29 Thread Jonathan Wakely

On 29/01/17 22:56 +0100, Gerald Pfeifer wrote:

On Fri, 30 Sep 2016, Jonathan Wakely wrote:

This adjusts the front page and the news page for each release to
clarify that past releases are no longer maintained.


Thanks for doing that, Jonathan!

Only one curious question: Why "Supported Releases" on our
main page versus "This release is no longer maintained." for
the individual releases?  That is, "supported" vs "maintained"?


No reason. For consistency's sake changing it to "no longer supported"
makes sense.




Re: [wwwdocs] Make it more obvious which releases are still supported

2017-01-29 Thread Gerald Pfeifer
On Fri, 30 Sep 2016, Jonathan Wakely wrote:
> This adjusts the front page and the news page for each release to
> clarify that past releases are no longer maintained.

Thanks for doing that, Jonathan!

Only one curious question: Why "Supported Releases" on our
main page versus "This release is no longer maintained." for
the individual releases?  That is, "supported" vs "maintained"?

Gerald


Re: [wwwdocs] Make it more obvious which releases are still supported

2016-09-30 Thread Richard Biener
On Fri, Sep 30, 2016 at 2:26 PM, Jonathan Wakely  wrote:
> This adjusts the front page and the news page for each release to
> clarify that past releases are no longer maintained.
>
> OK for wwwdocs?

Ok.

Thanks,
Richard.

>


[wwwdocs] Make it more obvious which releases are still supported

2016-09-30 Thread Jonathan Wakely

This adjusts the front page and the news page for each release to
clarify that past releases are no longer maintained.

OK for wwwdocs?


Index: htdocs/index.html
===
RCS file: /cvs/gcc/wwwdocs/htdocs/index.html,v
retrieving revision 1.1026
diff -u -r1.1026 index.html
--- htdocs/index.html	25 Aug 2016 10:55:41 -	1.1026
+++ htdocs/index.html	30 Sep 2016 12:25:30 -
@@ -121,7 +121,7 @@
 
 
 
-Releases
+Supported Releases
 
 
 GCC 6.2
Index: htdocs/gcc-2.95/index.html
===
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-2.95/index.html,v
retrieving revision 1.5
diff -u -r1.5 index.html
--- htdocs/gcc-2.95/index.html	28 Jun 2014 11:59:43 -	1.5
+++ htdocs/gcc-2.95/index.html	30 Sep 2016 12:25:30 -
@@ -10,6 +10,8 @@
 March 16, 2001: The GNU project and the GCC developers are
 pleased to announce the release of GCC version 2.95.3.
 
+This release is no longer maintained.
+
 Release History
 
 
Index: htdocs/gcc-3.0/index.html
===
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-3.0/index.html,v
retrieving revision 1.17
diff -u -r1.17 index.html
--- htdocs/gcc-3.0/index.html	28 Jun 2014 07:45:10 -	1.17
+++ htdocs/gcc-3.0/index.html	30 Sep 2016 12:25:30 -
@@ -15,6 +15,8 @@
 a bug-fix release for the GCC 3.0 series.
 
 
+This release series is no longer maintained.
+
 GCC used to stand for the GNU C Compiler, but since the compiler
 supports several other languages aside from C, it now stands for the
 GNU Compiler Collection.
Index: htdocs/gcc-3.1/index.html
===
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-3.1/index.html,v
retrieving revision 1.6
diff -u -r1.6 index.html
--- htdocs/gcc-3.1/index.html	28 Jun 2014 07:45:11 -	1.6
+++ htdocs/gcc-3.1/index.html	30 Sep 2016 12:25:30 -
@@ -15,6 +15,8 @@
 
 The links below still apply to GCC 3.1.1.
 
+This release series is no longer maintained.
+
 May 15, 2002
 
 The http://www.gnu.org/;>GNU project and the GCC
Index: htdocs/gcc-3.2/index.html
===
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-3.2/index.html,v
retrieving revision 1.13
diff -u -r1.13 index.html
--- htdocs/gcc-3.2/index.html	28 Jun 2014 07:45:11 -	1.13
+++ htdocs/gcc-3.2/index.html	30 Sep 2016 12:25:30 -
@@ -25,6 +25,8 @@
 Please refer to our detailed list of news,
 caveats, and bug-fixes for further information.
 
+This release series is no longer maintained.
+
 Release History
 
 
Index: htdocs/gcc-3.3/index.html
===
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-3.3/index.html,v
retrieving revision 1.21
diff -u -r1.21 index.html
--- htdocs/gcc-3.3/index.html	28 Jun 2014 07:45:11 -	1.21
+++ htdocs/gcc-3.3/index.html	30 Sep 2016 12:25:30 -
@@ -23,6 +23,8 @@
 href="https://gcc.gnu.org/onlinedocs/gcc/Contributors.html;>amazing
 group of volunteers.
 
+This release series is no longer maintained.
+