Re: Problems installing Java plugin - sharkive broken?
Karl Asha wrote: > > Seems a lot of people have managed to download the plugin in ascii > mode. It needs to be explicitly downloaded in binary mode. The version > at ftp.tux.org is correct. That site is actually the central mirror > repository. OK, the wget one didn't work either, now trying with command-line ftp from ftp.tux.org explicitly setting bin... Woo, that worked. Are we always going to have this problem with sharkives? FTP clients assume it's text and downloads it as such unless there's a way of explicitly specifying binary. -- Rachel -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Re: Frame's title bar is off the screen
>When I open a frame with the code given below, it opens with <0,0> of the >content area at <0,0> of the screen. So, the title bar is off the screen, >and the window can't be moved. Is there a "WORA" workaround? I found this >message, but I'd rather avoid this type of stuff if possible: This is my least favourite bug. Sun think that fixing this is an 'enhancement'. I think that if our sales director says 'Why do the windows appear in the wrong place?', it's a bug. You can vote for this bug on the Java Developer Connection Bug Database. Its id is 4102292. But don't hold your breath waiting for Sun to fix it, it's been there for over two years. Ron -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Re: Frame's title bar is off the screen
> Ron Yorston writes: >> When I open a frame with the code given below, it opens with >> <0,0> of the content area at <0,0> of the screen. So, the title >> bar is off the screen, and the window can't be moved. Is there >> a "WORA" workaround? I found this message, but I'd rather avoid >> this type of stuff if possible: Ron> This is my least favourite bug. Ron> Sun think that fixing this is an 'enhancement'. I think that Ron> if our sales director says 'Why do the windows appear in the Ron> wrong place?', it's a bug. Ron> You can vote for this bug on the Java Developer Connection Ron> Bug Database. Its id is 4102292. Ron> But don't hold your breath waiting for Sun to fix it, it's Ron> been there for over two years. The problem is that Java needs to determine the dimensions of the borders used by the window manager. This is tricky and works different for almost every window manager (and there are dozens of window managers). The currently best supported window manager is kwm from KDE 1.x and we are still working on better support for other window managers (you can imagine that testing on 10 or more window managers is very time intensive). The fact that window managers themselfes have bugs or problems with ICCCM support doesn't make the the task easier. Also, there are still several place where the AWT code makes wrong assumptions about timing and the order in which things happen. Note that we already support a broader range of window managers than the Solaris JDK. Juergen -- Juergen Kreileder, Blackdown Java-Linux Team http://www.blackdown.org/java-linux.html -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Re: Problems installing Java plugin - sharkive broken?
> Rachel Greenham writes: Rachel> Karl Asha wrote: >> >> Seems a lot of people have managed to download the plugin in ascii >> mode. It needs to be explicitly downloaded in binary mode. The version >> at ftp.tux.org is correct. That site is actually the central mirror >> repository. Rachel> OK, the wget one didn't work either, now trying with Rachel> command-line ftp from ftp.tux.org explicitly setting Rachel> bin... That's strange, wget gets all files in binary mode by default. Rachel> Woo, that worked. Rachel> Are we always going to have this problem with sharkives? Rachel> FTP clients assume it's text and downloads it as such Rachel> unless there's a way of explicitly specifying binary. If you use netscape you should use Shift-M1 (or M3 + "Save Link As"). Then select "Source" as the format for the saved document. This tip is also mentioned in the README file on the ftp sites! Juergen -- Juergen Kreileder, Blackdown Java-Linux Team http://www.blackdown.org/java-linux.html -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Re: Plugin control panel crashes Netscape
> Rachel Greenham writes: Rachel> OK, having now installed the Java Plugin on my system, I'm Rachel> finding that if I select the JavaPluginControlPanel item Rachel> that's appeared on my bookmarks menu, Netscape quits Rachel> completely. Do you use a glibc-2.x version of netscape? Juergen -- Juergen Kreileder, Blackdown Java-Linux Team http://www.blackdown.org/java-linux.html -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Re: Plugin control panel crashes Netscape
Juergen Kreileder wrote: > > > Rachel Greenham writes: > > Rachel> OK, having now installed the Java Plugin on my system, I'm > Rachel> finding that if I select the JavaPluginControlPanel item > Rachel> that's appeared on my bookmarks menu, Netscape quits > Rachel> completely. > > Do you use a glibc-2.x version of netscape? Yes. That's the one I downloaded from netscape.com anyway, to my recollection, that didn't work with the libc5 Acrobat plugin either, but does with the newer presumably glibc one that's come out more recently. Is there an easy way I can verify this? (I know there's a command to run on an executable to see what library dependencies it has, but I can't remember what it is.) -- Rachel -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Re: Frame's title bar is off the screen
>The problem is that Java needs to determine the dimensions of the >borders used by the window manager. Why is Java trying to place the window at all when Java doesn't support window placement? Why not just let the window manager decide where to put it? I've never understood this. I'm sympathetic to the problems of dealing with icky X window managers. For what it's worth, I was always happy with how JDK worked under WindowMaker. I bet Xt's code works with this pretty well. [EMAIL PROTECTED] . . . .. . . . http://www.media.mit.edu/~nelson/ -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Re: Frame's title bar is off the screen
Hallo Nelson, NM>For what it's worth, I was always happy with how JDK worked under NM>WindowMaker. Except that the JDK *always* crashes my WindowMaker if I call setResizable(false) on a frame. OK, nowaydays WindowMaker will at least recover gracefully and restart (not taking all applications with it), and granted, it's in no way Blackdown's fault, but Sun's. The bug is in Sun's bug database, with some not very encouraging comments from Sun (last time I checked, some months ago, I thing some Sun guy basically declard the bug closed and disaknowledged its existance or blamed it on the window manager protocol or something to this effect)... MbG, Ekkehard -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
C-like functionality in numeric output
Hi,
I tried to imitate the C-like functionality for numeric output
in Java. I hoped to format numeric output (integer) so that they
line up to the left like:
1
12
344
1557
etc.
I used DecimalFormatter class:
DecimalFormat myFormatter = new DecimalFormat("");
String iString = myFormatter.format(myNumber);
However, what I got was:
0001
0012
0344
1557
(The pattern "" did not work at all)
Do you know, how I can get rid of leading zeroes and get
my formatting correctly?
Jacob Nikom
--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Re: Plugin control panel crashes Netscape
Rachel Greenham wrote: > Yes. That's the one I downloaded from netscape.com anyway, to my > recollection, that didn't work with the libc5 Acrobat plugin either, but > does with the newer presumably glibc one that's come out more recently. > > Is there an easy way I can verify this? (I know there's a command to run on > an executable to see what library dependencies it has, but I can't remember > what it is.) 'ldd' is the command you want. $ ldd `which netscape` /lib/libNoVersion.so.1 => /lib/libNoVersion.so.1 (0x40013000) libBrokenLocale.so.1 => /lib/libBrokenLocale.so.1 (0x4001d000) libXt.so.6 => /usr/X11R6/lib/libXt.so.6 (0x4001f000) libSM.so.6 => /usr/X11R6/lib/libSM.so.6 (0x4006b000) libICE.so.6 => /usr/X11R6/lib/libICE.so.6 (0x40074000) libXmu.so.6 => /usr/X11R6/lib/libXmu.so.6 (0x4008b000) libXpm.so.4 => /usr/X11R6/lib/libXpm.so.4 (0x4009e000) libXext.so.6 => /usr/X11R6/lib/libXext.so.6 (0x400ac000) libX11.so.6 => /usr/X11R6/lib/libX11.so.6 (0x400b8000) libdl.so.2 => /lib/libdl.so.2 (0x4015c000) libstdc++.so.2.8 => /usr/lib/libstdc++.so.2.8 (0x4015f000) libm.so.6 => /lib/libm.so.6 (0x401a) libc.so.6 => /lib/libc.so.6 (0x401bc000) /lib/ld-linux.so.2 => /lib/ld-linux.so.2 (0x4000) The 2nd to the last line there shows that this netscape is linked to /lib/libc.so.6, which is glibc. To find the version of glibc, $ ls -l /lib/libc.so.6 lrwxrwxrwx 1 root root 13 Dec 21 04:58 /lib/libc.so.6 -> libc-2.1.2.so -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Re: Plugin control panel crashes Netscape
> Rachel Greenham writes: Rachel> Juergen Kreileder wrote: >> >> > Rachel Greenham writes: >> Rachel> OK, having now installed the Java Plugin on my system, I'm Rachel> finding that if I select the JavaPluginControlPanel item Rachel> that's appeared on my bookmarks menu, Netscape quits Rachel> completely. >> >> Do you use a glibc-2.x version of netscape? Rachel> Is there an easy way I can verify this? (I know there's a Rachel> command to run on an executable to see what library Rachel> dependencies it has, but I can't remember what it is.) ldd For 4.72 there are three versions): Supported/Linux 2.0: This is a libc5 version and it doesn't work with the Java Plug-In. Supported/Linux 2.2 (glibc): This is a glibc-2.0 version and the Plug-In should work with it. Unsupported/Linux: Glibc-2.1 version. Java Plug-In works. This version is not supported by Netscape. IMO that doesn't mean much to the normal user. It sometimes crashes or hangs but the supported versions do that too. Juergen -- Juergen Kreileder, Blackdown Java-Linux Team http://www.blackdown.org/java-linux.html -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Plug-In Remark
I don't know if this is of any importance or not, but I just installed the plug-in ( 1.1 ) for NT to test Signed Applets. Netscape bombs everytime I try to run the signed applet demo from: http://java.sun.com/security/signExample/index.html I know this is not Linux related, and I'm not seeking help or otherwise. Just wanted to open up the information to the group. _ (Embedded image Steve Gee moved to file: Certified Javapic00736.gif) Programmer Information Technologies Maxor National Pharmacies [EMAIL PROTECTED] 806.324.5540 www.maxor.com 806.324.5400 Avi Schwartz ogies.com> cc: [EMAIL PROTECTED] Sent by: Subject: Re: Plugin control panel crashes Netscape avi@CFFtechnolo gies.com 03/27/00 10:18 AM That is exactly what happened to me. 8-( Avi Rachel Greenham wrote: > > OK, having now installed the Java Plugin on my system, I'm finding that if I > select the JavaPluginControlPanel item that's appeared on my bookmarks menu, > Netscape quits completely. > > -- > Rachel > -- Avi Schwartz Get a Life [EMAIL PROTECTED] Get Linux -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED] Compuserve GIF
java.lang.NoClassDefFoundError: sun/tools/javac/Main
I'm about at my wit's end on this one. I admin a site that relies on jsp. I just upgraded my development area to jdk1.2.2rc4, ApacheJServ1.1 and kept gnujsp0.9. Almost everything works great; actually I've got much better performance than I had before. However, I have a team of developers working on a new project. The jsp's they developed worked under the old jdk1.1.7v3, but now they are broken. The error I get is: java.lang.NoClassDefFoundError: sun/tools/javac/Main at org.gjt.jsp.JSPCompiler.compileJavaFile(JSPCompiler.java, Compiled Code) at org.gjt.jsp.JSPCompiler.compile(JSPCompiler.java, Compiled Code) at org.gjt.jsp.JSPServlet.service(JSPServlet.java, Compiled Code) at javax.servlet.http.HttpServlet.service(HttpServlet.java, Compiled Code) at org.apache.jserv.JServConnection.processRequest(JServConnection.java, Compiled Code) at org.apache.jserv.JServConnection.run(JServConnection.java, Compiled Code) at java.lang.Thread.run(Thread.java, Compiled Code) all my other jsp's can find javac no problem. I have updated /jdk/jre/lib/security/* as recommended in the faqOmatic, and i still get the same error. I NEED the performance boost I got with the upgrade; there's no way I'm going to roll it back. How can I get upgrade my config/codebase to work? These developers have been writing good code before... Is it an issue with my configuration? If so, where? If it's with their code, whereabouts should I look for the offending line(s)? Thank you all for your time! ___ Robert Miller office: 206.770.6000 x208 | cell: 206.227.1231 Unix Systems Administrator http://www.hometownfan.com -=+> Get It on the Net! <+=- http://www.ticketexchange.com -=+> 1st Place for Tickets! <+=- -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Re: java.lang.NoClassDefFoundError: sun/tools/javac/Main
Thanks guys! You nailed it!
I've forwarded the appropriate URLs to my developers to see what they say
about it. I hope it won't be too much of a problem to get that issue resolved.
thanks again!
On 27 Mar 2000, Juergen Kreileder wrote:
Peter did, too =)
>
> org.gjt.jsp.JSPCompiler is broken because it uses
> sun.tools.javac.Main. Take a look at
> http://java.sun.com/products/jdk/faq/faq-sun-packages.html ("Why
> Developers Should Not Write Programs That Call 'sun' Packages")
>
> If you want to use sun.tools.javac.Main with 1.2.x you have to put
> tools.jar on your classpath. The better solution is not to use
> sun.tools.javac.Main at all.
>
>
> Juergen
>
> --
> Juergen Kreileder, Blackdown Java-Linux Team
> http://www.blackdown.org/java-linux.html
>
___
Robert Miller
office: 206.770.6000 x208 | cell: 206.227.1231
Unix Systems Administrator
http://www.hometownfan.com -=+> Get It on the Net! <+=-
http://www.ticketexchange.com -=+> 1st Place for Tickets! <+=-
--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Re: java.lang.NoClassDefFoundError: sun/tools/javac/Main
I had the same problem, for some reason with 1.2.2, tools.jar is not in the default classpath. I fixed it by adding JAVA_HOME/lib/tools.jar to my classpath, but you could also just copy the jar file into JAVA_HOME/jre/lib/ext, and it should be in the default J2 classpath. -Lkb At 11:22 AM 3/27/00 -0800, Robert Miller wrote: > > I'm about at my wit's end on this one. I admin a site that relies on jsp. >I just upgraded my development area to jdk1.2.2rc4, ApacheJServ1.1 and kept >gnujsp0.9. Almost everything works great; actually I've got much better >performance than I had before. > > However, I have a team of developers working on a new project. The jsp's >they developed worked under the old jdk1.1.7v3, but now they are broken. The >error I get is: >java.lang.NoClassDefFoundError: sun/tools/javac/Main >at org.gjt.jsp.JSPCompiler.compileJavaFile(JSPCompiler.java, Compiled Code) >at org.gjt.jsp.JSPCompiler.compile(JSPCompiler.java, Compiled Code) > at org.gjt.jsp.JSPServlet.service(JSPServlet.java, Compiled Code) >at javax.servlet.http.HttpServlet.service(HttpServlet.java, Compiled Code) >at org.apache.jserv.JServConnection.processRequest(JServConnection.java, Compiled Code) >at org.apache.jserv.JServConnection.run(JServConnection.java, Compiled Code) >at java.lang.Thread.run(Thread.java, Compiled Code) > >all my other jsp's can find javac no problem. I have updated >/jdk/jre/lib/security/* as recommended in the faqOmatic, and i still get the >same error. > > I NEED the performance boost I got with the upgrade; there's no way I'm >going to roll it back. How can I get upgrade my config/codebase to work? > > These developers have been writing good code before... Is it an issue with >my configuration? If so, where? If it's with their code, whereabouts should >I look for the offending line(s)? > > Thank you all for your time! >___ >Robert Miller >office: 206.770.6000 x208 | cell: 206.227.1231 >Unix Systems Administrator > >http://www.hometownfan.com -=+> Get It on the Net! <+=- >http://www.ticketexchange.com -=+> 1st Place for Tickets! <+=- > > >-- >To UNSUBSCRIBE, email to [EMAIL PROTECTED] >with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED] > > -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Re: C-like functionality in numeric output
> Jacob Nikom writes:
Jacob> I used DecimalFormatter class:
Jacob> DecimalFormat myFormatter = new DecimalFormat("");
Jacob> String iString = myFormatter.format(myNumber);
Jacob> However, what I got was:
Jacob> 0001
Jacob> 0012
Jacob> 0344
Jacob> 1557
Jacob> (The pattern "" did not work at all)
Jacob> Do you know, how I can get rid of leading zeroes and get
Jacob> my formatting correctly?
I never tried it but maybe this does what you want:
http://www2.jps.net/~adahlman/programs/PaddedDecimalFormat.java
http://pws.prserv.net/ad/programs/PaddedDecimalFormat.html (Javadoc)
Juergen
--
Juergen Kreileder, Blackdown Java-Linux Team
http://www.blackdown.org/java-linux.html
--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Re: java.lang.NoClassDefFoundError: sun/tools/javac/Main
> Robert Miller writes:
Robert> I'm about at my wit's end on this one. I admin a site that
Robert> relies on jsp. I just upgraded my development area to
Robert> jdk1.2.2rc4, ApacheJServ1.1 and kept gnujsp0.9. Almost
Robert> everything works great; actually I've got much better
Robert> performance than I had before.
Robert> However, I have a team of developers working on a new
Robert> project. The jsp's they developed worked under the old
Robert> jdk1.1.7v3, but now they are broken. The error I get is:
Robert> java.lang.NoClassDefFoundError: sun/tools/javac/Main
Robert> at org.gjt.jsp.JSPCompiler.compileJavaFile(JSPCompiler.java,
Compiled Code)
Robert> at org.gjt.jsp.JSPCompiler.compile(JSPCompiler.java, Compiled Code)
Robert> at org.gjt.jsp.JSPServlet.service(JSPServlet.java, Compiled Code)
Robert> at javax.servlet.http.HttpServlet.service(HttpServlet.java,
Compiled Code)
Robert> at
org.apache.jserv.JServConnection.processRequest(JServConnection.java, Compiled Code)
Robert> at org.apache.jserv.JServConnection.run(JServConnection.java,
Compiled Code)
Robert> at java.lang.Thread.run(Thread.java, Compiled Code)
Robert> all my other jsp's can find javac no problem. I have
Robert> updated /jdk/jre/lib/security/* as recommended in the
Robert> faqOmatic, and i still get the same error.
Robert> I NEED the performance boost I got with the upgrade;
Robert> there's no way I'm going to roll it back. How can I get
Robert> upgrade my config/codebase to work?
Robert> These developers have been writing good code before... Is
Robert> it an issue with my configuration? If so, where? If it's
Robert> with their code, whereabouts should I look for the
Robert> offending line(s)?
org.gjt.jsp.JSPCompiler is broken because it uses
sun.tools.javac.Main. Take a look at
http://java.sun.com/products/jdk/faq/faq-sun-packages.html ("Why
Developers Should Not Write Programs That Call 'sun' Packages")
If you want to use sun.tools.javac.Main with 1.2.x you have to put
tools.jar on your classpath. The better solution is not to use
sun.tools.javac.Main at all.
Juergen
--
Juergen Kreileder, Blackdown Java-Linux Team
http://www.blackdown.org/java-linux.html
--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Popup Menu Question
[I'm forwarding this for another developer here. Any help is greatly appreciated. -John] I am working on a port of an IDE from Windows NT to Linux. This IDE uses popup menus, and since switching to the latest Blackdown VM I have been having some troubles. I have a panel that uses a popup window. With the Sun VM it works as desired, with the Blackdown VM I can never get focus on the popup menu. (I have attached an example). I am using enlightenment, but I have tried it with twm and seen the same behavior. I have also tried changing all the settings for the way in which popup menus get keyboard focus. I have a work around which is to store the mouse event and show the popup menu on the mouse released event. One other strange phenomenon, is that the popup menus work correctly if there is a window (that is not the terminal launching the Java program) that is in front of the Java frame and is obscuring at least part of the title bar. Has anyone seen this behavior, and does anyone have any idea if this is a bug or just something specific to this VM? John Rousseau [EMAIL PROTECTED] SilverStream Software 1 Burlington WoodsPhone: +1 781 238 5564 Burlington, MA 01803Fax: +1 781 238 5499 PopupTest.java
jdk1.2 error
Hi What does this error mean and how can I get rid of it? [vonkarman]/home/nashat/jdbc> java Client Looking up: rmi://149.8.95.60:2001/Server /usr/local/blackdown_jdk1.2/jre/lib/rt.jar: Bad file descriptor Connection established with: rmi://localhost:2001/Server I am using Blackdown's RC3 on RH6.1 Thanks, Nash'at -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Re: jdk1.2 error
> Nash'at Ahmad writes: Nash'at> What does this error mean and how can I get rid of it? Nash'at> [vonkarman]/home/nashat/jdbc> java Client Nash'at> Looking up: rmi://149.8.95.60:2001/Server Nash'at> /usr/local/blackdown_jdk1.2/jre/lib/rt.jar: Bad file descriptor Nash'at> Connection established with: rmi://localhost:2001/Server Nash'at> I am using Blackdown's RC3 on RH6.1 That's a bug in RC3, it has been fixed in RC4. Juergen -- Juergen Kreileder, Blackdown Java-Linux Team http://www.blackdown.org/java-linux.html -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Re: java.lang.NoClassDefFoundError: sun/tools/javac/Main
I don't have the blackdown jdk1.2.2, but on the sun windows jdk1.2.2, that class is in tools.jar. If such a file exists, is it in the classpath? At 11:22 AM 3/27/00 -0800, Robert Miller wrote: > However, I have a team of developers working on a new project. The jsp's >they developed worked under the old jdk1.1.7v3, but now they are broken. The >error I get is: >java.lang.NoClassDefFoundError: sun/tools/javac/Main >at org.gjt.jsp.JSPCompiler.compileJavaFile(JSPCompiler.java, Compiled Code) >at org.gjt.jsp.JSPCompiler.compile(JSPCompiler.java, Compiled Code) oo0oo0oo0oo0oo0oo0oo0oo0oo0oo0oo0oo0oo0oo0oo0oo0oo0oo0oo0oo0oo0oo0oo0oo0oo Send Sun a Message! Vote for JConfig in the JDJ Readers' Choice Awards. http://www.sys-con.com/java/readerschoice2000/ See the 'Best Class Library' category. oo0oo0oo0oo0oo0oo0oo0oo0oo0oo0oo0oo0oo0oo0oo0oo0oo0oo0oo0oo0oo0oo0oo0oo0oo -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
