[00:01:13] *** rorUnni has quit IRC [00:01:43] *** xur1z has joined #eclipse [00:02:24] <xur1z> hi all! I'm exploring BIRT and wonder how i can create a data source or connection profile that is shared for the whole project. [00:02:34] <xur1z> currently i need to define the data source each time i generate a new report, which ain't how it oughta be :) [00:05:20] *** ewet has quit IRC [00:08:01] *** budhaya has joined #eclipse [00:08:02] *** tobias__ has joined #eclipse [00:11:35] *** erik2 has quit IRC [00:14:38] *** Arcalyth_ has quit IRC [00:16:57] *** Kevin_Sawicki has joined #eclipse [00:23:27] *** co2 has quit IRC [00:24:47] *** tobiash has quit IRC [00:25:35] *** JohnE has left #eclipse [00:26:22] *** ewet has joined #eclipse [00:28:36] *** discodan has quit IRC [00:33:16] *** netdur has joined #eclipse [00:33:21] *** netdur has left #eclipse [00:34:12] <GarulfoUnix> someone know why i get this error when i try to run my application from terminal and i don't have errors when i run it with Eclipse? [00:34:13] <GarulfoUnix> garulfounix[bin]$ java ColorCube3D.class [00:34:14] <GarulfoUnix> Exception in thread "main" java.lang.NoClassDefFoundError: ColorCube3D/class [00:34:27] *** lnxnt has quit IRC [00:37:09] *** SNiLD has quit IRC [00:37:12] *** _SNiLD has joined #eclipse [00:37:22] <ChrisA__> GarulfoUnix, java does not expect the .class suffix [00:37:27] <ChrisA__> try without .class [00:38:56] <GarulfoUnix> ha ok, i'm starting with Java :-) . So, i remove the extension and right now i'm getting another error: [00:38:57] <GarulfoUnix> garulfounix[bin]$ java ColorCube3D [00:38:57] <GarulfoUnix> Exception in thread "main" java.lang.NoClassDefFoundError: javax/media/j3d/Canvas3D [00:39:21] *** Hattorii has quit IRC [00:39:31] <ChrisA__> if you are using additional libraries, list them in the classpath [00:39:37] <ChrisA__> the -cp option of java [00:39:48] <ChrisA__> type java -help for more information [00:40:17] <GarulfoUnix> Thanks ChrisA__ :-) . [00:40:20] <ChrisA__> np [00:40:22] *** _SNiLD is now known as SNiLD [00:48:25] *** The_PHP_Jedi has quit IRC [00:49:56] *** lordmetroid_ has joined #Eclipse [00:51:07] *** Cpudan80 has joined #eclipse [00:51:09] <Cpudan80> Hello all [00:51:23] <Cpudan80> How do you get the java help files to show up when you do code completion? [00:51:33] *** ewet has quit IRC [00:53:08] <robinr> You need to point your JRE to a JDK [00:53:21] *** ewet has joined #eclipse [00:59:59] <GarulfoUnix> ChrisA__: can you define an example to run a program in command line (that using -cp option) ? Because i encounter difficulty [01:02:42] *** The_PHP_Jedi has joined #eclipse [01:02:43] <ChrisA__> GarulfoUnix, java -cp additionallib.jar YourMainClass [01:02:52] <ChrisA__> there's not much room for errors =) [01:02:53] *** LordMetroid has quit IRC [01:03:33] <Cpudan80> robinr: Where do I go to do that? [01:04:20] *** The_PHP_Jedi has quit IRC [01:04:43] <ChrisA__> Cpudan80, hold CTRL pressed and click on a class name of the Java 2SE... you'll get to a page with an "attach source"-button [01:04:51] <ChrisA__> Cpudan80, click that button =) [01:04:53] *** JavaWoman has joined #eclipse [01:05:00] <GarulfoUnix> ChrisA__: the problem is the same. [01:05:01] <GarulfoUnix> garulfounix[bin]$ java -cp /usr/lib/java/j3dcore.jar ColorCube3D [01:05:01] <GarulfoUnix> Exception in thread "main" java.lang.NoClassDefFoundError: ColorCube3D [01:05:27] <ChrisA__> GarulfoUnix, package name? [01:05:28] *** lordmetroid_ is now known as LordMetroid [01:05:36] <Cpudan80> ChrisA__: But wait [01:05:45] <Cpudan80> I dont want to attach sources for the built in classes [01:05:52] <Cpudan80> I want to attach the javadocs [01:05:58] <GarulfoUnix> ChrisA__: package name of my application? [01:06:03] <ChrisA__> Cpudan80, I know [01:06:07] <ChrisA__> GarulfoUnix, yes [01:06:13] <GarulfoUnix> ChrisA__: i use the default package [01:06:35] <ChrisA__> GarulfoUnix, the class file is located in the current directory? [01:06:45] <GarulfoUnix> yes [01:07:13] <GarulfoUnix> /home/garulfounix/workspace/hello3D/bin [01:08:08] <ChrisA__> GarulfoUnix, try java -cp .;/usr/lib/java/j3dcore.jar ColorCube3D [01:08:34] <ChrisA__> maybe you have to point to the current directory by . [01:08:45] <ChrisA__> *is expecting [01:09:26] *** ekiczek has quit IRC [01:10:07] *** Forexs has quit IRC [01:11:24] <GarulfoUnix> ChrisA__: that doesn't work [01:11:44] <ChrisA__> is the class name correct? [01:11:46] <paulweb515_> GarulfoUnix: are you on unix/linux? [01:11:47] <ChrisA__> it should work [01:11:50] <GarulfoUnix> i get the java's help output [01:12:09] <GarulfoUnix> paulweb515: yes . [01:12:19] <paulweb515_> java -classpath /home/garulfounix/workspace/hello3D/bin:/usr/lib/java/j3dcore.jar ColorCube3D [01:12:32] <paulweb515_> on unix : is the path separator [01:13:24] <ChrisA__> ah, ok [01:13:33] *** lordmetroid_ has joined #Eclipse [01:14:43] <GarulfoUnix> paulweb515, thanks. But, i've two .jar for java 3D :/ . How can i specify both ? [01:15:06] <GarulfoUnix> i've j3dcore.jar and j3dutils.jar [01:15:08] <ChrisA__> ... [01:15:19] <ChrisA__> list them both deparated by a : [01:15:26] <ChrisA__> thought this would be clear now [01:15:26] <paulweb515_> GarulfoUnix: keep adding them lib1.jar:lib2.jar:/classes/directory:lib3.jar etc [01:16:01] <GarulfoUnix> ok thanks again :-) [01:20:51] *** jprieur has quit IRC [01:21:54] <GarulfoUnix> paulweb515, i've another problem :/ : http://rafb.net/p/YNMj7v75.html [01:26:06] <Cpudan80> ChrisA__: Do you know where the docs are kept on ubuntu? [01:26:15] <Cpudan80> I installed them with the docs package [01:26:21] <ChrisA__> Cpudan80, unfortunately not [01:26:50] <Cpudan80> anyone else know? [01:27:09] <GarulfoUnix> Cpudan80: you can perform a search with : find /usr | grep x where x is the name of doc [01:29:44] *** LordMetroid has quit IRC [01:33:26] <GarulfoUnix> ChrisA__: do you have a idea for my problem ? [01:33:57] <ChrisA__> looks like there is a problem with native libraries [01:34:03] <ChrisA__> try a google search [01:35:31] <rawake> how do I keep my outline open from going away? when I open it then set focus back to my code it goes away and I want to keep it open [01:35:31] <Cpudan80> well I found the docs folder [01:35:41] <Cpudan80> but it still wont show the info [01:35:42] *** lordmetroid_ has quit IRC [01:41:40] *** pandaren has joined #eclipse [01:44:48] <GarulfoUnix> ChrisA__: indeed, my library environment variable doesn't contains the path to java3d shared libs :). Right now, all that's works [01:45:18] <ChrisA__> great :) [01:57:23] *** dquestions has quit IRC [01:58:15] *** The_PHP_Jedi has joined #eclipse [02:01:30] *** gbaal has joined #eclipse [02:10:34] *** crib2 has joined #eclipse [02:18:51] *** crib has quit IRC [02:20:43] *** rcjsuen__ has quit IRC [02:22:35] *** ewet has quit IRC [02:25:48] *** ewet has joined #eclipse [02:25:57] *** gaillard_ has joined #eclipse [02:26:29] *** steegf has quit IRC [02:27:24] *** crib- has joined #eclipse [02:32:51] *** veleno has quit IRC [02:36:34] *** GarulfoUnix has quit IRC [02:38:22] *** crib2 has quit IRC [02:38:23] *** rcjsuen has joined #eclipse [02:39:10] *** deng_c has joined #eclipse [02:43:55] *** devexial has joined #eclipse [02:44:34] <devexial> is it possible to send a null terminator to the console in eclipse (i'm testing reading from stdin) [02:48:20] <devexial> ahh ctrl-d [02:48:22] <devexial> neat.. [02:55:14] *** devexial has quit IRC [02:58:05] *** exst_mhua has quit IRC [02:58:10] *** exst_mhua has joined #eclipse [03:01:32] *** aramirez has joined #eclipse [03:11:56] *** ekuleshov has joined #eclipse [03:22:32] *** philk_ has joined #eclipse [03:23:33] *** emantos has joined #eclipse [03:23:38] *** Laserbeak43 has joined #eclipse [03:29:04] *** robinr has quit IRC [03:31:28] <Zerone> n8 * [03:31:33] *** Zerone has quit IRC [03:37:16] *** ekiczek has joined #eclipse [03:40:03] *** Pookzilla has quit IRC [03:40:52] *** philk__ has quit IRC [03:41:48] *** rkeiii has joined #eclipse [03:43:54] *** ChrisA__ has quit IRC [03:44:09] <rkeiii> Hi all. I am recieving an erro when installing a plugin saying it requires "org.eclipse.emf". Where can I obtain this org.eclipse.emf? [03:45:57] <rcjsuen> rkeiii: What are you installing? Did you click 'Select Required'? [03:47:38] <rkeiii> rcjusen: I am installing the Web Tools Platform.. and yes I clicked that. [03:48:08] <rcjsuen> rkeiii: What update site did you use [03:48:29] <rkeiii> one sec.. i am retrying using all the update sites in my list [03:48:54] <rcjsuen> rkeiii: What Eclipse version are you on? [03:49:08] <rkeiii> I'm on eclipse 3.3.0. [03:50:08] <rkeiii> rcjusen: I am using all the update sites that came in eclipse.. [03:50:14] <rkeiii> no new ones though [03:50:29] <rkeiii> and it cannot find that dependency =/ [03:52:07] <rcjsuen> rkeiii: Did you select Europa Update Site? [03:52:59] <rkeiii> No, I do not have that option. I have a "Europa Discovery Site". [03:54:08] <rcjsuen> yes, that one [03:54:13] <rcjsuen> so you selected web tools platform [03:54:18] <rkeiii> Yep I am using it. [03:54:21] <rcjsuen> you click Select Required, and nothing happened? [03:54:22] *** mindCrime has joined #eclipse [03:54:29] <rkeiii> correct [03:54:38] <rcjsuen> how odd [03:54:44] *** msbhvn has joined #eclipse [03:54:48] <rcjsuen> please maximize the update manager window [03:54:51] <rcjsuen> and take a screenshot [03:54:57] <rcjsuen> rkeiii: You also might want to get 3.3.1.1. [03:55:02] <rcjsuen> which a sbug fixes for the 3.3.0 line [03:55:36] <rkeiii> rcjusen: Well I use a distribution of eclipse provided by opensuse.. so I'm not sure they have the absolute latest available. [03:56:03] <rcjsuen> oh [03:56:15] <rcjsuen> I'd get Eclipse from eclipse.org if I were you. [03:56:47] <msbhvn> anyone know if there's a keyboard shortcut for 'Build Project"? [03:57:28] <rcjsuen> ~keys [03:57:29] <KOS-MOS> For a list of available key bindings press Ctrl + Shift + L. To configure your key bindings, see Window > Preference > General > Keys. See also http://wiki.eclipse.org/IRC_FAQ#What.27s_the_key_for_....3F [03:57:32] <rcjsuen> Check the list. [03:58:10] <msbhvn> yeah didnt see it in the Ctl+shft+L list, ill look into mapping my own [03:58:11] <rkeiii> rcjusen: http://img239.imageshack.us/img239/6316/snapshot1ro4.png [03:59:49] <rkeiii> It's a very tricky problem, hehe. [04:01:31] *** The_PHP_Jedi has quit IRC [04:06:48] <msbhvn> hmm maybe, Build project isnt available, Ctl+/ for commenting is cool though, am wondering if a project can be disabled such that a Build All wont try to build it? [04:06:54] *** gaillard_ has quit IRC [04:07:30] <rkeiii> rcjsuen: Damn, even downloaded latest from eclipse.org and tried it. Same thing :( [04:07:47] <msbhvn> nm, am slow, Close Project works fine :) [04:08:55] <rcjsuen> how odd [04:09:20] <rcjsuen> rkeiii: try expanding those tree nodes and clicking Select Required again [04:12:57] <rkeiii> rcjusen: Same thing, bah this is frustrating. [04:13:08] <rkeiii> I wonder if it has anything to do with using eclipse x86_64 [04:13:38] <rcjsuen> doubt it [04:13:46] <rcjsuen> rkeiii: what tarball did you download [04:14:11] *** [newbie] has joined #eclipse [04:14:14] <rkeiii> eclipse-java-europa-fall2-linux-gtk-x86_64.tar.gz [04:14:45] <rcjsuen> you might as well just get the jee build [04:14:50] <rcjsuen> which has webtools in it [04:16:45] <rkeiii> good call [04:18:08] <rkeiii> man I hope I'm 13 seconds from a functional eclipse. [04:18:09] <rkeiii> hehe [04:20:03] *** the_giver has joined #eclipse [04:20:57] <rkeiii> rcjusen: awesome :) [04:21:08] *** Cool_Nick has joined #eclipse [04:21:09] <rkeiii> rcjusen: It's not the distro eclipse.. but by god it works. [04:23:48] *** Cool_Nick has quit IRC [04:25:08] <rkeiii> rcjusen: Your assistance was much appreciated. [04:25:32] *** Orynet has joined #eclipse [04:26:19] <Orynet> hi people. will like to know is it possible to create a own code assist plugin to PDT for a particular framework... e.g Zend Framework [04:27:44] <rcjsuen> rkeiii: I pretty much always suggest Linux users use the one from eclipse.org. [04:29:30] *** rkeiii_ has joined #eclipse [04:31:03] *** SKuhn has quit IRC [04:37:44] *** pandaren has quit IRC [04:38:09] *** pandaren has joined #eclipse [04:38:42] *** pandaren has quit IRC [04:39:07] *** pandaren has joined #eclipse [04:39:50] *** pandaren has quit IRC [04:40:48] *** budhaya has quit IRC [04:41:31] *** rkeiii has quit IRC [04:43:00] *** pandaren has joined #eclipse [04:48:35] *** Zack1403 has quit IRC [04:57:28] *** Infinito_ has joined #eclipse [05:02:41] *** buhawi has joined #eclipse [05:03:14] *** [newbie] has quit IRC [05:09:38] *** Verkel has quit IRC [05:09:38] *** Azoff has quit IRC [05:09:39] *** rkeiii_ has quit IRC [05:09:39] *** ewet has quit IRC [05:09:41] *** deucalion has quit IRC [05:09:41] *** gniii has quit IRC [05:09:42] *** TheLaw has quit IRC [05:09:43] *** riishigh has quit IRC [05:09:43] *** z` has quit IRC [05:09:44] *** shortcircuit has quit IRC [05:09:44] *** SpektoM has quit IRC [05:09:44] *** dmiles has quit IRC [05:09:46] *** Getty has quit IRC [05:09:46] *** martinkli has quit IRC [05:09:47] *** lilalinux has quit IRC [05:09:47] *** Honk has quit IRC [05:09:47] *** JavaWoman has quit IRC [05:09:47] *** ijuma has quit IRC [05:09:48] *** Obeliks has quit IRC [05:09:48] *** SNiLD has quit IRC [05:09:50] *** onnadi3 has quit IRC [05:09:50] *** lemmy has quit IRC [05:09:50] *** philk_ has quit IRC [05:09:50] *** Laserbeak43 has quit IRC [05:09:50] *** ekuleshov has quit IRC [05:09:53] *** jmcconnell has quit IRC [05:09:55] *** Georgy32 has quit IRC [05:09:55] *** taube has quit IRC [05:09:56] *** Zenton has quit IRC [05:09:56] *** peper has quit IRC [05:09:57] *** omry_ has quit IRC [05:09:57] *** kandinski has quit IRC [05:10:13] *** rkeiii_ has joined #eclipse [05:10:14] *** Laserbeak43 has joined #eclipse [05:10:14] *** philk_ has joined #eclipse [05:10:14] *** ekuleshov has joined #eclipse [05:10:14] *** ewet has joined #eclipse [05:10:14] *** JavaWoman has joined #eclipse [05:10:14] *** SNiLD has joined #eclipse [05:10:14] *** deucalion has joined #eclipse [05:10:14] *** gniii has joined #eclipse [05:10:14] *** kandinski has joined #eclipse [05:10:14] *** TheLaw has joined #eclipse [05:10:14] *** riishigh has joined #eclipse [05:10:14] *** shortcircuit has joined #eclipse [05:10:14] *** z` has joined #eclipse [05:10:14] *** jmcconnell has joined #eclipse [05:10:14] *** ijuma has joined #eclipse [05:10:14] *** SpektoM has joined #eclipse [05:10:14] *** dmiles has joined #eclipse [05:10:15] *** taube has joined #eclipse [05:10:15] *** Georgy32 has joined #eclipse [05:10:15] *** peper has joined #eclipse [05:10:15] *** lemmy has joined #eclipse [05:10:15] *** onnadi3 has joined #eclipse [05:10:15] *** Zenton has joined #eclipse [05:10:15] *** omry_ has joined #eclipse [05:10:15] *** Obeliks has joined #eclipse [05:10:15] *** martinkli has joined #eclipse [05:10:15] *** Getty has joined #eclipse [05:10:15] *** lilalinux has joined #eclipse [05:10:15] *** Honk has joined #eclipse [05:10:15] *** Azoff has joined #eclipse [05:10:15] *** Verkel has joined #eclipse [05:16:31] *** philk__ has joined #eclipse [05:18:57] *** Infinito_ has quit IRC [05:21:20] *** Cpudan80 has left #eclipse [05:31:02] *** philk_ has quit IRC [05:32:37] *** Laserbeak43 has left #eclipse [05:33:31] *** mindCrime has quit IRC [05:41:36] *** philk_ has joined #eclipse [05:43:32] *** rkeiii_ is now known as sfnme [05:44:40] *** mindCrime has joined #eclipse [05:46:27] *** mk has joined #eclipse [05:47:35] <mk> how can I turn on the... variable highlighting / rectangles on the sidebar feature? [05:55:45] *** TheLittlePrince has joined #eclipse [05:59:51] *** philk__ has quit IRC [06:11:24] *** Orynet has quit IRC [06:15:53] *** Zack1403 has joined #eclipse [06:17:36] *** arooni has quit IRC [06:20:37] *** arooni has joined #eclipse [06:29:01] *** emantos has quit IRC [06:30:02] *** emantos has joined #eclipse [06:38:32] *** njbartlett has quit IRC [06:43:41] *** Zack1403 has quit IRC [06:48:46] *** irbull has joined #eclipse [06:51:51] *** kandinski has quit IRC [06:52:31] *** irbull has quit IRC [06:58:28] *** rcjsuen has quit IRC [07:08:46] *** riot has quit IRC [07:09:08] *** riot has joined #eclipse [07:13:41] *** Zack1403 has joined #eclipse [07:30:05] *** fsteeg has joined #eclipse [07:30:50] *** TheLittlePrinceO has joined #eclipse [07:32:09] *** TheLittlePrinceO has quit IRC [07:32:40] *** TheLittlePrince has quit IRC [07:32:52] *** TheLittlePrince has joined #eclipse [07:39:55] *** gaillard_ has joined #eclipse [07:42:50] *** robinr has joined #eclipse [07:47:15] *** pandaren has quit IRC [07:47:38] *** pandaren has joined #eclipse [07:52:06] *** amitev has joined #eclipse [07:54:59] *** arooni has left #eclipse [07:55:45] *** soulreaper has joined #eclipse [07:56:44] *** paidor has joined #eclipse [08:00:25] *** gaillard__ has joined #eclipse [08:05:15] *** robinr has quit IRC [08:07:29] *** kartben has joined #eclipse [08:09:50] *** soulreaper has quit IRC [08:10:17] *** gaillard__ has quit IRC [08:10:38] *** jbosmans has quit IRC [08:12:17] *** amitev has quit IRC [08:17:25] *** gaillard_ has quit IRC [08:30:16] *** Tortoose has joined #eclipse [08:30:30] *** HenryRT has joined #eclipse [08:32:20] *** kartben has left #eclipse [08:35:50] *** srepfler has quit IRC [08:45:17] *** Cheops` has joined #eclipse [08:45:22] *** ReneP has quit IRC [08:46:08] *** gbaal has quit IRC [08:49:08] *** gbaal has joined #eclipse [08:56:13] *** co2 has joined #eclipse [08:58:18] *** MClemo has joined #eclipse [09:00:22] *** pandaren_ has joined #eclipse [09:00:23] *** pandaren has quit IRC [09:00:42] *** pandaren_ has quit IRC [09:01:15] *** pandaren has joined #eclipse [09:02:47] *** amitev has joined #eclipse [09:02:48] *** Simucal has joined #eclipse [09:02:59] <Simucal> Anyone there? [09:03:30] *** kartben has joined #eclipse [09:03:55] <Simucal> I have kind of a basic question [09:03:58] <Simucal> if someone is there [09:04:58] <amitev> just ask it [09:06:07] <Simucal> I'm relatively new to java and definately new to Eclipse. What is the best way for me to search and explore the built in classes/libraries for the Sun Java enviornment I have. I was looking for an easy way to be able to lookup methods, etc in that library [09:06:26] <Simucal> for example.. if I didn't know the method/class for generating a random number.. how can I easily look that up in the java library? [09:07:48] <Simucal> I would like to be able to just go to some help menu in eclipse and have an easy search menu for the built in classes/libraries [09:10:51] <Simucal> Can anyone point me in the right direction? [09:17:37] *** acuster has joined #eclipse [09:18:17] <Simucal> ok.. [09:28:12] *** veleno has joined #eclipse [09:28:37] *** ggyy has joined #eclipse [09:28:49] *** Simucal2 has joined #eclipse [09:31:27] <ggyy> hi all. how to map database records to filesystem using eclipse file system? [09:34:56] *** erik2 has joined #eclipse [09:35:15] *** z4z4 has joined #eclipse [09:42:36] *** pandaren has left #eclipse [09:42:48] *** Cheops has joined #eclipse [09:43:13] *** SNiLD has quit IRC [09:44:59] *** SNiLD has joined #eclipse [09:47:13] *** ChrisA_ has joined #eclipse [09:50:49] *** monsieur has joined #eclipse [09:50:52] <monsieur> Hello folks [09:50:54] *** Cheops` has quit IRC [09:51:07] <monsieur> anyone know how to use kdiff3 with subclipse ? [09:51:52] *** Cheops has quit IRC [09:52:03] *** Cheops` has joined #eclipse [09:52:39] *** Fred_ has joined #eclipse [09:54:08] <monsieur> I have this atm : http://img12.imagevenue.com/img.php?image=11147_blah_122_1121lo.JPG [09:54:36] <monsieur> but it doesn't work... [09:54:50] <monsieur> tried googling it but no luck [09:57:55] *** Nescafe has joined #Eclipse [09:59:08] *** veleno has quit IRC [10:06:28] *** oisin has joined #eclipse [10:09:23] *** Phloogzoyk has joined #eclipse [10:10:25] <Phloogzoyk> Hi there. Is it possible to suppress warnings on a per-package level in eclipse? Reason: I use the GDT (Grid Development Toolkit), and the generated stub classes contain dozens of warnings, cluttering the 'problems'-Tab [10:10:41] *** oisin has left #eclipse [10:15:50] *** acuster has quit IRC [10:16:10] *** mefisto has quit IRC [10:17:23] *** mk has left #eclipse [10:19:52] *** LordMetroid has joined #Eclipse [10:27:57] *** Be-El has joined #eclipse [10:28:01] <Be-El> hi [10:30:54] *** gbaal has quit IRC [10:36:50] <reinis> why can't f3 be 'next result' for searching as it is in 99% of other software by default? [10:38:29] <reinis> how do I even bind it to mean that? [10:39:40] *** schnee has joined #eclipse [10:39:48] <reinis> *why* must it be ctrl+K? [10:40:30] *** schnee is now known as Schnee [10:42:14] <reinis> is there any premade key scheme that would resemble any sort of a convention? [10:46:33] *** gromgull has joined #eclipse [10:51:22] <gromgull> I'm trying to start my eclipse application on a headless machine, it seems the eclipse exe requires X although none of my plugins do. So I start Xvfb, but now when I start the app nothing happens. No console, no output, nothing... [10:52:31] *** readyx has joined #eclipse [11:00:10] *** nialp has joined #eclipse [11:00:20] *** Zack1403 has quit IRC [11:01:00] *** Phloogzoyk has quit IRC [11:02:52] *** mefisto has joined #eclipse [11:08:01] *** Sebboh- has joined #eclipse [11:08:56] *** buhawi has quit IRC [11:09:47] *** veleno has joined #eclipse [11:11:13] *** linnuxxy has joined #eclipse [11:11:32] <linnuxxy> i can't get rap applications running [11:11:46] <linnuxxy> just like the server not started [11:18:01] *** Urgleflogue has quit IRC [11:21:32] *** paidor has quit IRC [11:21:41] *** paidor has joined #eclipse [11:22:00] *** leobard has joined #eclipse [11:22:23] <leobard> ho, does anyone know from OSGi, how I get the symbolic name of a SERVICE on a servicelistener / serviceevent? [11:24:28] *** Petfrogg has quit IRC [11:24:44] *** Urgleflogue has joined #eclipse [11:28:48] *** david720 has joined #eclipse [11:33:11] *** buhawi has joined #eclipse [11:33:24] *** Arcalyth has joined #eclipse [11:36:01] *** Simucal has left #eclipse [11:39:56] *** MacGyverNL has joined #Eclipse [11:41:22] <MacGyverNL> I've just started using Eclipse for java development, when trying to run an ANT build I get the following error: [11:41:48] <MacGyverNL> http://rafb.net/p/2Oib7p95.html [11:41:48] <MacGyverNL> Where do I set the JAVA_HOME? [11:41:48] *** Arcalyth has quit IRC [11:45:38] *** deng_c has quit IRC [11:46:15] <MacGyverNL> Nvm, I think I found it. [11:52:54] *** kartben has left #eclipse [11:58:32] *** buhawi has quit IRC [12:03:38] *** tobias__ has quit IRC [12:06:14] *** the_giver is now known as dquestions [12:13:44] *** linnuxxy has quit IRC [12:14:21] *** HenryRT has quit IRC [12:20:53] *** sfnme has quit IRC [12:22:56] *** hansi has joined #eclipse [12:27:56] *** th00ry has quit IRC [12:28:41] *** th00ry has joined #eclipse [12:32:51] *** ChrisA_ has quit IRC [12:35:15] *** cyzie has quit IRC [12:38:24] *** pandaren has joined #eclipse [12:41:19] *** ggyy has quit IRC [12:43:24] *** ewet has quit IRC [12:44:12] *** Fred_ has quit IRC [12:48:16] *** cyzie has joined #eclipse [12:58:18] *** patrin70 has joined #eclipse [12:58:21] *** ewet has joined #eclipse [13:01:16] *** Pookzilla has joined #eclipse [13:07:45] *** mhaller has joined #eclipse [13:13:41] *** mhaller has quit IRC [13:14:46] *** srepfler has joined #eclipse [13:17:25] *** mhaller has joined #eclipse [13:17:40] *** srepfle has joined #eclipse [13:18:31] *** benny`work has joined #eclipse [13:28:24] *** radog has joined #eclipse [13:28:47] *** co3 has joined #eclipse [13:28:49] *** co3 has quit IRC [13:31:43] *** Pookzilla has quit IRC [13:35:24] *** jmcconne1l has joined #eclipse [13:35:24] <patrin70> Hi all [13:35:37] *** srepfler has quit IRC [13:35:43] <patrin70> I'm trying to add an Help button on my New Project wizard [13:36:16] *** co3 has joined #eclipse [13:36:17] <patrin70> but the only way I found to have the button displayed was to call the static method WizardDialog.setDialogHelpAvailable(true) [13:36:19] *** co3 has quit IRC [13:36:44] <patrin70> this shows the question mark icon button on the wizard [13:36:51] <patrin70> but the help doesn't work [13:37:34] <patrin70> even if I invoked setHelpAvailable(true) in the constructor of the wizard [13:37:45] <patrin70> do you have any idea ? [13:38:38] *** rcjsuen has joined #eclipse [13:46:58] <rcjsuen> reinis: check ~keys [13:47:00] <KOS-MOS> For a list of available key bindings press Ctrl + Shift + L. To configure your key bindings, see Window > Preference > General > Keys. See also http://wiki.eclipse.org/IRC_FAQ#What.27s_the_key_for_....3F [13:47:41] <rcjsuen> gromgull: well, ttechnically you could start your app without using the executable [13:48:31] <rcjsuen> leobard: getServiceReference().getBundle()? [13:49:08] <rcjsuen> patrin70: try debugging, i think lemmy hit a similar problem before [13:49:32] <patrin70> I found something in the forum [13:49:39] <patrin70> but not a definitive answer [13:49:52] *** jmcconnell has quit IRC [13:50:12] <patrin70> they says that the help is not invoked because the helpHref is not defined in the plugin.xml [13:50:13] <gromgull> rcjsuen: I sorted it out - it only needed X because it wanted to show me an error about java not being on the path [13:50:22] <rcjsuen> gromgull: lol [13:50:27] <gromgull> wrt. to leobards quesiont I think he wanted the classname given to register service [13:50:32] <leobard> rcjsuen: thanks, that is the bundle-id and the name of the bundle, but not of the service. I can't find a way to get the service-NAME that is registered on BundleContext.registerService(NAME, object, properties) [13:50:33] <rcjsuen> gromgull: you could try -consolelog next time [13:50:36] <gromgull> not the bundle that registered [13:50:37] <gromgull> it [13:50:54] <gromgull> i tried that - but it still wanted java first :) [13:51:11] *** arkub has joined #eclipse [13:51:27] <rcjsuen> gromgull: did you try -debug? [13:51:52] <gromgull> no :) [13:52:00] <rcjsuen> leobard: nothing in getProperties()? [13:52:01] <gromgull> next time :) [13:52:43] <leobard> rcjsuen: I tried, it lists a property objectClass (a string array) but not for all services registered [13:52:57] *** TodC has joined #eclipse [13:53:05] <leobard> and getProperties is not documented, it seems OSGi does not define constants what should be in it [13:53:59] <rcjsuen> leobard: well, there is an org.osgi.framework.Constants clas [13:54:49] *** dsugar100 has joined #eclipse [13:55:39] <leobard> rcjsuen: In general, I gave up on finding the name, it seems its not part of the standard. I iterated through all key/value pairs, nothing obvious. I will check constants now. Anyway, I found a workaround by casting the object/getting the itnerfaces it implements (ugly) [14:04:15] *** ekiczek has quit IRC [14:06:01] *** scorphus has joined #eclipse [14:11:42] *** Pookzilla has joined #eclipse [14:14:58] <buggs> Is there something in jface for providing the column text for e.g. tableviewer? [14:15:15] <buggs> Some kind of labelprovider? [14:17:17] <rcjsuen> buggs: viewer.setLabelProvider(new ITableLabelProvider() {}); [14:17:20] <rcjsuen> buggs: enjoy [14:18:59] <buggs> but that doesn't provide the data for column.setText(), right? [14:19:25] <rcjsuen> Eh? [14:19:35] *** Be-El has quit IRC [14:19:43] <rcjsuen> ~api ITableLabelProvider [14:19:43] <KOS-MOS> org.eclipse.jface.viewers.ITableLabelProvider - http://help.eclipse.org/stable/nftopic/org.eclipse.platform.doc.isv/reference/api/org/eclipse/jface/viewers/ITableLabelProvider.html [14:20:10] <rcjsuen> if (index == THE_FIRST_ROW) { return "One"; } else if (index == THE_SECOND_ROW) { return "Two"; } [14:20:39] <buggs> http://www.eclipse.org/articles/Article-Table-viewer/table_viewer.html [14:21:02] <buggs> In the picture there, the "Description" label of the column [14:21:04] *** nialp has quit IRC [14:21:29] <buggs> It's set via column.setText("Description"); [14:21:46] <buggs> It's not voming from the ITableLabelProvider [14:21:52] <buggs> *coming [14:21:55] <rcjsuen> oh, that [14:22:29] <buggs> I'm about to make a IColumnAttributeProvider of my own [14:22:41] <buggs> so i was asking if there already is such a thing. [14:22:47] <buggs> *wondering [14:23:14] <rcjsuen> I don't think what you want is possible, I've always done it that way, I could be wrong. [14:24:37] *** richie has joined #eclipse [14:24:51] *** jink has left #eclipse [14:25:04] <buggs> You think this would be worth a feature request? [14:25:25] <buggs> Think it would fit nicely into jface. [14:25:52] <rcjsuen> buggs: You could certainly try. [14:26:40] <richie> hi, is there a plugin that would allow to make text clickable, to link code to another part of code? [14:28:18] <paulweb515> richie: I don't believe there is a specific plugin that you could create arbitrary links, but the ability is there (CTRL+RIGHT_CLICK on class will take you to its declaration) [14:28:54] <rcjsuen> paulweb515: isn't that ctrl+left click? [14:29:09] <rcjsuen> unless you're left handed [14:29:12] <rcjsuen> let us say, ctrl+primary click [14:38:29] *** ijuma has quit IRC [14:38:41] <richie> yes [14:39:49] <richie> it may be hard to make a customized tool for that feature [14:40:37] <richie> because it doesn't work for jsp etc [14:42:06] *** aramirez has quit IRC [14:45:18] <paulweb515> rcjsuen: you are correct, I mean left click [14:48:45] *** timothym has joined #eclipse [14:54:06] *** Schnee is now known as schnee [14:54:46] *** Rajec has joined #eclipse [14:54:54] *** Rajec is now known as qwe [14:54:56] *** qwe has left #eclipse [14:59:21] *** ChrisA_ has joined #eclipse [15:00:21] *** nialp has joined #eclipse [15:01:46] *** pandaren has quit IRC [15:08:35] *** ekiczek has joined #eclipse [15:10:25] *** TheLittlePrince has quit IRC [15:22:45] *** gdiebel has joined #eclipse [15:25:58] *** amitev has quit IRC [15:26:24] *** ekiczek has quit IRC [15:28:59] *** r3n4t0 has joined #eclipse [15:31:06] <r3n4t0> hi all. i've search a bit but didn't find the answer: how to remove tabs (back tab) of a selected block (something like shift + tab on other editors)? [15:31:48] *** benny`work has quit IRC [15:32:18] <r3n4t0> wrong chan [15:32:20] *** r3n4t0 has quit IRC [15:34:02] *** gromgull has left #eclipse [15:34:09] *** gromgull has joined #eclipse [15:35:46] *** kartben has joined #eclipse [15:36:10] <patrin70> Hi all [15:36:54] <patrin70> I'm still not able to have the help button on my wizard pages working [15:37:11] *** ekiczek has joined #eclipse [15:37:14] <patrin70> is there someone that has tried the same thing in the past ? [15:37:39] <patrin70> I'm developing an RCP applicazione, so maybe I'm missing some prerequisite/plugin to activate the help system [15:38:01] <patrin70> even if, using the action contributed to the Help menu, the help application starts [15:41:02] <Azoff> hello [15:41:27] <Azoff> if I create a tooltip using a label, how can I make it wrap after x pixels? [15:42:25] *** shiva has joined #eclipse [15:42:37] *** tobias has joined #eclipse [15:42:43] *** blueser has joined #eclipse [15:44:28] *** JaskoH has quit IRC [15:44:45] <Azoff> the snippet that I based my tooltip on is snippet 031 of org.eclipse.jface.snippets (viewers) [15:46:21] <blueser> hi. I am on Fedora 8 using SUN java 1.5.0_14 and eclipse 3.3.1.1. I've been using it for a while already, but today all of a sudden it refuses to do anything network-related (such as check for updates, synchronize with our SVN repositories etc.). It complains about "Network connection problems encountered during search. > Unable to access "http://download.eclipse.org/modeling/emf/updates/". > Error parsing site stream. > [15:47:21] <blueser> aside from this, I am not experiencing network problems of any kind. what the hell is happening? why is eclipse complaining? [15:50:23] *** JaskoH has joined #eclipse [15:50:44] <blueser> for example, svn is working outside eclipse [15:51:57] *** Orynet has joined #eclipse [15:52:53] <Orynet> hi people, may i know how can i create a new customized project template and add it to "Create Project - Wizard"? [15:53:18] <paulweb515> Orynet: use the extension point org.eclipse.ui.newWizards [15:55:47] *** _elemental has joined #eclipse [15:56:54] <Orynet> sorry i can't find org.eclipse.ui.newWizards in my windows pdt package [15:58:13] <paulweb515> Orynet: you need an eclipse SDK install (which comes with source and PDE) ... I assume you are trying to create a plugin so you can contribute it? [15:58:34] <Orynet> erm... no... it's for my own use. [15:58:37] <Azoff> paulweb515: do you have any ideas on my problem? [15:58:51] <Orynet> can i can contribute it too. [16:02:28] <paulweb515> Azoff: no, I'm not sure ... are you using the new custom tooltip support [16:03:04] <paulweb515> Orynet: I mean in order to create a new wizard you need to create a plugin and deploy it in your eclipse install (contribute it to your eclipse, not necessarily contribute it to the community :-) [16:03:49] <Azoff> paulweb515: no... I'm using this http://tinyurl.com/32pwp4 [16:04:26] <Azoff> or... more or less that... some small things has changed (Table -> Tree and such..) [16:04:27] <reinis> ~keys [16:04:28] <KOS-MOS> For a list of available key bindings press Ctrl + Shift + L. To configure your key bindings, see Window > Preference > General > Keys. See also http://wiki.eclipse.org/IRC_FAQ#What.27s_the_key_for_....3F [16:05:45] <paulweb515> Azoff: did you try SWT.WRAP in your label? [16:05:52] *** amitev has joined #eclipse [16:05:58] <Azoff> paulweb515: hm, no... will try [16:06:01] <paulweb515> Azoff: tomsontom would probably be the best person to ask [16:06:36] <Azoff> ok [16:11:05] *** JohnE has joined #eclipse [16:16:16] *** clyons has joined #eclipse [16:17:01] <Azoff> paulweb515: SWT.WRAP didn't help :-/ [16:17:45] <paulweb515> Azoff: what if you insert a \n in your label, does that work? [16:21:05] <Azoff> the thing is that I read the description from an XML-file [16:21:18] *** acuster has joined #eclipse [16:23:40] *** exst_mhua has quit IRC [16:24:28] <Azoff> paulweb515: maybe I should use TableWrapLayout instead of FillLayout? [16:26:06] <Orynet> paulweb515: if i have downloaded the PDE.... how should i create the template... do i create new plug-in? [16:26:41] *** acuster has quit IRC [16:26:55] *** radog has quit IRC [16:29:39] *** discodan has joined #eclipse [16:30:42] <paulweb515> Orynet: yes ... [16:31:10] <paulweb515> Orynet: then on the extensions page add org.eclipse.ui.newWizard [16:31:28] <Orynet> ok got it thanks [16:31:36] <paulweb515> Orynet: but ... are you going to create your project from scratch, or you hope to add extra to a PDT create project? [16:32:37] <Orynet> extra... just a new wizard for creating a project template [16:33:51] *** krbarnes has joined #eclipse [16:36:01] *** robot_jesus has joined #eclipse [16:37:38] *** Infinito_ has joined #eclipse [16:38:33] *** mef has joined #eclipse [16:39:11] *** paidor has quit IRC [16:39:16] *** paidor has joined #eclipse [16:44:03] *** mefisto__ has joined #eclipse [16:45:18] *** Ians has joined #eclipse [16:48:19] <Orynet> is there any tutorial that teach how to develop plugins [16:48:36] *** steegf has joined #eclipse [16:49:20] *** bastl has joined #eclipse [16:50:22] <bastl> Is there a repository of public cheat sheets anywhere? [16:51:03] *** z4z4 has quit IRC [16:51:41] *** Orynet has quit IRC [16:51:59] *** richie has left #eclipse [16:53:18] *** ijuma has joined #eclipse [16:55:08] *** mefisto has quit IRC [16:55:28] *** patrin70 has quit IRC [16:56:08] *** bastl has left #eclipse [16:59:37] *** amitev has quit IRC [16:59:53] *** mef has quit IRC [17:00:15] *** fsteeg has quit IRC [17:01:34] *** TheLaw has quit IRC [17:01:39] <Azoff> paulweb515: it does wrap if there is a \n in the string, however, there is none in the string I get from the XML. Do you know any way to intelegently insert one? [17:03:19] *** TheIndian has joined #eclipse [17:03:26] <paulweb515> Azoff: if you really want to restrict it you have to either 1) convert the label into pixels using a GC and chop it there (that's hard) or 2) simply say the first space after character 16 will wrap [17:03:47] *** TheIndian has left #eclipse [17:04:46] *** paidor has quit IRC [17:05:30] *** DavidLeon has joined #eclipse [17:06:39] <DavidLeon> where to file a bug of SWT? [17:06:49] <robot_jesus> ~bug [17:07:04] <krbarnes> DavidLeon: bugs.eclipse.org under Platform/SWT [17:07:20] *** discodan_ has joined #eclipse [17:07:39] <DavidLeon> let me to make sure for it [17:08:07] <DavidLeon> it's swt-win32 datetime.java computeSize [17:08:17] <DavidLeon> GetDateFormat returns to int size [17:08:27] <DavidLeon> and right after the if statement "if( size is 0) [17:08:43] <DavidLeon> buffer = new TCHAR(getCodePage,size); [17:09:08] <DavidLeon> and from MSDN, GetDateFormat returns 0 only when 1.ERROR_INSUFFICIENT_BUFFER 2.ERROR_INVALID_FLAGS 3.ERROR_INVALID_PARAMETER [17:09:26] <DavidLeon> since in the second try, it retries with the same params [17:09:39] <DavidLeon> so i think the code here is try to prevent ERROR_INSUFFICIENT_BUFFER [17:09:50] <DavidLeon> but the second time reallocation the size is equal to 0 [17:10:34] <DavidLeon> so I doubt here should retry with a bigger size [17:10:47] <DavidLeon> like DATETIME_BIGGER_SIZE [17:11:11] <DavidLeon> but the code here is somewhat useless, the foreseeable datetime won't exceed that buffer [17:12:46] *** discodan has quit IRC [17:12:49] *** discodan_ is now known as discodan [17:23:40] <DavidLeon> if no one confirm it, i would report it tomorrow morning [17:25:50] *** Cheops` has quit IRC [17:27:02] *** frivol has joined #eclipse [17:28:41] *** mhaller has quit IRC [17:36:18] *** cmw72 has joined #eclipse [17:38:16] *** Zack1403 has joined #eclipse [17:38:23] *** wuz has joined #eclipse [17:38:23] *** acuster has joined #eclipse [17:38:25] *** beefy has joined #eclipse [17:41:14] <wuz> [open cheat sheets automatically]Hi all, does anybody have experience with Interface ICheatSheetViewer or OpenCheatSheetAction? [17:41:27] <zx|work> wuz: what do you want to do? [17:42:11] <wuz> basically i want to open a cheat sheet from an external ressource for example from a hyperlink document [17:42:30] <zx|work> so you can do that [17:42:31] *** ijuma has quit IRC [17:42:48] <wuz> therefore i created a thread with a socket to receive the request [17:43:06] <zx|work> Help->Cheatsheets... [17:43:10] <zx|work> Click "Enter the URL of a cheat sheet" [17:43:17] <wuz> well unfortunately i experience some strange beaviour [17:43:33] <wuz> its more ment that the cheat sheet is open automatically [17:43:51] <wuz> so the user only has to click on the link in the cookbock [17:44:24] <zx|work> So OpenCheatSheetAction is what you need [17:44:33] <robot_jesus> Ctrl-Shift-L ! [17:45:00] *** ijuma has joined #eclipse [17:45:09] <wuz> i guess the main problem is that i call OpenCheatSheetAction within Display.getDefault().asyncExec and with the Thread that listents for the request [17:46:13] <robot_jesus> where are the abbreviations again, so stdout<ctrl+space> expands to System.out.println ? [17:46:27] <robot_jesus> nm found it [17:47:46] <wuz> sometimes i get an Unhandled event loop exception because shell = Display.getDefault().getActiveShell(); returns null in OpenCheatSheetAction.java [17:48:08] *** krbarnes has quit IRC [17:48:58] <wuz> and i don't know why, for example when i open a jar wizard with WizardDialog dialog = new WizardDialog(shell, wizard); the cheat sheet attaches without any problems [17:50:04] <wuz> when i open the jar wizard manually and then click the link to open the cheat sheet i get the unhandled loop exception again [17:50:15] *** simli has joined #eclipse [17:51:06] <simli> hi. in one projekt i get this error and in another project not, but i have the same code in both. whats the problem? [17:51:06] <simli> "error: ?for? loop initial declaration used outside C99 mode" [17:51:21] *** beefy has quit IRC [17:53:26] <tromey> it means you wrote for (int x = ...), but you are not compiling with the flag that says you want C99 [17:54:17] *** eidolon has joined #eclipse [17:54:54] <simli> my problem is that i dont know what is different between the project-properties which are unfortunately different [17:55:27] <simli> i want to know from you where i can tell eclipse to compile c99 [17:57:16] *** JohnE has quit IRC [17:57:56] <tromey> I don't know, sorry [17:58:28] *** krbarnes has joined #eclipse [17:59:41] *** hansi has quit IRC [18:01:06] *** srepfle has quit IRC [18:04:51] *** JaskoH2 has joined #eclipse [18:05:18] *** soulreaper has joined #eclipse [18:07:04] *** rorUnni has joined #eclipse [18:09:16] <simli> i know it know. you have to tell eclipse that the code is c99 in the makefile... cya guys [18:09:28] <simli> now* [18:09:32] *** simli has left #eclipse [18:11:52] *** gdiebel has left #eclipse [18:12:19] *** JaskoH has quit IRC [18:15:55] *** blueser has left #eclipse [18:15:58] *** philk__ has joined #eclipse [18:18:04] *** veleno_ has joined #eclipse [18:18:58] *** veleno has quit IRC [18:20:12] *** veleno_ has quit IRC [18:23:03] <wuz> and for the Interface ICheatSheetViewer you have the metho setInput (where you can pass a cheatsheet by id) unfortunately i have no idea which composite to pass for createPartControl(Composite parent) [18:23:21] <wuz> when i just want to display the cheat sheet in the "normal" cheatsheetviewer [18:23:49] *** paidor has joined #eclipse [18:24:33] *** jbosmans has joined #eclipse [18:28:40] *** torbol has joined #eclipse [18:32:11] *** rcjsuen_ has joined #eclipse [18:34:01] *** philk_ has quit IRC [18:34:42] *** jprieur has joined #eclipse [18:36:32] *** nialp has quit IRC [18:38:13] *** tobias has quit IRC [18:38:16] *** robot_jesus is now known as crash_override [18:39:04] *** irbull has joined #eclipse [18:42:41] <irbull> zx|work: you here? [18:43:21] *** rcjsuen has quit IRC [18:44:36] <irbull> Anyone using Eclipse 3.4M5 on Linux GTK at the moment? [18:46:38] *** mef has joined #eclipse [18:48:09] *** oisin has joined #eclipse [18:48:31] *** Tortoose has quit IRC [18:56:59] *** david720 has quit IRC [18:57:42] *** emantos has quit IRC [18:58:46] *** Infinito_ has quit IRC [19:01:16] *** hansi has joined #eclipse [19:01:37] *** akravets has quit IRC [19:02:07] *** davidk has joined #eclipse [19:02:09] <davidk> hello [19:02:39] *** oisin has left #eclipse [19:03:08] *** mefisto__ has quit IRC [19:03:11] <davidk> I am looking for UML plugin for Eclipse. There are quite a few available, can some recommend which ones are good? [19:03:33] *** arkub has quit IRC [19:03:55] *** jprieur has quit IRC [19:04:19] *** dominikg has joined #eclipse [19:04:20] *** krbarnes has quit IRC [19:05:01] *** hansi has quit IRC [19:08:38] <irbull> davidk: I really liked http://topcased-mm.gforge.enseeiht.fr/website/modeling/uml/index.html [19:09:22] <irbull> davidk: it also has an ecore editor [19:12:50] *** torbol has quit IRC [19:13:59] *** leobard has quit IRC [19:15:16] *** gmoore has joined #eclipse [19:16:03] <gmoore> hello. i've been working on a Python project (a webapp) on a linux system for a while, using vim, and checking it into an svn repo. however, it's getting quite large and vim is starting to get tedious for finidng things quickly, so i'm considering using eclipse to do my development (as i use eclipse for my java dev and like it) [19:17:00] <gmoore> what would be the best approach, given that 1) my desktop is windows 2) since it's a webapp i will not be running it on my system 3) the files need to be sent to the linux system (via sftp/scp), preferably transparently and 4) i'm using svn, so being able to do updates/checkins within eclipse would be lovely [19:18:01] <gmoore> i believe i'll be needing to install activestate python for windows + pydev for eclipse; that will get me working with python files. as for the remote code saving / svn compatibility though, any suggestions or recommendations? [19:19:37] *** erik2 has quit IRC [19:20:07] *** acuster has quit IRC [19:20:27] <rorUnni> subclipse for svn [19:20:59] <davidk> irbull, thanks I'll check it out. What about Omondo? Has anybody used it? [19:21:04] *** juricde has joined #eclipse [19:22:38] *** juricde has quit IRC [19:23:55] *** jprieur has joined #eclipse [19:24:34] <gmoore> is it possible to have eclipse save to a remote location instead of a local disk? [19:30:16] *** kartben has left #eclipse [19:33:14] *** Zerone has joined #eclipse [19:33:15] <Zerone> ello :) [19:40:03] <dominikg> gmoore, yes. its possible but not really recommended (eclipse won't recognize external changes and you may overwrite files) [19:40:50] <dominikg> if you want access to remote files, have a look at the rse [19:40:52] <dominikg> ~rse [19:41:00] <dominikg> ~tm [19:41:00] <KOS-MOS> Check out Eclipse's Target Management project - http://www.eclipse.org/dsdp/tm/ [19:41:27] <dominikg> gmoore, rse (remote system explorer) is a part of target management [19:43:21] <gmoore> thanks [19:43:41] *** wuz has quit IRC [19:46:30] <dominikg> davidk, i've used it some time ago and found it to be one of the most complete uml tools available for free. the free version had a bothering limitation tho (no source control allowed). [19:46:43] <dominikg> you may want to check out eUML2 aswell [19:46:50] <dominikg> ~pluginsearch euml2 [19:46:58] <dominikg> ~searchplugins euml2 [19:46:58] <KOS-MOS> Try searching for plug-ins: http://www.eclipseplugincentral.com/modules.php?name=search&action=search&q=euml2 - http://www.eclipse-plugins.info/eclipse/search.jsp?query=euml2 [19:47:14] * dominikg can't even remember his own code after only 2 weeks... [19:48:32] <davidk> dominikg, thanks! [19:50:07] *** mef has quit IRC [19:50:40] <dominikg> oh, just in case someone didn't notice it: Today is the last day to vote for the eclipse community awards and one finalist for the top contributor is very active here. So go cast your vote if you think rcjsuen deserves it. To be fair, the other finalists also deserve their nomination, so feel free to vote for them aswell (: [19:50:42] *** krbarnes has joined #eclipse [19:50:46] <dominikg> http://feeds.feedburner.com/~r/IanSkerrett/~3/237639057/ [19:51:39] *** dquestions has quit IRC [19:54:29] *** tobias has joined #eclipse [19:58:09] *** tltstc has quit IRC [19:58:39] *** irbull has quit IRC [20:00:26] *** hd420 has joined #eclipse [20:00:57] *** the_giver has joined #eclipse [20:02:03] <crash_override> yay rcjsuen_ ! [20:02:11] <crash_override> everyone vote, put it in the title :) [20:02:36] <hd420> is there a way to increase the number of tasks for the tasks view? [20:04:15] <crash_override> whats rcjsuen_'s real name ? [20:04:37] <dominikg> remy suen [20:04:42] *** kartben has joined #eclipse [20:05:00] *** kartben has left #eclipse [20:05:50] *** the_giver has quit IRC [20:05:53] <dominikg> hd420, check the menu of the view (should be accessible on the top richt, little downward triangle) [20:05:57] *** the_giver has joined #eclipse [20:05:59] <dominikg> *right [20:07:52] <philk__> how can I make my dependencies on log4j bundle and its exported methods optional? I do not want my code to fail if the bundle is not installed. Any way to do that? [20:08:56] <crash_override> can you not just bundle the libs with your app ? [20:09:34] <dominikg> philk__, another option would be to use a logging facade like commons-logging or sl4j [20:09:51] <dominikg> or, in case your code doesn't use log4j at all, remove the dependency ;) [20:10:28] *** jprieur_ has joined #eclipse [20:10:35] <crash_override> i was always confused why apache has more than one logging framework [20:11:36] <philk__> dominikg: actually I am using logback with sl4j, all in their own bundles. I just would like to still write logger.log() without a logging bundle actually installed. [20:11:57] <philk__> crash_override: yes me too :) [20:12:10] *** nialp has joined #eclipse [20:13:05] <dominikg> doesn't sl4j provide appropriate api for that philk__? [20:15:01] <philk__> dominigk: yes but I would have to bundle slf4j with my plugins always [20:15:52] <dominikg> well, you'll have to bundle one or the other... or stick to java.util.logging [20:16:59] <philk__> dominikg: then slf4j :) [20:18:38] <philk__> when should I make bundles singletons? [20:19:57] *** jprieur has quit IRC [20:20:28] * eidolon glares at eclipse. [20:20:46] <eidolon> okay, what's the magic invocation to say "this is a web app, therefre let me add web libraries to the build path" ? [20:21:15] <crash_override> did you make a WTP project ? [20:21:29] *** crash_override is now known as robot_jesus [20:21:49] <robot_jesus> eidolon: [20:21:59] <eidolon> me: [20:22:10] <robot_jesus> whats the type of your existing project [20:22:16] <eidolon> errr, i'm not sure how the original project was createde. most of the 'tomcat projects' kept crashing horribly. [20:22:47] <eidolon> how can i tell what the project type is? [20:23:16] <robot_jesus> dont think there is a definitive way, .classpath maybe [20:23:34] <robot_jesus> look for something liek http://images.hoovers.com/ [20:23:36] <eidolon> right, hence my grump :) [20:23:40] <robot_jesus> no not that [20:23:53] <robot_jesus> <classpathentry kind="con" path="org.eclipse.jst.j2ee.internal.web.container"/> <-- dynamic web project [20:24:28] <eidolon> <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/> [20:24:37] <eidolon> looks like a standard java project. [20:25:11] <dominikg> eidolon, go to help -> help content -> web application development user guide [20:25:50] <dominikg> also, the new project wizard has an item 'dynamic web project' that should get you started [20:25:51] <robot_jesus> not sure you can convert project types, if this is a project in version control, you can just check it out as a dynamic web project, then just drop libs in WEB-INF/lib and they magically get added [20:25:52] <eidolon> dominikg, yes, thank you. [20:25:56] <eidolon> here'st he problem. [20:26:03] <eidolon> the tomcat integration stuff in easyeclipse is -horrific- [20:26:15] * dominikg pokes pombreda [20:26:39] <eidolon> so the only way i've been able to get this webapp to actually function right has been to start as a java app and (i -think- what i did was 'run on server' - which set up a tomcat context link. [20:27:06] <philk__> any OSGi experts here that could help me making a design decission? [20:27:12] *** the_giver is now known as dquestions [20:27:14] <eidolon> so i -believe- tomcat's context.xml was altered to use my workspace build directory as a webapp dir. which is fine, but eclipse consistently 'hides' things from me (for example, a struts.xml file isn't visible in the resource list, even though it's in the project) [20:29:03] *** johbar has joined #eclipse [20:29:27] <dominikg> eidolon, so your web-application runs fine but the explorer view does not show all your files? [20:29:42] <eidolon> correct. [20:30:10] <eidolon> i'll snapshot, one moment. [20:30:35] <dominikg> have you checked the filters of the view? also the explorers tend to hide files managed by eclipse (.classpath etc.). try to open the resource navigator and check if the files are shown there. [20:31:11] <eidolon> ahh, resource perspective -> navigator -does- wshow it. [20:31:17] <eidolon> dominikg++ [20:31:18] <eidolon> er [20:31:21] <eidolon> ~dominikg++ [20:31:24] <eidolon> no bot :( [20:32:10] <dominikg> a bot, but no votes. Anyways, glad i could help. Have fun on the web and beware of those spiders! [20:34:15] *** tobias has quit IRC [20:36:20] *** jprieur has joined #eclipse [20:39:46] *** mhaller has joined #eclipse [20:41:55] *** tltstc has joined #eclipse [20:42:12] *** LeNettoyeur has joined #eclipse [20:43:50] *** vwegert has joined #eclipse [20:44:16] *** eidolon has quit IRC [20:47:09] *** benowar has joined #eclipse [20:49:18] *** Yahooadam has joined #eclipse [20:49:46] *** ReneP has joined #eclipse [20:49:59] <Yahooadam> does the C++ plugin work in eclipse64bit? [20:50:33] *** mefisto has joined #eclipse [20:55:30] *** davidk has quit IRC [20:56:09] *** mikanoza has joined #eclipse [20:56:12] <mikanoza> hello [20:56:21] *** veleno has joined #eclipse [20:56:48] <zx|work> philk__: just ask away [20:57:04] <mikanoza> I have a question about PDE Builder [20:57:21] <mikanoza> actually the code that is running inside BundleErrorReporter [20:57:35] <zx|work> why and for what reason :)? [20:57:58] <mikanoza> me? [20:58:03] <zx|work> ya [20:58:30] <Yahooadam> do i have to install the 32bit java seperatly on windows to the 64bit java? [20:58:39] <mikanoza> oh, because I have a builder based on internal impl of the BundleErrorReporter... [20:59:14] <zx|work> Why do you need to work with BundleErrorReporter? Are you defining your own manifest headers? [20:59:21] <philk__> zx|work: well its not so easy. I have to connect to SAP. To do that I need a IClient object to operate on. Such object I could aquire from a ConnectionPool. I would like to know if its a good idea to register the pool as a service or not [20:59:22] <mikanoza> yes [21:00:24] <mikanoza> I am thinking ManifestConsistencyChecker and BundleErrorReporter are stable enough to be used for my builder even though it's internal... [21:00:26] <zx|work> mikanoza: That class changes pretty frequently :P, I'd be wary of extending it, you could write your own. Feel free to ask questions though [21:00:38] <mikanoza> ok [21:01:07] <mikanoza> hmm... [21:01:24] <mikanoza> ok, well here is the code: so http://pastebin.com/mff2b10d [21:02:00] <zx|work> ok [21:02:04] <mikanoza> why is validateBundleSymbolicName() is executed before fOsgiR4 is set in setOsgiR4()? [21:02:59] <mikanoza> bundle symbolic name was not in r3, so if r3 is running this would fail if bundle symbolic name header is not present [21:03:59] <zx|work> mikanoza: in Eclipse we were early adopters of the header before it even existed ;) [21:04:18] <Yahooadam> why does my eclipse not populate the menu thing -> http://img100.imageshack.us/img100/480/failuk3.jpg [21:04:25] <mikanoza> zx|work, lol I don't understand what that means :) [21:04:48] <pombreda> dominikg: pong, i'll back online in ~ 30 minutes [21:04:58] <zx|work> mikanoza: so we don't claim to validate bundles or plugins in PDE against OSGi versions... we use Eclipse Versions (ie., when you create a new plug-in project0 [21:05:08] <dominikg> pombreda, nevermind, eidolons problem was resolved [21:05:49] <zx|work> mikanoza: actually, what version of Eclipse are you using? [21:06:00] <mikanoza> 3.3.1.1 [21:07:12] <zx|work> mikanoza: we changed the code in 3.4 a bit, but still, when you create a plug-in project, you don't target r3, r4 r.1 etc... you target Eclipse versions [21:07:13] <mikanoza> so you mean equinox version is checked? [21:07:25] <zx|work> Equinox has had Bundle-SymbolicName in it before it was in the spec [21:07:40] <zx|work> So it was just part of Eclips [21:07:54] <mikanoza> i see [21:08:03] <zx|work> mikanoza: btw, if you're building on top of PDE, I'd like to know how and what you're doing as I steer the PDE ship these days [21:08:20] <zx|work> as you know, we don't like to make things API, but I have interest in making PDE more of a platform in the future ;) [21:08:30] <mikanoza> cool [21:08:48] *** mk has joined #eclipse [21:09:38] <mk> the variable highlighting feature has stopped working. How can I fix this? [21:10:18] <robot_jesus> for what plugin [21:10:37] <zx|work> philk__: sure, I don't see why not... just have some type of IClientFactory service .. one could get it from a connectionpool or some other specialized implementation [21:10:50] <zx|work> philk__: are you choosing between a service and an extension point? Is that the issue? [21:10:55] <mk> just eclipse. I'm talking about the... annotation? the gray rectangles on the right sidebar [21:11:00] <mikanoza> I use Concierge as OSGi implementation. Some custom stuff is going on in Manifest and instead of rolling own we took PDE's ManifestConsistencyChecker and BundleErrorReporter and made a few changes. Then we use that builder with our project nature. [21:11:28] <mikanoza> zx|work, ^ [21:11:31] <zx|work> ooo, let me play guess the cmopany [21:11:43] <zx|work> are you with buglabs? [21:11:44] <mikanoza> that's an easy guess :) [21:11:47] <mikanoza> yeah [21:11:55] <zx|work> ya, I got it ;) [21:12:20] <mikanoza> easy guess :) [21:13:25] *** mhaller has quit IRC [21:14:12] <robot_jesus> hmm, cool idea buglabs [21:14:21] <mikanoza> we try :) [21:14:29] <zx|work> mikanoza: That's OK, I forgive you for using something other than Equinox [21:14:31] <philk__> zx|work: well, I am unsure about what to do when there is no service available... [21:14:40] <zx|work> Tom needs to put the framework on a diet [21:14:55] <philk__> zx|work: I would first go with OSGi Service and later wrap a extension point around it. [21:14:58] <mikanoza> yeah, well we need something very small :) [21:16:07] <zx|work> philk__: why both? [21:16:57] <philk__> zx|work: for easier editing of connection pools for my fellow plugin developers :) [21:16:58] <zx|work> philk__: if there's no service available or something bad happens, you'd alert the user, right ;)? [21:16:58] <mikanoza> zx|work, but I do wish PDE builder would more customizable and extensible [21:17:31] <zx|work> mikanoza: ya, but there's only me on PDE and I say no to everything (the key is to keep asking until I say yes ;p) [21:17:38] <philk__> zx|work: so far I used OSGi Service with the White-Board-Pattern but I cannot see how to apply that here... so I would have to notify the user, yes [21:17:47] <mikanoza> :) [21:18:38] <zx|work> philk__: imho, unless you have a specific case for using osgi services, I'd favor extension points as they are easy to work with. Extensions are dynamic too [21:18:50] <zx|work> philk__: http://www.eclipsezone.com/articles/extensions-vs-services/ [21:19:39] <philk__> zx|work: Whats the Extension way SericeTracker? ExtensionTracker? [21:19:45] <zx|work> philk__: yap [21:19:53] <zx|work> philk__: That's one of the ways [21:20:09] <zx|work> philk__: If you look around Eclipse code that is dynamic aware, you'll mostly see ExtensionTracker used [21:20:14] <Yahooadam> "Downloads can be verified using md5sum or sha1sum" "Every download has an associated link "(md5)" to a *.md5 file containing its MD5 checksum and another link "(sha1)" to a *.sha1 file containing its SHA1 checksum. Download these files from the Main Eclipse download servers into the same directory as the zip file." [21:20:15] <Yahooadam> umm, dead link .... [21:20:24] <philk__> zx|work: Know the article... Ok I have a extension registry framework [21:20:42] <dominikg> ~tell Yahooadam about logs [21:20:42] <KOS-MOS> Yahooadam: Looking for your Eclipse logs? Try Window > Show View > Other > PDE Runtime > Error Log. Or look at the <workspace>/.metadata/.log file. If you want to paste it somewhere, see ~pastebin - http://wiki.eclipse.org/index.php/IRC_FAQ#Where_are_Eclipse.27s_log_files_located.3F - http://wiki.eclipse.org/FAQ_Where_can_I_find_that_elusive_.log_file%3F [21:20:47] <zx|work> mikanoza: The PDE team would love one of those bug labs contraptions , for uh... to test tooling.. somehow [21:20:56] <zx|work> philk__: ok, the extension registry itself is an osgi service [21:20:59] <dominikg> ~tell Yahooadam about info [21:21:00] <KOS-MOS> Yahooadam: Please state your CPU architecture (x86, 64-bit, etc.), operating system (Windows, Linux, Mac OSX, etc.), your Java runtime environment (unless you checked in your workspace logs and/or in the about dialog, you do not know _for sure_, please see ~jre. No, typing 'java -version' in the command line does not count as checking), your Eclipse version, and where did you download Eclipse from. [21:21:32] <mikanoza> zx|work, hmm...how? [21:21:58] <zx|work> mikanoza: btw, have you actually talked with the Equinox folks on how to make it smaller or in a way you'd adopt it over say Concierge? [21:22:15] <mikanoza> no [21:22:20] <zx|work> mikanoza: I don't know, I just want one of those things to build stuff with... I can build the PDE Camera, it can take pictures of people if they walk into my office when I'm gone [21:22:25] <Yahooadam> 64bit Intel, Windows x64, that screenshot was from the latest eclipse (not the 3.3.1.1) i believe [21:22:53] <mikanoza> BUG will do that :) [21:22:58] <Yahooadam> i was running java32 bit i _think_ but i used the "online" installer so at the time i had assumed it was 64bit [21:23:14] <mikanoza> zx|work, "Concierge is an optimized OSGi R3 framework implementations with a file footprint of about 80 kBytes" [21:23:25] <mikanoza> zx|work, so 80K is pretty small [21:23:27] <zx|work> mikanoza: so 80kb is the thing ;) [21:23:37] <mikanoza> partially [21:23:51] <dominikg> Yahooadam, if you installed the 64bit version of eclipse, you'll need a 64bit vm. [21:24:11] <Yahooadam> its the 32bit version of eclipse, i didnt know there was a 64bit version - which im trying to get atm [21:24:15] <zx|work> Equinox isn't well componentized when it comes to the framework it self.. ie., you can't use it w/o the adaptor hooks stuff and it's all stuffed into org.eclipse.osgi [21:26:13] <mikanoza> right... [21:29:07] *** ecfuser36290 has joined #eclipse [21:30:07] <dominikg> Yahooadam, there was an early access version for win64 iirc. Can't find it right now either .. maybe i'm confusing it with the wpf-version that can be found here: http://download.eclipse.org/eclipse/downloads/drops/R-3.3.1.1-200710231652/winPlatform.php#EclipseSDK [21:30:18] *** jprieur has quit IRC [21:30:30] *** jprieur_ has quit IRC [21:31:19] *** dquestions has quit IRC [21:32:14] <Yahooadam> if you search on the site for "64 bit" the 2nd link gives you a link to it [21:32:14] <Yahooadam> http://www.eclipse.org/downloads/download.php?file=/eclipse/downloads/drops/S-3.4M5-200802071530/eclipse-SDK-3.4M5-win32-x86_64.zip [21:32:41] <Yahooadam> im just trying to get it off the internet, which is proving remarkably troublesome as my university sucks [21:34:48] *** robinr has joined #eclipse [21:35:07] <philk__> zx|work: is it better to divide functions into several bundles? Not like the equinox bundle? [21:35:27] <Yahooadam> ok, looks like eclipse64bit works, except it doesnt come with java :( [21:36:51] <Yahooadam> so it looks like i need to download the 32bit java aswell [21:39:14] *** omry has quit IRC [21:45:38] *** the_giver has joined #eclipse [21:46:20] *** pombreda has quit IRC [21:46:36] <Yahooadam> ok, looks like most of my problems are sorted, using the 64bit eclipse with the jdt and it seems to be working :) [21:51:04] *** njbartlett has joined #eclipse [21:53:41] *** pombreda has joined #eclipse [21:56:07] <zx|work> philk__: so, my philosophy has always been that if you envision people using that functionality separately without the containing bundle it's already in, it should be in another bundle [21:57:00] <zx|work> ok, have to run, ttyl [21:57:17] *** vwegert has quit IRC [21:59:01] <philk__> zx|work: I see, will try to follow this philosophy [21:59:24] <zx|work> philk__: everyone is different tho :P I like to break things apart when I can ;) [21:59:26] <zx|work> take care [21:59:58] <philk__> you too :) [22:02:15] *** the_giver has quit IRC [22:06:08] *** tobias has joined #eclipse [22:08:32] *** the_giver has joined #eclipse [22:10:00] *** steegf has quit IRC [22:16:07] *** krbarnes has quit IRC [22:17:00] <Yahooadam> 1 quick question, i have a C++ program in eclipse, when i use "Run" the console doesnt seem to output the output of the program [22:17:01] <Yahooadam> if i use "Run External" i can get it to output, how do i get run to work properly? [22:17:13] *** ecfuser36290 is now known as tkubaska [22:17:48] <Yahooadam> s/Run External/External Tools [22:20:43] <dominikg> i don't do c dev, but in the jdt launch configurations, you can configure the console and stream redirection. maybe its alike for cdt lanch configs? [22:21:03] *** eidolon has joined #eclipse [22:23:28] <Yahooadam> in "common" i have "allocate console (neccesary for input)" set [22:30:39] *** landonf has joined #eclipse [22:31:47] <landonf> Anyone know if it's possible to use a multi-threaded junit test runner in eclipse? With multiple processors, I'd like to parallelize the running of tests in individual classes. [22:31:55] *** TodC has quit IRC [22:33:25] *** dsugar100 has quit IRC [22:36:23] <Yahooadam> hmm, maybe its cos im on 64bit windows? - "Error: dll starting at 0x77d41000 not found." [22:37:11] *** mindCrime has quit IRC [22:38:17] *** bronson has joined #eclipse [22:41:30] *** oisin has joined #eclipse [22:41:44] *** johbar has quit IRC [22:43:30] *** zx|cafe has joined #eclipse [22:43:49] <dominikg> Yahooadam, maybe. After all you are using a milestone, not a release build. [22:43:51] <dominikg> ~bugs [22:43:51] <KOS-MOS> Eclipse Bugzilla - https://bugs.eclipse.org/bugs/ [22:44:05] *** scorphus has quit IRC [22:44:07] <dominikg> check bugzilla and if you don't find anything there, file a bug. [22:44:29] *** oisin has left #eclipse [22:46:48] *** jprieur has joined #eclipse [22:48:42] *** Ktron has joined #eclipse [22:49:38] <Ktron> I'm trying to find information on getting Eclipse to produce a build.xml to produce jars correctly; I'm getting errors [22:50:32] <Ktron> I got a Main-Class attribute problem that I just changed the MANIFEST.MF to fix, but now I've got a NoClassDefFoundError for my main... any suggestions? [22:50:58] *** tkubaska has quit IRC [22:51:14] <Yahooadam> dominikg - i think its a problem with Cygwin rather then eclipse [22:51:43] <Yahooadam> the "Run" dialog appears to debug not run, and gdb doesnt work with x64 (as tested by using the cygwin bash prompt) [22:52:29] <dominikg> Yahooadam, can't comment on that, sorry... [22:53:05] <dominikg> Ktron please elaborate on 'produce'. [22:53:37] <Yahooadam> if you know whether Eclipse does "Debug" instead of run when you click the run button with C++, that would pretty much answer the question :p [22:53:54] <dominikg> like i said, i don't use cdt at all :/ [22:54:06] *** Pookzilla has quit IRC [22:55:05] <Yahooadam> kk, hopefully someone who does can answer me then :) [22:55:16] <Yahooadam> help me# [22:56:47] <Ktron> dominikg, 'generate'?... Someone here at work convinced me that there's a way through Eclipse to generate build.xml and/or generate and fix a build.xml so that when you run ant against it, it produces (working) jar files [22:57:40] *** Ians has quit IRC [22:58:13] <dominikg> hmm, the only generation i know is that eclipse has a basic template for build.xml. (create an empty file called build.xml and hit ctrl-space in the editor to get it) [22:59:37] <dominikg> maybe there is a plugin that does it, but i havn't heard of it. [22:59:40] <dominikg> ~plugins [22:59:40] <KOS-MOS> Look for plug-ins at the Eclipse Plug-in Central (http://www.eclipseplugincentral.com/) and EclipsePlugins (http://eclipse-plugins.info) [23:02:37] <Ktron> Well, PDE Tools has a 'generate build.xml' option [23:03:18] *** _elemental has quit IRC [23:03:45] <zx|cafe> That isn't portable [23:04:06] *** LongBeach has quit IRC [23:04:29] <hd420> dominikg: have you not done this? [23:04:45] *** LongBeach has joined #eclipse [23:06:03] *** ChrisA__ has joined #eclipse [23:06:28] *** the_giver has quit IRC [23:06:40] *** l0ngbeach has joined #eclipse [23:08:08] *** l0ngbeach has quit IRC [23:08:27] <dominikg> hd420, no i didn't. But i did now, and the menu contains an item 'preferences' and there is an input field for the number of visible items per task category.... [23:08:29] *** paidor has quit IRC [23:11:46] *** jprieur_ has joined #eclipse [23:12:30] *** jprieur has quit IRC [23:12:35] *** robinr has quit IRC [23:12:36] *** jprieur_ is now known as jprieur [23:13:30] *** the_giver has joined #eclipse [23:13:38] *** shiva has quit IRC [23:15:29] *** zx|cafe has quit IRC [23:16:03] *** jprieur has quit IRC [23:16:16] <robot_jesus> I have done it [23:16:37] <robot_jesus> Ktron: yes it works for java projects [23:18:12] *** gabbah has joined #eclipse [23:18:31] <gabbah> where is eclipse installed in linux/ubuntu? [23:20:34] *** gabbah has left #eclipse [23:21:24] *** railbait has joined #eclipse [23:22:34] <railbait> Is it possible to have Eclipse hide files of projects (or even the whole project) not related to the current perspective? i.e. Hide .java files when I'm in a C++ or Perl perspective? [23:22:37] *** timothym has quit IRC [23:23:28] *** eidolon has quit IRC [23:26:04] *** ChrisA_ has quit IRC [23:26:07] <paulweb515_> railbait: you can group projects into working sets and switch between them [23:26:33] <paulweb515_> railbait: but I don't think you can target individual file level ... well, at least not without providing your own filters [23:26:46] <railbait> Yeah I think project is really what I want know that I think of it [23:26:54] <railbait> Good deal, thanks paulweb515_ [23:28:17] *** co2 has quit IRC [23:28:20] *** railbait has left #eclipse [23:28:58] *** Pookzilla has joined #eclipse [23:29:41] *** brilliantnut-oth has joined #eclipse [23:31:52] *** brilliantnut-oth has left #eclipse [23:32:38] <robot_jesus> hey paulweb515 is up for nomination too :) [23:32:52] *** mikanoza has quit IRC [23:33:27] *** mindCrime has joined #eclipse [23:35:31] *** LeNettoyeur has quit IRC [23:40:22] *** ChrisA_ has joined #eclipse [23:41:55] *** tobias has quit IRC [23:48:28] *** exst_mhua has joined #eclipse [23:49:59] *** Yahooadam has quit IRC [23:50:40] *** rorUnni has quit IRC [23:54:52] <rcjsuen_> robot_jesus: yes he is :) [23:54:53] *** rcjsuen_ is now known as rcjsuen [23:56:00] *** |conan| has joined #eclipse