* java/status.html updates @ 2002-10-27 18:29 Jeff Sturm 2002-10-27 18:35 ` Per Bothner 2002-10-29 14:29 ` Gerald Pfeifer 0 siblings, 2 replies; 21+ messages in thread From: Jeff Sturm @ 2002-10-27 18:29 UTC (permalink / raw) To: gcc-patches; +Cc: java-patches, per Adds some Solaris info. Also, fix inconsistent naming of Alpha, SPARC. OK? Index: status.html =================================================================== RCS file: /cvs/gcc/wwwdocs/htdocs/java/status.html,v retrieving revision 1.10 diff -u -p -r1.10 status.html --- status.html 28 Oct 2002 02:03:42 -0000 1.10 +++ status.html 28 Oct 2002 02:27:49 -0000 @@ -114,7 +114,7 @@ it isn't very useful.</dd> <dd>Ok.</dd> <dt class="target">FreeBSD on the Pentium-compatible PCs</dt> <dd>Ok.</dd> -<dt class="target">GNU/Linux on alphaev67</dt> +<dt class="target">GNU/Linux on Alpha</dt> <dd>Ok.</dd> <dt class="target">GNU/Linux on the Itanium (ia64) architecture</dt> <dd>Ok.</dd> @@ -122,8 +122,9 @@ it isn't very useful.</dd> <dd>Ok.</dd> <dt class="target">GNU/Linux on AMD x86-64 ("Hammer") architecture </dt> <dd>Ok, in CVS (but building with multilibs enabled needs libtool patch).</dd> -<dt class="target">Solaris 2.5.1, 2.6, 2.7, 2.8 on Sparc</dt> -<dd>Ok.</dd> +<dt class="target">Solaris 2.5.1, 2.6, 2.7, 2.8 on SPARC</dt> +<dd>Ok for 32- and 64-bit ABIs. Byte-code interpreter not currently +supported.</dd> <dt class="target">SGI Irix 6.5 on Mips</dt> <dd>Works, but some tricks needed.</dd> <dt class="target">Windows on the Intel PC platform, using the MingW32 compiler</dt> ^ permalink raw reply [flat|nested] 21+ messages in thread
* Re: java/status.html updates 2002-10-27 18:29 java/status.html updates Jeff Sturm @ 2002-10-27 18:35 ` Per Bothner 2002-10-27 18:57 ` Jeff Sturm 2002-10-29 14:29 ` Gerald Pfeifer 1 sibling, 1 reply; 21+ messages in thread From: Per Bothner @ 2002-10-27 18:35 UTC (permalink / raw) To: Jeff Sturm; +Cc: gcc-patches, java-patches Jeff Sturm wrote: > Adds some Solaris info. Also, fix inconsistent naming of Alpha, SPARC. OK. I copied "alphaev67" from the 3.1 status page, hoping that someone who knows what "ev67" refers to can fix it. If plain "Alpha" is correct, then that is certainly more useful. -- --Per Bothner per@bothner.com http://www.bothner.com/per/ ^ permalink raw reply [flat|nested] 21+ messages in thread
* Re: java/status.html updates 2002-10-27 18:35 ` Per Bothner @ 2002-10-27 18:57 ` Jeff Sturm 0 siblings, 0 replies; 21+ messages in thread From: Jeff Sturm @ 2002-10-27 18:57 UTC (permalink / raw) To: Per Bothner; +Cc: gcc-patches, java-patches On Sun, 27 Oct 2002, Per Bothner wrote: > I copied "alphaev67" from the 3.1 status page, hoping that someone > who knows what "ev67" refers to can fix it. If plain "Alpha" is > correct, then that is certainly more useful. It is. Committed. Jeff ^ permalink raw reply [flat|nested] 21+ messages in thread
* Re: java/status.html updates 2002-10-27 18:29 java/status.html updates Jeff Sturm 2002-10-27 18:35 ` Per Bothner @ 2002-10-29 14:29 ` Gerald Pfeifer 2002-10-29 15:00 ` Per Bothner 1 sibling, 1 reply; 21+ messages in thread From: Gerald Pfeifer @ 2002-10-29 14:29 UTC (permalink / raw) To: java-patches; +Cc: Jeff Sturm, gcc-patches, per On Sun, 27 Oct 2002, Jeff Sturm wrote: > Adds some Solaris info. Also, fix inconsistent naming of Alpha, SPARC. Would it make sense to add target tripples to make a connection from this list to the installation notes? Gerald ^ permalink raw reply [flat|nested] 21+ messages in thread
* Re: java/status.html updates 2002-10-29 14:29 ` Gerald Pfeifer @ 2002-10-29 15:00 ` Per Bothner 2002-10-30 8:36 ` Gerald Pfeifer 0 siblings, 1 reply; 21+ messages in thread From: Per Bothner @ 2002-10-29 15:00 UTC (permalink / raw) To: Gerald Pfeifer; +Cc: java-patches, gcc-patches, per Gerald Pfeifer wrote: > Would it make sense to add target tripples to make a connection from > this list to the installation notes? It might, but I prefer to have them secondary. I want the descriptors to be human-readable! You should not have to be a GNU configuration expert to make use of the page. How about something like this style: <dt><b>GNU/Linux on Pentium-compatible PCs</b> (<code>[56]86-pc-linux-gnu</code>)</dt> <dd>Ok.</dd> (or something using CSS that will render equivalently)? -- --Per Bothner per@bothner.com http://www.bothner.com/per/ ^ permalink raw reply [flat|nested] 21+ messages in thread
* Re: java/status.html updates 2002-10-29 15:00 ` Per Bothner @ 2002-10-30 8:36 ` Gerald Pfeifer 2002-10-30 10:12 ` Per Bothner 0 siblings, 1 reply; 21+ messages in thread From: Gerald Pfeifer @ 2002-10-30 8:36 UTC (permalink / raw) To: Per Bothner; +Cc: java-patches, gcc-patches On Tue, 29 Oct 2002, Per Bothner wrote: > It might, but I prefer to have them secondary. I want the descriptors > to be human-readable! Fully agreed. > How about something like this style: > > <dt><b>GNU/Linux on Pentium-compatible PCs</b> > (<code>[56]86-pc-linux-gnu</code>)</dt> > <dd>Ok.</dd> Yes, this looks very nice! I believe that way we can cover both groups of users. Thanks, Gerald -- Gerald "Jerry" pfeifer@dbai.tuwien.ac.at http://www.dbai.tuwien.ac.at/~pfeifer/ ^ permalink raw reply [flat|nested] 21+ messages in thread
* Re: java/status.html updates 2002-10-30 8:36 ` Gerald Pfeifer @ 2002-10-30 10:12 ` Per Bothner 2002-10-30 10:39 ` Andreas Jaeger ` (3 more replies) 0 siblings, 4 replies; 21+ messages in thread From: Per Bothner @ 2002-10-30 10:12 UTC (permalink / raw) To: Gerald Pfeifer; +Cc: java-patches, gcc-patches [-- Attachment #1: Type: text/plain, Size: 618 bytes --] I checked in the attached patch, to add triples. For some targets the gcj-3.1-status.html does not contain triples, or it looks wrong (like xscale), so I'll leave it to somebody else to fix that. I also clarified that java.util.regex is only a place-holder. Are we ready to add Status to the gcj navigation side-bar? Gerald, can you do that, as I don't know how? I'd love it if we can have a "sub-menu" on the respecive page, so on the status.html page (only) the Status menu item would have 3 sub-elements. Is that possible, without too much work? -- --Per Bothner per@bothner.com http://www.bothner.com/per/ [-- Attachment #2: status.diff --] [-- Type: text/plain, Size: 2303 bytes --] --- /tmp/status.html 2002-10-30 09:55:01.000000000 -0800 +++ ./status.html 2002-10-30 10:05:33.000000000 -0800 @@ -84,7 +84,7 @@ <dt class="package">java.util.jar</dt> <dd>Ok.</dd> <dt class="package">java.util.regex</dt> -<dd>Ok.</dd> +<dd>The classes exist, but throw InternalError.</dd> <dt class="package">java.util.zip</dt> <dd>Ok.</dd> <dt class="package">java.text</dt> @@ -110,28 +110,35 @@ </table> <dl> -<dt class="target">GNU/Linux on the Pentium-compatible PCs</dt> +<dt class="target">GNU/Linux on the Pentium-compatible PCs + (<code>i[56]86-pc-linux-gnu</code>)</dt> <dd>Ok.</dd> -<dt class="target">FreeBSD on the Pentium-compatible PCs</dt> +<dt class="target">FreeBSD on the Pentium-compatible PCs + (<code>i[56]86-pc-freebsd*</code>)</dt> <dd>Ok.</dd> <dt class="target">GNU/Linux on Alpha</dt> <dd>Ok.</dd> -<dt class="target">GNU/Linux on the Itanium (ia64) architecture</dt> +<dt class="target">GNU/Linux on the Itanium (ia64) architecture + (<code>ia64-*-linux-gnu</code>)</dt> <dd>Ok.</dd> <dt class="target">GNU/Linux on PowerPC</dt> <dd>Ok.</dd> <dt class="target">GNU/Linux on AMD x86-64 ("Hammer") architecture </dt> <dd>Ok, in CVS (but building with multilibs enabled needs libtool patch).</dd> -<dt class="target">Solaris 2.5.1, 2.6, 2.7, 2.8 on SPARC</dt> +<dt class="target">Solaris 2.5.1, 2.6, 2.7, 2.8 on SPARC + (<code>sparc-sun-solaris2.[5678]</code>)</dt> <dd>Ok for 32- and 64-bit ABIs. Byte-code interpreter not currently supported.</dd> -<dt class="target">SGI Irix 6.5 on Mips</dt> +<dt class="target">SGI Irix 6.5 on Mips + (<code>mips-sgi-irix6.5</code>)</dt> <dd>Works, but some tricks needed.</dd> -<dt class="target">Windows on the Intel PC platform, using the MingW32 compiler</dt> +<dt class="target">Windows on the Intel PC platform, using the MingW32 compiler + (<code>i[56]86-pc-mingw32</code>)</dt> <dd>Works for target; works for host (in CVS). Is incomplete.</dd> <dt class="target">PPC Darwin (including MacOS X)</dt> <dd>Some kludges needed.</dd> -<dt class="target">DEC OSF 4.0f and OSF 5.1 on Alpha</dt> +<dt class="target">DEC OSF 4.0f and OSF 5.1 on Alpha + (<code>alpha-dec-osf4.0f</code>, <code>alpha-dec-osf5.1</code>)</dt> <dd>Ok.</dd> <dt class="target">GNU/Linux on XScale using ELF</dt> <dd>Ok.</dd> ^ permalink raw reply [flat|nested] 21+ messages in thread
* Re: java/status.html updates 2002-10-30 10:12 ` Per Bothner @ 2002-10-30 10:39 ` Andreas Jaeger 2002-10-30 15:08 ` GCJ redesign (was: java/status.html updates) Gerald Pfeifer ` (2 subsequent siblings) 3 siblings, 0 replies; 21+ messages in thread From: Andreas Jaeger @ 2002-10-30 10:39 UTC (permalink / raw) To: Per Bothner; +Cc: Gerald Pfeifer, java-patches, gcc-patches I've committed the appended diff as obvious, Andreas Index: htdocs/java/status.html =================================================================== RCS file: /cvs/gcc/wwwdocs/htdocs/java/status.html,v retrieving revision 1.15 diff -u -p -r1.15 status.html --- htdocs/java/status.html 30 Oct 2002 18:11:35 -0000 1.15 +++ htdocs/java/status.html 30 Oct 2002 18:39:09 -0000 @@ -123,7 +123,8 @@ it isn't very useful.</dd> <dd>Ok.</dd> <dt class="target">GNU/Linux on PowerPC</dt> <dd>Ok.</dd> -<dt class="target">GNU/Linux on AMD x86-64 ("Hammer") architecture </dt> +<dt class="target">GNU/Linux on AMD x86-64 ("Hammer") architecture +(<code>x86_64-*-linux-gnu</code>)</dt> <dd>Ok, in CVS (but building with multilibs enabled needs libtool patch).</dd> <dt class="target">Solaris 2.5.1, 2.6, 2.7, 2.8 on SPARC (<code>sparc-sun-solaris2.[5678]</code>)</dt> -- Andreas Jaeger SuSE Labs aj@suse.de private aj@arthur.inka.de http://www.suse.de/~aj ^ permalink raw reply [flat|nested] 21+ messages in thread
* GCJ redesign (was: java/status.html updates) 2002-10-30 10:12 ` Per Bothner 2002-10-30 10:39 ` Andreas Jaeger @ 2002-10-30 15:08 ` Gerald Pfeifer 2002-10-30 16:26 ` Per Bothner 2002-10-31 10:35 ` Tom Tromey 2002-10-31 19:12 ` java/status.html updates Jeff Sturm 2002-11-04 10:08 ` Anthony Green 3 siblings, 2 replies; 21+ messages in thread From: Gerald Pfeifer @ 2002-10-30 15:08 UTC (permalink / raw) To: Per Bothner; +Cc: Tom Tromey, java-patches, gcc-patches On Wed, 30 Oct 2002, Per Bothner wrote: > I checked in the attached patch, to add triples. Thanks! > Are we ready to add Status to the gcj navigation side-bar? > Gerald, can you do that, as I don't know how? Of course I'll do that. Well, while we are at it, you probably noticed my activities related to our web page styles, and here is a first result: http://www.dbai.tuwien.ac.at/~pfeifer/tmp/gcj/ This makes the GCJ pages "first class citizens", in that they get full navigation, yet retain their original look and feel. (Ah, and the way this is implemented it is in fact easier to use for you -- there are no extra tags such as <GCJNAV> any longer.) Per, Tom, ..., is this okay with you? Gerald > I'd love it if we can have a "sub-menu" on the respecive page, so on > the status.html page (only) the Status menu item would have 3 sub-elements. > Is that possible, without too much work? Yes, especially if we use the new design/mechanisms this should be relatively easy for me to support. ^ permalink raw reply [flat|nested] 21+ messages in thread
* Re: GCJ redesign (was: java/status.html updates) 2002-10-30 15:08 ` GCJ redesign (was: java/status.html updates) Gerald Pfeifer @ 2002-10-30 16:26 ` Per Bothner 2002-10-31 6:18 ` Gerald Pfeifer 2002-10-31 10:35 ` Tom Tromey 1 sibling, 1 reply; 21+ messages in thread From: Per Bothner @ 2002-10-30 16:26 UTC (permalink / raw) To: Gerald Pfeifer; +Cc: Tom Tromey, java-patches, gcc-patches Gerald Pfeifer wrote: > Of course I'll do that. Well, while we are at it, you probably noticed > my activities related to our web page styles, and here is a first result: > > http://www.dbai.tuwien.ac.at/~pfeifer/tmp/gcj/ That's nice - except the link to the GCC Home page is gone. -- --Per Bothner per@bothner.com http://www.bothner.com/per/ ^ permalink raw reply [flat|nested] 21+ messages in thread
* Re: GCJ redesign (was: java/status.html updates) 2002-10-30 16:26 ` Per Bothner @ 2002-10-31 6:18 ` Gerald Pfeifer 2002-10-31 12:25 ` Gerald Pfeifer 0 siblings, 1 reply; 21+ messages in thread From: Gerald Pfeifer @ 2002-10-31 6:18 UTC (permalink / raw) To: Per Bothner; +Cc: Tom Tromey, java-patches, gcc-patches On Wed, 30 Oct 2002, Per Bothner wrote: >> http://www.dbai.tuwien.ac.at/~pfeifer/tmp/gcj/ > That's nice - except the link to the GCC Home page is gone. Well spotted, thanks. This is fixed in the version of the patch to style.html that I am committing now (which also tries to improve layout a bit further). Gerald Remove the definition of <GCJNAV> and instead make the GCJ navigation an optional part of the main navigation which is enabled for all pages called java/[^/]*.html. Index: style.mhtml =================================================================== RCS file: /cvs/gcc/wwwdocs/htdocs/style.mhtml,v retrieving revision 1.37 diff -u -3 -p -r1.37 style.mhtml --- style.mhtml 30 Oct 2002 22:49:29 -0000 1.37 +++ style.mhtml 31 Oct 2002 14:12:17 -0000 @@ -4,6 +4,9 @@ <if <match <get-var env::PREPROCESS_FILE> "install/.*"> <unset-var XHTML> > +<if <match <get-var env::PREPROCESS_FILE> "java/[^/]*.html"> + <set-var navigation> +> <if <var-exists XHTML> <group @@ -104,6 +107,30 @@ <td valign="top"> <!-- left frame --> <table border="0" cellspacing="0" cellpadding="2" width="1%"> + <if <match <get-var env::PREPROCESS_FILE> "java/[^/]*.html"> + <group + <tr><td><table cellspacing="0" width="100%"> + <tr bgcolor="#B0D0FF"><td> + <img src="gcj.jpg" alt="GCJ" width="136" height="98" /> + </td></tr> + <tr bgcolor="#E0F0FF"><td> + <p> + <a href="index.html">GCJ Home</a><br /> + <a href="../">GCC Home</a><br /> + <a href="status.html">Status</a><br /> + <a href="faq.html">FAQ</a><br /> + <a href="docs.html">Documentation</a><br /> + <a href="build-snapshot.html">Build</a><br /> + <a href="test.html">Testing</a><br /> + <a href="contrib.html">Contributing</a><br /> + <a href="done.html">Done with Gcj</a><br /> + <a href="thanks.html">Thanks</a> + </p> + </td></tr> + </table></td></tr> + > + > + <tr><td><table cellspacing="0" width="100%"> <tr bgcolor="#FFEE99"><td> <b>About GCC</b> @@ -254,62 +281,3 @@ permitted in any medium, provided this n </verbatim> </define-container> -;;; Navigation bar for gcj pages. -<define-container GCJNAV> -<verbatim> -<table border="0"> -<tr><td valign="top"> - -<table border="0"> -<tr><td> -<img src="gcj.jpg" alt="gcj logo" width="136" height="98" /> -</td></tr> -<tr> -<td> -<br /> -<table border="0"><tr><td width="10"></td><td> -<a href="../">GCC</a><br /> -<a href="index.html">GCJ Home</a><br /> -<a href="faq.html">FAQ</a><br /> -<a href="docs.html">Documentation</a><br /> -<a href="build-snapshot.html">Build</a><br /> -<a href="test.html">Testing</a><br /> -<a href="contrib.html">Contributing</a><br /> -<a href="done.html">Done with Gcj</a><br /> -<a href="../bugs.html">Bugs</a><br /> -<a href="thanks.html">Thanks</a><br /> -<br /><br /><br /> -<a href="http://sources.redhat.com/mauve/">The Mauve Project</a><br /> -</td></tr></table> -<br /><br /><br /> -<table border="0"><tr><td width="10"></td><td> -<form method="get" action="http://gcc.gnu.org/cgi-bin/ml-request"> -<small> -Get our announcements:<br /> -</small> -<input type="hidden" name="digest" value="off" /> -<input type="hidden" name="operation" value="subscribe" /> -<input type="hidden" name="listname" value="java-announce" /> -<input type="text" name="username" value="your e-mail-address" size="20" /> -<br /> -<input type="submit" name="submit" value="Subscribe!" /> -</form> -</td></tr></table> - -</td></tr></table> - -</td> - -<td width="2" bgcolor="black">i</td> -<td width="6"></td> -<td> - -</verbatim> - -%body - -<verbatim> -</td></tr> -</table> -</verbatim> -</define-container> ^ permalink raw reply [flat|nested] 21+ messages in thread
* Re: GCJ redesign (was: java/status.html updates) 2002-10-31 6:18 ` Gerald Pfeifer @ 2002-10-31 12:25 ` Gerald Pfeifer 0 siblings, 0 replies; 21+ messages in thread From: Gerald Pfeifer @ 2002-10-31 12:25 UTC (permalink / raw) To: java-patches, gcc-patches; +Cc: Per Bothner, Tom Tromey [ I just realized that this had remained in my postponed folder, even though I committed the patch itself a few hours ago... ] On Thu, 31 Oct 2002, Gerald Pfeifer wrote: > Remove the definition of <GCJNAV> and instead make the GCJ navigation > an optional part of the main navigation which is enabled for all pages > called java/[^/]*.html. And here is the corresponding patch to the web pages themselves: 2002-10-31 Gerald Pfeifer <pfeifer@dbai.tuwien.ac.at> * contrib.html: Do not use <GCJNAV> any longer. * docs.html: Ditto. * projects.html: Ditto. * faq.html: Ditto. * index.html: Ditto. * status.html: Ditto. * test.html: Ditto. * thanks.html: Ditto. * tm.html: Ditto (and add a <p> environment). * faq.html: Do not set bgcolor for the <body> and remove extraneous <br />s. * projects.html: Ditto. * compile.html: Use <h1> for the top-most heading. * faq-portugese.html: Ditto. Also remove DOCTYPE and <meta> tags. * gcj-3.1-status.html: Update <title> and <h1>; avoid setting bgcolor for the <body>. * libgcj-platforms.html: Do not use align="center" for <h1>. * libgcj2.html: Remove a link back to the main page. Index: compile.html =================================================================== RCS file: /cvs/gcc/wwwdocs/htdocs/java/compile.html,v retrieving revision 1.5 diff -u -3 -p -r1.5 compile.html --- compile.html 25 Mar 2002 06:32:12 -0000 1.5 +++ compile.html 31 Oct 2002 14:44:00 -0000 @@ -6,8 +6,7 @@ <body> -<h2 align="center">Compiling with GCJ</h2> - +<h1 align="center">Compiling with GCJ</h1> <h2>Introduction</h2> Index: contrib.html =================================================================== RCS file: /cvs/gcc/wwwdocs/htdocs/java/contrib.html,v retrieving revision 1.28 diff -u -3 -p -r1.28 contrib.html --- contrib.html 25 Mar 2002 06:32:12 -0000 1.28 +++ contrib.html 31 Oct 2002 14:44:02 -0000 @@ -6,9 +6,6 @@ <body> -<GCJNAV> - -<br /><br /> <h1>Contributing to the GCJ Project</h1> <table border="0" cellpadding="4" width="95%"> @@ -178,8 +175,6 @@ There is also some documentation on <a h test cases</a>. This covers both our built-in tests and extra test suites we use. </p> - -</GCJNAV> </body> </html> Index: docs.html =================================================================== RCS file: /cvs/gcc/wwwdocs/htdocs/java/docs.html,v retrieving revision 1.22 diff -u -3 -p -r1.22 docs.html --- docs.html 1 Jul 2002 03:47:17 -0000 1.22 +++ docs.html 31 Oct 2002 14:44:02 -0000 @@ -6,9 +6,6 @@ <body> -<GCJNAV> - -<br /><br /> <h1>GCJ Documentation</h1> <table border="0" cellpadding="4" width="95%"> @@ -121,8 +118,6 @@ conferences and magazines.</p> </li> </ul> - -</GCJNAV> </body> </html> Index: done.html =================================================================== RCS file: /cvs/gcc/wwwdocs/htdocs/java/done.html,v retrieving revision 1.28 diff -u -3 -p -r1.28 done.html --- done.html 14 Oct 2002 20:58:51 -0000 1.28 +++ done.html 31 Oct 2002 14:44:02 -0000 @@ -6,10 +6,6 @@ <body> -<GCJNAV> - - <br /> - <br /> <h1>Done with GCJ</h1> This page provides descriptions and links on projects @@ -172,8 +168,6 @@ </tr> <!-- End Fluid Dynamics --> </table> - -</GCJNAV> </body> </html> Index: faq-portugese.html =================================================================== RCS file: /cvs/gcc/wwwdocs/htdocs/java/faq-portugese.html,v retrieving revision 1.17 diff -u -3 -p -r1.17 faq-portugese.html --- faq-portugese.html 14 Nov 2001 09:15:28 -0000 1.17 +++ faq-portugese.html 31 Oct 2002 14:44:03 -0000 @@ -1,18 +1,13 @@ -<!doctype html public "-//w3c//dtd html 4.0 transitional//en"> <html> + <head> - <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> - <meta name="GENERATOR" content="Mozilla/4.7 [en] (Win98; I) [Netscape]"> <title>The GCJ FAQ</title> </head> -<body text="#000000" bgcolor="#FFFFFF" link="#0000EE" vlink="#551A8B" alink="#FF0000"> +<body> -<GCJNAV> -<br> -<h1> -O FAQ GCJ</h1> +<h1>O FAQ GCJ</h1> A última versão deste documento sempre está disponível em <a href="http://gcc.gnu.org/java/faq-portugese.html">http://gcc.gnu.org/java/faq-portugese.html</a></p> <p>This FAQ is also available in <a href="faq.html">English</a>.</p> @@ -948,8 +943,6 @@ em <a href="papers/cni/t1.html">http://g <td></td> <td></td> - -</GCJNAV> </body> </html> Index: faq.html =================================================================== RCS file: /cvs/gcc/wwwdocs/htdocs/java/faq.html,v retrieving revision 1.55 diff -u -3 -p -r1.55 faq.html --- faq.html 13 Sep 2002 17:48:50 -0000 1.55 +++ faq.html 31 Oct 2002 14:44:04 -0000 @@ -3,12 +3,8 @@ <title>The GCJ FAQ</title> </head> -<body bgcolor="#FFFFFF"> +<body> -<GCJNAV> - -<br /> - <br /> <h1>The GCJ FAQ</h1> <p>The latest version of this document is always available at <a href="faq.html">http://gcc.gnu.org/java/faq.html</a>.</p> <p>This FAQ is also available in <a href="faq-portugese.html">Brazilian Portugese</a>.</p> @@ -656,9 +652,6 @@ $ ../configure [...] for more details on how to use the CNI interface. </p> </dd> </dl> - - -</GCJNAV> </body> </html> Index: gcj-3.1-status.html =================================================================== RCS file: /cvs/gcc/wwwdocs/htdocs/java/gcj-3.1-status.html,v retrieving revision 1.27 diff -u -3 -p -r1.27 gcj-3.1-status.html --- gcj-3.1-status.html 23 Apr 2002 23:07:40 -0000 1.27 +++ gcj-3.1-status.html 31 Oct 2002 14:44:04 -0000 @@ -1,11 +1,12 @@ <html> <head> -<title> gcj 3.1 status </title> +<title>GCJ 3.1 status</title> </head> -<body bgcolor="#fffffff"> -<h1> gcj 3.1 status </h1> +<body> + +<h1>GCJ 3.1 status</h1> <h2> Bugs </h2> Index: index.html =================================================================== RCS file: /cvs/gcc/wwwdocs/htdocs/java/index.html,v retrieving revision 1.115 diff -u -3 -p -r1.115 index.html --- index.html 30 Sep 2002 16:13:19 -0000 1.115 +++ index.html 31 Oct 2002 14:44:04 -0000 @@ -2,11 +2,9 @@ <head> <title>GCJ: The GNU Compiler for Java: Home Page</title> </head> -<body> -<GCJNAV> +<body> -<br /> <h1>The GNU Compiler for the Java<sup><a href="tm.html"><small>tm</small></a></sup> Programming Language</h1> <table border="0" cellpadding="4" width="95%"> @@ -266,8 +264,6 @@ Currently, this code is enabled for IA-6 </table> <!-- News entries end here --> - -</GCJNAV> </body> </html> Index: libgcj-platforms.html =================================================================== RCS file: /cvs/gcc/wwwdocs/htdocs/java/libgcj-platforms.html,v retrieving revision 1.21 diff -u -3 -p -r1.21 libgcj-platforms.html --- libgcj-platforms.html 25 Mar 2002 20:50:21 -0000 1.21 +++ libgcj-platforms.html 31 Oct 2002 14:44:04 -0000 @@ -6,7 +6,7 @@ <body> -<h1 align="center">libgcj-2.95 Platform Test Strategy</h1> +<h1>libgcj-2.95 Platform Test Strategy</h1> <h2> Platform Coverage </h2> <p>One of the critical steps in making releases is platform testing. Index: libgcj2.html =================================================================== RCS file: /cvs/gcc/wwwdocs/htdocs/java/libgcj2.html,v retrieving revision 1.8 diff -u -3 -p -r1.8 libgcj2.html --- libgcj2.html 25 Mar 2002 20:50:21 -0000 1.8 +++ libgcj2.html 31 Oct 2002 14:44:04 -0000 @@ -63,9 +63,5 @@ </dl> -<hr /> - - <a href="index.html">Back to main page</a> - </body> </html> Index: projects.html =================================================================== RCS file: /cvs/gcc/wwwdocs/htdocs/java/projects.html,v retrieving revision 1.27 diff -u -3 -p -r1.27 projects.html --- projects.html 25 Mar 2002 06:32:12 -0000 1.27 +++ projects.html 31 Oct 2002 14:44:05 -0000 @@ -2,11 +2,9 @@ <head> <title>The GCJ Projects List</title> </head> -<body bgcolor="#FFFFFF"> -<GCJNAV> +<body> -<br /><br /> <h1>The GCJ Projects List</h1> <p> @@ -205,8 +203,6 @@ Runtime improvements <li>Write a program to convert existing locale data into a format we can use.</li> </ul> - -</GCJNAV> </body> </html> Index: status.html =================================================================== RCS file: /cvs/gcc/wwwdocs/htdocs/java/status.html,v retrieving revision 1.16 diff -u -3 -p -r1.16 status.html --- status.html 30 Oct 2002 18:39:31 -0000 1.16 +++ status.html 31 Oct 2002 14:44:05 -0000 @@ -2,17 +2,16 @@ <head> <title>GCJ - Status</title> + <style type="text/css"> dt.package { font-weight: bold; font-family: monospace } dt.target { font-weight: bold } </style> + </head> <body> -<GCJNAV> - -<br /><br /> <h1>GCJ Status</h1> Status of GCJ as of the current release (gcc 3.2). @@ -148,8 +147,6 @@ supported.</dd> <dt class="target">Hitachi SH-3/4 micro-controller</dt> <dd>Ok, in CVS (target only).</dd> </dl> - -</GCJNAV> </body> </html> Index: test.html =================================================================== RCS file: /cvs/gcc/wwwdocs/htdocs/java/test.html,v retrieving revision 1.8 diff -u -3 -p -r1.8 test.html --- test.html 25 Mar 2002 06:32:12 -0000 1.8 +++ test.html 31 Oct 2002 14:44:05 -0000 @@ -4,8 +4,6 @@ </head> <body> -<GCJNAV> - <h1>Testing GCJ</h1> <table border="0" cellpadding="4" width="95%"> @@ -64,8 +62,6 @@ encourage developers to contribute test <p>Changes affecting the gcj front end can usefully be tested against Jacks. We don't as yet have an automated mechanism to run Jacks tests in our test framework.</p> - -</GCJNAV> </body> </html> Index: thanks.html =================================================================== RCS file: /cvs/gcc/wwwdocs/htdocs/java/thanks.html,v retrieving revision 1.28 diff -u -3 -p -r1.28 thanks.html --- thanks.html 25 Mar 2002 06:32:12 -0000 1.28 +++ thanks.html 31 Oct 2002 14:44:05 -0000 @@ -6,9 +6,6 @@ <body> -<GCJNAV> - -<br /><br /> <h1>GCJ Credits</h1> <table border="0" cellpadding="4" width="95%"> @@ -137,8 +134,6 @@ in testing GCJ: </ul> Thank you all! - -</GCJNAV> </body> </html> Index: tm.html =================================================================== RCS file: /cvs/gcc/wwwdocs/htdocs/java/tm.html,v retrieving revision 1.13 diff -u -3 -p -r1.13 tm.html --- tm.html 25 Mar 2002 06:32:12 -0000 1.13 +++ tm.html 31 Oct 2002 14:44:05 -0000 @@ -4,14 +4,10 @@ </head> <body> -<GCJNAV> - -Java and all Java-based marks are trademarks or registered trademarks +<p>Java and all Java-based marks are trademarks or registered trademarks of Sun Microsystems, Inc. in the United States and other countries. The Free Software Foundation, Cygnus Solutions and Red Hat are -independent of Sun Microsystems, Inc. - -</GCJNAV> +independent of Sun Microsystems, Inc.</p> </body> </html> ^ permalink raw reply [flat|nested] 21+ messages in thread
* Re: GCJ redesign (was: java/status.html updates) 2002-10-30 15:08 ` GCJ redesign (was: java/status.html updates) Gerald Pfeifer 2002-10-30 16:26 ` Per Bothner @ 2002-10-31 10:35 ` Tom Tromey 2002-11-02 2:41 ` GCJ redesign Gerald Pfeifer 1 sibling, 1 reply; 21+ messages in thread From: Tom Tromey @ 2002-10-31 10:35 UTC (permalink / raw) To: Gerald Pfeifer; +Cc: Per Bothner, java-patches, gcc-patches >>>>> "Gerald" == Gerald Pfeifer <pfeifer@dbai.tuwien.ac.at> writes: Gerald> Per, Tom, ..., is this okay with you? The yellow backgrounds look a bit odd compared to the overall blue-ish theme. This isn't a major problem. Overall I think this looks great. Tom ^ permalink raw reply [flat|nested] 21+ messages in thread
* Re: GCJ redesign 2002-10-31 10:35 ` Tom Tromey @ 2002-11-02 2:41 ` Gerald Pfeifer 2002-11-10 12:55 ` Tom Tromey 0 siblings, 1 reply; 21+ messages in thread From: Gerald Pfeifer @ 2002-11-02 2:41 UTC (permalink / raw) To: Tom Tromey; +Cc: Per Bothner, java-patches, gcc-patches On 31 Oct 2002, Tom Tromey wrote: > The yellow backgrounds look a bit odd compared to the overall blue-ish > theme. This isn't a major problem. Overall I think this looks great. I'm happy that you like it! My main two goals were to create a portal for GCJ based on your original navigation, but trying to avoid redundancy (in terms of code/user interface design and in terms of information) on the one hand and incompleteness on the other hand, as well as to keep as much of your original design as possible. Let's take this just as a first step and iterate on it; feedback is definitely welcome! Do you have any suggestions/preferences concerning the colors? One thing I noticed is that instead of <h2>This is a title</h2> you use <table id="features" border="0" cellpadding="4" width="95%"> <tr bgcolor="#b0d0ff"> <th align="left"> This is a title </th> </tr> </table> If you revert this, that is, you replace these pseudo-tables by an <h2> environment, I will hack our style file to do the right thing for the java/*.html pages automatically. (This will make it easier for you to edit/add pages in the future, and more importantly, it will allow as to change style/color in just a single place in the future.) Gerald ^ permalink raw reply [flat|nested] 21+ messages in thread
* Re: GCJ redesign 2002-11-02 2:41 ` GCJ redesign Gerald Pfeifer @ 2002-11-10 12:55 ` Tom Tromey 2002-11-10 13:55 ` Gerald Pfeifer 0 siblings, 1 reply; 21+ messages in thread From: Tom Tromey @ 2002-11-10 12:55 UTC (permalink / raw) To: Gerald Pfeifer; +Cc: Per Bothner, java-patches, gcc-patches >>>>> "Gerald" == Gerald Pfeifer <pfeifer@dbai.tuwien.ac.at> writes: Gerald> Let's take this just as a first step and iterate on it; Gerald> feedback is definitely welcome! One thing I like in particular is that now there is a mailing list link on the gcj page again. Gerald> Do you have any suggestions/preferences concerning the colors? The rest of the page uses various shades of blue. If these same shades could be propagated to the gcc navigation bar, that would suit me. Gerald> If you revert this, that is, you replace these pseudo-tables Gerald> by an <h2> environment, I will hack our style file to do the Gerald> right thing for the java/*.html pages automatically. Could you update the style file first? I'd like to make this change but I don't want it to "regress". Also I want to be able to check my work; I find the HTML in the java directory a bit hard to follow -- too many nested tables. Tom ^ permalink raw reply [flat|nested] 21+ messages in thread
* Re: GCJ redesign 2002-11-10 12:55 ` Tom Tromey @ 2002-11-10 13:55 ` Gerald Pfeifer 2002-11-11 15:21 ` Gerald Pfeifer 0 siblings, 1 reply; 21+ messages in thread From: Gerald Pfeifer @ 2002-11-10 13:55 UTC (permalink / raw) To: Tom Tromey; +Cc: Per Bothner, java-patches, gcc-patches On 10 Nov 2002, Tom Tromey wrote: >> If you revert this, that is, you replace these pseudo-tables >> by an <h2> environment, I will hack our style file to do the >> right thing for the java/*.html pages automatically. > Could you update the style file first? Well, that's just fair. I'm going to do this by means of the patch below, and as an example I have converted java/index.html accordingly. Note that currently that horizontal bar appears larger than before because this is now a true <h2> (previously it looked like a heading in graphical browsers, but was not marked up accordingly). If we want, we can change that; just replace <th align="left"><h2> </verbatim> %body <verbatim> </h2></th></tr></table> by <th align="left"><b> </verbatim> %body <verbatim> </b></th></tr></table> in style.mhtml. > I'd like to make this change but I don't want it to "regress". Also I > want to be able to check my work; I find the HTML in the java directory > a bit hard to follow -- too many nested tables. Definitely! I hope that by getting rid of <GCJNAV> and the tables for the headings this will become easier. In other words, most of the "messy" stuff now resides in style.mhtml, and regular documentation contributors should not have to worry about it. At least that's my hope. ;-) Gerald Redefine <h2> to provide the style used for heading in java/*.html. Index: style.mhtml =================================================================== RCS file: /cvs/gcc/wwwdocs/htdocs/style.mhtml,v retrieving revision 1.43 diff -u -3 -p -r1.43 style.mhtml --- style.mhtml 10 Nov 2002 20:33:11 -0000 1.43 +++ style.mhtml 10 Nov 2002 21:34:51 -0000 @@ -11,6 +11,16 @@ <group <set-var navigation> <set-var BACKPATH="../"> + <define-container h2> + <verbatim> + <table border="0" cellpadding="4" width="95%"><tr bgcolor="#b0d0ff"> + <th align="left"><h2> + </verbatim> + %body + <verbatim> + </h2></th></tr></table> + </verbatim> + </define-container> > > 2002-11-10 Gerald Pfeifer <pfeifer@dbai.tuwien.ac.at> * index.html: Use <h2> instead of tricky tables to handle layout. Minor markup tweaks. Index: java/index.html =================================================================== RCS file: /cvs/gcc/wwwdocs/htdocs/java/index.html,v retrieving revision 1.116 diff -u -3 -p -r1.116 index.html --- java/index.html 31 Oct 2002 14:47:43 -0000 1.116 +++ java/index.html 10 Nov 2002 21:34:52 -0000 @@ -7,27 +7,21 @@ <h1>The GNU Compiler for the Java<sup><a href="tm.html"><small>tm</small></a></sup> Programming Language</h1> -<table border="0" cellpadding="4" width="95%"> -<tr bgcolor="#b0d0ff"> - <th align="left"> - What is GCJ? - </th> -</tr> -</table> -<br /> -GCJ is a portable, optimizing, ahead-of-time compiler for the Java -Programming Language. It can compile: +<h2>What is GCJ?</h2> + +<p>GCJ is a portable, optimizing, ahead-of-time compiler for the Java +Programming Language. It can compile:</p> <ul> <li>Java source code directly to native machine code,</li> <li>Java source code to Java bytecode (class files),</li> <li>and Java bytecode to native machine code.</li> </ul> -Compiled applications are linked with the GCJ runtime, +<p>Compiled applications are linked with the GCJ runtime, <code>libgcj</code>, which provides the core class libraries, a garbage collector, and a bytecode interpreter. <code>libgcj</code> can dynamically load and interpret class files, resulting in mixed -compiled/interpreted applications. +compiled/interpreted applications.</p> <p> Most of the APIs specified by "The Java Class Libraries" Second @@ -59,13 +53,7 @@ can see the <a href="libgcj-classpath-co <br /> <br /> -<table border="0" cellpadding="4" width="95%"> -<tr bgcolor="#b0d0ff"> - <th align="left"> - GCJ News - </th> -</tr> -</table> +<h2>GCJ News</h2> <table> ^ permalink raw reply [flat|nested] 21+ messages in thread
* Re: GCJ redesign 2002-11-10 13:55 ` Gerald Pfeifer @ 2002-11-11 15:21 ` Gerald Pfeifer 0 siblings, 0 replies; 21+ messages in thread From: Gerald Pfeifer @ 2002-11-11 15:21 UTC (permalink / raw) To: Tom Tromey; +Cc: Per Bothner, java-patches, gcc-patches Hi Tom, On Sun, 10 Nov 2002, Gerald Pfeifer wrote: > Note that currently that horizontal bar appears larger than before because > this is now a true <h2> (previously it looked like a heading in graphical > browsers, but was not marked up accordingly). here is a better fix for this problem: Use CSS instead of tricky tables (which are not visually appealing anyway) to mark <h2>. In general, I don't think we should rely on CSS for critical markup yet, but I suppose this does not qualify as critical. Gerald Index: style.mhtml =================================================================== RCS file: /cvs/gcc/wwwdocs/htdocs/style.mhtml,v retrieving revision 1.47 diff -u -3 -p -r1.47 style.mhtml --- style.mhtml 11 Nov 2002 23:05:11 -0000 1.47 +++ style.mhtml 11 Nov 2002 23:18:20 -0000 @@ -13,12 +13,11 @@ <set-var BACKPATH="../"> <define-container h2> <verbatim> - <table border="0" cellpadding="4" width="95%"><tr bgcolor="#b0d0ff"> - <th align="left"><h2> + <h2 style="background-color:#B0D0FF"> </verbatim> %body <verbatim> - </h2></th></tr></table> + </h2> </verbatim> </define-container> > ^ permalink raw reply [flat|nested] 21+ messages in thread
* Re: java/status.html updates 2002-10-30 10:12 ` Per Bothner 2002-10-30 10:39 ` Andreas Jaeger 2002-10-30 15:08 ` GCJ redesign (was: java/status.html updates) Gerald Pfeifer @ 2002-10-31 19:12 ` Jeff Sturm 2002-11-01 12:11 ` Tom Tromey 2002-11-04 10:08 ` Anthony Green 3 siblings, 1 reply; 21+ messages in thread From: Jeff Sturm @ 2002-10-31 19:12 UTC (permalink / raw) To: Per Bothner; +Cc: java-patches, gcc-patches On Wed, 30 Oct 2002, Per Bothner wrote: > I checked in the attached patch, to add triples. > For some targets the gcj-3.1-status.html does not > contain triples, or it looks wrong (like xscale), > so I'll leave it to somebody else to fix that. Like this? sparc64 and sparcv9 are valid CPU identifiers (and work with gcj). Also I don't understand the note about Hitachi SH, gcj works as a hosted compiler on sh-linux (I actually tried it, on a Dreamcast). OK? Index: status.html =================================================================== RCS file: /cvs/gcc/wwwdocs/htdocs/java/status.html,v retrieving revision 1.17 diff -u -p -r1.17 status.html --- status.html 31 Oct 2002 14:47:43 -0000 1.17 +++ status.html 1 Nov 2002 03:03:09 -0000 @@ -115,7 +115,8 @@ it isn't very useful.</dd> <dt class="target">FreeBSD on the Pentium-compatible PCs (<code>i[56]86-pc-freebsd*</code>)</dt> <dd>Ok.</dd> -<dt class="target">GNU/Linux on Alpha</dt> +<dt class="target">GNU/Linux on Alpha + (<code>alpha*-*-linux-gnu</code>)</dt> <dd>Ok.</dd> <dt class="target">GNU/Linux on the Itanium (ia64) architecture (<code>ia64-*-linux-gnu</code>)</dt> @@ -126,7 +127,7 @@ it isn't very useful.</dd> (<code>x86_64-*-linux-gnu</code>)</dt> <dd>Ok, in CVS (but building with multilibs enabled needs libtool patch).</dd> <dt class="target">Solaris 2.5.1, 2.6, 2.7, 2.8 on SPARC - (<code>sparc-sun-solaris2.[5678]</code>)</dt> + (<code>sparc*-sun-solaris2.[5678]</code>)</dt> <dd>Ok for 32- and 64-bit ABIs. Byte-code interpreter not currently supported.</dd> <dt class="target">SGI Irix 6.5 on Mips @@ -144,8 +145,9 @@ supported.</dd> <dd>Ok.</dd> <dt class="target">IBM s390x</dt> <dd>Ok, in CVS.</dd> -<dt class="target">Hitachi SH-3/4 micro-controller</dt> -<dd>Ok, in CVS (target only).</dd> +<dt class="target">GNU/Linux on Hitachi SH-3/4 micro-controller + (<code>sh[34]-*-linux</code>)</dt> +<dd>Ok, in CVS.</dd> </dl> </body> ^ permalink raw reply [flat|nested] 21+ messages in thread
* Re: java/status.html updates 2002-10-31 19:12 ` java/status.html updates Jeff Sturm @ 2002-11-01 12:11 ` Tom Tromey 2002-11-02 6:36 ` Jeff Sturm 0 siblings, 1 reply; 21+ messages in thread From: Tom Tromey @ 2002-11-01 12:11 UTC (permalink / raw) To: Jeff Sturm; +Cc: Per Bothner, java-patches, gcc-patches Jeff> Like this? sparc64 and sparcv9 are valid CPU identifiers (and work with Jeff> gcj). Also I don't understand the note about Hitachi SH, gcj works as a Jeff> hosted compiler on sh-linux (I actually tried it, on a Dreamcast). This looks fine to me. Tom ^ permalink raw reply [flat|nested] 21+ messages in thread
* Re: java/status.html updates 2002-11-01 12:11 ` Tom Tromey @ 2002-11-02 6:36 ` Jeff Sturm 0 siblings, 0 replies; 21+ messages in thread From: Jeff Sturm @ 2002-11-02 6:36 UTC (permalink / raw) To: Tom Tromey; +Cc: java-patches, gcc-patches On 1 Nov 2002, Tom Tromey wrote: > This looks fine to me. Applied. Jeff ^ permalink raw reply [flat|nested] 21+ messages in thread
* Re: java/status.html updates 2002-10-30 10:12 ` Per Bothner ` (2 preceding siblings ...) 2002-10-31 19:12 ` java/status.html updates Jeff Sturm @ 2002-11-04 10:08 ` Anthony Green 3 siblings, 0 replies; 21+ messages in thread From: Anthony Green @ 2002-11-04 10:08 UTC (permalink / raw) To: Per Bothner; +Cc: Gerald Pfeifer, java-patches, gcc-patches On Wed, 2002-10-30 at 10:07, Per Bothner wrote: > I checked in the attached patch, to add triples. > For some targets the gcj-3.1-status.html does not > contain triples, or it looks wrong (like xscale), > so I'll leave it to somebody else to fix that. Per asked me to fix the xscale reference. I've also added arm-elf. 2002-11-04 Anthony Green <green@penalty> * status.html: Fix xscale reference. Add ARM. Index: status.html =================================================================== RCS file: /cvs/gcc/wwwdocs/htdocs/java/status.html,v retrieving revision 1.20 diff -2 -c -p -r1.20 status.html *** status.html 3 Nov 2002 22:12:20 -0000 1.20 --- status.html 4 Nov 2002 18:06:37 -0000 *************** supported.</dd> *** 154,159 **** (<code>alpha-dec-osf4.0f</code>, <code>alpha-dec-osf5.1</code>)</dt> <dd>Ok.</dd> ! <dt class="target">GNU/Linux on XScale using ELF</dt> ! <dd>Ok.</dd> <dt class="target">IBM s390x</dt> <dd>Ok, in CVS.</dd> --- 154,163 ---- (<code>alpha-dec-osf4.0f</code>, <code>alpha-dec-osf5.1</code>)</dt> <dd>Ok.</dd> ! <dt class="target">Bare metal ARM ELF using newlib ! (<code>arm-elf</code>)</dt> ! <dd>Ok, in CVS. No threads, file I/O or networking.</dd> ! <dt class="target">Bare metal XScale ELF using newlib ! (<code>xscale-elf</code>)</dt> ! <dd>Ok. No threads, file I/O or networking.</dd> <dt class="target">IBM s390x</dt> <dd>Ok, in CVS.</dd> ^ permalink raw reply [flat|nested] 21+ messages in thread
end of thread, other threads:[~2002-11-11 23:21 UTC | newest] Thread overview: 21+ messages (download: mbox.gz / follow: Atom feed) -- links below jump to the message on this page -- 2002-10-27 18:29 java/status.html updates Jeff Sturm 2002-10-27 18:35 ` Per Bothner 2002-10-27 18:57 ` Jeff Sturm 2002-10-29 14:29 ` Gerald Pfeifer 2002-10-29 15:00 ` Per Bothner 2002-10-30 8:36 ` Gerald Pfeifer 2002-10-30 10:12 ` Per Bothner 2002-10-30 10:39 ` Andreas Jaeger 2002-10-30 15:08 ` GCJ redesign (was: java/status.html updates) Gerald Pfeifer 2002-10-30 16:26 ` Per Bothner 2002-10-31 6:18 ` Gerald Pfeifer 2002-10-31 12:25 ` Gerald Pfeifer 2002-10-31 10:35 ` Tom Tromey 2002-11-02 2:41 ` GCJ redesign Gerald Pfeifer 2002-11-10 12:55 ` Tom Tromey 2002-11-10 13:55 ` Gerald Pfeifer 2002-11-11 15:21 ` Gerald Pfeifer 2002-10-31 19:12 ` java/status.html updates Jeff Sturm 2002-11-01 12:11 ` Tom Tromey 2002-11-02 6:36 ` Jeff Sturm 2002-11-04 10:08 ` Anthony Green
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).