[00:00:46] *** nsando has quit IRC [00:05:53] *** jerboaa has quit IRC [00:06:46] *** Echidna has quit IRC [00:09:19] *** werdan7 has joined #eclipse [00:10:40] *** Echidna has joined #eclipse [00:12:22] *** JeffJassky has quit IRC [00:13:00] *** drindt has quit IRC [00:15:03] *** Tashtego has quit IRC [00:15:24] *** soulreaper has quit IRC [00:15:54] *** abhatnag has quit IRC [00:19:02] *** aksn has quit IRC [00:20:36] *** psst has quit IRC [00:20:42] *** JeffJassky has joined #eclipse [00:22:58] <lilalinux> Can I have a "clean current project" icon in my toolbar? [00:23:09] *** Pasqualle has quit IRC [00:24:51] *** wainersm has quit IRC [00:28:40] *** hex` has joined #eclipse [00:33:36] *** amitev2 has quit IRC [00:38:24] *** jesmon has quit IRC [00:44:10] <rcjsuen> I don't think so. [00:52:19] *** dirk_77_ has joined #eclipse [00:54:38] *** fisix has quit IRC [00:59:14] *** fisix has joined #eclipse [01:06:41] *** collad has quit IRC [01:07:19] *** nitrospectide has quit IRC [01:08:50] *** contingo has joined #eclipse [01:09:37] *** cbeust_ has quit IRC [01:11:41] *** kthomas_vh has quit IRC [01:13:14] *** nitrospectide has joined #eclipse [01:14:54] *** kthomas has quit IRC [01:15:21] <lilalinux> :-/ [01:15:56] *** kthomas has joined #eclipse [01:17:28] *** soee has quit IRC [01:17:52] *** kthomas has quit IRC [01:20:05] *** nitrospectide has quit IRC [01:20:51] *** fisix has quit IRC [01:21:21] *** kthomas has joined #eclipse [01:26:30] *** Kamaran has quit IRC [01:26:40] *** fisix has joined #eclipse [01:27:44] *** _arjen_ has quit IRC [01:29:38] *** kthomas_vh has joined #eclipse [01:32:01] *** dirk_77_ has quit IRC [01:41:50] *** cbeust_ has joined #eclipse [01:44:31] *** tty234 has joined #eclipse [01:53:42] *** fuuubar has joined #eclipse [01:53:46] <fuuubar> I am creating an RCP app which uses a host of third-party plugins. Some of these plugins contribute menus, menu items, and toolbar buttons that I do not wish to display. How can I determine which plugins are contributing these menus, menu items, and toolbar buttons and how can I disable them from doing so? [01:53:51] <fuuubar> thx [01:58:22] <nitind> fuuubar: http://wiki.eclipse.org/Equinox_Transforms [02:00:44] <rcjsuen> I think the menu spy might help with that [02:00:54] <rcjsuen> otherwise you might just have to go the long wa y [02:01:05] <rcjsuen> besides equinox transforms you can also try using activities [02:05:57] *** cypha` has joined #eclipse [02:06:33] *** klausk has quit IRC [02:23:17] *** klausk has joined #eclipse [02:26:15] <sr___> quick question [02:26:36] *** jinky has joined #eclipse [02:26:48] <sr___> I am getting nuts playing around nested composites/widgets etc [02:26:50] <sr___> with SWT [02:26:58] <sr___> I am making widgets/composite of my owns [02:27:13] <sr___> but involving the layout in all that is... puzzling [02:27:20] *** contingo has quit IRC [02:27:32] *** jink has quit IRC [02:27:35] *** jinky is now known as jink [02:27:49] <sr___> is there any guidline like a composite should "not change its own layout or layotu data" [02:27:53] <sr___> ? [02:28:03] <sr___> in other words [02:28:13] <sr___> is there a way to make it just easy if I follow it? :) [02:34:53] *** kthomas_vh has quit IRC [02:43:18] *** heinz has quit IRC [02:47:45] <rcjsuen> Changing the layout can be hazardous since that assumes all its child controls' layout data is also correct. [02:47:51] <rcjsuen> Changing layout data is quite common. [02:47:59] <rcjsuen> Though your question at the moment is rather vague. [02:48:45] <sr___> well I am having a hard time getting my layout right on the first tries [02:48:54] <sr___> and going the tentatively way [02:49:28] <sr___> say I have two composites CompA and CompB [02:49:36] <sr___> CompA contains CompB [02:49:56] *** SimonP86 has joined #eclipse [02:49:59] <sr___> ho BTW CompA and CompB are both subclasses of Composite [02:50:08] <sr___> (they are "widgets") [02:50:21] <sr___> where should I set the layout and the layout data of each layout? [02:50:38] <sr___> of each "composite" sorry [02:53:06] *** TomyLobo has quit IRC [02:56:20] <rcjsuen> http://www.eclipse.org/articles/article.php?file=Article-Understanding-Layouts/index.html [03:01:19] *** tangent3 has joined #eclipse [03:03:32] <nitind> It's unusual to subclass Composite rather than just making one. [03:04:27] <xmux> Is it unusual to subclass Composite? I do that all the time [03:05:38] *** kthomas_vh has joined #eclipse [03:06:01] *** kthomas_vh has quit IRC [03:07:13] <xmux> sr___: The layout data you set on B will affect how A lays out B. If you set GridLayout on compA then you should set GridData on compB [03:10:18] <rcjsuen> nitind, xmux: I've seen lots of code that does it. I don't like it myself but *shrugs* [03:12:52] *** cypha` has quit IRC [03:15:16] *** makeawish has joined #eclipse [03:15:18] <xmux> The alternative I guess is the createControl(Composite parent) pattern. [03:15:35] <makeawish> how to make eclipse not automaticaly open syncronization perspective after adding a new project to source control? [03:15:45] <makeawish> i selected yes on this and have been regretting it ever since [03:17:20] <nitind> You've rooted through all of the Perspective and team provider's preference pages? [03:17:31] <paulweb515_> makeawish: go into Preferences>Team and look around there [03:19:36] <makeawish> see it thanks [03:29:01] *** xxen has quit IRC [03:31:03] *** rcjsuen has quit IRC [03:34:07] <fuuubar> nitind: thank-you kindly, looking at equinox transforms now! [03:38:51] <fuuubar> rcjsuen: menu spy - awesome! thanks will try and load it up in my RCP app [03:55:07] *** rawbdor has quit IRC [04:06:33] *** gastaldi has joined #eclipse [04:06:43] <gastaldi> hey !!! [04:06:49] <gastaldi> Any BIRT user in here ? [04:28:13] *** gastaldi has left #eclipse [04:28:37] *** klausk has quit IRC [04:29:28] *** dmiles_afk has quit IRC [04:31:58] *** Hanumaan has joined #eclipse [04:57:46] *** hex` has quit IRC [05:09:04] *** Hanumaan has quit IRC [05:15:18] *** SimonP86 has quit IRC [05:26:47] *** morris has joined #eclipse [05:28:16] *** morris has left #eclipse [05:29:21] *** Dessimat0r has quit IRC [05:30:50] *** Aniar has joined #eclipse [05:31:02] *** dmiles_afk has joined #eclipse [05:36:54] <Aniar> is anyone here running the Eclipse 3.6 PPA on Ubuntu 11? I'm having startup problems, and waiting for the download directly from eclipse.org [05:40:18] *** d_a_carver has quit IRC [05:41:08] <Aniar> and I've read and checked: http://wiki.eclipse.org/FAQ_I_unzipped_Eclipse,_but_it_won%27t_start._Why%3F and www.eclipsezone.com/eclipse/forums/t99010.rhtml [05:44:07] *** d_a_carver has joined #eclipse [06:06:40] *** scorphus has joined #eclipse [06:07:11] *** cypha has joined #eclipse [06:07:40] *** cypha` has joined #eclipse [06:11:43] *** cypha has quit IRC [06:16:27] *** d_a_carver has quit IRC [06:19:10] *** okulus has joined #eclipse [06:24:08] *** mluser-home has quit IRC [06:25:11] *** nsando has joined #eclipse [06:36:36] *** cypha` has quit IRC [06:40:16] *** XOXO1 has quit IRC [06:51:39] *** XOXO1 has joined #eclipse [06:53:03] *** nsando has quit IRC [06:57:53] *** AhtiK has joined #eclipse [06:59:53] *** ExtraSpice has joined #eclipse [07:25:45] *** xxen has joined #eclipse [07:26:06] *** aminpy has joined #eclipse [07:30:08] *** xxen has quit IRC [07:46:37] *** scorphus has quit IRC [08:21:00] *** ddk has joined #eclipse [08:23:55] *** Kud has joined #eclipse [08:26:24] <fuuubar> hi: 0 down vote favorite I have defined an Exit command to display on my File menu. However another plug-in is contributing a Open File item on the File menu and this is appearing AFTER my Exit command. I want my Exit command to appear last on the File menu. I've tried specifying locationURI menu:file?after=org.eclipse.ui.openLocalFile but then my Exit menu item does not display at all. I think this might be because org.eclipse [08:29:24] *** AhtiK has quit IRC [08:30:03] *** Scorpion1 has joined #eclipse [08:37:10] *** cypha has joined #eclipse [08:38:21] *** cypha` has joined #eclipse [08:41:25] *** cypha has quit IRC [08:42:06] *** _arjen_ has joined #eclipse [08:43:52] *** ronr_ has joined #eclipse [08:48:26] *** fuuubar has quit IRC [08:49:37] *** _arjen_ has quit IRC [08:54:30] *** Trudko has joined #eclipse [08:55:54] <Trudko> guys I am looking for way to see all spell check errors in project. Seems that eclipse it self does not support that. [08:56:51] *** fisix has quit IRC [08:58:07] <ronr_> Trudko: search for a plugin. [08:58:10] <ronr_> in the marketplace. [08:58:25] <Trudko> ronr_: yeah I saw some, just courious for some recomendations [08:58:48] <Trudko> especially because I want to use this in company I work for, So i worry a little bit about license. [09:05:57] *** cypha` has quit IRC [09:10:01] *** Kud has quit IRC [09:15:28] *** Perth_Imrich has joined #eclipse [09:17:44] <Perth_Imrich> Hey, um, my Mylwin (or what ever it's called) install has disapeared [09:17:57] <Perth_Imrich> along w/ anything else Eclipse "Classic" comes w/ by default [09:18:19] <Perth_Imrich> wtf? and how do i fix it :/ [09:22:05] *** rawbdor has joined #eclipse [09:22:18] *** rkrul has joined #eclipse [09:23:59] <Perth_Imrich> well anyways, what the originating problem is, is that I can't seem to get Eclipse to use a custom dictionary... I specify the file location (even manually create the file externally) and ... nothing, each time I try to add to my dictionary I'm told it doesn't exist... [09:24:27] *** SzymonB has joined #eclipse [09:24:35] <Perth_Imrich> what should I do? [09:25:39] *** botto has joined #eclipse [09:25:53] <botto> How can I get eclipse to run garbage collection while idle [09:25:58] <ronr_> Trudko: as long as it's not commercial, you shouldn't have any issues. [09:26:19] <Trudko> ronr_: ok thx will look for something [09:26:39] <ronr_> botto: I doubt that you can. [09:26:48] <nitind> botto: I think it already does. [09:27:14] <nitind> botto: But if you show the heap usage from the General preferences, there's a button added that you can push at any time. [09:27:14] <botto> As far as I know you can set it in the ini file to run whenever the ide is inactive [09:27:42] <nitind> If you mean the GC policy, that's a VM-specific argument. [09:27:46] *** imeikas has joined #eclipse [09:28:02] <botto> Heh, just found it, a bit of obscure googling. -Dide.gc=true [09:28:06] <nitind> Perth_Imrich: what version, and in what language are you trying to add new words? [09:33:40] *** Rodtusker has joined #eclipse [09:39:42] <Perth_Imrich> 3.6.2 English [09:40:52] *** lolmatic has joined #eclipse [09:41:13] <Perth_Imrich> I _think_ that the sudden dissapearance of multiple plugins is indicitive of a more serious (and possibly related) issue [09:42:57] *** amitev has joined #eclipse [09:44:37] <Perth_Imrich> nitind ^ :) [09:45:14] *** cbeust_ has quit IRC [09:49:34] *** gertidon has joined #eclipse [09:54:05] *** Rodtusker has quit IRC [09:54:18] *** Rodtusker has joined #eclipse [09:55:42] *** TheTrustedSage has joined #eclipse [09:56:14] *** farrukhjon has joined #eclipse [09:57:35] *** farrukhjon has left #eclipse [09:59:01] *** trustedsage has quit IRC [09:59:52] *** soulreaper has joined #eclipse [10:01:08] *** farrukhjon has joined #eclipse [10:03:32] <farrukhjon> hi all have a question about how to make JTreeTable from tutorial Oracle site to integrate into the Component Palette in WindowBuilder [10:04:27] *** farrukhjon has left #eclipse [10:04:36] *** tvo has joined #eclipse [10:13:55] *** afancy has quit IRC [10:16:24] * Perth_Imrich sighs [10:16:49] <Perth_Imrich> ok, i'll try re-"installing" eclipse (it'll be the 5th install) [10:17:47] <apheff> Parth_imrich: Could it be your environment? Java version, classpath etc? [10:19:04] <Perth_Imrich> no [10:19:19] <Perth_Imrich> had problems w/ that b4, it's "perfect" now [10:19:31] <Perth_Imrich> unless eclipse can't handle symbols it paths [10:19:37] <Perth_Imrich> eg + and # [10:22:41] *** rrodriguez has joined #eclipse [10:26:20] *** rrodriguez has quit IRC [10:28:58] *** malo_nj has joined #eclipse [10:29:14] *** soulreaper has quit IRC [10:30:09] <apheff> Parth_Imrich: Did you try changing the install path on this install? [10:30:45] <Perth_Imrich> from C:\Program Files\Eclipse -> C:\Eclipse [10:30:52] <Perth_Imrich> oh fucknig wonderful [10:30:52] <FauxFaux> Website is being terribly slow. [10:31:08] <Perth_Imrich> it found stuff... [10:31:25] *** psst has joined #eclipse [10:34:17] *** Rodtusker has quit IRC [10:36:31] *** dirk_77_ has joined #eclipse [10:45:49] *** heinz has joined #eclipse [11:03:31] *** Rodtusker has joined #eclipse [11:05:39] *** soulreaper has joined #eclipse [11:06:01] *** JohnBat26 has joined #eclipse [11:06:05] <JohnBat26> Hello [11:06:36] <JohnBat26> I get NullPonterException in eclipse : https://jira.springsource.org/browse/IDE-1205 [11:06:45] <JohnBat26> Does anybody help me ? [11:10:04] <ronr_> you may want to ask over at #spring [11:12:33] *** SzymonB has quit IRC [11:12:50] *** Perth_Imrich has quit IRC [11:13:25] <JohnBat26> ronr_: Spring developer tell me that problem in eclipse, not STS [11:21:53] *** Pasqualle has joined #eclipse [11:26:41] *** collad has joined #eclipse [11:29:33] *** mziaei_ has joined #eclipse [11:29:51] *** Kamaran has joined #eclipse [11:31:55] *** mziaei has quit IRC [11:39:49] *** Scorpion1 has quit IRC [11:42:56] *** Scorpion1 has joined #eclipse [11:43:31] *** Rodtusker has quit IRC [11:52:50] *** rkrul has quit IRC [11:52:50] *** morn has joined #eclipse [11:56:06] *** dirk_77_ has quit IRC [12:00:31] *** dmiles_afk has quit IRC [12:01:14] *** dmiles_afk has joined #eclipse [12:05:38] *** okulus has left #eclipse [12:05:58] *** okulus has joined #eclipse [12:09:03] *** rcjsuen has joined #eclipse [12:11:32] <rcjsuen> JohnBat26: You should open a bug with SWT. [12:12:13] <rcjsuen> I'm guessing you're on Ubuntu 11.04? Or possibly some GNOME 3 distribution? [12:18:32] *** hex` has joined #eclipse [12:18:32] *** hex` has joined #eclipse [12:23:24] *** LongBeach has quit IRC [12:23:26] *** lolmatic has quit IRC [12:31:12] *** Scorpion1 has quit IRC [12:31:19] *** dirk_77_ has joined #eclipse [12:39:10] *** dirk_77_ has quit IRC [12:40:37] *** dmiles_afk has quit IRC [12:46:09] *** lisak has joined #eclipse [12:52:31] <JohnBat26> rcjsuen: no [12:52:36] <JohnBat26> gentoo + kde4.6 [13:00:42] *** echelog has joined #eclipse [13:01:17] *** dirk_77_ has joined #eclipse [13:01:23] *** adac has joined #eclipse [13:01:32] *** Scorpion1 has joined #eclipse [13:03:24] <adac> I have checked out project form a SVN repo. Now I wanted to disconnect it and reconnect the project to another SVN repository...wondering how to do that? Simply disconnect (delet or keep all SVN Information?) and then connect to the new repository? [13:06:24] *** TomyLobo has joined #eclipse [13:06:33] *** sproaty has joined #eclipse [13:06:58] <sproaty> any idea how I can add a .properties file to my classpath when I invoke Ant? [13:12:45] *** LongBeach has joined #eclipse [13:16:37] <paulweb515> sproaty: you mean so what's in the .properties is available to the running ant (ant tasks, for example) or the .properties is added to classpaths in javac and java calls? [13:17:47] *** moraes has quit IRC [13:17:53] <sproaty> paulweb515, I'm not actually calling javac, I'm using this CodeNarc project, which can be invoked as an Ant task [13:18:14] <sproaty> It says on its site, http://codenarc.sourceforge.net/codenarc-configuring-rules.html#Configuring_Rules_Using_a_Properties_File "CodeNarc reads the properties file named "codenarc.properties", if found on the classpath, and applies the property values to any matching Rules" [13:18:51] <sproaty> or the other way was to set a system property - doing so from Ant seemed v. hacky [13:19:03] <paulweb515> sproaty: when you create your classpath to run your ant script (and include CodeNarc on it) simply add an extra entry to a directory that contains your .properties file [13:20:45] <paulweb515> sproaty: actually, setting system properties is the common way to pass config information to running an ant script: -application org.eclipse.ant.core.antRunner \ [13:20:45] <paulweb515> -buildfile $buildfile -Dbuilder=$supportDir/org.eclipse.e4.sdk/builder -Dorg.eclipse.e4.builder=$supportDir/org.eclipse.e4.builder -Declipse.build.configs=$supportDir/org.eclipse.releng.eclipsebuilder/eclipse/buildConfigs -DbuildType=I -Dbuilddate=$builddate -Dbuildtime=$buildtime -Dbase=$buildDir/40builds -DupdateSite=$targetDir/updates/4.1-I-builds [13:21:21] *** gigabytes has joined #eclipse [13:21:43] <sproaty> ahhh I was trying to do it from my ant script, not as a parameter to the actual ant invokation [13:21:50] <sproaty> (set the system property) [13:22:46] <paulweb515> sproaty: you can do that as well ... it's common to have an ant script where the first elements in <project/> are <property/> and <loadproperties/> [13:23:19] <paulweb515> sproaty: especially if there are 5 or 6 different properties (like folders) that will depend on your ${builddir} [13:24:32] <sproaty> ah right [13:24:41] <sproaty> nah, this is just running static code analysis on the source code [13:29:19] *** cdctest has joined #eclipse [13:29:51] *** cdctest has quit IRC [13:32:18] *** rcjsuen_ is now known as rcjsuen [13:32:38] <sproaty> hmm actually nah, setting a system property isn't the nicest way for me to do it because we'll be invoking this ant script as part of our CI builds [13:39:23] <paulweb515> sproaty: then a <property/> element at the top of your script, perhaps? [13:41:23] <pulse00> has anyone in here experience with creating a tokenizer like the XMLTokenizer in WST ? http://eclipsejavasource.appspot.com/vs?c=org.eclipse.wst.xml.core.internal.parser.XMLTokenizer [13:43:42] *** dscassel_ has joined #eclipse [13:46:05] *** dscassel has quit IRC [13:51:05] *** moraes has joined #eclipse [13:53:54] *** mikewintermute has joined #eclipse [13:59:02] *** dirk_77_ has quit IRC [14:01:21] *** gigabytes has quit IRC [14:03:46] *** sproaty has quit IRC [14:07:17] *** otaviobp has joined #eclipse [14:11:19] *** dirk_77_ has joined #eclipse [14:13:41] *** moraes has quit IRC [14:17:42] *** malo_nj has quit IRC [14:17:47] *** moraes has joined #eclipse [14:19:26] *** a0sle has quit IRC [14:21:01] *** UrsoBranco has joined #eclipse [14:22:20] *** Scorpion1 has quit IRC [14:24:19] *** a0sle has joined #eclipse [14:31:05] *** wainersm has joined #eclipse [14:31:20] *** okulus has left #eclipse [14:39:09] *** kartben has joined #eclipse [14:42:44] *** klausk has joined #eclipse [14:43:18] *** Chotaz has joined #eclipse [14:43:24] <Chotaz> site's down? [14:44:15] <rcjsuen> Chotaz: Yes, many ppl are reporting Eclipse.org as not working. So it's safe to say, it's down for everyone ;o [14:44:18] <Chotaz> I need a link for Eclipse on MAc OSX 64 bits, but the site is down, is there any alternative mirrors? [14:44:32] <Chotaz> are there* [14:45:10] <FauxFaux> It was working fine from my vps but not from my home connection earlier; vps has lost it now too. [14:45:34] <kartben> http://www.downforeveryoneorjustme.com/www.eclipse.org [14:46:35] <FauxFaux> http://www.mirrorservice.org/sites/download.eclipse.org/eclipseMirror/technology/epp/downloads/release/helios/SR2/ on pratically any mirror, Chotaz. [14:47:01] <FauxFaux> Ensure you pick java/jee/cpp versions properly. [14:47:29] *** Tashtego has joined #eclipse [14:47:52] <pulse00> anyone knows if it's possible to extend the WTP html editor? ie. for a templating engine - which means i would need to extend the parser/tokenizer as far as i've understood [14:49:19] *** jerboaa has joined #eclipse [14:49:32] <Chotaz> FauxFaux, what's the java version? [14:49:44] *** Chotaz has quit IRC [14:50:07] *** Chotaz has joined #eclipse [14:50:14] *** adac has quit IRC [14:50:27] <pulse00> the build in classes seem to use http://jflex.de/ for the tokenizer, but i'm not sure if there's some kind of extension point which allows to extend a tokenizer more easily [14:50:45] <FauxFaux> Chotaz: Java, or jee, depending on whether you want the huge version with the ee support. [14:59:16] *** kartben has quit IRC [15:01:03] *** kartben has joined #eclipse [15:03:30] *** ecfuser98596 has joined #eclipse [15:04:26] *** ecfuser98596 has left #eclipse [15:05:25] *** morn has quit IRC [15:06:05] *** morn has joined #eclipse [15:06:55] *** nsando has joined #eclipse [15:08:56] *** draemon has joined #eclipse [15:10:23] <draemon> (I'm sure this has been asked but it's not in the topic) is / why is eclipse.org down? [15:10:50] <pulse00> yes, it's down. can't tell you why however [15:12:49] *** abhatnag has joined #eclipse [15:14:55] *** Sembiance has joined #eclipse [15:15:14] *** kartben has quit IRC [15:15:17] <Sembiance> Anyone have a mirror for download.eclipse.org? It's currently down. [15:15:44] *** gertidon has quit IRC [15:17:57] <Chotaz> site's back up [15:18:02] <Chotaz> atleast now I'm able to ping it [15:18:16] <Chotaz> oh wait, not it's not :S [15:18:27] <Sembiance> `wget http://download.eclipse.org/releases/helios/compositeContent.jar` timeout. [15:18:28] *** mpiggott has joined #eclipse [15:18:39] <Sembiance> Chotaz: fun :) [15:18:48] <Chotaz> Sembiance: http://www.mirrorservice.org/sites/download.eclipse.org/eclipseMirror/technology/epp/downloads/release/helios/SR2/ [15:19:01] <Sembiance> Chotaz: thanks :) [15:19:17] <Chotaz> Sembiance: no problemo [15:19:43] <Sembiance> Some folks on twitter were reporting issues with download.eclipse.org about 22 hours ago. I wonder what the problem is, curious :) [15:21:45] * FauxFaux high-fives Chotaz. [15:23:24] *** ronr_ has quit IRC [15:23:38] <paulweb515> Sembiance: we lost all connections to eclipse.org at about 07:30 EDT this morning [15:23:52] *** ronr_ has joined #eclipse [15:23:52] <paulweb515> the IT guys are working hard to fix it :-) [15:28:43] <Sembiance> paulweb515: :) [15:29:03] *** tvo has quit IRC [15:29:08] *** _tvo_ has joined #eclipse [15:29:36] *** _tvo_ is now known as tvo [15:31:06] *** Chotaz has quit IRC [15:31:48] *** hex`` has joined #eclipse [15:32:10] *** kartben has joined #eclipse [15:37:43] <pulse00> seems to be working again: http://eclipse.org/ [15:37:53] *** jesmon has joined #eclipse [15:38:59] <pulse00> for a short while ;) [15:48:35] *** mziaei_ has quit IRC [15:50:28] <pulse00> is there a separate channel for the web tools project? [15:52:54] <rcjsuen> Nope. [15:54:17] <pulse00> i'm searching since hours for some hints how to extend the wtp html editor, anyone knows an existing plugin which does something similar? [15:54:39] *** a0sle has quit IRC [15:55:08] *** a0sle has joined #eclipse [15:55:13] <pulse00> especially, what seems not so easy is to add custom syntax highlighting to the html editor - for templating languages [15:56:10] *** d_a_carver has joined #eclipse [15:58:53] *** ddk has quit IRC [15:59:22] *** ddk has joined #eclipse [16:03:19] *** cbeust_ has joined #eclipse [16:03:19] *** davis has left #eclipse [16:05:45] *** klausk has quit IRC [16:06:26] *** kur1j has joined #eclipse [16:06:27] *** wainersm has quit IRC [16:06:50] *** wainersm has joined #eclipse [16:07:21] <kur1j> I am trying to setup a new machine with eclipse and can't seem to get m2e installed as update page seems to be missing. Is anyone else having the same issue? [16:07:21] <kur1j> http://www.eclipse.org/m2e/download/ [16:07:58] <FauxFaux> The whole website is broken today, it's being looked into. [16:08:34] <kur1j> ahh sweet thanks [16:09:31] *** Trudko has quit IRC [16:11:10] *** nightwatch has joined #eclipse [16:13:52] *** elbeardmorez has joined #eclipse [16:14:39] *** EricInBNE has quit IRC [16:15:05] *** gigabytes has joined #eclipse [16:16:42] <Sembiance> pulse00: I had a similar desire for a custom CSS language. Ended up switching to sublime text 2 for my javascript/html/css work. I only open eclipse when I need to do either Java work or C/C++ work, it's good at that :) [16:18:23] *** gigabytes has quit IRC [16:23:38] *** vipaca has joined #eclipse [16:24:08] *** SimonP86 has joined #eclipse [16:30:54] *** dscassel_ is now known as dscassel [16:31:16] *** dirk_77_ has quit IRC [16:31:28] *** kartben has quit IRC [16:33:04] *** morsicus has joined #eclipse [16:35:46] <pulse00> Sembiance, why did you quit? is it possible to properly modify the html editor that way? [16:35:52] <pulse00> *not* possible ;) [16:36:14] <pulse00> cause that's what i fear, as there's virtually nothing about this issue on the net [16:36:25] <morsicus> Hi, I've a problem. I'm on Ubuntu 11.04 And I try to launch Eclipse Indigo PhP, but it's impossible. Can you help me please ? [16:37:06] <rcjsuen> morsicus: What is "impossible" [16:38:16] <morsicus> ./ eclipse ---> Binary file is impossible to launch [16:38:23] *** JeffJassky has left #eclipse [16:39:47] <rcjsuen> ~info [16:39:47] <Arbalest> Please state a) your CPU architecture (x86, 64-bit, etc.), b) operating system (Windows, Linux, OSX, etc.), c) your Java runtime environment (please verify by checking your ~logs or in the about dialog's ~jre section. No, typing 'java -version' in the command line does not count as checking), d) your Eclipse version, and e) where did you get Eclipse from (eclipse.org, distro repository, etc.). [16:40:08] *** tangent3 has quit IRC [16:41:59] <pulse00> Sembiance, did you get to the point where you would need to provide a Tokenizer for the Document? [16:42:34] <nsando> pulse00: Depending on what you need, the HTML editor does support semantic highlighting through extension points. [16:43:51] <pulse00> nsando: that sounds great. i'm trying to add support for a template engine, with this syntax: https://gist.github.com/1004576 [16:44:09] *** tangent3 has joined #eclipse [16:44:12] <pulse00> tags start and end with {} / {% %} so they're not xml compliant [16:44:49] <pulse00> nsando, are you talking about org.eclipse.wst.sse.ui.semanticHighlighting extension point? [16:45:15] <nsando> pulse00: Yup, that's the one. [16:45:20] <pulse00> which unfortunately has no description ;) [16:45:35] <pulse00> but thanks for the hint, i'm gonna look into this [16:46:10] <Sembiance> pulse00: I spent about two full nights, multiple hours trying to fix a formatting bug in the eclipse JSDT. I eventually gave up and switched editors. Eclipse's first class citizens are Java and C/C++. Javascript, CSS, HTML, are not as high priority. [16:46:35] <Sembiance> pulse00: I actually discovered that the javascript eclipse code was just 'copy-pasted' from a copy of the JDT from about 8 months earlier. [16:46:40] *** soee has joined #eclipse [16:47:08] <Sembiance> pulse00: so it had all the same JDT bugs that had already been fixed on the JDT side, but since it was a copy-paste from 8 months ago... [16:47:20] <Sembiance> pulse00: it was just so much code I just threw my hands up and said, screw it. [16:48:12] <pulse00> yeah, the thing is that there's really not much documentation available, so you're pretty much left alone with the sourcecode - which is a little .... tedious ;) [16:48:37] <Sembiance> pulse00: I even found an Eclipse bug on it: https://bugs.eclipse.org/bugs/show_bug.cgi?id=331501 [16:48:40] <pulse00> but i'll take a look at the semanticHighlighting extension, maybe i can get it done this way [16:50:00] <nsando> pulse00: https://bugs.eclipse.org/232752 has an example of how to use it [16:50:30] <pulse00> thanks. there's also some info from the php plugin developers: http://wiki.eclipse.org/PDT/Dev2Dev/Semantic [16:51:18] *** werdan7 has quit IRC [16:51:56] *** mziaei has joined #eclipse [16:54:24] *** bbrodt has quit IRC [16:59:21] *** Rodtusker has joined #eclipse [17:00:43] *** mluser-home has joined #eclipse [17:00:44] *** JohnBat26 has quit IRC [17:01:33] *** Rodtusker has quit IRC [17:01:51] *** kvarley has joined #eclipse [17:02:29] <kvarley> How can I get eclipse to redetect my java installation? I removed openjdk and have installed sunjdk but it keeps trying to use my openjdk which isn't installed [17:02:56] *** Rodtusker has joined #eclipse [17:04:15] *** jesmon has quit IRC [17:04:19] <rcjsuen> Not sure I understand your question. [17:04:25] *** Rodtusker has quit IRC [17:05:16] *** Rodtusker has joined #eclipse [17:05:31] *** TJCRI has joined #eclipse [17:05:38] <myusuf3_> I need to package eclipse jars with a cli release. I am currently building with tycho which specifices these requirements when installign into eclipse [17:05:42] *** morsicus has left #eclipse [17:05:46] <paulweb515> kvarley: use during compiels? Go to Preferences>Java>Installed JREs [17:05:47] <myusuf3_> i would like to pull in these jars into a build [17:06:06] <kvarley> paulweb515: tx [17:06:08] *** kvarley has left #eclipse [17:06:15] <myusuf3_> how would i go about packaging eclipse jars with release. [17:06:26] <paulweb515> kvarley should have checked that it actually solved his problem first :-) [17:06:27] *** Rodtusker has quit IRC [17:06:49] <paulweb515> myusuf3_: sorry, what are you doing? You are building your eclipse plugins using tycho? [17:06:57] <nitind> Sembiance: That formatting bug is scheduled to be fixed in 3.3.1. [17:08:37] *** Rodtusker has joined #eclipse [17:10:27] <myusuf3_> paulweb515, hey hows goes it [17:10:44] <paulweb515> better now that eclipse.org is back up :-) [17:11:08] <myusuf3_> I am currently have a eclipse update site that you can install I tool i built with [17:11:16] <myusuf3_> the tool also has a cli interface [17:11:26] <myusuf3_> in order for that to function [17:11:47] <myusuf3_> I need to pull in the eclipse jars that I leverages emf ones to be specific [17:11:55] <myusuf3_> leveraged* [17:12:12] <myusuf3_> paulweb515, thats good to hear [17:12:16] <paulweb515> myusuf3_: so your CLI feature references an EMF feature? [17:12:17] <myusuf3_> what happened to the site? [17:12:22] <myusuf3_> yes [17:12:33] <myusuf3_> and it need all the jars in CP for it to work [17:12:40] <myusuf3_> and it wont with the eclipse jars [17:12:56] <paulweb515> myusuf3_: they had another hardware failure (this time the 16-port switch ... they've swapped it out) [17:13:06] <myusuf3_> is there a way to pull them into the build i would like to build them from source everytime if possible [17:13:09] <paulweb515> jars in CP? [17:13:21] <myusuf3_> classpath* [17:13:23] <paulweb515> your CLI isn't a plugin? [17:13:26] <myusuf3_> no [17:13:38] <myusuf3_> it i will be place on server [17:14:02] <paulweb515> myusuf3_: so you are pretending its a plugin and using tycho to build it correctly, right? [17:14:15] <myusuf3_> well parts of it are a plugin [17:14:18] <paulweb515> myusuf3_: or the problem is you can't even build the cli [17:14:26] <myusuf3_> yes is the answer to your question [17:14:36] <myusuf3_> I can build it fine [17:14:42] <paulweb515> myusuf3_: in maven? [17:14:47] <myusuf3_> yes [17:14:53] <myusuf3_> the tool has two parts [17:14:56] <myusuf3_> one an eclipse plugin [17:15:06] <myusuf3_> on an cli interface over that plugin to do the same stuff [17:15:14] <paulweb515> myusuf3_: but in the plugin? [17:15:42] <myusuf3_> what do you mean by that question [17:16:37] *** Rodtusker has quit IRC [17:17:01] <paulweb515> myusuf3_: you're in the middle of a tycho build ... I assume the CLI classes are in a plugin (even if they expect to run outside of eclipse) [17:17:09] <myusuf3_> yes [17:17:19] <myusuf3_> the builds work fine [17:17:27] <myusuf3_> but when i am packaging the cli [17:17:34] <myusuf3_> its unaware its plugin. [17:17:46] <myusuf3_> so I need to provide all the required jars [17:17:47] <paulweb515> myusuf3_: what does package the cli mean [17:18:01] <myusuf3_> package as in collect all the required jars [17:18:11] <paulweb515> myusuf3_: so a standard maven task that should group together all of your java app jars so you can ship it? [17:18:13] <myusuf3_> for the cli to work [17:18:21] <myusuf3_> exactly no problem [17:18:34] <myusuf3_> my problem is where do I get the required eclipse jars from emf [17:18:37] *** dsugar100 has joined #eclipse [17:18:51] <paulweb515> myusuf3_: aren't they in your local maven repo ... you needed them to build [17:19:00] *** kggle has joined #eclipse [17:19:06] <myusuf3_> how do I pull them in is the question [17:19:13] <myusuf3_> so the jars are present [17:19:29] <myusuf3_> currently in my build on the jars I produce are in the updatesite [17:19:38] <kggle> hey, ive got a problem. on my mac the keybinding of ^ and | works great (using a windows keyboard) but in eclipse its switched, does any1 know why and how to change this? thanks! [17:19:42] <myusuf3_> so when someone installs the plugin via update requirements are pulled down. [17:19:55] <myusuf3_> i dont need to worry about it [17:19:58] <myusuf3_> but in this case I do. [17:20:19] <myusuf3_> since the cli packages doesn't have an idea of requirements [17:20:22] <paulweb515> myusuf3_: you have to specify the jars however maven requires jars to be specified [17:21:10] <myusuf3_> kk I will take a look [17:21:12] <myusuf3_> thanks! [17:23:01] <paulweb515> myusuf3_: isn't it just groupId/artifactId/version? [17:23:52] <myusuf3_> I am not sure [17:24:08] <myusuf3_> I have done assemblies before [17:24:43] <myusuf3_> I will take a look and let you know. [17:26:52] *** dkim1987 has joined #eclipse [17:27:26] <dkim1987> does anyone know how to see javadoc added as a jar file? [17:27:43] <ronr_> huh? [17:27:48] <dkim1987> i hit F2 and click view javadoc, but it says source and javadoc are not availalb [17:27:54] <dkim1987> *available [17:28:02] <ronr_> right, you need to link it. [17:28:12] <ronr_> or use maven. [17:28:13] <FauxFaux> Using the huge button in the middle of your screen. [17:28:15] <dkim1987> ok.. im just used to doing everything on commandline [17:28:30] <dkim1987> so if i downloaded somejavadoc.jar [17:28:35] <dkim1987> how do i link em? [17:28:36] <ronr_> you used to hitting F2 on command line and seeing the javadoc? [17:28:45] <dkim1987> for system lib [17:28:53] <dkim1987> no [17:29:05] <dkim1987> ronr_: i meant F2 in eclipse [17:29:10] <ronr_> oh, silly me. [17:29:27] <ronr_> sometimes I make funny by accident. [17:29:40] <dkim1987> lol.. that would be a great tool on commandline.. lol [17:29:51] <dkim1987> but unfortunately we dont have that [17:30:00] <ronr_> no, unfortunately, we don't. [17:30:16] <dkim1987> so can anyone tell me how i can link the javadoc jar file? [17:30:35] <ronr_> dkim1987: you should ask FauxFaux about it. he's like a world-class expert on such things. [17:31:00] <dkim1987> he said something about the huge button in the middle of my screen [17:31:08] <dkim1987> not quiet sure what that means [17:31:09] [17:31:31] <ronr_> dkim1987: ask him, he'll explain where the button is. [17:31:34] <FauxFaux> dkim1987: Normalluy you get a screen that looks like http://1.bp.blogspot.com/-EOLiLbgezpM/TajcmKaBt3I/AAAAAAAAOjM/KoMgkn8OQRE/s1600/NotWorking.png [17:31:42] <FauxFaux> Which contains a single button that you want to press. ;) [17:32:22] <dkim1987> oh [17:32:23] <dkim1987> ok [17:32:29] *** jesmon has joined #eclipse [17:32:35] <ronr_> told you he's a world-class expert. [17:32:41] <FauxFaux> I'll admit, it's not exactly huge. [17:32:43] <ronr_> and he really likes helping. [17:33:02] <FauxFaux> I actually did some work today, I thought I deserved some thanks from some people on irc. :) [17:33:18] *** tvo has quit IRC [17:33:19] <dkim1987> Note: This element neither has attached source nor attached Javadoc and hence no Javadoc could be found. [17:33:24] <dkim1987> this is what i got and no button [17:33:42] <FauxFaux> What version? I thought that button had been around for ages. [17:34:15] <dkim1987> newest version [17:34:21] <dkim1987> maybe im in a wrong place [17:34:23] <ronr_> try pressing F3 instead. [17:34:27] <dkim1987> k [17:34:41] *** ddk has quit IRC [17:35:09] *** ddk has joined #eclipse [17:35:48] <dkim1987> hmm [17:35:55] <dkim1987> ok now i see the page but that's for source [17:35:57] <dkim1987> not javadoc [17:36:27] <ronr_> you are correct. you should blame FauxFaux for not being accurate though. [17:36:53] <dkim1987> lol [17:36:58] <FauxFaux> If you provide the source it'll magically extract the javadoc; if not you can do it by hand. [17:37:02] <dkim1987> well, i added the sources now though [17:37:06] <dkim1987> that's better than nothing [17:37:20] <dkim1987> i added the sources but i still dont see the javadoc [17:37:23] <dkim1987> it's empty [17:38:19] <ronr_> do the sources have any javadoc comments in them? [17:39:38] <dkim1987> yes [17:39:43] <dkim1987> that's why im puzzled [17:39:53] <ronr_> oh well. [17:39:57] <ronr_> life's a bitch. [17:40:53] <dkim1987> apparently.. i just resolved bunch of dependency issues with eclipse yesterday.. now this [17:40:56] <dkim1987> :L [17:41:12] <ronr_> anyways, time to go home. [17:41:15] <ronr_> have a good one! [17:41:28] *** tvo has joined #eclipse [17:41:40] <dkim1987> k thanks.. i'll try to squeeze some answer out of faux or someone else [17:41:58] * dkim1987 now looks at FauxFaux [17:46:21] *** ronr_ has quit IRC [17:55:45] *** rawbdor has quit IRC [18:04:13] <dkim1987> nevermind [18:04:16] <dkim1987> my boss helped me out [18:04:32] *** kartben has joined #eclipse [18:05:39] <Aniar> is anyone here using the Eclipse 3.6 PPA for ubuntu? I'm having startup problems, even after wiping out ~/.eclipse and workspace/.metadata. starting with "-console" comes up, and if i'm quick I can run "ss", but then it just exits. the JVM isn't starting (no log in .metadata/.log), but the JVM it says it's using is the right one, and does work, and using the -jvm flag doesn't help [18:05:44] *** cbeust_ has quit IRC [18:06:03] <Aniar> (waiting for the "real" download to finish to try *that*) [18:06:28] *** rawbdor has joined #eclipse [18:06:37] <FauxFaux> jvm crash blahblah.pid files, or segfault logs in whatever ubuntu have renamed /var/log/messages to? [18:06:53] <Aniar> none [18:07:05] <Aniar> well, none i can find [18:07:34] <Aniar> I even did an: strace -o strace-log -f eclipse [18:07:55] <Aniar> and searched through the strace for any access / segfault / etc. kinds of errors and didn't see anything blatently wrong I recognized. [18:08:22] <FauxFaux> Dooomed. [18:08:45] <Aniar> ha [18:09:51] *** jmotta has joined #eclipse [18:10:22] *** kggle has quit IRC [18:12:55] * Aniar waits for the download then, to see if it's just the PPA install [18:15:24] <Sembiance> nitind: good to know, thanks. [18:16:37] *** shal3r has quit IRC [18:18:05] *** elops has joined #eclipse [18:18:17] *** mluser-home has quit IRC [18:21:02] <elops> how to to get maven to work with eclipse? [18:21:13] <elops> tried importing the project..no luck [18:21:20] <nbf> install the plugins [18:21:25] *** pulse00 has quit IRC [18:21:45] <nbf> http://maven.apache.org/eclipse-plugin.html [18:21:45] <elops> hmm? [18:22:09] <elops> well everything works great when running from the commandline [18:23:32] <elops> soo? [18:23:55] <elops> i installed plugins [18:24:06] *** mluser-home has joined #eclipse [18:26:12] *** BryanWB has joined #eclipse [18:26:51] <paulweb515> elops: did you install the m2eclipse? That's the eclipse project that supports maven integration [18:27:06] <BryanWB> is there a shortcut to quickly creating folders and files? i find using the gui and mouse very slow [18:27:16] <BryanWB> am new to eclipse after many years w/ vim [18:27:25] <paulweb515> elops: http://m2eclipse.sonatype.org/ [18:27:35] <paulweb515> BryanWB: CTRL+N to open the new wizard [18:28:39] <BryanWB> paulweb515: argh, thats still slower than i'd like, but tks for the tip [18:29:36] *** Scorpion1 has joined #eclipse [18:30:02] *** BryanWB has quit IRC [18:30:47] *** nitrospectide has joined #eclipse [18:30:51] <elops> paulweb515: i did [18:30:58] <elops> and I can't see any errors when importing [18:31:54] *** Scorpion1 has left #eclipse [18:32:30] <elops> checkin error log [18:33:06] *** Pasqualle has quit IRC [18:35:52] *** eichi has joined #eclipse [18:36:30] <eichi> hello, eclipse dies with # Problematic frame: [18:36:30] <eichi> # C [libxul.so+0xc6cb42] [18:36:46] *** lisak has quit IRC [18:36:59] <paulweb515> too bad he left ... you can tie a shortcut directly to a new wizard [18:37:42] <eichi> i allready use "-Dorg.eclipse.swt.browser.UseWebKitGTK=true" but does not help. strange: it does not die in mouseover. but after running an application with eclipse EE for java developers [18:37:45] <elops> still don't se any maven2 when i rightclick on the project [18:37:48] <paulweb515> eichi: what aer you on? [18:38:23] <eichi> archlinux, firefox4, latest eclipse EE, chrome installed, and so on ;) [18:38:28] <paulweb515> eichi: https://bbs.archlinux.org/viewtopic.php?id=115726 [18:39:07] <paulweb515> eichi: it has an extra step to specify the XULRunnerPath [18:39:14] <elops> ? [18:40:20] <paulweb515> elops: how did you create an eclipse project to point to your maven stuff? Did they supply a maven project importer? Did you follow their suggested instructions? Eclipse doesn't lay out projects in the traditional maven format. [18:46:23] *** echelog has joined #eclipse [18:46:55] <elops> so that may be the prob [18:46:59] <elops> what do u suggest i do now sir [18:48:19] *** tvo has quit IRC [18:48:28] <paulweb515> elops: I don't do maven if I can help it. I would see if m2eclipse installed anything useful like a user guide in Help>Help Contents [18:50:03] *** cypha has quit IRC [18:51:11] *** cypha has joined #eclipse [18:51:21] *** elops has quit IRC [18:52:00] *** cbeust_ has joined #eclipse [18:53:09] *** lolmatic has joined #eclipse [18:53:09] *** lolmatic has joined #eclipse [18:54:11] *** cypha` has quit IRC [18:54:21] *** xxen has joined #eclipse [18:55:38] *** eichi has quit IRC [18:59:58] *** monk14 has joined #eclipse [19:02:35] *** ronr_ has joined #eclipse [19:02:55] *** monk13 has quit IRC [19:10:27] *** lolmatic has quit IRC [19:11:21] *** soulreaper has quit IRC [19:13:45] *** moraes has quit IRC [19:18:55] *** visik7 has quit IRC [19:19:01] *** moraes has joined #eclipse [19:22:44] *** SimonP86 has quit IRC [19:26:19] *** listerine has joined #eclipse [19:26:21] <nbf> https://sites.google.com/site/webrtc [19:26:22] *** jmotta has quit IRC [19:26:23] <nbf> ecf? [19:26:25] *** xxen has quit IRC [19:27:54] *** cypha` has joined #eclipse [19:28:16] *** mikewintermute has quit IRC [19:28:41] *** mikewintermute has joined #eclipse [19:29:21] *** mikewintermute_ has joined #eclipse [19:29:56] *** mikewintermute_ has quit IRC [19:30:31] *** mikewintermute_ has joined #eclipse [19:30:42] *** mikewintermute has quit IRC [19:30:43] *** mikewintermute_ is now known as mikewintermute [19:31:05] *** cypha has quit IRC [19:32:34] *** mikewintermute_ has joined #eclipse [19:33:39] *** mikewintermute has quit IRC [19:33:41] *** mikewintermute_ is now known as mikewintermute [19:35:07] *** mikewintermute has quit IRC [19:35:59] *** mikewintermute_ has joined #eclipse [19:36:32] *** kartben has quit IRC [19:38:18] *** FalsAlarm has joined #eclipse [19:40:19] *** soulreaper has joined #eclipse [19:44:03] *** collad has quit IRC [19:44:24] *** warriioor has joined #eclipse [19:46:06] <warriioor> hi everyone. Is it possible to share source providers between 2 plugins? [19:46:59] <warriioor> i want to enable / disable menu items provided by plugin2 based on some state in plugin1. [19:49:29] <warriioor> anybody here? [19:52:13] *** kartben has joined #eclipse [19:54:56] <rcjsuen> I don't see why not. [19:55:09] <rcjsuen> stuff like activePart is a source provided by the workbench [19:55:12] <rcjsuen> and the world consumes it ;o [19:55:41] *** UrsoBranco has quit IRC [19:58:11] <warriioor> thanks [19:58:23] *** nsando_ has joined #eclipse [19:58:28] *** ronr_ has quit IRC [20:00:53] *** johnnydoe has joined #eclipse [20:01:03] *** nsando has quit IRC [20:01:03] *** nsando_ is now known as nsando [20:01:57] *** mikkij has quit IRC [20:02:09] *** kartben has joined #eclipse [20:03:15] *** kartben has quit IRC [20:05:46] *** cgb_ has joined #eclipse [20:07:08] *** cgb has joined #eclipse [20:07:47] *** rkrul has joined #eclipse [20:13:51] *** mne7 has quit IRC [20:15:32] *** Kamaran has quit IRC [20:15:37] *** mne7 has joined #eclipse [20:18:44] *** cgb__ has joined #eclipse [20:22:27] *** cgb__ is now known as cgb [20:22:59] *** gigabytes has joined #eclipse [20:27:10] *** gigabytes has quit IRC [20:27:35] *** mindCrime has joined #eclipse [20:27:37] *** imeikas has quit IRC [20:44:35] *** dijonyummy123 has joined #eclipse [20:46:07] *** tewecske has joined #eclipse [20:52:48] *** nsando has quit IRC [20:56:04] *** Kamaran has joined #eclipse [20:59:54] *** mikewintermute_ has quit IRC [21:01:32] *** warriioor has left #eclipse [21:17:55] *** netzapper has quit IRC [21:19:13] *** DDAZZA has joined #eclipse [21:20:05] *** rrodriguez has joined #eclipse [21:20:49] *** kur1j has quit IRC [21:28:53] *** mziaei has quit IRC [21:29:22] *** Rodtusker has joined #eclipse [21:31:49] *** aminpy has quit IRC [21:34:47] *** cypha has joined #eclipse [21:37:45] *** cypha` has quit IRC [21:49:03] *** DDAZZA has quit IRC [21:54:51] *** ronr_ has joined #eclipse [21:56:45] *** vwegert has joined #eclipse [21:59:28] *** lolmatic has joined #eclipse [22:01:22] *** kthomas_vh has joined #eclipse [22:02:40] *** aksn has joined #eclipse [22:02:41] *** kthomas_vh has quit IRC [22:14:17] *** kthomas has quit IRC [22:15:17] *** kthomas has joined #eclipse [22:15:17] *** kthomas_vh_ has joined #eclipse [22:19:27] *** dijonyummy123 has quit IRC [22:22:08] <rawtaz> does anyone have any pointers to how i can debug why eclipse is using 50-70% cpu and constantly chewing up memory (like a meg per minute or slightly less), but without telling me that it is doing *anything*? [22:22:13] <rawtaz> there is nothing in the process list [22:22:23] <rawtaz> its just sitting there and im not fricken touching it [22:22:48] <rawtaz> os x 10.6.6, eclipse helios. [22:23:14] <rawtaz> i havent installed the very latest updates becuase of the compare view bugs in PDT [22:24:20] *** heinz has quit IRC [22:27:02] <nitind> Anything showing up in the Progress View? [22:29:13] *** nitrospectide has quit IRC [22:30:44] *** dijonyummy123 has joined #eclipse [22:35:22] <rawtaz> nitind: no, thats where its dead empty [22:35:25] <rawtaz> well not empty [22:35:35] <rawtaz> w8 [22:37:59] <rawtaz> nitind: http://grab.by/agU4 [22:40:36] *** morn has quit IRC [22:40:49] *** otaviobp has quit IRC [22:41:09] *** dsugar100 has quit IRC [22:42:47] <rawtaz> a horrible side effect is that since its using so much cpu (i guess is the reason) its slow as a dog to work with :/ [22:44:11] <nitind> rawtaz: How many editors do you have open? [22:44:41] <rawtaz> seven :) [22:44:58] <nitind> Wel, those are all sleeping, so that's not it. [22:45:10] <rawtaz> i must admit, i havent had this problem until a while back. but i cant say exactly when it turned up [22:45:33] <rawtaz> ive had many many editors open earlier [22:45:39] *** rcjsuen has quit IRC [22:45:57] <rawtaz> i wonder if it could have to do with egit, cuz i added a repository today and i never used that plugin before (but had it installed) [22:46:17] <rawtaz> but it doesnt make sense because yesterday my eclipse was hogging memory as well and that was before my git adventures [22:47:17] <rawtaz> i dont see any specific network traffic active either (thinking that it might have to do with SVN that i use over an ssh tunnel, long shot) [22:47:59] <rawtaz> oh hang on [22:48:12] <rawtaz> nah [22:48:16] <rawtaz> false alarm :) [22:48:31] <rawtaz> i did a disconnect of a remote system [22:49:30] *** evil_gordita has joined #eclipse [22:58:44] *** vwegert has quit IRC [23:02:30] *** neataroni has joined #eclipse [23:02:52] *** cgb has quit IRC [23:08:12] *** rcjsuen has joined #eclipse [23:08:49] *** rkrul has quit IRC [23:13:09] *** ExtraSpice has quit IRC [23:21:51] *** jerboaa has quit IRC [23:22:08] *** dirk_77_ has joined #eclipse [23:22:29] *** _arjen_ has joined #eclipse [23:29:14] *** Rodtusker has quit IRC [23:29:39] *** Rodtusker has joined #eclipse [23:35:37] *** cgb_ has quit IRC [23:36:21] *** mpiggott has quit IRC [23:42:15] *** dirk_77__ has joined #eclipse [23:43:42] *** zergster has joined #eclipse [23:43:43] *** ronr__ has joined #eclipse [23:45:48] *** ronr_ has quit IRC [23:45:57] *** dirk_77_ has quit IRC [23:45:59] *** ronr__ is now known as ronr_ [23:46:12] *** tris2k has joined #eclipse [23:47:49] *** wainersm has quit IRC [23:47:49] *** dirk_77__ has quit IRC [23:48:33] *** zergster is now known as connard [23:49:25] *** johnnydoe has quit IRC [23:49:47] *** listerine has quit IRC [23:51:37] *** TJCRI has quit IRC [23:51:48] *** Tashtego has quit IRC [23:54:15] *** dmiles_afk has joined #eclipse [23:56:43] *** tris2k has left #eclipse [23:59:53] *** myusuf3_ has quit IRC