[Bug 210967] New: Java files have no default application to run with.
https://bugzilla.novell.com/show_bug.cgi?id=210967 Summary: Java files have no default application to run with. Product: openSUSE 10.2 Version: Alpha 5 Platform: Other OS/Version: Other Status: NEW Severity: Normal Priority: P5 - None Component: Java AssignedTo: dbornkessel@novell.com ReportedBy: pnemec@novell.com QAContact: qa@suse.de Even though files like .java .jar .jnlp have defined mime type. There is no default application set to run them (neither in Gnome nor in KDE). IMHO it would be nice and right to set java files with run: java with java jar with java -jar jnlp with javaws AFAIK jar files are configured to be unpacked by default which is IMHO very wrong, because when user download some program (installer) it will open archive instead start installing. P.S. I am not sure if this problem is java-team related or more KDE and GNOME related, so please reassign if appropriate. -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is.
https://bugzilla.novell.com/show_bug.cgi?id=210967 dbornkessel@novell.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |ASSIGNED ------- Comment #1 from dbornkessel@novell.com 2006-10-30 08:28 MST ------- Hi. Thanks for the bug report and the thoughts you have about the Java stuff and sorry for the very long delay (Eclipse summit and vacations came between :/ ) I don't think, however that all of your suggestions make sense: - *.java with java: ... did you mean *.class with java? *.java files are opened with an editor, which makes sense as those files contain Java source code. If you meant *.class with java, that would not make much sense neither, as in Java not every *.class file has a main method. - *.jar with java -jar: Would make sense in some cases, in most cases it wouldn't. Jar files can -- but do not need to -- contain classes with a main method. Most of the time, jars are just archives and should hence be opened with an archiving program. Perhaps, one could write a wrapper script that checks, whether it is just an archive or an executable archive. - *.jnlp with javaws: that should be done, agreed. I will try to find out who is responsible for that. -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is.
https://bugzilla.novell.com/show_bug.cgi?id=210967 ------- Comment #2 from pnemec@novell.com 2006-10-31 01:36 MST ------- Hi, i am glad, that my report is not gone in dust :) *.java - should be of course opened with default editor *.class - make sense open with java. I know that not every class have main method, but some have. Unexperienced user should be able to run class file either by clicking or form context menu "run with java". It is default behavior in Mac OS X, and also in Windows (if you have java installed). *.jar - make definitely sense. I am aware that jar is just another package format. But AFAIK it is not widely used for packing. It is used mainly for packing *.class files. I know that not all jars contain Mainfest, but it really annoying when you try run program and you only get content of jar. So unexperienced user should get runned program = default and experienced user will unpack it using jar command, or use additional method "unpack using Ark ;) Again open jar using java -jar is default choice in Mac OS X and Windows. Imaging this situation for moment. User download installer of some program in jar package and try install program? No, he will only unpack content of installer package. My point of view is that both users (unexperienced and experienced) should get what they want and deserve :) -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is.
https://bugzilla.novell.com/show_bug.cgi?id=210967 ------- Comment #3 from dbornkessel@novell.com 2006-10-31 03:45 MST ------- Created an attachment (id=103150) --> (https://bugzilla.novell.com/attachment.cgi?id=103150&action=view) test case Hi Pavel. Thanks for the insights on how Windows and MacOS X are treating those files -- I honestly did not know that ... years of linux-only computers have limited my perspective sometimes ;) I think you are wrong in that most jars are executable jars with a manifest. Most jars are used as libraries with a lot of *.class files that are used from other programs. You are right however, that a lot of jars the user downloads can contain manifests. How about writing some wrapper application? It would for example be easy to distinguish between manifest-jars and jars without a manifest, as java exits with an error if no jar was found. If that is the case, an archive manager could be opened. With *.class files I see difficulties in setting the classpath correctly. Setting it to '-cp .' would only work, if the java file is not in a package. Could you try what happens on Windows / Mac when clicking the file HelloWorld.class in test/test2/test3 (using the attachement). Regards, Daniel -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is.
https://bugzilla.novell.com/show_bug.cgi?id=210967 ------- Comment #4 from pnemec@novell.com 2006-10-31 05:33 MST ------- I know what you speaking about, because i also use linux lot and forgetting to care about others OS. But i am communicating with people with Mac OS and Windows now so i see differences in behaviour. Funny thing about Mac OS X and Windows is, that they do not care. It is jar or *.class so run it. If it do not work, it will throw message "Program cannot be run" And that is, no care about wrapping, detecting if it is packed program or just package. In my opinion, it work. Same with setting -cp AFAIK, running without -cp means that -cp is set to "." which is sufficient. But wrapper will be probably needed to show warning message, in case program failed to start. I am not sure if it is right choosing running/unpacking in script. Too much things could go wrong. Which archive manager is right? In KDE in Gnome....in others WM. Detecting running WM .. and so on. Others thing is that you need to call "jar tf .jar" which could take some time. So my propose is KISS. If java is not installed use archive manager as default. In case java is installed, use "java -jar" for jar files and "java" for *.class I will report exact message from your test cases tomorrow, i do not have enough resources just now ;) -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is.
https://bugzilla.novell.com/show_bug.cgi?id=210967 ------- Comment #5 from pnemec@novell.com 2006-11-01 08:30 MST ------- Created an attachment (id=103316) --> (https://bugzilla.novell.com/attachment.cgi?id=103316&action=view) Mac OS X message when class file do not contain main method I was able to test it only on Mac OS X. Boath class fail give same error message. -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is.
https://bugzilla.novell.com/show_bug.cgi?id=210967 ------- Comment #6 from pnemec@novell.com 2006-12-12 02:32 MST ------- ping What is status? -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is.
https://bugzilla.novell.com/show_bug.cgi?id=210967 ------- Comment #7 from pnemec@novell.com 2007-01-02 01:34 MST ------- Ping What is status? -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is.
https://bugzilla.novell.com/show_bug.cgi?id=210967 ------- Comment #8 from dbornkessel@novell.com 2007-02-28 10:38 MST ------- hi. sorry ... I had loads of other, higher prioritized bugs. I am working on it :$ -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is.
https://bugzilla.novell.com/show_bug.cgi?id=210967 pnemec@novell.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|ASSIGNED |NEEDINFO Info Provider| |dbornkessel@novell.com ------- Comment #9 from pnemec@novell.com 2007-03-09 05:44 MST ------- Hi Daniel, today i tried some jnlp demos from Trolltech site (jambi ) ;) And hit again into this bug. So................... what is the progess ;) Any plans for 10.3 I can help you if you have no time for that, beacause i work with java and i would like to make it better in SUSE. -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is.
https://bugzilla.novell.com/show_bug.cgi?id=210967 dbornkessel@novell.com changed: What |Removed |Added ---------------------------------------------------------------------------- Info Provider|dbornkessel@novell.com |pnemec@novell.com ------- Comment #10 from dbornkessel@novell.com 2007-03-09 10:40 MST ------- Hi. Which Java do you have installed? If you have a sun Java on i586, this should actually work (the jnlp) ... if not, we need to investigate that topic. Regarding class and jar files: I have now all wrapper stuff in place and integrated into jpackage-utils, BUT I don't know how to make them the default applications for jar and class files. I added two desktop files: [Desktop Entry] Categories=System;Monitor Name=Java wrapper GenericName=Java wrapper Comment=Start Java classes with a simple mouse click MimeType=application/x-java Exec=/usr/bin/javawrapper %u Icon=java.png Terminal=true Type=Application Encoding=UTF-8 X-SuSE-translate=true and [Desktop Entry] Categories=System;Monitor Name=Jar wrapper GenericName=Jar wrapper Comment=Start Java Jar archives with a mouse click MimeType=application/x-jar Exec=/usr/bin/jarwrapper %u Icon=java.png Terminal=true Type=Application Encoding=UTF-8 X-SuSE-translate=true .. but those do not make the wrapper scripts the default applications for class and jar files. Yes, you can help me: How do I make the wrappers being the default applications used with class and jar files? If you know how to do that, I think I have everything in place -- help on that is very appriciated, thanks. Have a nice weekend, I hope we can solve that on monday and submit it asap. Regards, Daniel -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is.
https://bugzilla.novell.com/show_bug.cgi?id=210967 pnemec@novell.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEEDINFO |ASSIGNED Info Provider|pnemec@novell.com | ------- Comment #11 from pnemec@novell.com 2007-03-12 01:48 MST ------- Ok i finally found some clues. I will rise this question also on packagers ml for sure. So for gnome you probably need edit (from rpm install phase) /etc/opt/gnome/gnome-defaults.conf and then call SuSEconfig in rpm (read header of files /sbin/conf.d/SuSEconfig.gnome-vfs2 /etc/opt/gnome/gnome-defaults.conf ) For KDE you will add into desktop file label InitialPreference=X (bigger value win) I know that this is against freedesktop specification, but i think that this will be fixed by calling suseupdatedesktopfile macro. (or not and you need install two destkop files, one for KDE /opt/kde3/... and second for all others apps in /usr/share/application :) ) Anyway fro KDE see http://docs.kde.org/cgi-bin/desktopdig/search.cgi?show=development/en/kdebase/userguide/file-associations.html&collection=en&include=/development/&q=mime And finally, if priority not work it is no big deal. When you can select "open-with" from every browser it is enough (IMHO). This problem is not with .class and .jnlp. AFAIK there is no association for them at all, so they will be default. -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is.
https://bugzilla.novell.com/show_bug.cgi?id=210967 pnemec@novell.com changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |jpr@novell.com, security-team@suse.de, kde- | |maintainers@suse.de, sbrabec@novell.com ------- Comment #12 from pnemec@novell.com 2007-03-12 03:16 MST ------- Adding potentially interested people. For GNOME we need to desktop people to modify /etc/opt/gnome/gnome-defaults.conf and add priority for x-jar For KDE we need to know if deprecated "InitialPreference" option is used. And if no, which way is used now. sbrabec rise question about security. If jar will be associated with java- jar, will it be possible to directly run jar application from web page, or from email attachment ? Directly mean without user interaction. -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is.
https://bugzilla.novell.com/show_bug.cgi?id=210967 ------- Comment #13 from sbrabec@novell.com 2007-03-12 03:39 MST ------- I guess the "run it" association could be the default only if at least one of following two conditions is valid: - Started in a limited secure environment. - Extra click as a confirmation of launch of downloaded application is required in related applications (firefox, epiphany, evolution). -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is.
https://bugzilla.novell.com/show_bug.cgi?id=210967 ------- Comment #14 from lnussel@novell.com 2007-03-12 03:40 MST ------- What about using binfmt_misc to have the kernel handle executable .jar files? -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is.
https://bugzilla.novell.com/show_bug.cgi?id=210967 ------- Comment #15 from pnemec@novell.com 2007-03-12 04:28 MST ------- Stanislav If application run jar by default, then application is broken. And this wrong place to fix it. Program packed in jar is similar to python *.pyc or perl *.pm In KDE jar package is already associated with ark. And i hadn`t seen ark start on any web-page with jar file. But i see we still need to test behavior of this association in some apps. -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is.
https://bugzilla.novell.com/show_bug.cgi?id=210967 dbornkessel@novell.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|ASSIGNED |NEEDINFO Info Provider| |kde-maintainers@suse.de ------- Comment #16 from dbornkessel@novell.com 2007-03-12 05:54 MST ------- @Ludwig: I tried that possibility and it worked on the console. Konqueror however still used Ark. Furthermore, I was not completely sure how to enable this feature constantly ... do we write an init script that 'installs' these handlers everytime the system is restartet? AFAIK it does not stay enabled after reboot (I could be wrong on this though). @KDE-Team: With who do I have to speak in order to integrate these mime-type associations in the desktop? Are the menu files ok to be subbmitted as shown in Comment #10? I would welcome every input on this topic, as I never had to think about this stuff ;) .. however: The wrapper scripts work and are ready to be submitted. -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is.
https://bugzilla.novell.com/show_bug.cgi?id=210967 pnemec@novell.com changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llunak@novell.com ------- Comment #17 from pnemec@novell.com 2007-03-12 06:06 MST ------- I spoke with Lubos, he know how to set this. CCing llunak. -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is.
https://bugzilla.novell.com/show_bug.cgi?id=210967 llunak@novell.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEEDINFO |ASSIGNED Info Provider|kde-maintainers@suse.de | ------- Comment #18 from llunak@novell.com 2007-03-12 07:08 MST ------- The document referenced from comment #11 is correct for KDE3 (the KDE-related part of that comment itself is not though). The .desktop file just needs InitialPreference= field, that's what KDE3 uses. And there's no need to make such .desktop file KDE-only (just grep your /usr/share/applications for it). I'm not quite sure what's the plan for KDE4 but so far it uses the same mechanism. -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is.
https://bugzilla.novell.com/show_bug.cgi?id=210967 ------- Comment #19 from lnussel@novell.com 2007-03-12 07:37 MST ------- I guess .jar files have to be handled similar to shell scripts by kde. If you click on a shell script without +x an editor opens. Only if it has +x it gets executed. Wrt to mounting binfmt_misc, we don't use that on SUSE Linux yet AFAIK. Java would be the first user. AFAIK RedHat uses binfmt_misc for wine though so maybe their implementation could be adapted. -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is.
https://bugzilla.novell.com/show_bug.cgi?id=210967 ------- Comment #20 from sbrabec@novell.com 2007-03-13 03:47 MST ------- Comment #19: There is an old bug 93498 about it. -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is.
https://bugzilla.novell.com/show_bug.cgi?id=210967 ------- Comment #21 from dbornkessel@novell.com 2007-04-26 10:50 MST ------- I just submitted jpackage-utils with binfmt_misc for java class and jar files enabled. I too created desktop files for the wrapper scripts ... but at least in KDE the ark program still is the default one used :( Will investigate how to do that properly. Regards, Daniel -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is.
https://bugzilla.novell.com/show_bug.cgi?id=210967 pnemec@novell.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|ASSIGNED |NEEDINFO Info Provider| |llunak@novell.com ------- Comment #22 from pnemec@novell.com 2007-04-27 00:30 MST ------- I tested it. It is strange, that while jarwrapper is at first position when you select "run with" Konqueror still use ark when you click on jar file. I see you do not use InitialPreference option in desktop file. I tried to add it but without any success. ark.desktop also do not use this option. @Lubos any idea? I have couple of comments. /usr/binjarwrapper:8 You should use "exit 1" instead of "return 1" When i installed rpm i get: pnemec_local@wintermute:/abuild/buildsystem.pnemec.test/usr/src/packages/RPMS/x86_64> sudo rpm -Uvh jpackage-utils-1.7.0-33.x86_64.rpm Preparing... ########################################### [100%] 1:jpackage-utils ########################################### [100%] Starting java.binfmt_misc /etc/init.d/java.binfmt_misc: line 124: echo: write error: Invalid argument I do not know what this message mean. I tested jar files and class files. It worked. Executing class file worked even when execute bit was not set. I am not sure if this is intended. opening. Jnlp files still do not work. No association for it. I have java 1.5 from sun (comment #10) -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is.
I tested it. Wow ... that was quick :) It is strange, that while jarwrapper is at first position when you select "run with" Konqueror still use ark when you click on jar file. I see you do not use InitialPreference option in desktop file. I tried to add it but without any success. ark.desktop also do not use this option. @Lubos any idea? Yes, the desktop files still need some work. I was going to so some stuff about
https://bugzilla.novell.com/show_bug.cgi?id=210967 dbornkessel@novell.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEEDINFO |ASSIGNED Info Provider|llunak@novell.com | ------- Comment #23 from dbornkessel@novell.com 2007-04-27 01:45 MST ------- (In reply to comment #22) that today. I was going to try the InitialPreference stuff as well -- sad to hear that it does not work. I already asked KDE maintainers about some things and will consult them further.
I have couple of comments. /usr/binjarwrapper:8 You should use "exit 1" instead of "return 1"
Ok, will fix that
When i installed rpm i get: pnemec_local@wintermute:/abuild/buildsystem.pnemec.test/usr/src/packages/RPMS/x86_64> sudo rpm -Uvh jpackage-utils-1.7.0-33.x86_64.rpm Preparing... ########################################### [100%] 1:jpackage-utils ########################################### [100%] Starting java.binfmt_misc /etc/init.d/java.binfmt_misc: line 124: echo: write error: Invalid argument
I do not know what this message mean.
this usually happens if the binmisc stuff is already activated ... I will improve the runtime script to avoid this message.
I tested jar files and class files. It worked. Executing class file worked even when execute bit was not set. I am not sure if this is intended.
nope ... this was not intended and it's strange :(
opening. Jnlp files still do not work. No association for it. I have java 1.5 from sun (comment #10) Mmmm ... strange again. It used to work with firefox before :( ... will investigate here as well.
-- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is.
https://bugzilla.novell.com/show_bug.cgi?id=210967 ------- Comment #24 from dbornkessel@novell.com 2007-04-27 08:47 MST ------- (In reply to comment #23)
I tested it. Wow ... that was quick :) It is strange, that while jarwrapper is at first position when you select "run with" Konqueror still use ark when you click on jar file. I see you do not use InitialPreference option in desktop file. I tried to add it but without any success. ark.desktop also do not use this option. @Lubos any idea? Yes, the desktop files still need some work. I was going to so some stuff about
(In reply to comment #22) that today. I was going to try the InitialPreference stuff as well -- sad to hear that it does not work. I already asked KDE maintainers about some things and will consult them furthe
The problem is, that in /opt/kde3/share/mimelnk/application/x-jar.desktop the option X-KDE-AutoEmbed is set to true, so konqueror chooses the embedding application. This needs to be set to false by the KDE guys -- after that it works.
I have couple of comments. /usr/binjarwrapper:8 You should use "exit 1" instead of "return 1"
Ok, will fix that done
When i installed rpm i get: pnemec_local@wintermute:/abuild/buildsystem.pnemec.test/usr/src/packages/RPMS/x86_64> sudo rpm -Uvh jpackage-utils-1.7.0-33.x86_64.rpm Preparing... ########################################### [100%] 1:jpackage-utils ########################################### [100%] Starting java.binfmt_misc /etc/init.d/java.binfmt_misc: line 124: echo: write error: Invalid argument
I do not know what this message mean.
this usually happens if the binmisc stuff is already activated ... I will improve the runtime script to avoid this message.
done as well
I tested jar files and class files. It worked. Executing class file worked even when execute bit was not set. I am not sure if this is intended.
nope ... this was not intended and it's strange :(
worked with konqueror but is fixed now.
opening. Jnlp files still do not work. No association for it. I have java 1.5 from sun (comment #10) Mmmm ... strange again. It used to work with firefox before :( ... will investigate here as well.
mime type is there now ... should work with firefox now -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is.
https://bugzilla.novell.com/show_bug.cgi?id=210967 dbornkessel@novell.com changed: What |Removed |Added ---------------------------------------------------------------------------- AssignedTo|dbornkessel@novell.com |kde-maintainers@suse.de Status|ASSIGNED |NEW ------- Comment #25 from dbornkessel@novell.com 2007-04-27 08:50 MST ------- @kde-maintainers: Could you please set X-KDE-AutoEmbed in /opt/kde3/share/mimelnk/application/x-jar.desktop to false and afterwards close this bug as fixed? If somebody still has problems with the package afterwards, please re-open if already closed. -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is.
https://bugzilla.novell.com/show_bug.cgi?id=210967 stbinner@novell.com changed: What |Removed |Added ---------------------------------------------------------------------------- AssignedTo|kde-maintainers@suse.de |stbinner@novell.com Status|NEW |ASSIGNED -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is.
https://bugzilla.novell.com/show_bug.cgi?id=210967 ------- Comment #26 from wstephenson@novell.com 2007-05-02 03:52 MST ------- Dirk thinks this might break webpages with embedded Java. Dirk: got a test case? -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is.
https://bugzilla.novell.com/show_bug.cgi?id=210967 stbinner@novell.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|ASSIGNED |RESOLVED Resolution| |FIXED ------- Comment #27 from stbinner@novell.com 2007-05-07 07:39 MST ------- Tested with some web pages with Java applets and detected no problem. Changed in package. -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is.
participants (1)
-
bugzilla_noreply@novell.com