[00:00:43] *** buribu has quit IRC [00:05:04] *** baedert_ has joined #eclipse [00:06:18] *** teefal has quit IRC [00:06:42] *** Chetic has joined #eclipse [00:08:55] *** baedert has quit IRC [00:09:13] *** evil_gordita has joined #eclipse [00:14:07] *** rh0dium has quit IRC [00:14:07] *** corrosionx has quit IRC [00:14:31] *** MarkG123 has joined #eclipse [00:15:32] <MarkG123> Hi, I am running Eclipse on Windows7 x64 and keep getting out of memory exceptions with the latest Sun Java, I have read aplenty about editing my eclipse.ini, but I can't find the damn thing.. Anyone know where it should reside? [00:17:36] <briandealwis> MarkG123: if it doesn't exist, create the file in the same directory as the eclipse.exe [00:17:45] *** m_a_chinea has quit IRC [00:19:05] <MarkG123> OK thanks. [00:19:09] *** MarkG123 has left #eclipse [00:20:10] *** dob1 has joined #eclipse [00:21:16] *** rh0dium has joined #eclipse [00:21:37] *** corrosionx has joined #eclipse [00:24:11] <dob1> hi, i am trying to install the javacc eclipse plugin, this is the url for the repository http://eclipse-javacc.sourceforge.net/ , when i do "install new software", "add" and i copy it to location field i get a "duplicate location error", why? i have to say that i have another eclipse installation on my pc where this plugin is installed, but it is on a different directory, this one is on c:\eclipse, the other one is on c:\eclipse [00:24:56] <dob1> more, if i go on "what is installed" i don't see the javacc plugin in the list [00:27:20] *** kesselhaus has joined #eclipse [00:27:42] *** abhatnag has quit IRC [00:29:40] *** Alan502 has joined #eclipse [00:30:08] <linxeh> you must already have the update site added [00:30:25] <linxeh> but not necessarily the plugin [00:30:31] <linxeh> is it in the drop down list of update sites? [00:31:28] <dob1> linxeh: yes it is [00:31:52] <dob1> i am looking on prefereces -> Install/update -> Available Software site [00:32:06] <Alan502> HI :) Can eclipse give me a command I can use to run a java program from the command line, the same exact way eclipse does? [00:32:16] <dob1> linxeh: how can i install javacc plugin then? [00:32:38] <dob1> i see, just typing javacc in search bar [00:32:56] <briandealwis> Alan502: check the Properties for a stack frame from the debug stack view [00:33:19] <linxeh> dob1: you should just see the update site in the drop down, select it, then it should give you the plugins/features beloew [00:33:43] <dob1> linxeh: who has added this site ? it is added by default? [00:34:04] <linxeh> you must have added it once before [00:34:18] <Alan502> briandealwis, Properties>Run/Debug settings? [00:34:39] <briandealwis> Alan502: no, right-click on a stack frame and select Properties from its context menu [00:35:20] <dob1> linxeh: maybe, i don't remember :) [00:36:02] <Alan502> briandealwis, ahh got it, thanks :) [00:36:28] <linxeh> dob1: regardless, have you managed to get it installed ? [00:39:27] *** vmil86 has quit IRC [00:39:44] *** rossand has joined #eclipse [00:47:08] *** kkb110 has joined #eclipse [00:47:08] *** corrosionx has quit IRC [00:47:35] *** KanjiMonster has left #eclipse [00:52:47] <vinay> rcjsuen: sorry, i got pulled away earlier. how does removing folders from a workspace differ from filtering the view? [00:53:02] <vinay> i also just don't want to deal with these packages when searching and stuff [00:53:15] <vinay> they are packages that i am not using and they are polluting my views/scans etc [00:53:20] *** corrosionx has joined #eclipse [00:53:28] <rcjsuen> As an example, a filter would only hide it from you at the UI level. [00:53:43] <rcjsuen> But in the back for instance the Java tooling would continue compiling those files. [00:53:49] <rcjsuen> is what I meant [00:54:12] <vinay> ah. hmm [00:57:19] *** rossand has quit IRC [00:59:59] *** _nor has quit IRC [01:00:28] *** rossand has joined #eclipse [01:01:17] *** FunnyLookinHat has quit IRC [01:03:03] <Alan502> What is a wrong ELF class error? I have a program that I compiled on a 64 bit machine with eclipse but gives me that error when trying to run it on a 32 bit machine [01:03:38] *** rh0dium has quit IRC [01:09:26] *** kkb110_ has joined #eclipse [01:09:59] <odin_> Alan502, you are trying to mix a 32bit process/runtime with 64bit [01:10:10] *** kkb110 has quit IRC [01:10:14] <odin_> a single process is either the 32bit ABI or the 64bit ABI [01:10:33] <Alan502> odin_, I see [01:10:47] <Alan502> So there is a difference between compiling on 64bit and 32 bit? [01:10:50] <Alan502> with java? [01:10:52] <odin_> you can compile a native program with gcc with -m32 (on a 64bit machine to get a 32bit executable) [01:11:14] <odin_> there is no difference between java bytecode on any machine [01:11:32] <odin_> but if you use "gcj" maybe you have a hybrid which has native part as well ? [01:12:06] <Alan502> Well [01:12:13] <tokam> rcjsuen I have an idea for eclipse. If you are in debug mode, it would be nice if the currently set variables change when you change the code while debugging. What do you think? They could take the value they had when the changement has been made at the beginning of the program. [01:12:27] <Alan502> I'm using an API that uses native libraries, Java Joystick [01:12:34] *** briandealwis has quit IRC [01:12:40] <Alan502> They are 32bit though [01:13:07] <tokam> But on the other hand that feature is not needed so much as well :) [01:13:14] <Alan502> That's why I'm kind of confused :/ [01:13:52] <odin_> native is dependant on 32bit/64bit, java bytecode is not, if you have a mix then the lowest common denominator is the native part [01:13:53] *** klikklak has quit IRC [01:14:16] *** klikklak has joined #eclipse [01:14:47] <odin_> Alan502, what is it you are trying to run ? a *.jar ? the 32bit native part should work find on a 32bit native machine, you are sure your 32bit machine is not dual 32 and 64bit ? [01:15:52] <odin_> you get the ELF class error from trying to run/debug the program which has 32bit JNI native part on the 64bit system ? have you installed a 32bit JVM (along side the 64bit you probably already have) [01:15:54] <Alan502> odin_, Yes, I'm trying to run a jar that I packed with eclipse on a 64 bit machine. My 64 bit machine is dual 32 and 64, the 32 bit machine I'm trying to get the program on now though, is 32 bit only [01:16:33] <odin_> how are you sure you built it as 32bit on the 64bit system ? do you have any *.o or *.so files ? run "file *.o *.so" (from command line) and check for 32bit or 64bit [01:16:54] <Alan502> odin_, ok, let me check [01:17:35] <Alan502> odin_, Ahh you are right, they are 64 bit [01:17:38] *** heinz has quit IRC [01:17:49] <Alan502> I wonder why would the developer compile them as 64 bit though, when 32 bit is more common [01:17:52] <odin_> you need "-m32" in the gcc/ld command lines [01:18:06] <Alan502> I did not compile this library [01:18:29] <Alan502> But i can, from the source code, let me check [01:18:34] <odin_> but to test is on the 64bit system you need to run it with a 32bit Jvm, "java -version" should indicate which, under Eclipse you can setup multiple JVM runtimes and you can pick which from the launch configuration [01:18:36] <Alan502> thanks for the help btw :D [01:20:59] *** snuff has joined #eclipse [01:21:14] <Alan502> I'm running java 64 bit on my 64bit system [01:21:44] <odin_> ok but when you come to find a replacement 32bit JNI library, you shall need a 32bit JVM on a 64bit system [01:24:04] *** uebera|| has quit IRC [01:24:04] *** Genesis2001 has quit IRC [01:25:07] *** _arjen_ has quit IRC [01:29:23] *** baedert__ has joined #eclipse [01:29:32] *** uebera|| has joined #eclipse [01:29:32] *** Genesis2001 has joined #eclipse [01:31:37] *** rossand has quit IRC [01:32:36] *** daisuke_m has joined #eclipse [01:32:37] *** baedert_ has quit IRC [01:36:18] *** nitrospectide has quit IRC [01:41:52] *** kesselhaus has quit IRC [01:42:26] *** kesselhaus has joined #eclipse [01:48:20] *** tewecske has quit IRC [01:49:42] *** corrosionx has quit IRC [01:51:01] *** cmw72 has quit IRC [01:56:50] *** corrosionx has joined #eclipse [02:02:28] *** kesselhaus has quit IRC [02:04:14] *** Alan502 has quit IRC [02:04:54] *** adante has quit IRC [02:05:56] *** hemna has quit IRC [02:07:14] *** hex` has joined #eclipse [02:07:51] *** hex` has quit IRC [02:12:14] *** cereal is now known as cereal|Away [02:13:34] *** rcjsuen has quit IRC [02:17:26] *** evil_gordita has quit IRC [02:17:30] *** dmb has quit IRC [02:17:49] *** evil_gordita has joined #eclipse [02:18:05] *** dmb has joined #eclipse [02:18:28] *** Alan502 has joined #eclipse [02:19:54] *** _timokpunkt has joined #eclipse [02:20:03] *** meeper_ has joined #eclipse [02:20:21] *** Verkel_ has joined #eclipse [02:20:34] *** ppr has joined #eclipse [02:21:24] *** Echidna has quit IRC [02:22:21] *** Echidna has joined #eclipse [02:22:30] *** fisix has quit IRC [02:22:31] *** EricInBNE has quit IRC [02:22:31] *** peper has quit IRC [02:22:31] *** iksik has quit IRC [02:22:32] *** Verkel has quit IRC [02:22:32] *** meeper has quit IRC [02:22:32] *** timokpunkt has quit IRC [02:22:51] *** iksik has joined #eclipse [02:23:05] *** hex` has joined #eclipse [02:23:34] *** SegFaultAX has joined #eclipse [02:23:35] *** EricInBNE has joined #eclipse [02:23:51] <SegFaultAX> My project build times are excessively long. [02:23:55] <SegFaultAX> Like 2 minutes or more. [02:24:31] <SegFaultAX> I'm using -Xms1024M -Xmx2048M and verified that it's indeed starting with a gig of ram. It's not improving performance at all. [02:25:12] <SegFaultAX> Anyone know of a solution for this? [02:29:12] *** snuff has quit IRC [02:29:45] *** snuff has joined #eclipse [02:31:49] *** tokam has quit IRC [02:34:16] *** asimismo has quit IRC [02:35:05] *** Alan502 has quit IRC [02:36:50] *** QbY has joined #eclipse [02:37:51] <QbY> I'm using the Google App Engine plugin for Eclipse to deploy. Every once and a while I find that I get Error 500s from Google when attempting to deploy a new version. I tracked this down (i believe) to being logged into the wrong Google account. I have three different browsers on my system, how can I determine which set of cookies Eclipse looks at? [02:46:35] *** rcjsuen has joined #eclipse [02:59:16] *** Alan502 has joined #eclipse [03:00:34] *** snuff has quit IRC [03:02:37] *** dob1 has quit IRC [03:03:20] *** klikklak has quit IRC [03:04:13] *** private_meta has quit IRC [03:04:20] *** private_meta has joined #eclipse [03:06:49] *** kesselhaus has joined #eclipse [03:07:03] *** MajorMcDoom has joined #eclipse [03:07:14] <MajorMcDoom> hey guys. how do i find out from code what the eclipse version is? [03:07:28] *** rossand has joined #eclipse [03:10:40] *** intellilogic has joined #eclipse [03:11:08] *** adante has joined #eclipse [03:13:33] *** kesselhaus has quit IRC [03:13:43] <rcjsuen> what do you need this information for? [03:15:47] *** QbY_ has joined #eclipse [03:16:12] <MajorMcDoom> to send usage information for my plugin [03:18:01] *** QbY has quit IRC [03:18:01] *** QbY_ is now known as QbY [03:18:19] *** rcjsuen__ has joined #eclipse [03:20:49] *** rcjsuen has quit IRC [03:26:11] *** SegFaultAX has quit IRC [03:28:16] *** dirk_77__ has quit IRC [03:29:28] *** dmb has quit IRC [03:31:31] *** MajorMcDoom has quit IRC [03:33:54] *** QbY_ has joined #eclipse [03:34:38] *** dmb has joined #eclipse [03:35:45] *** QbY has quit IRC [03:36:08] *** semeion has quit IRC [03:36:56] *** baedert__ has quit IRC [03:36:59] *** rcjsuen has joined #eclipse [03:37:05] *** intellilogic has quit IRC [03:38:24] *** QbY has joined #eclipse [03:38:40] *** rcjsuen__ has quit IRC [03:39:46] *** QbY_ has quit IRC [03:40:11] *** semeion has joined #eclipse [03:43:03] *** intellilogic has joined #eclipse [03:43:26] *** QbY has quit IRC [03:47:19] *** rossand has quit IRC [03:47:25] *** QbY has joined #eclipse [03:48:45] *** hex` has quit IRC [03:51:43] *** rcjsuen has quit IRC [03:56:17] *** semeion has quit IRC [03:58:01] *** semeion has joined #eclipse [04:03:31] <eMBee> last git [04:03:35] <eMBee> ooops [04:04:05] *** eMBee has quit IRC [04:05:53] *** QbY has quit IRC [04:07:07] *** QbY has joined #eclipse [04:09:22] *** QbY has quit IRC [04:13:40] *** QbY has joined #eclipse [04:15:57] *** kthomas_vh has quit IRC [04:16:09] *** QbY_ has joined #eclipse [04:18:38] *** QbY has quit IRC [04:18:40] *** QbY_ is now known as QbY [04:20:28] *** QbY has quit IRC [04:22:26] *** ppr is now known as peper [04:31:45] *** snuff has joined #eclipse [04:32:41] *** kthomas_vh has joined #eclipse [04:37:51] *** snuff has quit IRC [04:43:22] *** semeion has quit IRC [04:44:39] *** hemna has joined #eclipse [04:46:30] *** evil_gordita has quit IRC [04:46:49] *** semeion has joined #eclipse [04:52:40] *** rh0dium has joined #eclipse [04:59:16] *** Echidna_ has joined #eclipse [04:59:17] *** Echidna has quit IRC [05:11:16] *** ksawicki has quit IRC [05:21:30] *** cbeust has joined #eclipse [05:24:37] *** kthomas_vh has quit IRC [05:25:11] *** semeion has quit IRC [05:26:13] *** semeion has joined #eclipse [05:29:12] *** klikklak has joined #eclipse [05:29:30] *** asimismo has joined #eclipse [05:32:50] *** jfisk87 has joined #eclipse [05:32:51] <jfisk87> hey [05:33:05] <jfisk87> i think i hit a keyboard shortcut that turned off my autocomplete when i type a variable name then a period.. [05:33:10] <jfisk87> anyone know how to turn it back on [05:35:55] *** kthomas_vh has joined #eclipse [05:37:40] *** corrosionx has quit IRC [05:42:08] *** intellilogic has quit IRC [05:43:27] *** klikklak has quit IRC [05:44:42] *** corrosionx has joined #eclipse [05:55:27] <nitind> jfisk87: There's no keyboard shortcut for that that I'm aware of. Check the preferences for the relevant editor. [05:56:28] <jfisk87> nitind i got it [05:56:33] <jfisk87> who knows [06:02:45] *** ron has joined #eclipse [06:03:17] *** kthomas_vh has quit IRC [06:05:00] *** kthomas_vh has joined #eclipse [06:19:33] *** mluser-home has quit IRC [06:25:22] *** klikklak has joined #eclipse [06:26:35] *** ron has quit IRC [06:28:14] *** klikklak has quit IRC [06:33:00] *** Caleb-- has left #eclipse [06:33:13] *** intellilogic has joined #eclipse [06:33:37] *** snuff has joined #eclipse [06:37:36] *** ghostthatal has joined #eclipse [06:40:03] *** snuff has quit IRC [06:42:33] *** Alan502 has quit IRC [06:42:50] *** ghostthatal has quit IRC [06:48:36] *** aminpy has joined #eclipse [06:50:51] *** RenatoSilva has joined #eclipse [06:50:58] <RenatoSilva> .w pie in the sky [06:51:07] <RenatoSilva> .o ud pie in the sky [06:51:13] <RenatoSilva> wrong channel [06:51:15] <RenatoSilva> sorry [06:51:22] *** RenatoSilva has left #eclipse [06:54:33] *** kthomas_vh has quit IRC [07:00:19] *** kesselhaus has joined #eclipse [07:03:36] *** kthomas_vh has joined #eclipse [07:06:35] *** vmil86 has joined #eclipse [07:11:27] *** scrts2 has joined #eclipse [07:11:27] *** mfladischer has joined #eclipse [07:13:57] *** kesselhaus has quit IRC [07:31:47] *** jfisk87 has left #eclipse [07:42:38] *** BigKing has joined #eclipse [07:53:31] *** TomTom has joined #eclipse [07:54:04] *** drindt has joined #eclipse [08:01:26] *** corrosionx has quit IRC [08:03:29] *** a0sle has quit IRC [08:07:13] *** a0sle has joined #eclipse [08:07:31] *** corrosionx has joined #eclipse [08:14:51] *** BigKing_2nd has joined #eclipse [08:18:16] *** BigKing has quit IRC [08:20:38] *** kthomas_vh has quit IRC [08:22:04] *** kottlett has joined #eclipse [08:22:05] *** drindt has quit IRC [08:27:38] *** kthomas_vh has joined #eclipse [08:28:33] *** ddk has quit IRC [08:31:24] *** jaymoretti has joined #eclipse [08:32:57] *** jaymoretti is now known as jay_moretti [08:38:46] *** jay_moretti has quit IRC [08:43:20] *** purestrain has joined #eclipse [08:44:14] *** ualtin has joined #eclipse [08:48:25] *** hemna has quit IRC [08:50:34] *** ron has joined #eclipse [08:51:50] *** cbeust has quit IRC [08:52:43] *** BigKing_2nd has quit IRC [08:52:44] *** cbeust has joined #eclipse [08:53:12] *** BigKing has joined #eclipse [08:54:54] *** BigKing has quit IRC [08:55:02] *** garrettheel has joined #eclipse [08:55:06] *** BigKing has joined #eclipse [08:56:30] <garrettheel> for anyone who knows about plugin development for Eclipse, would you have an idea on the feasibility of having a project in the workspace where the associated files exist on a server somewhere else but displaying it to the user in the same manner? [08:59:21] *** BigKing has quit IRC [09:07:09] *** zabka has joined #eclipse [09:08:53] *** csaba has joined #eclipse [09:16:39] *** drthingums has joined #eclipse [09:18:47] *** SzymonB has joined #eclipse [09:21:16] *** Pasqualle has joined #eclipse [09:26:20] *** asimismo has quit IRC [09:29:57] *** csaba2 has joined #eclipse [09:30:08] *** happy_grapefruit has joined #eclipse [09:31:39] *** csaba has quit IRC [09:31:39] *** csaba2 is now known as csaba [09:35:43] *** danlucraft has joined #eclipse [09:35:53] *** danlucraft has quit IRC [09:35:56] *** Pasqualle has quit IRC [09:36:12] *** danlucraft has joined #eclipse [09:39:06] <X0x> hi, I try to upgrade eclipse from helio to indigo I add indigo repo but it doesn't ask for any upgrade is it normal ? thanks [09:40:13] *** kkb110_ has quit IRC [09:40:32] *** kkb110 has joined #eclipse [09:41:54] *** Pasqualle has joined #eclipse [09:44:13] *** kthomas_vh has quit IRC [09:47:24] *** fladi_ has joined #eclipse [09:47:43] *** fladi_ has quit IRC [09:48:45] *** phatypus has joined #eclipse [09:50:04] *** Pasqualle has quit IRC [09:50:48] *** kthomas_vh has joined #eclipse [09:50:49] *** Pasqualle has joined #eclipse [09:51:44] *** SzymonB has quit IRC [09:52:01] *** karmicthreat has joined #eclipse [09:54:03] <karmicthreat> I'm trying to install the cloudbees tool on 3.7/java when I get to the point where I have to agree to the agreement. I click agree and finish stays grey. So all I can do is backup or cancel. Tried starting with -clean and that didn't work either. [09:57:33] *** drindt has joined #eclipse [10:00:55] *** iksik has quit IRC [10:00:56] *** garrettheel has quit IRC [10:05:50] *** kgilmer has quit IRC [10:11:58] *** csaba has quit IRC [10:12:18] *** csaba has joined #eclipse [10:15:44] *** phatypus has quit IRC [10:15:48] *** rawbdor has joined #eclipse [10:19:59] *** ddk has joined #eclipse [10:20:58] *** ualtin has quit IRC [10:26:51] *** ualtin has joined #eclipse [10:27:20] *** klikklak has joined #eclipse [10:32:42] *** klikklak_ has joined #eclipse [10:34:18] *** klikklak has quit IRC [10:36:18] *** mfladischer has quit IRC [10:36:35] *** mfladischer has joined #eclipse [10:37:49] *** kgilmer has joined #eclipse [10:42:43] *** klikklak_ has quit IRC [10:51:46] *** mastro has joined #eclipse [10:52:17] <mastro> is there a way to "extract" the classpath Eclipse is using to execute the JVM of my program? (to execute it from a shell) [10:53:09] *** Pasqualle has quit IRC [10:55:04] *** kgilmer has quit IRC [11:06:54] <edheldil> Hi, does anyone have a problem with adding external editors? I have added '*.glade' => /usr/bin/glade-3. That works. But now when I want to add editor for *.glade3, or list available editors for it, Eclipse just stalls and displays wait cursor. I wanted to look for this bug in bugzilla, but that stalls on me as well ;-) [11:16:27] *** amitev2 has joined #eclipse [11:17:14] *** amitev has quit IRC [11:17:21] *** baedert has joined #eclipse [11:28:39] *** klikklak has joined #eclipse [11:29:52] *** phatypus has joined #eclipse [11:32:03] *** klikklak has quit IRC [11:38:51] *** Zenopus has quit IRC [11:45:13] *** malo_nj has joined #eclipse [11:45:45] *** Pasqualle has joined #eclipse [11:52:32] *** Zenopus has joined #eclipse [11:53:52] *** soee has joined #eclipse [11:54:28] *** switch has joined #eclipse [11:55:27] *** _nor has joined #eclipse [11:55:37] *** tewecske has joined #eclipse [11:55:51] *** Pasqualle_ has joined #eclipse [11:57:28] *** Pasqualle has quit IRC [12:02:01] *** rcjsuen has joined #eclipse [12:02:09] *** z4z4 has joined #eclipse [12:04:29] *** andrey_ has joined #eclipse [12:05:05] *** Pasqualle_ has quit IRC [12:07:15] *** Pasqualle has joined #eclipse [12:10:13] *** Pasqualle has quit IRC [12:10:31] *** Pasqualle has joined #eclipse [12:11:52] <rcjsuen> ~tell mastro about debug-command [12:11:52] <Arbalest> mastro: Need to find out what the command line invocation was for a process launched by Eclipse? See here - http://wiki.eclipse.org/Graphical_Eclipse_FAQs#How_do_I_check_for_the_command_line_invocation_that_Eclipse_used_to_launch_an_application.3F [12:11:52] *** Pasqualle_ has joined #eclipse [12:12:23] <rcjsuen> X0x: I think you would first have to have the relevant update sites in your HElios instance first. [12:15:52] *** Pasqualle has quit IRC [12:16:13] *** esperegu has joined #eclipse [12:17:37] <mastro> rcjsuen, thanks very much that's exactly what I need [12:18:58] *** Pasqualle_ has quit IRC [12:22:22] *** csaba2 has joined #eclipse [12:23:15] *** csaba2 has quit IRC [12:24:17] *** csaba has quit IRC [12:24:23] *** csaba has joined #eclipse [12:27:26] *** kgilmer has joined #eclipse [12:29:01] *** kkb110 has quit IRC [12:34:49] *** semeion has quit IRC [12:34:55] *** ardo has quit IRC [12:35:05] <X0x> rcjsuen, I disable the Helios update but it doesn't change no update asked [12:41:46] *** ppareit has joined #eclipse [12:41:48] <rcjsuen> Disabling sites is not the same effect as having the right sites available. [12:43:57] <ppareit> I've started writing a simple plugin for eclipse. I wish to log some simple information, and I've wrote a log function: [12:43:59] <ppareit> private void log(String message) { [12:44:01] <ppareit> ILog log = Activator.getDefault().getLog(); [12:44:03] <ppareit> String pluginId = Activator.PLUGIN_ID; [12:44:05] <ppareit> log.log(new Status(Status.INFO, pluginId, message)); [12:44:07] <ppareit> } [12:44:09] <ppareit> But where does the log go to (assuming that log function is correct and works)? I've checked the Error Log view. [12:50:16] <rcjsuen> that's where it would show [12:50:20] <rcjsuen> and also in the workspace's log file [12:52:32] <ppareit> ach, ok I've found it. I was expecting it to show up in the eclipse from witch I do the programming, and not in the newly started eclipse. I understand the logic now [12:54:01] *** ringlej_ has joined #eclipse [12:54:05] *** dirk_77__ has joined #eclipse [12:54:16] *** ringlej has quit IRC [12:57:50] *** rcjsuen has quit IRC [12:58:59] *** buribu has joined #eclipse [12:59:03] *** buribux has joined #eclipse [12:59:26] *** kkb110 has joined #eclipse [12:59:50] *** buribux has quit IRC [13:01:57] *** kkb110 has quit IRC [13:03:15] *** kkb110 has joined #eclipse [13:23:53] *** rrodriguez has joined #eclipse [13:27:26] *** klausk has joined #eclipse [13:27:29] *** phatypus has quit IRC [13:31:22] *** drthingums has quit IRC [13:36:29] *** |Freeman| has joined #eclipse [13:36:51] *** ppareit has quit IRC [13:39:51] *** _nor has quit IRC [13:45:25] *** farrukhjon has joined #eclipse [13:46:20] <farrukhjon> Hi all help me with this error: Cannot complete the install because one or more required items could not be found. [13:46:20] <farrukhjon> Software being installed: eRCP Designer 1.1.0.r37x201108111849 (org.eclipse.wb.ercp.feature.feature.group 1.1.0.r37x201108111849) [13:46:20] <farrukhjon> Missing requirement for filter properties ~= $0: eRCP Designer 1.1.0.r37x201108111849 (org.eclipse.wb.ercp.feature.feature.group 1.1.0.r37x201108111849) requires 'org.eclipse.wb.ercp [1.1.0.r37x201108111849]' but it could not be found [13:48:40] <rcjsuen_> Do you actually want eRCP designer? [13:48:45] *** rcjsuen_ is now known as rcjsuen [13:50:16] *** Pasqualle has joined #eclipse [13:50:32] *** samuell has joined #eclipse [13:50:57] <farrukhjon> rcjsuen_: yah [13:51:18] <rcjsuen> What OS are you on [13:51:28] <farrukhjon> win7 [13:52:05] <X0x> rcjsuen, I disable helios directory and add indogo one indeed am I mist something ? [13:52:34] *** mluser-home has joined #eclipse [13:53:28] <rcjsuen> X0x: I don't think you need to disable Helios, but something like that. [13:53:44] <farrukhjon> this message shows on update time [13:53:56] <rcjsuen> farrukhjon: Are you on 64-bit? [13:54:05] <X0x> rcjsuen, I try with both activited and no upgraded asked [13:54:11] <farrukhjon> 32bit [13:54:13] <rcjsuen> dunno [13:54:22] *** Kamaran has joined #eclipse [13:54:24] <rcjsuen> farrukhjon: then better ask on the forums [13:54:48] <farrukhjon> rcjsuen: thanks [14:00:24] *** farrukhjon has left #eclipse [14:02:44] *** dirk_77__ has quit IRC [14:03:50] *** amitev has joined #eclipse [14:04:15] *** zabka has quit IRC [14:04:22] *** zabka has joined #eclipse [14:05:30] *** samuell has quit IRC [14:05:39] *** samuell has joined #eclipse [14:06:44] *** amitev2 has quit IRC [14:07:00] *** briandealwis has joined #eclipse [14:07:07] *** otaviobp has joined #eclipse [14:08:17] *** amitev2 has joined #eclipse [14:11:17] *** amitev has quit IRC [14:15:32] *** Pasqualle has quit IRC [14:15:58] *** Pasqualle has joined #eclipse [14:17:28] *** rsjoao has joined #eclipse [14:17:37] *** Caleb-- has joined #eclipse [14:18:34] <Caleb--> when i was learning java i was used to running small app projects from within Eclipse, but now i want to create an actual application that someone else will be able to run as well (one that is composed of mulitple CLASS files). what do i need to know? [14:18:57] <Caleb--> do i just package all the class files into a jar and that's it? [14:19:38] <nitind> If that works for you, [14:19:40] <Caleb--> and can i automate this process from within eclipse? sort of like create a "relase build" that'll be automatically packaged [14:20:47] <Caleb--> i'm just new to java and all the tools that accompany it. there are hundreds of these tools that do different things, and it's confusing as heck. in my past C++ days, i'd just have a build script that ran from visual studio [14:21:53] <Caleb--> the amount of frameworks and buzzwords that surround java is astonishing [14:22:16] * Alberth nods [14:22:17] *** EricInBNE has quit IRC [14:24:06] <Alberth> Given that we automagically build much more complicated things, I'd say it is definitely possible. Whether it is worth the trouble is a different question. As I didn't set that up, I cannot give you any useful details :( [14:24:38] *** klawd has joined #eclipse [14:24:47] <klawd> hi! can i close a project from command line? [14:24:58] *** Pasqualle has quit IRC [14:25:01] <klawd> because on of my projects is crashing eclipse when i try to start it [14:27:01] *** rossand has joined #eclipse [14:28:48] *** ardo has joined #eclipse [14:34:29] *** jerboaa has joined #eclipse [14:38:10] <rcjsuen> Perhaps you'd be better off moving that folder so Eclipse doesn't actually find anything in that folder. [14:38:59] <rcjsuen> Caleb--: You could have an Ant script that built your project, if you so wished, or any other build tool (or just raw batch files calling javac I guess). [14:40:49] <Caleb--> separate to Eclipse? [14:41:11] *** ecfuser4169 has joined #eclipse [14:41:23] *** ecfuser4169 has left #eclipse [14:41:25] <Caleb--> that is, i use eclipse to write and debug, but run an ant script to compile & package? [14:41:33] <rcjsuen> If you so choose. [14:42:58] <Caleb--> in VS i could create different builds. for example, i had Debug, Release, and Release + Installer. each of them could be configured to run extra commands, maybe i could just do something like that in eclipse? [14:43:03] *** Pasqualle has joined #eclipse [14:45:10] <Caleb--> i see that eclipse has something called "Run Configuration" [14:45:28] <Caleb--> hmm, but that seems to be mostly related to the run parameters of the app [14:47:01] <Caleb--> rcjsuen, so people usualyl use eclipse + ant for this kind of stuff? [14:47:39] <rcjsuen> well, I expect any mature software project to have some build script, yes [14:47:42] *** wainersm has joined #eclipse [14:48:06] <Caleb--> and instead of eclipse directly compiling and running the java files, it instead runs the build script? [14:49:01] <Alberth> Caleb--: you don't 'use' eclipse for anything. eclipse itself is just an empty shell that gives you access to any software you install in it. [14:49:02] <rcjsuen> I doubt many people use the script to run the program. [14:49:18] <rcjsuen> But whatever floats your boat [14:49:36] <Caleb--> i'm just trying to understand the workflow :) [14:50:46] <Alberth> Caleb--: In VS you have 1 vendor that defines how to do things. In eclipse, a lot of people make software (that's normal in open source) so you have X choices for anything you want to do [14:51:13] <Alberth> Caleb--: typically, you just try things until you find something you like [14:51:24] <Caleb--> i see [14:51:55] *** kkb110 has quit IRC [14:52:08] <Caleb--> so how is the ant script related to work in eclipse? [14:52:20] <Caleb--> suppose i use Eclipse as an IDE [14:52:31] <Caleb--> write code and debug it [14:52:55] <Caleb--> is Ant usually used when i want to create a shippable packagE? [14:53:27] <Alberth> ant is software to describe build processes in general, so you can write an ant script to build your software, or to build a package, or to install whatever, etc etc. [14:54:46] <Alberth> so yes, you should be able to use ant for making a shippable package. Never done that though, so I cannot tell you how [14:55:16] <Caleb--> ok [14:55:40] *** amitev2 has quit IRC [14:55:50] *** amitev has joined #eclipse [14:56:18] <Alberth> but there is no such thing as 'this is normally used for X', especially in the domain of builds [14:56:41] <Alberth> in VS that is only the case because you have 1 vendor pushing 1 solution [14:57:48] <Caleb--> which is much easier, to be honest :)) [14:58:19] <Alberth> Caleb--: as you get more experience, you'll find where ant lacks, or which other good software exists. When 'it lacks' becomes an irritation, it is time to try something new :) [14:58:23] *** snuff has joined #eclipse [14:58:31] <Alberth> 1 solution is only good if your problem fits in it. [14:58:59] *** zephir has joined #eclipse [14:59:02] <zephir> hello [14:59:11] <Alberth> Caleb--: as soon as you have to work around some limitation, you fall outside that category [14:59:14] <zephir> i am trying to get eclipse to format my html code correctly [14:59:17] *** wildgoose has joined #eclipse [14:59:42] <zephir> wheneever i hit ctrl + shift + f all intendtions go away :( [15:00:15] *** soee has quit IRC [15:01:04] *** |Freeman| has quit IRC [15:01:10] *** mfladischer has quit IRC [15:02:16] <Caleb--> are there any repositories for custom SWT components? [15:05:00] *** mziaei has joined #eclipse [15:07:29] <rcjsuen> Nebula [15:07:49] <Caleb--> thx [15:12:12] *** soee has joined #eclipse [15:12:51] *** noord has joined #eclipse [15:14:21] *** rgrunber has joined #eclipse [15:14:37] *** andrey_ has quit IRC [15:17:29] *** snuff has quit IRC [15:19:26] *** grimeton has joined #eclipse [15:19:28] *** aminpy has quit IRC [15:19:28] <grimeton> hi [15:19:41] <grimeton> is it possible to "move" an editor tab to a new window? [15:21:26] <rcjsuen> Did you try? [15:21:38] <rcjsuen> Oh, I guess you mean detach it [15:21:42] <rcjsuen> and not "move it to another workbench window" [15:21:45] <grimeton> rcjsuen: i can move it around in tabs, or say "new editor" but it's always in the same eclipse window [15:22:02] <rcjsuen> you mean the same thing as if you detached a view? [15:22:23] <grimeton> rcjsuen: what i mean is: grabbing the tab, move it outside eclipse and then drop it there [15:22:32] <grimeton> and then there is a new window opened that contains the tab i dropped [15:23:11] <rcjsuen> You can't do that in 3.x. You can in 4.x. [15:23:21] *** samuell has quit IRC [15:23:30] <grimeton> ah ok [15:23:37] <grimeton> i run 3.7 - is 4.x out already? [15:24:29] <grimeton> it only shows 3.7 on the webpage [15:24:33] <grimeton> maybe it's because i run os x? [15:24:38] <rcjsuen> http://mail.eclipse.org/viewcvs/viewvc.cgi/org.eclipse.platform.doc.user/whatsNew/images/detached-editor.png?view=co [15:24:53] *** Pasqualle_ has joined #eclipse [15:25:06] *** mpiggott has joined #eclipse [15:25:09] <rcjsuen> http://download.eclipse.org/e4/sdk/ [15:25:12] <Caleb--> i've just created a WindowBuilder SWT application window, it runs fine, but when I switch to Design View I get: "java.lang.IllegalArgumentException: Path must include project and resource name: /org.eclipse.swt" [15:25:20] <grimeton> rcjsuen: thanks [15:26:08] *** Pasqualle has quit IRC [15:28:53] *** switch has quit IRC [15:29:25] *** scrts2 has quit IRC [15:29:37] *** Pasqualle_ has quit IRC [15:33:33] *** magicked has quit IRC [15:33:52] *** kgilmer has quit IRC [15:34:48] <Caleb--> hmm, it gives me that exception for any new window i create [15:35:08] <Caleb--> strange, because the app itself runs [15:35:14] <Caleb--> but design view doesn't work [15:38:36] *** samuell has joined #eclipse [15:39:20] *** BigKing has joined #eclipse [15:39:46] *** dirk_77__ has joined #eclipse [15:48:06] <Caleb--> i posted it in the WB forums [15:48:51] *** d_a_carver has joined #eclipse [15:52:36] *** kkb110 has joined #eclipse [15:52:50] *** UrsoBranco has joined #eclipse [15:54:13] *** andrey_ has joined #eclipse [15:54:17] *** ron has quit IRC [15:56:46] *** Sembiance has joined #eclipse [15:57:24] <Sembiance> I'd like to make a custom builder in Eclipse. I want to use Stylus (like SASS) and whenever I save a *.styl file, I want it to execute a command that builds the corresponding .css file [15:58:00] *** vmil86 has quit IRC [15:58:02] <Sembiance> I think I figured out how to do a custom builder, but it doesn't look like I can target it for a specific file extension, or have it be invoked automatically on file save [16:01:19] *** briandealwis has quit IRC [16:01:49] <rcjsuen> when a save happens your builder should be notified of a build event [16:01:58] <rcjsuen> assuming you're building automatically anyway [16:04:37] <Sembiance> rcjsuen: how do I associate *.styl with my custom external builder? [16:05:03] <rcjsuen> You don't. [16:06:04] <Sembiance> hrm [16:06:32] <Sembiance> guess the "eclipse way" is to write my own eclipse plugin to handle this [16:07:07] <Sembiance> I think I'll use a different editor for this, something that is more flexible with modern day development that isn't java. [16:07:18] <Sembiance> rcjsuen: thanks for your help, I appreciate it :) [16:08:27] *** csaba2 has joined #eclipse [16:09:39] *** csaba has quit IRC [16:09:39] *** csaba2 is now known as csaba [16:11:59] *** samuell has quit IRC [16:21:25] *** zephir has quit IRC [16:24:44] *** samuell has joined #eclipse [16:26:43] *** abhatnag has joined #eclipse [16:29:20] *** noord has quit IRC [16:31:29] *** briandealwis has joined #eclipse [16:33:51] <edheldil> Hi, does anyone have a problem with adding external editors? I have added '*.glade' => /usr/bin/glade-3. That works. But now when I want to add editor for *.glade3, or list available editors for it, Eclipse just stalls and displays wait cursor. I wanted to look for this bug in bugzilla, but that stalls on me as well ;-) [16:36:12] <rcjsuen> While I expect it to stall I don't expect it to stall forever. [16:36:40] *** amitev has quit IRC [16:36:50] *** amitev has joined #eclipse [16:37:39] *** semanticpc has joined #eclipse [16:37:48] *** semanticpc has joined #eclipse [16:38:48] *** vipaca has joined #eclipse [16:39:11] *** amitev has quit IRC [16:39:20] *** amitev has joined #eclipse [16:39:29] *** buribu has quit IRC [16:47:21] <edheldil> rcjsuen: it was [16:47:32] <rcjsuen> did you get a thread dump? [16:47:46] <edheldil> no. With ps ax? [16:48:29] <nitind> That doesn't generate thread dumps. [16:49:06] <rcjsuen> what Nitin said [16:49:16] <nitind> ~dump [16:49:17] <Arbalest> In a deadlock? http://wiki.eclipse.org/index.php/How_to_report_a_deadlock [16:51:13] *** Pasqualle_ has joined #eclipse [16:51:22] *** Pasqualle_ is now known as Pasqualle [16:52:29] *** corrosionx has quit IRC [16:52:43] *** FunnyLookinHat has joined #eclipse [16:55:47] *** hemna has joined #eclipse [16:56:05] *** clockwize has joined #eclipse [16:56:21] <clockwize> hi guys, Can anyone tell me where I can link to static libraries in c++ eclipse? [16:56:29] <clockwize> Can't find it for the life of me [16:57:59] *** amitev2 has joined #eclipse [16:59:13] *** amitev has quit IRC [16:59:54] *** Sbrun has quit IRC [17:00:12] *** corrosionx has joined #eclipse [17:00:47] *** d_a_carver has quit IRC [17:01:57] *** malo_nj has quit IRC [17:02:52] *** nitrospectide has joined #eclipse [17:04:23] *** Jug6-Alt has joined #eclipse [17:05:02] *** cbeust has quit IRC [17:05:26] <Jug6-Alt> im using eclipse 3.7, im not getting the method list when i do "bla." is this an option that can be turned on/off? [17:05:32] *** Jug6-Alt is now known as Jug6ernaut [17:06:01] <rcjsuen> Does it work in a new workspace? [17:06:09] <rcjsuen> What is this? Java? C++? [17:06:34] <Jug6ernaut> hmm idk, (tho i remember having this issue with a workspace b4 now that u mention it) [17:06:35] <Jug6ernaut> java [17:06:39] <Jug6ernaut> let me try a new workspace [17:07:46] *** dirk_77__ has quit IRC [17:09:26] <Jug6ernaut> how do i delete a workspace :\ [17:09:42] <rcjsuen> just delete the folder [17:09:49] <rcjsuen> or just point eclipse at a new folder to use a new workspace [17:10:39] *** ddk has quit IRC [17:10:44] <Jug6ernaut> not working in a new workspace [17:16:57] *** esperegu has quit IRC [17:18:18] *** cmw72 has joined #eclipse [17:20:00] *** asimismo has joined #eclipse [17:20:11] *** lisak has joined #eclipse [17:20:56] <lisak> too bad drop to frame shortcut is missing [17:21:55] <rcjsuen> file an enhancement request [17:23:51] *** bloony has quit IRC [17:24:12] <Jug6ernaut> rcjsuen its telling me "no default proposals" on ctrl+space [17:25:04] <edheldil> rcjsuen: http://pastebin.com/pkb6kBwT [17:25:14] <Jug6ernaut> rcjsuen nm i got it :) [17:26:11] *** Pasqualle has quit IRC [17:28:19] *** cereal|Away has quit IRC [17:29:04] *** ualtin has quit IRC [17:30:51] <rcjsuen> As I foresaw, that log file doesn't seem to indicate much [17:31:04] <edheldil> indeed :) [17:32:10] *** cereal_ has joined #eclipse [17:34:51] *** Jug6ernaut has left #eclipse [17:35:36] <edheldil> rcjsuen: to be frank, i am not even sure if it's stalling or just forgot to change cursor, because the GUI remained responsive, it just does not do anything and spins clock cursover whenever I mouseover package explorer (since I was trying RMB on file -> Open With -> Other [17:35:48] *** TomTom has quit IRC [17:35:58] <edheldil> and the clock cursor return back to normal if I open some dialog [17:36:03] <edheldil> returns [17:36:08] *** kkb110 has quit IRC [17:37:19] <edheldil> hmm, not any dialog, just the Preferences one [17:37:34] *** kkb110 has joined #eclipse [17:38:48] *** ampotty has joined #eclipse [17:40:35] *** Hodapp has joined #eclipse [17:41:05] *** klikklak has joined #eclipse [17:44:25] *** daisuke_m has quit IRC [17:44:52] *** daisuke_m has joined #eclipse [17:45:22] *** amitev has joined #eclipse [17:46:43] *** amitev2 has quit IRC [17:49:43] *** amitev has quit IRC [17:49:53] *** amitev has joined #eclipse [17:52:02] *** mastro has quit IRC [17:52:44] *** m_a_chinea has joined #eclipse [17:53:20] *** daisuke_m has quit IRC [17:55:41] *** asimismo has quit IRC [17:56:28] *** klikklak has quit IRC [17:58:30] <briandealwis> Anybody know if there's a way to tell if a font supports a particular character? [18:00:09] *** hemna_ has joined #eclipse [18:00:18] *** Chetic has quit IRC [18:00:56] *** ardo has quit IRC [18:01:06] *** hemna has quit IRC [18:02:38] *** ualtin has joined #eclipse [18:04:34] *** Hodapp has left #eclipse [18:06:01] *** klikklak has joined #eclipse [18:06:23] *** Chetic has joined #eclipse [18:08:43] *** klikklak has quit IRC [18:09:54] *** hannes has left #eclipse [18:10:18] *** rh0dium has quit IRC [18:11:27] *** aminpy has joined #eclipse [18:11:41] *** klikklak has joined #eclipse [18:14:07] *** iXeno has joined #eclipse [18:14:51] *** dirk_77__ has joined #eclipse [18:18:18] *** Sembiance has left #eclipse [18:18:31] *** klikklak has quit IRC [18:19:57] *** _arjen_ has joined #eclipse [18:20:14] *** Pasqualle has joined #eclipse [18:21:26] *** klikklak has joined #eclipse [18:22:10] *** hemna_ is now known as hemna [18:23:41] *** ksawicki has joined #eclipse [18:25:27] *** klikklak has quit IRC [18:28:16] *** noord has joined #eclipse [18:28:23] *** klikklak has joined #eclipse [18:30:34] *** andrey_ has quit IRC [18:32:03] *** amitev2 has joined #eclipse [18:33:01] *** asimismo has joined #eclipse [18:33:18] *** amitev has quit IRC [18:36:06] *** deSilva has joined #eclipse [18:38:13] *** zabka has quit IRC [18:38:25] *** faz_ has left #eclipse [18:40:30] *** Pasqualle has quit IRC [18:41:04] *** rubin110_ has joined #eclipse [18:41:09] *** clockwize has quit IRC [18:41:34] *** tester has joined #eclipse [18:42:26] *** Alien_Freak has joined #eclipse [18:42:28] *** rubin110 has quit IRC [18:42:28] *** odin_ has quit IRC [18:42:49] *** cantoma has quit IRC [18:42:49] *** csgeek has quit IRC [18:43:11] *** apavlov_ has joined #eclipse [18:43:15] *** tester has quit IRC [18:43:21] *** rubin110_ is now known as rubin110 [18:43:23] *** ian_mac has quit IRC [18:43:23] *** nQb has quit IRC [18:43:29] *** odin_ has joined #eclipse [18:43:51] *** rubin110 is now known as Guest22328 [18:44:47] *** danlucraft has quit IRC [18:44:52] *** nQb has joined #eclipse [18:46:57] *** cantoma has joined #eclipse [18:48:27] *** ualtin has left #eclipse [18:49:25] <apavlov_> Hey everyone. I've got a part of the WebKit (www.webkit.org) project linked into my Eclipse C++ project via linked folders. The includes are slightly off in the source code (.h files are copied to the right location during the build phase), and all classes from such includes are marked as unknown in my source (even though pressing F3 navigates me to some of those just fine). I'm running Eclipse 3.7 with CDT 8.0, and previously ( [18:49:25] <apavlov_> CDT 7.x) this case worked perfectly, with no red underlines. Any clues if I can tune something CDT-wise? [18:50:24] *** unlord_ has joined #eclipse [18:50:42] *** amitev has joined #eclipse [18:51:10] *** unlord has quit IRC [18:52:03] *** amitev2 has quit IRC [18:52:19] <apavlov_> My guess is that CDT 8.0 introduces some "stricter" type bindings, without resorting to a known same-named type if no exact type (from the include chain) is known. [18:54:00] *** DrGonzo has quit IRC [18:55:10] *** apavlov_ is now known as apavlov [18:56:38] *** betty__ has joined #eclipse [18:56:47] *** betty has quit IRC [18:59:20] *** hemna has quit IRC [19:00:47] *** briandealwis has quit IRC [19:00:51] *** amitev2 has joined #eclipse [19:01:56] *** mpiggott has quit IRC [19:02:02] *** amitev has quit IRC [19:02:10] *** corrosionx has quit IRC [19:02:50] *** mpiggott has joined #eclipse [19:06:24] *** hemna has joined #eclipse [19:07:49] *** DrGonzo has joined #eclipse [19:07:59] *** z4z4 has quit IRC [19:11:06] *** ampotty has quit IRC [19:18:22] *** heinz has joined #eclipse [19:19:56] *** Guest22328 is now known as rubin110 [19:20:26] *** rubin110 is now known as Guest57281 [19:21:54] *** wfq has joined #eclipse [19:22:13] <wfq> is there anyone here who knows about applets? I am having an issue and can't understand why [19:26:52] <nitind> ~ask [19:26:52] <Arbalest> If you have a question, just ask, don't ask if you can ask a question. Skip the "meta-questions" like asking whether anyone uses X also as a precursor to check whether anyone can help you with a problem you have with X. Just ask the real question you have about X. [19:27:10] *** odin_ has quit IRC [19:27:52] *** odin_ has joined #eclipse [19:29:45] *** scorphus has joined #eclipse [19:37:49] *** csgeek has joined #eclipse [19:38:15] *** samuell has quit IRC [19:39:50] *** _nor has joined #eclipse [19:40:43] *** Alien_Freak has quit IRC [19:40:43] *** happy_grapefruit has quit IRC [19:40:43] *** private_meta has quit IRC [19:40:46] *** happy_grapefruit has joined #eclipse [19:40:59] *** private_meta has joined #eclipse [19:43:03] *** aminpy has quit IRC [19:50:26] *** betty__ is now known as betty [19:57:26] *** ddk has joined #eclipse [19:58:50] *** briandealwis has joined #eclipse [20:05:05] *** dirk_77__ has quit IRC [20:08:34] *** vwegert has joined #eclipse [20:12:44] *** hemna has quit IRC [20:17:45] <abhatnag> egit devs, how does one log their exceptions in the platform? [20:19:17] <rcjsuen> abhatnag: There are lots of examples in the code I think [20:19:29] <rcjsuen> might as well just look for the string exception [20:19:31] <rcjsuen> and see what's done [20:19:50] <abhatnag> rcjsuen: grepping, thanks [20:20:21] *** klikklak has quit IRC [20:20:32] *** Guest57281 is now known as rubin110 [20:21:02] *** rubin110 is now known as Guest52224 [20:22:22] *** werdan7 has joined #eclipse [20:22:28] *** ian_mac has joined #eclipse [20:23:43] *** ddk has quit IRC [20:24:13] *** ddk has joined #eclipse [20:24:25] *** amitev has joined #eclipse [20:25:13] *** ron has joined #eclipse [20:25:23] *** Jonah11_ has quit IRC [20:25:38] *** amitev2 has quit IRC [20:28:45] *** rossand has quit IRC [20:31:41] *** klikklak has joined #eclipse [20:31:48] *** ddk has quit IRC [20:33:11] *** rossand has joined #eclipse [20:34:48] *** semanticpc has quit IRC [20:38:10] *** NiteRain has joined #eclipse [20:38:50] *** amitev2 has joined #eclipse [20:39:49] *** amitev has quit IRC [20:45:19] *** csaba has quit IRC [20:47:02] *** Jonah11_ has joined #eclipse [20:48:38] *** jadew has joined #eclipse [20:48:57] *** hemna has joined #eclipse [20:48:57] <jadew> hi guys, is there a way to reduce the margin of the buttons from the toolbar? [20:50:17] <jadew> the top and bottom margin seems like 20% of the button's size, which looks like wasted space [20:50:32] <rcjsuen> jadew: Screenshots? [20:50:38] <jadew> hold on [20:56:10] *** karmicthreat has quit IRC [20:57:08] <jadew> http://imagebin.org/169344 [20:57:25] <jadew> sorry for the delay, but I'm not a linux person so I had to figure how things get done :) [20:57:38] <jadew> anyway, I'm trying to everything smaller [20:58:04] <jadew> and that's the first thing that bothers me [20:58:46] <rcjsuen> maybe some thing you can do with your .gtkrc file, not sure about atht [20:59:42] <jadew> you mean it looks like a gtk thing? [21:00:08] <rcjsuen> well, we use gtk to draw the UI anyway [21:00:10] <jadew> as in, outside of eclipse's reach [21:00:14] <jadew> I see [21:00:48] *** purestrain has quit IRC [21:00:55] <jadew> I was thinking why I hate working on linux and I realized it's because of how weird everything looks [21:01:31] *** BigKing has quit IRC [21:03:48] <rcjsuen> well [21:04:02] <rcjsuen> you either a) get used to it b) change the theme to something else or b) live with it [21:05:12] <jadew> ah, another thing: I get a weird space, behind the vertical scrollbar, let me take a screenshot [21:05:17] *** tron71 has joined #eclipse [21:05:28] <jadew> that one looks like a bug, unless that space is used for something, but I doubt that [21:05:48] *** kthomas_vh has quit IRC [21:08:11] <jadew> http://imagebin.org/169345 [21:08:15] *** TJCRI has joined #eclipse [21:08:17] *** rossand has quit IRC [21:08:22] <rcjsuen> that is used [21:08:29] <rcjsuen> which you presumably will find out [21:08:46] <jadew> ok [21:08:49] <jadew> thanks [21:11:56] *** rossand has joined #eclipse [21:14:50] *** ronr__ has joined #eclipse [21:15:43] *** ron has quit IRC [21:15:45] *** ronr__ is now known as ron [21:22:04] *** Guest52224 is now known as rubin110 [21:22:34] *** rubin110 is now known as Guest79444 [21:25:18] *** purestrain has joined #eclipse [21:26:16] *** klikklak_ has joined #eclipse [21:27:56] *** klikklak has quit IRC [21:33:16] *** Pasqualle has joined #eclipse [21:34:11] *** jarib has joined #eclipse [21:34:13] *** jarib has left #eclipse [21:34:28] *** purestrain has quit IRC [21:34:48] *** Parabola has joined #eclipse [21:34:56] <Parabola> hey guys :) [21:35:06] <nitind> ~hi [21:35:06] <Arbalest> Welcome! If you have a question, just ask, or take a look at our FAQ - http://wiki.eclipse.org/IRC_FAQ :) Try typing ~faq to see more FAQs! If you have errors or logs to show, see ~pastebin. If you have screenshots to share, see ~imagebin. If you need to describe your problem, please provide some ~info about your setup. Please be patient when waiting for a response. Thank you and enjoy your stay. [21:35:20] <Parabola> when I "load external jar" and select a zip file, it loads ,and i can browse it along the left [21:35:29] <Parabola> however, my import functions dont work, any ideas? [21:36:06] <Parabola> inside the zip, theres 2 jars, a libs dir with more jars [21:36:14] <nitind> Clarify "doesn't work". [21:36:29] <Parabola> i went from a shitload of jars to just trying to import the zip [21:36:32] <nitind> You have to add the jars individually. [21:36:35] <Parabola> and now all my "import adfadsfdasfas" dont work [21:36:42] <nitind> Or multi-select them in the dialog, at least. [21:36:45] <Parabola> then why the hell does eclipse accept zip, or jar by default [21:37:11] <Parabola> if zips dont work, they shouldnt be in the default filter for acceptable file types [21:37:17] <Parabola> just my 0.2 [21:38:19] *** vipaca has quit IRC [21:40:07] *** jadew has quit IRC [21:41:51] *** klikklak_ has quit IRC [21:42:17] *** vwegert has quit IRC [21:42:20] *** klikklak has joined #eclipse [21:42:29] <nitind> zips do work. Jars of zips don't work, just like jars of jars won't work. [21:47:29] *** ksawicki has quit IRC [21:48:17] *** klikklak has quit IRC [21:50:10] *** klikklak has joined #eclipse [21:54:08] *** ksawicki has joined #eclipse [21:56:34] *** cbeust_ has joined #eclipse [21:58:30] *** happy_grapefruit has quit IRC [21:58:55] *** csaba2 has joined #eclipse [21:58:57] *** happy_grapefruit has joined #eclipse [22:01:27] *** fluido has joined #eclipse [22:05:44] *** gilead has joined #eclipse [22:08:53] *** briandealwis1 has joined #eclipse [22:08:54] *** briandealwis has quit IRC [22:09:59] *** briandealwis has joined #eclipse [22:10:00] *** briandealwis1 has quit IRC [22:14:50] *** tron71 has quit IRC [22:15:19] *** danlucraft has joined #eclipse [22:16:42] *** xbb has joined #eclipse [22:16:48] <xbb> hello [22:17:50] <xbb> Trying to install GMF SDK under Indigo but not successful. With Helios it works fine. Does anybody know if there are any issues in 3.7 for GMF? [22:18:10] <xbb> I am using Indigo update site http://download.eclipse.org/releases/indigo [22:18:31] <rcjsuen> "not successful" is not very descriptive of your problem [22:19:01] <rcjsuen> tho i thot gmf wasn't on the indigo train [22:19:49] <xbb> oh it wasn't? [22:20:02] <rcjsuen> well i could be wrong [22:20:02] *** MiserySoft has joined #eclipse [22:20:10] <rcjsuen> in any case, my first statement is still applicable [22:20:32] *** LongBeach has joined #eclipse [22:21:39] *** Jonah11_ has quit IRC [22:22:31] *** rcjsuen is now known as rcjsuen_ [22:23:10] *** semeion has joined #eclipse [22:23:26] *** MiserySoft has quit IRC [22:23:37] *** Guest79444 is now known as rubin110 [22:24:08] *** rubin110 is now known as Guest56689 [22:24:08] *** EricInBNE has joined #eclipse [22:24:19] <xbb> rcjsuen_: I see that GMF is part of Indigio update site under "Modeling". I tried using gmf update site but getting error: "No repository found at http://download.eclipse.org/technology/gmf/update-site/releases/site.xml.", but then update dialog refreshes. After I select gmf features I want to install I get this error: No repository found at http://download.eclipse.org/technology/gmf/update-site/releases/site.xml. [22:24:50] <xbb> Sorry, this error http://pastebin.com/mSJxzKUK [22:30:19] <nitind> Were you letting it search all known update sites? [22:31:30] <xbb> yup [22:31:41] <nitind> Something went wrong, because it should be looking at http://download.eclipse.org/modeling/gmf/update-site/releases/site.xml . [22:33:52] <xbb> same deal with this site. If I select 2.1.2 I and proceed I get error http://pastebin.com/JAmVr6vN [22:34:47] <nitind> I'm not sure old versions can still be used. Moving everything under modeling broke *lots* of update site locations. [22:35:52] *** Pasqualle has quit IRC [22:36:16] *** kesselhaus has joined #eclipse [22:36:21] <xbb> But people are using SDK under 3.7, right? Runtime is fine because I was able to use TP. [22:36:55] <nitind> TP? [22:37:04] <xbb> Target Platform [22:37:35] <nitind> You're not making any sense that I can understand how one thing is related to the other. [22:38:46] <xbb> I am saying that I can successfully define Target Definition using Indigo update site for GMF Runtime features, but having problems with installing GMF SDK. [22:39:05] <nitind> I'm not sure that proves anything. [22:39:54] <xbb> I am not trying to prove anything, I just want to know how can I install GMF SDK under Indigo [22:42:42] *** rcjsuen has joined #eclipse [22:45:53] *** kthomas_vh has joined #eclipse [22:47:16] *** wainersm has quit IRC [22:48:07] *** NiteRain has quit IRC [22:50:01] <xbb> nitind: Something is wrong for sure. From here: http://www.eclipse.org/forums/index.php/m/716083/ I tried using http://download.eclipse.org/modeling/gmp/gmf-tooling/updates/dev-snapshots/, tooling and sdk install fine. [22:51:22] *** Parabola has left #eclipse [22:51:28] *** cantblend has quit IRC [22:51:50] *** rossand has quit IRC [22:52:18] *** danlucraft has quit IRC [22:53:05] *** otaviobp has quit IRC [22:54:03] *** amitev has joined #eclipse [22:54:44] *** Jonah11_ has joined #eclipse [22:55:31] *** kesselhaus has quit IRC [22:55:40] *** amitev2 has quit IRC [22:56:15] *** Pasqualle has joined #eclipse [22:56:50] *** kesselhaus has joined #eclipse [22:59:02] *** BigKing has joined #eclipse [22:59:10] *** Ceeper_ has joined #eclipse [23:00:16] <Ceeper_> Hi! I am looking for some swt help. Does anyone know an active irc channel? [23:01:17] <nitind> Well, there's this one. Sometimes. [23:02:04] <Ceeper_> This #eclipse channel talks about swt? [23:04:52] <Ceeper_> My need is to implement a calendar widget. Horizontaly the day,week and Month is displayed. Mein problem: how to implement it in a way to scroll endless in any direction. [23:05:47] *** jerboaa has quit IRC [23:06:03] <Ceeper_> Also I need some zoom in, which also should be compatibe with scrolling to left/right (past/future). [23:06:29] *** mziaei has quit IRC [23:07:20] <Ceeper_> I started with canvas control, wich may be scolled. But canvas has a fixes size and allows to scroll the visible area only. [23:07:23] <Ceeper_> Any ideas? [23:08:00] <briandealwis> Ceeper_: you might want to look at the Nebula project ? it has several calendar widgets [23:08:27] <briandealwis> Ceeper_: you can add your own ScrollBars and manage their thumbs etc through your own infinite canvas [23:09:34] <Ceeper_> But how to scroll, e.g. when reaching the left border? [23:10:33] *** evil_gordita has joined #eclipse [23:11:33] <Ceeper_> E.g. move widget by drag and drop with mouse. [23:15:34] *** Ceeper_ has quit IRC [23:17:29] *** UrsoBranco has quit IRC [23:18:36] *** kesselhaus has quit IRC [23:18:37] *** rgrunber has quit IRC [23:20:11] *** kesselhaus has joined #eclipse [23:25:11] *** Guest56689 is now known as rubin110 [23:25:41] *** rubin110 is now known as Guest44443 [23:29:18] *** cbeust_ is now known as cbeust [23:30:09] *** cantblend has joined #eclipse [23:30:13] *** Nurbs has joined #eclipse [23:30:20] *** ron has quit IRC [23:31:02] *** TJCRI has quit IRC [23:31:44] *** kgilmer has joined #eclipse [23:32:38] *** BigKing has quit IRC [23:34:59] *** magicked has joined #eclipse [23:35:56] *** dirk_77__ has joined #eclipse [23:36:46] *** mpiggott has quit IRC [23:37:34] *** nano- has quit IRC [23:37:34] *** nano- has joined #eclipse [23:41:20] *** kgilmer has quit IRC [23:41:39] *** briandealwis has quit IRC [23:41:57] *** briandealwis has joined #eclipse [23:52:14] *** LongBeach has quit IRC [23:52:14] *** Kamaran has quit IRC [23:55:13] *** kgilmer has joined #eclipse [23:55:38] *** Pasqualle has quit IRC [23:56:58] *** Dessimat0r has joined #eclipse