[00:01:32] *** SuRfDeMoN1 has quit IRC [00:04:12] *** SuRfDeMoN has joined #eclipse [00:05:01] *** hmalphettes has quit IRC [00:05:10] *** pschriner has joined #eclipse [00:06:47] *** Hanumaan has joined #eclipse [00:07:32] *** fixl has quit IRC [00:09:53] *** magnet has quit IRC [00:10:47] *** kthomas_vh has quit IRC [00:13:37] *** ablepharus has joined #eclipse [00:13:48] <ablepharus> hi [00:14:01] <ablepharus> i have big problems with installing plugins =( [00:15:25] <ablepharus> i read about a "search for new features to install" etc. [00:15:31] <ablepharus> but i don't have them [00:15:52] <ablepharus> and if i manually add url's and so on [00:15:59] *** ech0s7 has quit IRC [00:16:04] <ablepharus> i only get errors [00:18:18] *** pingveno has quit IRC [00:18:45] *** Stefan has quit IRC [00:21:39] *** hmalphettes has joined #eclipse [00:21:48] <nitind> ablepharus: ~info [00:21:49] <Arbalest> Please state a) your CPU architecture (x86, 64-bit, etc.), b) operating system (Windows, Linux, OSX, etc.), c) your Java runtime environment (please verify by checking your ~logs or in the about dialog's ~jre section. No, typing 'java -version' in the command line does not count as checking), d) your Eclipse version, and e) where did you get Eclipse from (eclipse.org, distro repository, etc.). [00:24:08] <ablepharus> x86, linux, sun-jdk 1.6, 3.5.1, distro (gentoo eclipse-sdk) [00:24:19] <ahughes> next.... how can I add a .properties file to the classpath of my run configuration. It only allows *.jar, *.zip to be selected. [00:24:40] <rcjsuen> ahughes: maybe add the parent folder of it as a class folder [00:24:57] *** Pikachu_2015 has joined #eclipse [00:25:29] <ahughes> parent folder is the project root... [00:26:08] <rcjsuen> ahughes: Is it even possible to set a file to the classpath from the command line? [00:26:35] *** sirslacker has quit IRC [00:27:07] <ahughes> rcjsuen, yes! [00:27:15] <rcjsuen> ablepharus: You installed Eclipse with the eclipse-sdk ebuild? Try #gentoo-java. [00:27:24] <ahughes> I can add it as an 'external jar' in eclipse. But that is not portable. [00:27:43] <rcjsuen> Isn't that for adding a jar [00:27:45] <rcjsuen> and not a properties file? [00:28:09] <ablepharus> rcjsuen, why? [00:28:26] <rcjsuen> well, adding an "external jar" sounds like a jar-like operation to me [00:28:36] <ahughes> works for both.. just have to change the filetype in the filepicker from *.jar to *.* then you can select the file you want. [00:28:59] <rcjsuen> ahughes: So that makes your application run properly? [00:29:03] <ahughes> yep [00:29:16] <ahughes> but it leaves me with a non-portable runtime configuration. [00:29:30] <rcjsuen> Very interesting. I didn't think you could feed individual non jar/zip files to the JVM. [00:29:37] <rcjsuen> I'll have to try that from the CLI some time. [00:29:39] <ahughes> it's ok.. I can just hack the .launch file. [00:30:04] <rcjsuen> ablepharus: Because the Gentoo packages differ from how Eclipse's "default" binary tarballs. [00:30:38] <ablepharus> hmm [00:31:06] <rcjsuen> ahughes: Thanks for sharing your solution.l [00:34:38] <ahughes> solution would be to make the "Run Configurations -> Java Application -> Classpath -> Add JARs "*.jar, *.zip" filter dynamic/customizable. Or preferably, add 2 new buttons "Add File" and "Add External File" to the 'Classpath' page. :) [00:35:06] <rcjsuen> you could file a bug report ;) [00:35:07] <ahughes> could also do the same for folders. [00:36:01] *** juli__ has quit IRC [00:36:05] *** juli__ has joined #eclipse [00:36:11] *** Guevara has joined #eclipse [00:36:37] <Guevara> I need to remove this piece of code from my jsp page, how I do it? http://pastebin.com/m49c62b8d [00:37:08] *** juli__ is now known as julianor [00:37:22] *** azanoth has joined #eclipse [00:38:38] <Guevara> My DAO method already has the load metod [00:38:46] <Guevara> DAO class* [00:39:17] *** lbt has quit IRC [00:39:50] <Guevara> how to use my method of the DAO in my jsp page? [00:40:31] *** sphenxes has quit IRC [00:40:34] <azanoth> Hi everyone: I'm struggling with some fairly basic stuff. Attempting to use the HTTP Client service to do gets/posts, and can only find a non-jarred collection of classes. When importing this file system, my workspace expands to messily large proportions. My question is... am I probably downloading the wrong file, if I'm getting a file system instead of a jar? And if not, am I importing it wrong? I've never dealt with merging other project [00:40:34] <azanoth> s with my own before. [00:40:46] <Guevara> nobody? [00:41:05] <Guevara> I think there are only bots here [00:42:04] *** Wopper has joined #eclipse [00:42:21] <rcjsuen> azanoth: Sounds like you should just add the class files' parent folder as a class folder to your project's classpath. [00:42:28] *** hrad has quit IRC [00:44:10] <azanoth> rcjsuen: Ah. So it isn't abnormal to download a library of 100+ classes, as opposed to a jar file? (Their jar file seems to be MIA) [00:44:19] <rcjsuen> azanoth: It's abnormal I would say. [00:44:58] *** Brooks has joined #eclipse [00:45:17] <Guevara> vtnc vcs [00:45:25] <azanoth> rcsjuen: Okay. I will give that a shot. Alternatively, do you have any recommendation for libraries to do html posts/gets? [00:45:36] <azanoth> Er, apologies, http posts/gets [00:45:44] <Guevara> I need to remove this piece of code from my jsp page, how I do it? http://pastebin.com/m49c62b8d [00:46:32] <rcjsuen> Just use HttpClient from Apache I guess? [00:46:47] <Guevara> I can run the select using my DAO [00:47:11] <Guevara> this [00:47:12] <Guevara> <% ProdutoDAO dao = new ProdutoDAO(); %> [00:47:13] <Guevara> <% dao.carregar(); %> [00:47:15] <Guevara> not work [00:48:30] *** Guevara has left #eclipse [00:49:48] *** CVirus has joined #eclipse [00:49:53] *** kthomas_vh has joined #eclipse [00:52:39] *** ablepharus has quit IRC [00:53:56] *** pingveno has joined #eclipse [00:55:22] *** wt has quit IRC [00:56:39] *** phoenixz has joined #eclipse [01:09:34] *** azanoth has quit IRC [01:16:52] *** Brooks has quit IRC [01:17:04] *** kthomas_vh has quit IRC [01:19:44] *** philk__ has joined #eclipse [01:26:35] *** debangsu has quit IRC [01:27:45] *** pschriner has quit IRC [01:29:04] *** phoenixz has quit IRC [01:29:37] *** d_a_carver has quit IRC [01:34:38] *** garfield__ has quit IRC [01:34:59] *** garfield__ has joined #eclipse [01:38:29] *** philk_ has quit IRC [01:39:47] *** Wopper has quit IRC [01:46:14] *** CVirus has left #eclipse [01:56:36] *** Wopper has joined #eclipse [02:04:08] *** Hanumaan has quit IRC [02:11:22] *** _spm_Draget has joined #eclipse [02:12:10] <_spm_Draget> What is the problem, if after importing some java sources from an SVN, the project in my workspace does not have any runconfigurations? I simply cannot make eclipse run a class as a java application...? [02:15:25] *** Cobi has quit IRC [02:17:33] *** rhk has joined #eclipse [02:20:06] *** the_alien has quit IRC [02:20:52] *** pnehrer has joined #eclipse [02:27:17] <rhk> wtf? "osgi.... is a complex system that requires extra development overhead" [02:30:26] *** rcjsuen has quit IRC [02:30:42] *** rcjsuen has joined #eclipse [02:31:41] <rcjsuen> _spm_Draget: Presumably it is not being recognized as a Java project I guess. [02:32:51] *** ThraShown has quit IRC [02:46:16] *** benc1 has left #eclipse [02:46:18] *** fsteeg has quit IRC [02:46:32] *** fsteeg has joined #eclipse [02:58:00] *** kthomas_vh has joined #eclipse [03:01:13] *** tr1gger has quit IRC [03:03:53] *** utopia has quit IRC [03:05:55] *** kthomas_vh_ has joined #eclipse [03:07:42] *** debangsu has joined #eclipse [03:09:29] *** NoobFukaire has joined #eclipse [03:10:46] *** hmalphettes has quit IRC [03:20:48] *** hmalphettes has joined #eclipse [03:21:37] *** kthomas_vh has quit IRC [03:25:05] *** Nescafe has quit IRC [03:28:58] *** Tesseraction has quit IRC [03:29:14] *** kthomas has joined #eclipse [03:30:23] *** kthomas_vh_ has quit IRC [03:39:25] *** laknath_ has quit IRC [03:43:09] *** _spm_Draget has quit IRC [03:56:00] *** kthomas has quit IRC [04:13:24] *** xxen has quit IRC [04:16:39] <m0> Hi, where do I download eclipse-jee-galileo-SR1 64bit for Windows? [04:16:56] <m0> I used to find the link somewhere on eclipse.org, but I can't find it anymore [04:16:59] *** bigmack83 has joined #eclipse [04:18:27] *** Stefan has joined #eclipse [04:19:34] <rcjsuen> There are no 64-bit Java EE builds. [04:20:13] <m0> So I should uninstall Java64 and put Java32 instead/ [04:20:35] <rcjsuen> you could get an SDK build and install the plug-ins on top [04:20:40] <rcjsuen> or get a 32-bit jre/eclipse build [04:21:06] <m0> 32bit eclipse doesn't work on 64bit java [04:21:29] <rcjsuen> <rcjsuen> or get a 32-bit jre/eclipse build [04:21:37] *** EricInBNE has joined #eclipse [04:21:55] <m0> Misread your jre :) [04:24:06] *** pingveno has quit IRC [04:25:05] *** nlc has joined #eclipse [04:40:38] *** allisterb has joined #eclipse [04:41:48] *** Wopper has quit IRC [04:52:34] *** wambam has left #eclipse [05:10:16] *** Stefa1 has joined #eclipse [05:17:11] *** PrakashGR has quit IRC [05:23:11] *** kheera has quit IRC [05:26:49] *** Stefan has quit IRC [05:28:33] *** hmalphettes has quit IRC [05:30:00] *** Stefan has joined #eclipse [05:39:28] *** laknath_ has joined #eclipse [05:46:42] *** Stefa1 has quit IRC [06:05:14] *** Winna has quit IRC [06:07:11] *** Winna has joined #eclipse [06:09:18] *** digitalfiz has joined #eclipse [06:10:00] <digitalfiz> i was wondering how i could get the menu like on zend studio where you can add remote connections and browse them [06:10:05] <digitalfiz> i cant seem to find it [06:10:12] <digitalfiz> im using the php eclipse [06:11:15] <digitalfiz> common sense says it should be in navigate but the navigate area is always empty [06:18:25] *** pnehrer has quit IRC [06:19:12] *** kthomas has joined #eclipse [06:21:46] *** Theravadan has joined #eclipse [06:23:43] *** Cybernator1 has joined #eclipse [06:30:18] *** keya has joined #eclipse [06:31:04] *** Cybernator1 has quit IRC [06:31:43] *** AlexanderSupertr has joined #eclipse [06:32:05] <AlexanderSupertr> hey guys [06:32:30] <AlexanderSupertr> the official FAQ referes to Chaper nOs and a Book. [06:32:56] <AlexanderSupertr> eg. "See Chapter 14 for more details on productizing an Eclipse offering." [06:33:36] <AlexanderSupertr> can someone plz explain? does wiki have chapters? [06:35:22] *** Stefa1 has joined #eclipse [06:38:01] *** Winna has quit IRC [06:38:02] *** bigmack83 has quit IRC [06:40:15] *** Cybernator has quit IRC [06:45:20] <AlexanderSupertr> got it [06:50:55] *** Stefan has quit IRC [06:51:14] <m0> Hello, when I create a "New Java EE Module" it brings up 4 default modules to create. I understand what they mean. But I don't know what "Connector Module" is [06:52:27] <m0> I know "Application client module" is to create a client (Java only). The EJB Module to create beans, etc. The Web module to create servlets, jsps, etc. But what is the connector module for? [07:01:44] *** rhk has quit IRC [07:13:46] *** Stefan has joined #eclipse [07:16:38] *** EricInBNE has quit IRC [07:18:20] *** Stefa1 has quit IRC [07:31:39] *** gambler has quit IRC [07:34:07] *** philk_ has joined #eclipse [07:37:25] *** Cybernator has joined #eclipse [07:41:01] *** philk__ has quit IRC [07:41:09] *** LongBeach has joined #eclipse [07:47:54] *** Shown has joined #eclipse [07:49:43] *** alinp has joined #eclipse [07:50:18] *** jfreeman has quit IRC [08:02:00] *** alinp has quit IRC [08:02:35] *** Evelynn has joined #eclipse [08:05:48] *** kottlett has joined #eclipse [08:10:26] *** kthomas has quit IRC [08:12:30] *** lbt has joined #eclipse [08:16:15] *** kthomas_vh has joined #eclipse [08:20:47] *** tom17bombadil has joined #eclipse [08:23:28] *** Cybernator1 has joined #eclipse [08:27:17] <m0> If someone could let me know what an Application client project is, it would be nice. I don't know why it deploys itself to the server if its client based only. [08:30:25] *** nlc has quit IRC [08:31:05] *** veyres has joined #eclipse [08:38:50] *** allisterb has quit IRC [08:39:20] *** volodya has quit IRC [08:39:35] *** Cybernator has quit IRC [08:44:17] *** allisterb has joined #eclipse [08:47:29] *** mastro has joined #eclipse [08:48:32] *** mastro has quit IRC [08:52:21] *** deSilva has quit IRC [08:52:32] *** AlexanderSupertr has quit IRC [08:55:38] *** kthomas_vh has quit IRC [08:55:55] *** kthomas_vh_ has joined #eclipse [09:01:12] *** laurenz has joined #eclipse [09:05:51] *** sphenxes has joined #eclipse [09:10:24] *** volodya has joined #eclipse [09:18:48] *** jfreeman has joined #eclipse [09:20:02] *** haptiK has quit IRC [09:23:29] *** z4z4 has joined #eclipse [09:24:21] *** debangsu has quit IRC [09:26:17] *** bigmack83 has joined #eclipse [09:26:30] *** debangsu has joined #eclipse [09:26:59] *** debangsu1 has joined #eclipse [09:26:59] *** debangsu has quit IRC [09:30:37] *** z4z4 has quit IRC [09:39:59] *** ThraShown has joined #eclipse [09:44:34] *** volodya has quit IRC [09:50:55] *** tolland has joined #eclipse [09:52:05] *** Neldo has joined #eclipse [09:52:06] *** jfreeman has quit IRC [09:52:35] *** fsteeg_ has joined #eclipse [09:53:32] *** debangsu1 has quit IRC [09:54:57] *** Shown has quit IRC [09:55:31] <Neldo> good morning, i have separated my plugin into a part which is bound to eclipse and another one which is fairly eclipse-independant. Now i want the independent part to be startable without starting eclipse. But this part checks for the encoding within the workspace. Upon checking the whole program crashes because certain classes are unavailable. My thought now was to check somehow whether... [09:55:32] <Neldo> ...eclipse is running or not without using too much of its api. Is that possible or would you suggest another solution? [10:00:22] *** TomTom has joined #eclipse [10:02:12] *** bigmack83_ has joined #eclipse [10:02:24] *** tromey has quit IRC [10:02:51] *** kensanata has joined #eclipse [10:03:58] *** gambler has joined #eclipse [10:07:56] *** mastro has joined #eclipse [10:10:35] *** volodya has joined #eclipse [10:10:56] *** fsteeg has quit IRC [10:10:56] *** fsteeg_ is now known as fsteeg [10:15:45] *** fleque has joined #eclipse [10:17:24] *** kthomas_vh_ has quit IRC [10:23:20] *** Cybernator1 has quit IRC [10:25:17] *** bigmack83 has quit IRC [10:33:05] *** dpino has joined #eclipse [10:55:54] *** bigmack83__ has joined #eclipse [11:00:11] *** laurenz has quit IRC [11:05:15] *** magnet has joined #eclipse [11:13:10] *** bigmack83_ has quit IRC [11:15:29] *** oisinh has joined #eclipse [11:16:34] *** bigmack83__ has quit IRC [11:16:55] *** bigmack83 has joined #eclipse [11:26:00] <ralf_e> Neldo, sounds a bit like you want to remove the "fairly" in "fairly eclipse-independent". Maybe whoever uses this component should provide the encoding? [11:27:36] <Neldo> ralf_e, yes, you are correct about the "fairly" ;-). So you say that there is no way to check for eclipse-availability? [11:27:53] <ralf_e> digitalfiz, not sure if I get what you mean, do you have a screenshot that shows what's missing? many things in Eclipse are perspective-specific, maybe you need to switch the right perspective? [11:29:09] <Neldo> but true, i could alter my implementation and always hand over the encoding [11:30:16] <ralf_e> Neldo, well, you can't ask Eclipse if it's available. You could ask OSGi if certain bundles are available or ask Java if certain classes are loadable, that's all technically possible. But these things all bond your components to their running environment - in terms of good design, I would keep such things out of your components and just configure them. [11:30:40] <Neldo> ok [11:31:35] <Neldo> thanks [11:32:18] *** SzymonB has joined #eclipse [11:32:30] <Neldo> i have another problem extracting this part: i put it into a java-project (as it should be used in a context without eclipse), built the jar and added that to my plugins jars. But now even though eclipse does not set a problem-marker it does throw a ClassNotFoundException when running the plugin [11:32:44] *** aljazZz has joined #eclipse [11:33:21] <Neldo> do you have an idea what i could have done wrong, ralf_e? [11:35:36] <ralf_e> Neldo, hmm, typically, a java-project and the jar you built from that is not a plug-in [11:35:56] <Neldo> i know [11:36:08] <ralf_e> I'd keep it as a plug-in / bundle project for running inside Eclipse [11:36:26] <ralf_e> I mean a bundle jar is just a jar with more options in the MANIFEST.MF [11:36:33] *** gambler has quit IRC [11:36:48] <ralf_e> you can use it in plain java without OSGi without a problem if all dependencies are fulfilled on the classpath [11:37:09] <ralf_e> btw, if you really want to check if Eclipse is available, it can be done like this: http://github.com/ralfebert/swtxml/blob/master/plugins/com.swtxml/src/com/swtxml/util/eclipse/EclipseEnvironment.java [11:37:29] *** erdal has joined #eclipse [11:38:53] <Neldo> thanks for that hint [11:39:12] *** laurenz has joined #eclipse [11:39:30] <Neldo> i thought about that as well but i just dislike the idea of having this java-project as a plugin if it could be done in another way [11:40:45] <Neldo> for instance i have this google-collection-jar and the junit-jar which are also no plugins but are included by my plugin [11:42:16] <ralf_e> well, you can keep it as plain java project as well, but then you have to tinker to use it in the Eclipse environment which expects to run bundles (typically you would convert the jar to a bundle jar by adding the manifest then). [11:42:59] <ralf_e> and at least as long as you run inside Eclipse, I'd use dependencies to other bundles for things like google collections or junit [11:44:16] <ralf_e> people who need to run outside of Eclipse / OSGi can just provide these jars on the classpath and use your bundles as jars, so you don't build a roadblock by making it a bundle project [11:44:51] *** volodya has quit IRC [11:46:08] <Neldo> ok, thanks for your time :-) [11:47:36] <Neldo> i will try to do my best from your advice [11:48:47] <aljazZz> can anyone paste a link of the official eclipse plugins repository (for galileo 3.5.1)? [11:48:47] *** navi_sir has joined #eclipse [11:48:52] *** Theravadan has quit IRC [11:54:36] <ralf_e> aljazZz, http://download.eclipse.org/releases/galileo [12:02:20] <aljazZz> thanks. couldn't find it anywhere else [12:03:02] *** aljazZz has left #eclipse [12:16:09] *** xxen has joined #eclipse [12:16:29] *** utopia has joined #eclipse [12:17:57] *** haptiK has joined #eclipse [12:23:55] *** tr1gger has joined #eclipse [12:26:44] *** jfreeman has joined #eclipse [12:27:30] *** bigmack83 has quit IRC [12:27:43] *** the_alien has joined #eclipse [12:30:58] *** volodya has joined #eclipse [12:33:58] *** laknath_ has quit IRC [12:43:04] *** rcjsuen has quit IRC [12:43:14] *** volodya has quit IRC [12:43:35] *** volodya has joined #eclipse [12:50:14] *** erdal has quit IRC [12:53:03] *** bigmack83 has joined #eclipse [12:56:11] *** bigmack83 has quit IRC [12:58:58] *** jfreeman has quit IRC [12:59:20] *** jfreeman has joined #eclipse [12:59:49] *** txomon has joined #eclipse [12:59:59] <txomon> hello? [13:00:52] <txomon> Where can I find the repos for installing cdt in linux? [13:02:51] *** Pikachu_2015 has quit IRC [13:07:59] *** bigmack83 has joined #eclipse [13:08:18] *** keya has quit IRC [13:08:22] *** Pikachu_2014 has quit IRC [13:12:45] *** utopia has quit IRC [13:12:57] *** utopia has joined #eclipse [13:13:13] *** volodya has quit IRC [13:13:49] *** rcjsuen_ has joined #eclipse [13:14:04] *** rcjsuen_ has quit IRC [13:14:23] *** Pikachu_2014 has joined #eclipse [13:15:37] *** bigmack83 has quit IRC [13:16:53] *** ThraShown has quit IRC [13:21:30] *** rcjsuen has joined #eclipse [13:22:50] <rcjsuen> txomon: should just be on the galileo site [13:23:40] *** keya has joined #eclipse [13:28:22] *** gambler has joined #eclipse [13:32:42] *** jfreeman has quit IRC [13:38:19] *** Shown has joined #eclipse [13:41:02] *** laknath_ has joined #eclipse [13:42:54] *** pnehrer has joined #eclipse [13:48:14] *** Fragarach87 has joined #eclipse [13:52:51] *** volodya has joined #eclipse [13:57:57] *** laknath_ has quit IRC [13:59:42] *** sirslacker has joined #eclipse [14:04:20] *** Tesseraction has joined #eclipse [14:09:42] *** Stefa1 has joined #eclipse [14:11:11] *** laknath_ has joined #eclipse [14:13:52] *** roots_ has joined #eclipse [14:16:12] <Neldo> hello, me again... i changed the java-project into a plugin but unfortunately it still fails with a NoClassDefFoundError... [14:17:32] <FauxFaux> Restate your problem with actual details, please! [14:25:28] <Neldo> I have written a plugin and found that one part of it was independent from the rest and useful without eclipse as well. So I extracted this part and put it into a java-project. Then I compiled the java-project, put it into a jar-file and put the jar-file into my plugin-projects build-path. [14:25:51] *** navi_sir has left #eclipse [14:26:18] *** Stefan has quit IRC [14:27:12] <Neldo> Unfortunately the built plugin then could not open certain classes which depend upon those in the extracted part. So ralf_e told me to change it into a plugin and add it to the dependencies. So I did but I still get a NoClassDefError, as I said. [14:30:31] *** Pikachu_2015 has joined #eclipse [14:34:07] <rcjsuen> is this when you deploy [14:34:15] <rcjsuen> or is this when you launch your second Eclipse from within your original Eclipse [14:35:31] <Neldo> rcjsuen: second [14:35:44] <Neldo> did not try do deploy as it already fails in this statet [14:35:49] *** Stefa1 has quit IRC [14:36:31] *** Bass10 has joined #eclipse [14:36:33] <rcjsuen> what does your bundle's .classpath, MANIFEST.MF, and build.properties files look like [14:39:07] <Neldo> the manifest.mf lists the extracted plugin under "Required-Bundle" [14:40:23] <Neldo> and both classpath and build.properties reference the desired jar in which the class lies which fails to start [14:40:48] *** digitalfiz has quit IRC [14:42:23] <rcjsuen> by "look like" I mean put it on a ~pastebin [14:42:23] <Arbalest> Please paste the relevant information onto a pastebin. The submission will then generate a URL, please copy/paste the generated URL back to the channel - http://www.pastebin.cz/ - http://papernapkin.org/pastebin/home - http://pastebin.com - http://pastebin.ca [14:43:01] <Neldo> k, sry [14:44:28] <philk_> does mylyn support markdown files or only textile? [14:45:27] <Neldo> http://pastebin.com/d74b6559a [14:46:14] <rcjsuen> what is the NCDFE complainig about [14:46:22] *** nlc has joined #eclipse [14:46:41] <Neldo> java.lang.NoClassDefFoundError: org/antlr/runtime/Lexer [14:46:48] *** izz has joined #eclipse [14:47:48] <izz> hi guys, Im having some problems with euml2 eclipse plugin, do you know anyplace where I can get help? [14:48:04] <izz> or mabye some other good uml plugin for reverse engineering class diagrams? [14:49:57] <rcjsuen> Neldo: when does it die? [14:50:04] <rcjsuen> Neldo: if you load Google classes before, does it die on Google classes? [14:51:02] <Neldo> it dies when i start the editor for my plugin which is taking use of the antlr-lexer and does not use the google-collections [14:53:39] <rcjsuen> then try adding google code to see if google code dies [14:53:51] <Neldo> no it does not [14:57:23] <rcjsuen> Neldo: Maybe you could try exporting the ANTLR jar [14:57:32] <rcjsuen> Neldo: your lines 7 and 12 differ in that regard [14:57:52] <rcjsuen> tho it's not totally clear to me why the .classpath file should play a role here [15:01:16] <Neldo> i cant imagine why that should make a difference as i always had the two of them that way :-P [15:01:27] <Neldo> nope, still failes [15:01:30] *** volodya has quit IRC [15:02:13] *** tolland has quit IRC [15:03:17] *** _utopia has joined #eclipse [15:03:49] <Neldo> even when i export that antlr-jar in the other bundle it fails, rcjsuen [15:03:57] <rcjsuen> In the other bundle? [15:04:31] <Neldo> as i said i split my original bundle in two different parts [15:04:51] <Neldo> one with the editor and stuff and the other one with the parser [15:05:02] <Neldo> and before splitting them everything worked fine [15:06:23] *** tom17bombadil has quit IRC [15:06:28] <rcjsuen> Your current setup doesn't look very "split up" to me. [15:09:25] <Neldo> well i thought about putting most of the classes into the other project and then cutting the nasty little connections afterwards, when everything worked :-P [15:09:48] <Neldo> you are referring to the still reference to the antlr-jar, right? [15:10:05] *** dj_pi has quit IRC [15:10:12] <rcjsuen> you could maybe try adding a compilation order tho i dunno if thatl'l help http://pastebin.ca/1723719 [15:10:54] <rcjsuen> Right, my "not very split up" comment was referring to you having third-party libraries directly in a bundle instead of having them in separate bundles. [15:13:45] *** garfield__ has quit IRC [15:13:56] *** garfield__ has joined #eclipse [15:14:05] *** _utopia_ has joined #eclipse [15:15:36] *** utopia has quit IRC [15:15:44] <Neldo> the thing that is irritating me is that the pde-environment apparently cannot detect the error before running :-P [15:16:07] <Neldo> compilation order did not help either [15:16:28] <rcjsuen> This problem is hit pretty frequently by users. [15:16:34] *** garfield__ has quit IRC [15:17:21] <rcjsuen> izz: I think Soyatec has a forum, no? You could try asking there for assistance.' [15:18:28] <Neldo> rcjsuen: and it tells me that the class definition could not be found even though it references the jar... is that common, too? [15:18:45] <rcjsuen> Neldo: I mean to say, ppl hit NCDFE a lot when using third party jars for the first time in PDE, so yes. [15:18:54] <Neldo> k [15:19:08] <rcjsuen> Unfortunately, you seem to be hitting the nail in the right places so I am out of ideas at the moment. [15:19:22] <rcjsuen> Did you try making a new launch configuration? [15:19:22] <Neldo> bugger ;-P [15:19:28] <rcjsuen> and maybe wiping your target ws [15:19:43] <Neldo> could try that... [15:21:30] *** _utopia has quit IRC [15:24:48] <Neldo> unfortunately i got no new finding :-P [15:25:40] <rcjsuen> Think positive, we have ruled out some variables. [15:25:51] <Neldo> ;) [15:26:18] <Neldo> thanks for your time and ideas :-) [15:27:32] *** leitaox has joined #eclipse [15:27:44] *** leitaox has quit IRC [15:29:55] *** l0gin has joined #eclipse [15:29:56] <l0gin> hi all [15:30:17] <l0gin> I have eclipse launched and a project with directories but they are not listed alphabetically, how can I change that ? [15:34:09] *** allisterb_ has joined #eclipse [15:34:17] *** rgrunber has joined #eclipse [15:36:00] <philk_> my fragment bundle refuses to know the packages its host is having. [15:38:39] *** allisterb has quit IRC [15:45:12] *** alinp has joined #eclipse [15:45:14] *** hmalphettes has joined #eclipse [15:47:09] *** allisterb has joined #eclipse [15:47:45] <philk_> this fragmen is driving me crazy... it does not find an classes from its host bundles [15:54:42] <philk_> how can I import a file into a project without copying it into the project? [15:56:25] <rcjsuen> using linked resources i guess [15:59:23] *** fsteeg_ has joined #eclipse [15:59:23] *** fsteeg has quit IRC [15:59:44] *** fsteeg_ is now known as fsteeg [16:00:35] *** _utopia_ has quit IRC [16:00:35] *** tr1gger has quit IRC [16:00:54] *** utopia has joined #eclipse [16:01:00] *** fsteeg has quit IRC [16:01:26] *** allisterb_ has quit IRC [16:02:15] *** wt has joined #eclipse [16:02:34] *** fsteeg has joined #eclipse [16:02:47] *** laurenz has quit IRC [16:03:56] *** tr1gger has joined #eclipse [16:04:24] *** allisterb has quit IRC [16:04:30] *** kartben has joined #eclipse [16:05:12] *** rbondi has joined #eclipse [16:06:52] *** utopia has quit IRC [16:07:04] *** utopia has joined #eclipse [16:07:14] *** z4z4 has joined #eclipse [16:10:24] *** aboSamoor has joined #eclipse [16:11:16] <aboSamoor> why eclipse pydev is not packaged in linux distributions ? [16:13:33] *** alinp has quit IRC [16:16:20] <rcjsuen> aboSamoor: You would have to ask your distro's package maintainers. :o [16:16:43] <rcjsuen> Or alternatively ask the PyDev developers why don't they make some Eclipse packages [16:19:44] *** keya has quit IRC [16:25:24] *** rmrfslash has joined #eclipse [16:25:43] *** _utopia has joined #eclipse [16:29:20] *** detritux has joined #eclipse [16:30:44] <detritux> hi all. I'm using eclipse helios and when I want to select a svn connector, I can't (I get the list with all the connectors, I select the one I want then click on finish but nothing happens). Any idea ? [16:31:34] <nitind> It's possible that theyhaven't put out versions that are compatible with Helios milestones. [16:32:08] <rmrfslash> god forbid eclipse maintains backwards compatibility with anything [16:32:19] *** hmalphettes has quit IRC [16:32:23] <detritux> ok, I assumed that they had because I got the screen with the choices and all :) [16:32:34] <detritux> thanks anyway [16:33:16] *** utopia has quit IRC [16:33:16] *** _utopia is now known as utopia [16:33:30] *** laurenz has joined #eclipse [16:34:08] *** acuster has joined #eclipse [16:36:11] <nitind> rmrfslash: You don't know what the cause is. It could just be overly cautious version ranges specified in the SVN plug-in dependencies. [16:36:40] <rcjsuen> detritux: Nothing happens as in the dialog doesn't advance? [16:37:23] <rcjsuen> detritux: Did you try using the keyboard instead of clicking on the button with the mouse? [16:38:12] <rcjsuen> detritux: Please talk in the channel instead of PM'ing me. ;) [16:38:43] <detritux> woops [16:38:44] <detritux> sry [16:38:45] <detritux> :D [16:39:00] <rcjsuen> You say "click" a lot, did you try using the keyboard? [16:40:03] <detritux> no, I just clicked but could see the button being clicked (3d effect) [16:41:03] <rcjsuen> You're on Linux? [16:41:07] <detritux> yes [16:41:12] <charley> detritux: you may be running into the gtk error in the faq [16:41:14] <rcjsuen> Please try using the keyboard then. [16:41:18] <detritux> kubuntu 9.10 [16:41:34] <rcjsuen> I'll make it clear instead of merely "beating around the bush". ;) [16:42:49] <detritux> :D yeah, it's just that I don't know how to get the screen back without having to restart eclipse (using IRC in eclipse....) [16:44:22] *** detritux has quit IRC [16:45:36] *** detritux has joined #eclipse [16:45:52] <detritux> ok I tried with the keyboard, but it's still the same [16:47:00] <rcjsuen> That's a strange one then. [16:47:22] <rcjsuen> It may be worth trying the workaround anyway [16:47:26] <rcjsuen> see 3.8 http://wiki.eclipse.org/IRC_FAQ [16:51:09] *** z4z4 has quit IRC [16:52:07] *** goldFingaZ has joined #eclipse [16:53:26] *** Evelynn has quit IRC [16:53:32] *** tom17bombadil has joined #eclipse [16:56:18] <goldFingaZ> eclipse 64bit does not start in opensuse 11.2 64bit. it just created the workspace folder and nothing happens after that. no error messages etc [16:56:36] <goldFingaZ> i read the faq and install 64bit version of jvm...still the same problem [16:56:42] <goldFingaZ> any help would be appreciated [16:57:17] <goldFingaZ> btw, previously intalled the java ee sdk in the system [16:57:19] <rcjsuen> what file did you download from eclipse.org? what is its name? [16:57:47] <goldFingaZ> when i said nothing happens, i meant even the eclipse logo is not shown at startup [16:58:27] <goldFingaZ> rcjsuen: i downloaded eclipse-jee-galileo-SR1-linux-gtk-x86_64.tar.gz [16:58:47] <rcjsuen> pastebin the contents of java -version [16:58:53] <rcjsuen> Where did you untar to [16:58:57] *** hmalphettes has joined #eclipse [17:02:41] *** Neldo has quit IRC [17:04:50] <goldFingaZ> rcjsuen: here's the java version you asked for ... http://pastebin.be/22576 [17:05:36] <rcjsuen> what happens if you invoke java -d64 [17:06:41] <Magicblaze007> how do i get to mylyn task list in eclipse? [17:07:10] <goldFingaZ> rcjsuen: the 64bit jvm i downloaded was jre-6u17-linux-x64-rpm from http://www.java.com/en/download/manual.jsp [17:07:15] <rcjsuen> magicblaze007: Window > Show View, and find your views there I guess? [17:08:01] <goldFingaZ> rcjsuen: when i type $java -d64, i get 'Running a 64-bit JVM is not supported on this platform' [17:08:14] <rcjsuen> well that would probably be a problem................. ;p [17:08:35] <goldFingaZ> yeah...that message is pretty indicative :) [17:08:44] <goldFingaZ> now what do i do now??? [17:09:09] <goldFingaZ> could it be that i did not install the 64bit jvm in the right place? [17:09:23] <goldFingaZ> since i installed it via an rpm file, there's not much i can do [17:09:29] <goldFingaZ> ...after the rpm installation [17:10:03] <Magicblaze007> thanks [17:12:06] *** Stefa1 has joined #eclipse [17:12:38] <rcjsuen> goldFingaZ: I think you should get support from your distro on how to install a JRE. [17:12:39] *** TomTom has quit IRC [17:12:44] <rcjsuen> I presume there's a suse irc channel somewhere. [17:13:11] *** kottlett has quit IRC [17:13:28] <Magicblaze007> show view does not show -> Mylyn task list view .. ? [17:14:16] *** Kemppi has left #eclipse [17:14:19] <Magicblaze007> am trying to follow this page: http://blogs.open.collab.net/svn/2009/06/subversion-eclipse35-easy.html [17:14:23] <goldFingaZ> rcjsuen: ok , thanks [17:14:48] <rcjsuen> magicblaze007: Then I guess you need to install Mylyn first. [17:16:21] *** goldFingaZ has left #eclipse [17:17:18] *** goldFingaZ has joined #eclipse [17:17:42] *** protected_meta has quit IRC [17:19:24] *** private_meta has joined #eclipse [17:22:28] *** tromey has joined #eclipse [17:25:19] *** rhk has joined #eclipse [17:26:09] *** detritux has quit IRC [17:26:56] *** detritux has joined #eclipse [17:27:53] *** detritux has quit IRC [17:31:46] <charley> Magicblaze007: mylyn task lists may be hiding under the Tasks folder in Show View [17:34:39] *** goldFingaZ has quit IRC [17:35:11] *** cmw72 has joined #eclipse [17:35:59] *** conan has joined #eclipse [17:37:57] *** laurenz has quit IRC [17:38:17] *** tom17bombadil has quit IRC [17:40:28] *** goldFingaZ has joined #eclipse [17:40:40] *** detritux has joined #eclipse [17:43:26] *** ercanlier has joined #eclipse [17:43:42] *** goldFingaZ has quit IRC [17:43:58] *** goldFingaZ has joined #eclipse [17:44:06] *** wt has quit IRC [17:44:21] *** wt has joined #eclipse [17:49:10] *** d_a_carver has joined #eclipse [17:50:19] *** kensanata has quit IRC [17:55:23] *** eagles0513875 has joined #eclipse [17:55:55] <eagles0513875> :) hey guys good news re having win 64bit version of eclipse posted on the download page. i filed a bug as requested by the webmaster and he said he would take it from there. [17:56:47] <rcjsuen> I guess you are speaking of ~298404 [17:56:48] <Arbalest> Bug 298404 - https://bugs.eclipse.org/bugs/show_bug.cgi?id=298404 - Community / Website / unspecified - PC / Windows 7 - NEW / major / - Assignee: phoenix.ui-inbox - 64bit windows link missing on the download options page. [18:00:53] *** txomon has quit IRC [18:01:17] *** cmw72 has quit IRC [18:10:18] *** cmw72 has joined #eclipse [18:11:03] *** ercanlier has quit IRC [18:13:17] *** mastro has quit IRC [18:13:49] *** wt has quit IRC [18:21:03] *** detritux has quit IRC [18:24:40] <eagles0513875> hahah ya rcjsuen [18:25:09] <eagles0513875> :) i think its finally goign to get pushed to the site i remember we were discussing it the other day when i was in here [18:26:42] *** SzymonB has quit IRC [18:28:21] *** kthomas_vh_ has joined #eclipse [18:29:17] *** cmw72 has quit IRC [18:30:06] *** allisterb has joined #eclipse [18:44:15] *** kartben has quit IRC [18:48:25] *** acuster has quit IRC [18:49:44] <philk_> how would I have a column in my TableViewer that displays the item number of the provided array list? I could do a table.indexOf(cell.getElement) but thats slow and lame [18:50:41] <philk_> something like an itemindex or so [18:51:11] <ralf_e> philk_, if you use a CellLabelProvider, it has been thought of via ViewerCell#getVisualIndex [18:51:21] <ralf_e> (imho, never used that one) [18:51:29] <philk_> ralf_e: thanks! Will try in a second [18:51:55] <philk_> how can I make the last column always as wide to fill the remaining space in the table? [18:52:07] <ralf_e> philk_, TableColumnLayout [18:52:45] *** kthomas_vh_ has quit IRC [18:52:49] <ralf_e> philk_, see http://www.ralfebert.de/rcpbuch/jface_tableviewer/ for examples for CellLabelProvider and TableColumnLayout (in German) [18:53:40] <ralf_e> there is a bug in 3.5.1 though, you might see horizontal scroll bars for a width of 100% [18:55:19] <ralf_e> btw, if you feel like it & while you are concerned with viewers: I'd love to get feedback about 297023: [JFace] [Viewers] Use ArrayContentProvider per default, deprecate constructor: https://bugs.eclipse.org/bugs/show_bug.cgi?id=297023 :) [18:55:28] *** jink has quit IRC [18:55:28] *** allisterb has quit IRC [18:55:28] *** eagles0513875 has quit IRC [18:55:29] *** jinky has joined #eclipse [18:55:29] <philk_> ralf_e: thanks, will check it out! [18:55:43] *** jinky is now known as jink [18:57:06] <philk_> ralf_e: commented on the bug. [18:57:44] <philk_> ralf_e: for the TableViewer I always have to set a LabelProvider for each column? Is this the most perfomant way to implement a viewer? [18:58:58] <ralf_e> philk_, shouldn't make a big difference, it's one method call per cell anyway [18:59:22] <ralf_e> has been fast enough for all tables I have built so far [18:59:31] <ralf_e> even with PropertyLabelProvider + reflection to refer to properties :) [19:01:00] <ralf_e> (PropertyCellLabelProvider is a little util class of mine available here http://github.com/ralfebert/rcputils , and if you have to built a lot of tables, you might be interested in http://www.ralfebert.de/blog/eclipsercp/tableviewerbuilder/ ;) [19:01:14] *** eagles0513875 has joined #eclipse [19:01:14] *** allisterb has joined #eclipse [19:01:46] <eagles0513875> n [19:01:48] <eagles0513875> wtf [19:04:36] *** xxen has quit IRC [19:08:23] *** SuRfDeMoN1 has joined #eclipse [19:12:40] *** goldFingaZ has quit IRC [19:13:15] *** reisi has quit IRC [19:13:15] *** imeikas has quit IRC [19:13:16] *** Zenopus has quit IRC [19:13:16] *** Verkel has quit IRC [19:13:17] *** Bass10 has quit IRC [19:13:17] *** m0 has quit IRC [19:13:17] *** mr_science has quit IRC [19:14:34] *** kthomas_vh has joined #eclipse [19:15:04] *** l0gin has quit IRC [19:17:34] *** fleque has quit IRC [19:17:59] *** Bass10 has joined #eclipse [19:17:59] *** reisi has joined #eclipse [19:17:59] *** imeikas has joined #eclipse [19:17:59] *** Zenopus has joined #eclipse [19:17:59] *** m0 has joined #eclipse [19:17:59] *** Verkel has joined #eclipse [19:17:59] *** mr_science has joined #eclipse [19:20:18] *** sirslacker has quit IRC [19:21:57] *** roots_ has quit IRC [19:22:35] <philk_> ralf_e: TableViewerBuilder looks nice! Should go into JFace code base [19:24:05] <ralf_e> philk_, I'm still evolving it + thinking about how I can delete the "Builder" in TableViewerBuilder :) [19:24:35] <ralf_e> (I think there shouldn't be a 2nd class, the viewers itself should have such straightforward API) [19:24:59] <ralf_e> but to do that, you have to look at all of them because such a change would need to be consistent [19:25:17] <ralf_e> had not enough time for this, so it stays at github for now [19:25:55] <philk_> ralf_e: thats true. I will probably use it for my current example project for OSGi services: http://github.com/pke/OutputDebugString-Monitor [19:25:57] *** SuRfDeMoN has quit IRC [19:27:17] <ralf_e> cool. [19:27:32] <philk_> ralf_e: how would I use TableColumnLayout to set the last column to take the remaining space? cannot find it on your page [19:28:05] <ralf_e> search for "Prozentuale Spaltenbreiten" [19:28:16] *** laurenz has joined #eclipse [19:28:19] <ralf_e> you have to set the layout on a composite around the table [19:28:38] <ralf_e> and you can assign pixel / percent widths to every column (and you have to assign them to every column) [19:29:02] <philk_> ralf_e: can I mix pixel and percent widths? :) [19:29:09] <ralf_e> you can mix absolute + percent widths [19:29:12] <ralf_e> :) [19:29:25] <ralf_e> also, it doesn't need to sum up to 100 [19:35:04] *** kthomas_vh has quit IRC [19:35:26] <SuRfDeMoN1> Hi, not sure if this is possible and not been able to find any tutorials online, I have a laptop running linux and a laptop running vista, I would like to run a joomla website on the laptop and use eclipse to connect to it for debugging from my vista laptop, is this possible? and does anyone know a good of any good tutorials for setting this sort of thing up? [19:38:02] *** dpino has quit IRC [19:38:25] *** fixl has joined #eclipse [19:39:00] *** philk__ has joined #eclipse [19:39:07] *** ercanlier has joined #eclipse [19:39:15] <philk__> ralf_e: TCL works great! However the VisualIndex does not work. its always 0 [19:39:54] *** ercanlier has quit IRC [19:40:49] <ralf_e> philk__, ah, sorry, the visual index refers to the column, not the row [19:41:10] *** Verkel has quit IRC [19:41:10] *** reisi has quit IRC [19:41:10] *** imeikas has quit IRC [19:41:11] *** Zenopus has quit IRC [19:41:11] *** mr_science has quit IRC [19:41:11] *** Bass10 has quit IRC [19:41:11] *** m0 has quit IRC [19:42:17] <ralf_e> sorry, can't find anything that would help with that [19:42:31] <ralf_e> do you want the index in the original list or as visually shown (pre/post sort)? [19:42:41] <philk__> ralf_e: the original index [19:43:31] <ralf_e> hmm, not sure if the viewer even keeps track of that... [19:44:13] <philk__> ralf_e: but one often needs to display a "#" element [19:45:24] <ralf_e> hmm, yeah... sorry, have not done that yet, no idea apart from adding a field to the list object, which is probably not what you want to do [19:45:36] <ralf_e> tell me if you find something :) [19:45:42] <philk__> ralf_e: sure [19:46:03] *** thana has left #eclipse [19:47:57] <philk__> ralf_e: will just use collection.indexOf for now [19:55:36] *** philk_ has quit IRC [19:56:05] <Magicblaze007> I am trying to get eclipse+svn to work on linux and It wont accept my ssh-certificate. http://blogs.open.collab.net/svn/2009/06/subversion-eclipse35-easy.html (I tried both svnkit+javahl). javahl says its not available on my centos/redhat EL box. Any ideas on how to fix this? [19:56:39] *** zx has joined #eclipse [19:57:30] <ralf_e> damn, org.eclipse.ui.editors project is setup to give an error about 1.4 compliance [19:57:49] <ralf_e> how do I disable that? can't find a setting in the project configuration [19:59:03] <philk__> how can I get a reference to a specific open view? [19:59:10] <philk__> from a command handler [19:59:58] <Magicblaze007> anyone using svn+eclipse on linux-redhat-centos here? [20:00:32] <rcjsuen> ralf_e: What do you mean exactly [20:00:44] <rcjsuen> ralf_e: You mean you don't have a J2SE-1.4 JRE set in your ws? [20:01:57] <ralf_e> rcjsuen, nevermind, found it, the project had the VM set in the build path (I don't even have a J2SE-1.4, this computer runs open source exclusively :) [20:02:25] <rcjsuen> it should be possible to alter the warning/error setting i think, but anyway [20:02:46] *** Magicblaze007 has quit IRC [20:02:57] <ralf_e> thought so, but couldn't find an option related to that [20:03:02] <ralf_e> nevermind, not that important atm [20:04:15] *** oisinh has quit IRC [20:04:41] *** Stefan has joined #eclipse [20:05:07] <charley> philk__: not sure if this is what you're looking for, but you can try something like PlatformUI.getWorkbench().getActiveWorkbenchWindow().getActivePage().showView(viewID), or maybe see PlatformUI.getWorkbench().getViewRegistry() ? [20:05:50] <rcjsuen> philk__: from the IWP you need to use findView to find it [20:05:55] <rcjsuen> may be null (if not opened) [20:05:57] <rcjsuen> or use findVR [20:06:51] <rcjsuen> charley: Still hard at work I see, is the RH office going to shutdown for the holidays? [20:07:40] *** vwegert has joined #eclipse [20:07:40] <charley> rcjsuen: :) Most people probably won't come in next week [20:08:08] <rcjsuen> We're shutting down next week it seems. I'm outta here starting tomorrow. [20:08:10] <ralf_e> philk__, HandlerUtil.getActiveWorkbenchWindow().getActiveWorkbenchPage().findViewReference() [20:08:16] <charley> Neat :) happy holidays! [20:08:39] <ralf_e> philk__, if you only want to know what's selected in that view, use the selection service / HandlerUtil.getCurrentSelection [20:09:19] <rcjsuen> of course, the current selection won't work if that part is not the active part ;) [20:09:30] <rcjsuen> charley: and to ye [20:09:50] *** adsflhsf has joined #eclipse [20:10:37] *** Stefa2 has joined #eclipse [20:10:48] *** Bass10 has joined #eclipse [20:10:48] *** reisi has joined #eclipse [20:10:49] *** imeikas has joined #eclipse [20:10:49] *** Zenopus has joined #eclipse [20:10:49] *** m0 has joined #eclipse [20:10:49] *** Verkel has joined #eclipse [20:10:49] *** mr_science has joined #eclipse [20:11:04] *** goldFingaZ has joined #eclipse [20:11:33] *** philk__ has quit IRC [20:11:33] *** fixl has quit IRC [20:11:33] *** eagles0513875 has quit IRC [20:11:33] *** allisterb has quit IRC [20:13:24] *** Magicblaze007 has joined #eclipse [20:13:36] *** philk_ has joined #eclipse [20:19:42] *** philk__ has joined #eclipse [20:19:42] *** fixl has joined #eclipse [20:19:42] *** allisterb has joined #eclipse [20:20:51] *** Stefa1 has quit IRC [20:24:29] *** Stefan has quit IRC [20:24:37] *** roots_ has joined #eclipse [20:27:45] <philk_> how come my UI bundle is still in resolved state although my ViewPart from it was already instantiated? [20:27:56] *** magnet_ has joined #eclipse [20:29:01] *** jfreeman has joined #eclipse [20:29:26] <ralf_e> philk_ loading a class only starts a bundle if Bundle-ActivationPolicy: lazy is set in the manifest [20:30:47] <philk_> ralf_e: so I better set the policy always... cause I wanna use FrameworkUtil and it does not work if the bundle is not started. [20:30:48] <ralf_e> damn, all the good hotkeys are taken already by the text editors. m1+numpad_plus / minus expand / collapse the text, m1+mousewheel scrolls fast. my zoom patch will not go through without discussion. :( [20:33:12] *** allisterb_ has joined #eclipse [20:33:21] <charley> ralf_e: I've always affiliated ctrl + mousewheel with scrolling [20:33:24] <charley> err [20:33:25] <charley> zooming [20:35:42] <ralf_e> yeah, me too, that's why I'm working on [20:35:43] <ralf_e> ~ bug 84776 [20:35:45] <Arbalest> Bug 84776 - https://bugs.eclipse.org/bugs/show_bug.cgi?id=84776 - Platform / Text / 3.1 - All / All - ASSIGNED / enhancement / - Assignee: platform-text-inbox - [misc] Some modifier + mouse wheel could change text size [20:36:06] *** philk__ has quit IRC [20:36:30] <ralf_e> unfortunately the hotkeys are already in use by the editors [20:37:02] *** allisterb__ has joined #eclipse [20:37:49] <ralf_e> I guess I will just write a patch for myself (zoom on ctrl + plus / minus / mousewheel like most applications do nowadays) and submit that for discussion :) [20:38:30] <ralf_e> charley, oh, sorry, misread your sentence [20:38:42] <ralf_e> what other application scrolls on ctrl + mousewheel? [20:39:50] <charley> ralf_e: In the editor it appears to be page up/down, but I think it will be okay if you attach context to your hotkey? [20:40:20] <ralf_e> charley, yes, but for me "zoom" (ctrl + mousewheel) in a text editor means: make the font larger :) [20:40:25] <ralf_e> like firefox does [20:41:51] <charley> ralf_e: me too (make text bigger), also I usually just use page up/down when I need to page up/down :) [20:42:09] <charley> ah, your patch is for an editor? [20:42:29] *** allisterb_ has quit IRC [20:43:40] <ralf_e> charley, ahm, yes, not for an editor, for the editor indeed [20:43:44] <ralf_e> ~ see bug 84776 [20:44:24] <ralf_e> i'm just implementing changing the font size like firefox does for the eclipse ide [20:44:51] <ralf_e> but i guess I have to find some other hotkeys already :) [20:47:13] *** dr_jerry has joined #eclipse [20:48:09] <rhk> how come CDT won't let me use an external builder for a C project on mingw? [20:48:14] *** zx has quit IRC [20:49:23] *** allisterb_ has joined #eclipse [20:49:26] <charley> ralf_e: sweet! :) [20:49:38] <charley> ~84776 [20:49:39] <Arbalest> Bug 84776 - https://bugs.eclipse.org/bugs/show_bug.cgi?id=84776 - Platform / Text / 3.1 - All / All - ASSIGNED / enhancement / - Assignee: platform-text-inbox - [misc] Some modifier + mouse wheel could change text size [20:49:59] *** allisterb has quit IRC [20:52:41] *** jusfreeman has joined #eclipse [20:53:19] *** jfreeman has quit IRC [20:54:38] *** debangsu has joined #eclipse [20:56:15] *** rmrfslash has quit IRC [20:56:56] *** rawblem has quit IRC [20:58:37] *** zx has joined #eclipse [21:01:36] *** allisterb has joined #eclipse [21:02:15] *** jawbrkr has joined #eclipse [21:02:37] <jawbrkr> is there any plugin for eclipse so it can connect and work directory off a linux server, via ssh or ftp ? [21:03:50] <rhk> ok, got it. make a "makefile" project, then enable auto-generated makefiles. [21:03:57] <rhk> cdt changes too much from release to release :) [21:04:13] *** allisterb__ has quit IRC [21:04:13] *** allisterb has quit IRC [21:04:39] *** allisterb has joined #eclipse [21:05:55] *** allisterb_ has quit IRC [21:06:08] *** sirslacker1 has joined #eclipse [21:06:11] *** ablepharus has joined #eclipse [21:06:16] *** sirslacker1 has quit IRC [21:06:32] *** rawblem has joined #eclipse [21:06:36] *** sirslacker has joined #eclipse [21:08:17] *** zx has quit IRC [21:08:57] *** zx has joined #eclipse [21:10:24] <philk_> how can make a Table always show its last row, making it basically autoscroll? [21:12:09] *** allisterb_ has joined #eclipse [21:13:49] *** wuntee has joined #eclipse [21:14:37] <wuntee> Is there a way to change the J2EE descriptor? I originally named the project 'AbcDef2.0' and am trying to get the descriptor to 'ad2' but for some reason it always deploys locally as 'AbcDef2.0' [21:14:53] <wuntee> when i say deploys locally - i mean when running through eclipse [21:15:30] <nitind> philk_: When the contents change, call Table#showItem() with the last TableItem. [21:15:55] <nitind> wuntee: That's the server context root. Check the project Properties dialog. [21:15:56] <philk_> nitind: or use Viewer.reveal(), thanks [21:16:17] <nitind> philk_: You asked about Table, not TableViewer. [21:16:31] <nitind> Is there some trick to patching a feature when it's included by other features? [21:16:44] <wuntee> nitind: been looking through for a bit - cant find anything. i figured the web.xml change of '<display-name>ad2</display-name>' would work - but no luck [21:16:50] *** allisterb__ has joined #eclipse [21:17:46] <philk_> nitind: sorry, questions was not formulated correctly [21:18:29] <nitind> wuntee: try the Web Project Settings property page. [21:19:02] <wuntee> there we go - thanks [21:19:18] *** justinfreeman has joined #eclipse [21:19:29] *** allisterb_ has quit IRC [21:20:44] *** rawblem has quit IRC [21:22:16] <wuntee> hmm - even though i changed that, and it says it was overwriting the project, it did not; still uses AbcDef2.0 [21:24:20] *** jusfreeman has quit IRC [21:27:14] *** justinfreeman has quit IRC [21:28:34] *** danhello has joined #eclipse [21:29:04] *** allisterb has quit IRC [21:29:41] *** wuntee has quit IRC [21:30:25] <philk_> ralf_e: how can I force a viewer to update a specific columns labels? [21:34:48] <ablepharus> i still don't get lucky with eclipse plugins =( [21:35:01] <ablepharus> i always get errors when i want to install one [21:35:40] *** veyres1 has joined #eclipse [21:37:08] <ralf_e> philk_, like, the headers? [21:38:23] *** danhello has quit IRC [21:38:38] <philk_> ralf_e: Like i have a "Time" column that I want to be able to render the time absolute/relative via a command toggle. How would I refresh only this column in the whole table when the command toggle was executed? [21:38:56] *** Irakirashia has joined #eclipse [21:39:18] <ralf_e> philk_, not sure if that's possible... does it really make a difference to refresh the full viewer? [21:39:30] <philk_> ralf_e: performance :) [21:39:41] <ralf_e> philk_, still using collection.indexof? :) [21:39:57] *** volodya has joined #eclipse [21:39:59] <philk_> ralf_e: still :/ [21:40:54] *** allisterb__ has quit IRC [21:41:14] *** veyres has quit IRC [21:41:23] <rcjsuen> philk_: doesn't ColumnViewer have a refresh method? [21:41:47] <ralf_e> it has, but you can only refresh the full table imho, not a single column [21:42:34] *** veyres1 has quit IRC [21:42:42] <rcjsuen> that's kinda lame [21:43:07] <rcjsuen> I know you can update from the TableViewer specific properties [21:44:04] <philk_> rcjsuen: yeah, its kinda lame indeed [21:44:33] <rcjsuen> whoops, wrong class [21:44:46] <rcjsuen> I was thinking of ViewerColumn [21:44:57] <ralf_e> zoooooooom: http://www.ubuntu-pics.de/bild/35227/screenshot_033_5UE7IO.png [21:45:10] *** LongBeach has quit IRC [21:45:12] <rcjsuen> wouldn't org.eclipse.jface.viewers.StructuredViewer.update(Object[], String[]) update specific rows? [21:45:32] <ralf_e> rows can be refreshed with refresh(obj) imho [21:45:35] <ralf_e> but not columns :) [21:45:57] <rcjsuen> wouldn't org.eclipse.jface.viewers.StructuredViewer.update(Object[], String[]) update specific _columns_? [21:46:44] <nitind> rcjsuen: No, it just lets you know whether to update a row based on those properties and the label provider. [21:46:57] <nitind> It's still the entire row. [21:47:16] <nitind> Unless I'm misreading it. [21:47:18] <rcjsuen> nitind: oh you mean it still asks the label provided N times where N = column count? [21:49:25] <philk_> how would I make the last item of a tableviewer visible? [21:49:27] *** veyres1 has joined #eclipse [21:50:00] <nitind> rcjsuen: I mean it looked like it would ask the label provider for each string whether that affected the label, and only then still refresh the row. [21:50:25] <nitind> philk_: reveal. [21:50:52] <rcjsuen> since TableItem has a setString method that takes an index it seems weird to refresh the whole row, i will have to test this [21:51:20] *** adsflhsf has quit IRC [21:55:21] <ralf_e> philk_, if you only care about scrolling down -> Table#setTopIndex [21:55:59] * ralf_e notices that every eclipse project seems to have its own formatting rules [21:56:05] <philk_> ralf_e: I would like to make the last item in the list visible [21:56:13] <rcjsuen> certainly seems like it sets the whole row (unless my snippet is wrong), very odd [21:56:14] <ralf_e> no spaces before assignment operater looks wrong [21:57:03] <ralf_e> philk_, well if you want to make the last item visible, as rcjsuen mentioned, reveal. if you want to scroll down, setTopIndex :) [21:57:12] <philk_> JFace really, really needs some kind of SyncUpdate.run(Control, Runnable) [21:57:39] <philk_> ralf_e: I will use reveal(collection.get(collection.size()-1)); [21:58:27] *** deSilva has joined #eclipse [21:58:47] <ralf_e> philk_, what does the control do in your SyncUpdate [21:58:51] <ralf_e> ? [21:59:17] <rcjsuen> Actually, nitind said reveal not me ;) [21:59:40] <rcjsuen> ralf_e: probably check if it's disposed or not [21:59:46] <rcjsuen> prior to running the runnable [21:59:59] <ralf_e> ah [22:00:02] <rcjsuen> asyncExec is an accident waiting to happen if you don't check your widget's dispose state [22:00:06] <ralf_e> I use UIJob and do the dispose check myself [22:00:25] <rcjsuen> for example, ~298415 ;) [22:00:26] <Arbalest> Bug 298415 - https://bugs.eclipse.org/bugs/show_bug.cgi?id=298415 - E4 / UI / 1.0 - PC / Windows XP - NEW / normal / - Assignee: e4.ui-inbox - StackRenderer assumes the shell has not been disposed when forcing a re-layout [22:01:05] <ralf_e> UIJob even checks if the display has been disposed [22:01:08] *** arnbak has joined #eclipse [22:01:13] <ralf_e> but for your widgets, you have to check it yourself [22:01:46] *** ercanlier has joined #eclipse [22:01:59] <philk_> ralf_e: thats what I say... everybody has to code that sync code again and again. A simple JFaceUtil.syncUpdate(Control, Runnable) would solve all this duplicated, error prone code [22:02:24] <ralf_e> hmm, maybe UIJob should get a 2nd constructor [22:02:34] <ralf_e> mostly UIJob is used to update controls [22:03:51] <philk_> UIJob is not part of JFace and it could not be used outside the Workbench [22:04:34] <rcjsuen> another one i hit recently ~291588 [22:04:35] <Arbalest> Bug 291588 - https://bugs.eclipse.org/bugs/show_bug.cgi?id=291588 - Platform / Debug / 3.6 - PC / Windows XP - RESOLVED / FIXED / normal / - Assignee: Darin_Wright - Widget disposed exception when double-clicking another launch configuration [22:04:50] <ralf_e> isn't JFace a pain to use outside the workbench as well or was this fixed? [22:04:55] <philk_> or the Viewers should just sync themself in the refresh methods() [22:05:08] <philk_> ralf_e: no, it works very well for tiny UI apps [22:05:27] *** rcjsuen has quit IRC [22:05:30] <ralf_e> oh [22:05:34] *** zstars has joined #eclipse [22:05:50] <ralf_e> still, for workbench-based apps new UIJob(someControl, "updating the UI") would be fine [22:05:51] <philk_> anyway... my autoscroll and time formatter work now as expected. Although the code might not be optimal [22:06:14] <philk_> ralf_e: you could file a bug for this one... I already filed a one for JFaceUtils.sync() [22:06:30] *** progre55 has joined #eclipse [22:06:51] <progre55> hi people! how do you specify the testing dir in eclipse? [22:07:38] *** ercanlier has quit IRC [22:08:57] <philk_> how do I get the toggle state of a command inside its handler? [22:08:57] <progre55> I mean, for j-unit tests [22:09:23] <ralf_e> philk_, yeah, will do some time soon. self-inflicted bug-filing quota already reached this year. [22:10:07] <zstars> Is there any eclipse plugin to add functions to an existing JUnit test automatically? [22:10:39] <zstars> You're kinda able to create tests easily, select functions to test etc, but once it is created I see no way to add new functions to it without doing it by hand :( [22:11:42] *** LongBeach has joined #eclipse [22:13:18] *** Fragarach87 has quit IRC [22:16:36] *** fsteeg_ has joined #eclipse [22:19:45] *** AlexanderSupertr has joined #eclipse [22:20:25] <AlexanderSupertr> can the docing views be locked in places? [22:20:59] <AlexanderSupertr> i accidently double click something, and it takes on the whole workspace hiding other views [22:21:02] <AlexanderSupertr> :( [22:22:08] <charley> AlexanderSupertr: if you double-click it again, you can restore it to its original location [22:23:13] <charley> AlexanderSupertr: also, right click tab --> detached will keep your maximize from covering the detached view, I think [22:23:18] <AlexanderSupertr> charley: yes, but can we lock the view in position so that double click does not maximize them?? [22:23:51] <charley> AlexanderSupertr: also I can't seem to maximized the detached view with a double click, and it's always on top [22:23:54] *** vwegert has quit IRC [22:24:06] <charley> the downside is that you can still accidentally move them or close them :/ [22:24:12] *** fsteeg has quit IRC [22:24:13] *** fsteeg_ is now known as fsteeg [22:25:10] <AlexanderSupertr> charley: yes. that's why i am avoiding the option. : / . Thanks anyway. [22:27:08] *** AlexanderSupertr has quit IRC [22:30:53] *** rhk has quit IRC [22:34:46] *** rcjsuen has joined #eclipse [22:47:18] *** debangsu has quit IRC [22:47:56] *** rawblem has joined #eclipse [22:54:21] *** debangsu has joined #eclipse [22:55:15] *** Shinary has quit IRC [22:57:54] *** ablepharus has quit IRC [22:58:36] *** zx has quit IRC [22:59:11] *** zx has joined #eclipse [23:01:24] *** blue_asterisk has joined #eclipse [23:03:39] <philk_> the extension editor drives me mad, zx :/ [23:04:08] <philk_> since some I-builds its always folding the entries on save and selecting the top entry. It also adds copies of entries sometimes [23:04:59] *** jfreeman has joined #eclipse [23:09:26] <philk_> why is the text on my toolbar button displayed even when there is an icon? [23:15:38] *** fixl has quit IRC [23:17:43] *** phoenixz has joined #eclipse [23:19:25] *** rgrunber has quit IRC [23:22:03] *** aksn has joined #eclipse [23:24:00] *** pnehrer has quit IRC [23:24:20] <philk_> paulweb515_: I have some toolbar buttons here (command driven) that disappear right after the toolbar is display (in a view) [23:24:48] *** allisterb has joined #eclipse [23:24:53] <philk_> paulweb515_: the space they occupied is left empty. There are no commands associated with visibleWhen expressions [23:25:30] <philk_> paulweb515_: I only have one command contribution in the toolbar that has its handler enabledWhen. If I remove this command contribution from the views toolbar, all other items appear again. [23:26:35] *** dr_jerry has quit IRC [23:28:19] <philk_> paulweb515_: interesting, when I remove the enableWhen expression on the one commands handler, all comman contributions appear in the toolbar again [23:28:42] *** zx has quit IRC [23:34:43] <philk_> ralf_e: how can I speed up insertions into a tableviewer? Right now after an item comes in from another thread I call viewer.refresh() async [23:39:11] <ralf_e> philk_, try viewer.refresh(obj), that's the only thing I can think of to "speed it up" [23:39:21] *** conan has quit IRC [23:39:33] <philk_> ralf_e: this will do nothing, I tried. It will not update the viewer [23:40:28] <ralf_e> hmm, there is this virtual/lazy stuff which reuses the tableitem objects [23:40:32] *** EricInBNE has joined #eclipse [23:40:47] <ralf_e> you could also use the raw swt table, for something like a log viewer this might be suitable [23:40:56] <philk_> ralf_e: since I do the refresh in an async the UI slows down the adding [23:41:13] <ralf_e> otherwise, I wouldn't know what else you could do [23:41:30] <philk_> ralf_e: virtual I will try [23:41:31] <ralf_e> hmm, maybe you could batch the updates [23:42:26] <philk_> ralf_e: hmmm reveal() does not work with VIRTUAL [23:42:43] <philk_> and there is no speed improvement [23:42:53] <ralf_e> philk_, yep, almost nothing works with VIRTUAL, you have to do it all yourself then :) [23:42:56] <ralf_e> if you want to the items to be as fast as possible, I'd just use SWT Table and add TableItems directly [23:43:24] <philk_> ralf_e: I am rebuilding sysinternals DebugView... it can update its listview much quicker than I am able to do [23:43:43] <ralf_e> then I'd only update the table now and then [23:43:47] <ralf_e> like every 200ms or something [23:44:04] <philk_> ralf_e: ah... have an update job? [23:44:08] *** magnet_ has quit IRC [23:44:37] *** laknath_ has quit IRC [23:44:50] <ralf_e> UIJob#schedule(delay) might help, you have to housekeep the "only one job at a time" yourself though [23:45:05] <ralf_e> maybe there is some better solution around for this, but I wouldn't know of one [23:45:20] <ralf_e> try adding to a Table directly without a JFace viewer first I'd say :) [23:45:58] <ralf_e> philk_, oh, and are you still using Collection.indexOf? ;) [23:46:34] <philk_> ralf_e: will try the job first :) [23:46:43] <philk_> and yes, still Collection.indexOf [23:47:44] <ralf_e> that slows down the process of updating a lot, doesn't it? [23:47:47] *** aboSamoor has quit IRC [23:47:50] *** fixl has joined #eclipse [23:50:03] <philk_> ralf_e: no idea, we will see [23:51:58] <philk_> ralf_e: trying refresh job now [23:52:27] <ralf_e> :( [23:52:54] <ralf_e> Collection.indexOf means it has to iterate all rows for every row. that's going to be slow :) [23:55:24] *** Wopper has joined #eclipse [23:56:07] *** _utopia has joined #eclipse [23:56:37] *** laurenz has quit IRC [23:56:40] *** _utopia has quit IRC [23:57:15] *** _utopia has joined #eclipse [23:58:21] *** _utopia has quit IRC