[00:01:26] *** glima[AWAY] is now known as glima [00:03:13] *** pschriner has quit IRC [00:06:04] *** StefanK has joined #eclipse [00:10:57] *** Pikachu_2014 has quit IRC [00:15:37] *** rcjsuen has joined #eclipse [00:16:58] *** kthomas_vh has joined #eclipse [00:17:07] *** dilton has left #eclipse [00:17:22] *** soulreaper has quit IRC [00:17:52] *** deSilva has quit IRC [00:18:43] *** kthomas_vh_ has joined #eclipse [00:22:43] *** ramenmeal has joined #eclipse [00:23:03] <ramenmeal> is this channel for the eclipse IDE? [00:23:28] *** kthomas_vh has quit IRC [00:27:45] *** Sniperfodder12 has joined #eclipse [00:28:06] *** nycz has quit IRC [00:28:22] *** SniperFodder has quit IRC [00:29:21] *** Sniperfodder12 has left #eclipse [00:30:47] <kaje> I am trying to get the path to the root of one of my plugins from my main plugin. I have tried this: FileLocator.find(Platform.getBundle("com.example.myapp.licensing"), new Path("/"), null) [00:30:55] *** StefanK has quit IRC [00:30:55] <kaje> That doesn't seem to work. Any ideas why? [00:32:06] <kaje> It should give me something like: /home/kaje/workspace/com.example.myapp.licensing/ [00:33:08] *** fodder12 has joined #eclipse [00:36:24] *** alesan has left #eclipse [00:36:52] *** leitao_ has quit IRC [00:38:34] <ramenmeal> correct me if i'm wrong, but the current stable edition of eclipse for mac's still uses java 1.5 right? [00:38:34] *** fodder12 has left #eclipse [00:46:06] *** Theravadan has quit IRC [00:46:10] *** ramenmeal has quit IRC [00:46:45] *** rretzbach has quit IRC [00:47:35] *** rretzbach has joined #eclipse [00:49:49] *** shapr has left #eclipse [00:55:12] *** kthomas has joined #eclipse [00:58:26] *** behzad has joined #eclipse [00:59:40] *** Nescafe has quit IRC [01:00:53] *** behzad has left #eclipse [01:01:26] *** kthomas_vh_ has quit IRC [01:02:28] *** rretzbach has quit IRC [01:05:20] <rcjsuen> kaje: that sounds about right...assuming you're launching from Eclipse [01:05:37] *** Pikachu_2015 has joined #eclipse [01:05:59] *** Pikachu_2014 has joined #eclipse [01:11:38] *** ekiczek has joined #eclipse [01:11:49] *** nessuno2_ has left #eclipse [01:13:16] *** Theravadan has joined #eclipse [01:16:18] *** aksn has quit IRC [01:17:09] *** barbar__conan has quit IRC [01:17:46] *** kthomas_vh_ has joined #eclipse [01:23:24] *** Spencer_tt has quit IRC [01:23:59] *** Spencer_tt has joined #eclipse [01:26:02] <kaje> rcjsuen: is there some reason my plugin wouldn't be showing up? How can I get all bundles? There is a Platform.getBundles(), but it needs a name argument... [01:26:15] <rcjsuen> what do you mean it's not showing up [01:26:18] <rcjsuen> is null being returned? [01:26:35] <kaje> yeah, sorry, null is being returned [01:27:10] <NoobFukaire> is it active? [01:27:56] <kaje> yeah something strange is going on. When I call Platform.getBundle("com.example.myplugin") where myplugin is the current plugin it still returns null [01:29:34] *** kthomas has quit IRC [01:30:31] <NoobFukaire> Because of the singleton, I assume those calls are thread safe? [01:30:53] *** kthomas has joined #eclipse [01:31:52] <kaje> wait, it appears to not be null, just a lot of its fields are null for some reason [01:32:11] *** mbana_ has quit IRC [01:32:20] <kaje> sorry, I need to look into it more before I bug you guys I guess [01:32:41] *** mauroC has left #eclipse [01:32:56] <rcjsuen> fields being null isn't a big deal i don't think [01:34:49] <glima> hi, all [01:34:51] *** zmanning has left #eclipse [01:35:07] <glima> does anyone know how to use the pagesAfterTemplateSelectionProvider thing, from cdt? [01:36:11] <kaje> It looks like FileLocator.find isn't working the way I expect it to... [01:37:29] <kaje> So, I can get the bundle I want and the absolute path is in bundle.bundledata.fileName, but when I pass that bundle to FileLocator.find, it isn't getting that path out correctly [01:37:37] *** kthomas_vh_ has quit IRC [01:38:01] <NoobFukaire> probably some kind of classloader thing? [01:38:34] *** scorphus has quit IRC [01:45:45] *** Obsidian_ has joined #eclipse [01:46:00] *** fixl has quit IRC [01:46:13] *** Obsidian_ is now known as Guest9870 [01:46:32] *** Kassah has joined #eclipse [01:47:05] <Kassah> is there a way to have a JFace Wizard add/remove page depending on selection? [01:48:35] <rcjsuen> Kassah: your IWizard would control that [01:49:55] <Kassah> well there's the addPage method [01:50:00] <Kassah> but I don't see a removePAge [01:51:37] <rcjsuen> Kassah: alter the behaviour by getNextPage [01:53:29] *** ObsidianX has quit IRC [02:00:02] *** kthomas_vh_ has joined #eclipse [02:04:58] <kaje> I just don't understand why this is so hard. I just want to get the absolute path to my bundle. I can get the bundle, but for the life of me I cannot figure out how to get its location out of it... [02:07:56] <rcjsuen> your new Path("/") should work afaik [02:08:26] <rcjsuen> if you use a filename instead does it work [02:16:27] *** winegoddess has joined #eclipse [02:17:09] <winegoddess> hey all - how can I insert a newline into a search and replace? im thinking there should be some escape sequence - but i cannot find one yet by googling... [02:18:28] *** kthomas has quit IRC [02:19:22] <winegoddess> i tried to replace <p></p> with \n<p></p> (escape sequence is on) but i get an error message: incompatible line delimiter near index 6683 [02:20:48] *** kthomas has joined #eclipse [02:20:49] *** ycy_ has quit IRC [02:21:00] *** ycy has joined #eclipse [02:22:28] <kaje> No, if I put a filename in that exists in that new Path, it just spits out "/filename" [02:23:18] <kaje> It kills me because I can debug my app and see that there is a private field in the bundle called bundledata that has a filename field that contains what I want... I just can't figure out how to grab that [02:25:17] *** Aleph_One has quit IRC [02:26:40] *** kthomas has quit IRC [02:26:55] <NoobFukaire> Is there any place that explains the EPL well? [02:27:06] <NoobFukaire> I've looked at the some of the official docs and it seems odd [02:27:20] <NoobFukaire> it's copyleft but it seems like you could just take the entire codebase and relicense it [02:27:59] *** kthomas has joined #eclipse [02:28:11] <winegoddess> for the curious: \R with regular expression works in replace with box as of eclipse 3.4 [02:28:19] <winegoddess> as a new line [02:28:31] *** kthomas_vh_ has quit IRC [02:30:44] *** kthomas_vh_ has joined #eclipse [02:31:44] *** Dashkal has joined #eclipse [02:31:46] <rcjsuen> NoobFukaire: I think that aspect is for commercial redistribution. [02:31:52] <rcjsuen> NoobFukaire: I don't know about "relicensing it" though. [02:32:29] *** the_alien has quit IRC [02:32:45] <rcjsuen> kaje: Can't you just use getBundleFile? [02:34:06] <kaje> what is that a member of? [02:34:12] <rcjsuen> FileLocator [02:35:42] <kaje> That did it [02:35:48] <kaje> rcjsuen, you are my hero! [02:36:02] <rcjsuen> Doesn't explain why your other calls are buggy tho [02:36:44] <kaje> who know, but thank you very much [02:37:54] *** kthomas has quit IRC [02:44:55] *** EricInBNE has joined #eclipse [02:48:20] *** lresende has quit IRC [02:53:19] *** kthomas_vh has joined #eclipse [02:55:57] *** ExElNeT has quit IRC [02:56:16] *** kthomas_vh_ has quit IRC [02:59:18] *** glima is now known as glima[AWAY] [03:06:43] *** kthomas_vh has quit IRC [03:07:31] *** kthomas_vh has joined #eclipse [03:13:24] *** Theravadan has quit IRC [03:21:44] *** deng_c has joined #eclipse [03:22:26] *** kthomas_vh has quit IRC [03:23:37] *** ngoonee has joined #eclipse [03:24:07] <ngoonee> hi all, when I start an external tool with Eclipse and close eclipse, the tool closes as well, is there a way to prevent that? [03:24:12] <ngoonee> running in linux [03:25:04] *** kthomas_vh has joined #eclipse [04:36:59] *** raveon has joined #eclipse [04:38:43] <raveon> hi, i'm new to eclipse, i'm trying to get eclipse setup with verilog, i downloaded the veditor plugin, but for some reason it doesn't work, the doc says to download 3.2.1 i have eclipse 3.5.1 is there a way to get it to work with 3.5.1? [04:39:36] <raveon> I get bad version in .class file when i click on Windows -> preferences [04:47:52] <MarcWeber> raveon: it says 3.2.1 you should try that first [04:49:00] <raveon> thanks i find some other verilog plugin from simplifide and i got that installed, so i'm trying that out [04:55:39] *** raveon has left #eclipse [04:56:46] *** rcjsuen has quit IRC [04:58:38] *** Theravadan has joined #eclipse [05:00:21] *** gambler_ has joined #eclipse [05:02:37] *** EricInBNE has quit IRC [05:06:43] *** bbt has joined #eclipse [05:08:51] *** Pikachu_2014 has quit IRC [05:08:51] *** Pikachu_2015 has quit IRC [05:08:51] *** crib has quit IRC [05:08:51] *** dmiles_afk has quit IRC [05:08:51] *** TomTom has quit IRC [05:08:51] *** atpa8a has quit IRC [05:08:53] *** digitalis has quit IRC [05:08:53] *** geoaxis has quit IRC [05:08:53] *** xemacs has quit IRC [05:08:55] *** Doppp has quit IRC [05:08:55] *** glima[AWAY] has quit IRC [05:08:55] *** Milyardo_ has quit IRC [05:08:55] *** iridian has quit IRC [05:08:58] *** todd_dsm has quit IRC [05:08:58] *** peper has quit IRC [05:08:58] *** nks has quit IRC [05:08:58] *** Guest9870 has quit IRC [05:08:58] *** prahal_ has quit IRC [05:09:01] *** Jahannan has quit IRC [05:09:01] *** tr1gger has quit IRC [05:09:01] *** Zenopus has quit IRC [05:09:01] *** dosc^off has quit IRC [05:09:01] *** matt1s has quit IRC [05:09:02] *** paulweb515 has quit IRC [05:09:02] *** frey has quit IRC [05:09:02] *** obruT has quit IRC [05:09:03] *** krphop has quit IRC [05:09:03] *** Infinito has quit IRC [05:09:03] *** Shapeshifter has quit IRC [05:09:03] *** wifs has quit IRC [05:09:04] *** m0 has quit IRC [05:10:40] *** ahughes has joined #eclipse [05:10:51] *** paulweb515 has joined #eclipse [05:10:51] *** Guest9870 has joined #eclipse [05:10:51] *** Pikachu_2014 has joined #eclipse [05:10:51] *** Pikachu_2015 has joined #eclipse [05:10:51] *** prahal_ has joined #eclipse [05:10:51] *** crib has joined #eclipse [05:10:51] *** Jahannan has joined #eclipse [05:10:51] *** dmiles_afk has joined #eclipse [05:10:51] *** tr1gger has joined #eclipse [05:10:51] *** TomTom has joined #eclipse [05:10:51] *** m0 has joined #eclipse [05:10:51] *** atpa8a has joined #eclipse [05:10:51] *** digitalis has joined #eclipse [05:10:51] *** glima[AWAY] has joined #eclipse [05:10:51] *** geoaxis has joined #eclipse [05:10:51] *** Milyardo_ has joined #eclipse [05:10:51] *** iridian has joined #eclipse [05:10:51] *** Doppp has joined #eclipse [05:10:51] *** xemacs has joined #eclipse [05:10:51] *** peper has joined #eclipse [05:10:51] *** nks has joined #eclipse [05:10:51] *** todd_dsm has joined #eclipse [05:10:51] *** Zenopus has joined #eclipse [05:10:51] *** frey has joined #eclipse [05:10:51] *** matt1s has joined #eclipse [05:10:51] *** dosc^off has joined #eclipse [05:10:51] *** wifs has joined #eclipse [05:10:51] *** Infinito has joined #eclipse [05:10:51] *** Shapeshifter has joined #eclipse [05:10:51] *** krphop has joined #eclipse [05:10:51] *** obruT has joined #eclipse [05:10:51] *** irc.freenode.net sets mode: +o paulweb515 [05:11:11] *** ahughes has left #eclipse [05:11:25] *** gambler has quit IRC [05:17:02] *** EricInBNE has joined #eclipse [05:17:17] *** kthomas_vh has quit IRC [05:18:15] *** kthomas_vh has joined #eclipse [05:18:47] *** notbbt has joined #eclipse [05:24:55] *** PrakashGR_ has joined #eclipse [05:26:20] *** bbt has quit IRC [05:34:06] *** Laserbeak43 has joined #eclipse [05:36:41] *** PrakashGR has quit IRC [05:37:18] *** Araxia has quit IRC [05:42:18] *** allisterb_ has joined #eclipse [05:52:54] *** philk_ has joined #eclipse [05:58:43] *** buddhika_ has joined #eclipse [05:59:31] *** allisterb has quit IRC [05:59:40] *** kthomas_vh has quit IRC [06:01:16] *** philk__ has quit IRC [06:04:58] *** kthomas_vh has joined #eclipse [06:13:58] *** lresende has joined #eclipse [06:14:57] *** notbbt has quit IRC [06:15:14] *** bbt has joined #eclipse [06:18:16] *** buddhika_ has quit IRC [06:19:27] *** buddhika_ has joined #eclipse [06:33:58] *** dmiles_afk has quit IRC [06:34:16] *** dmiles_afk has joined #eclipse [06:44:37] *** kthomas_vh has quit IRC [06:46:55] *** buddhika_ has quit IRC [06:49:06] *** buddhika_ has joined #eclipse [06:50:59] *** kthomas_vh has joined #eclipse [06:55:11] *** Araxia has joined #eclipse [06:57:50] *** Jahannan has quit IRC [07:06:25] *** punknroll_ has joined #eclipse [07:12:11] *** volodya has joined #eclipse [07:15:01] *** LongBeach has quit IRC [07:15:35] *** LongBeach has joined #eclipse [07:41:40] *** Kassah has quit IRC [07:47:12] *** StefanK has joined #eclipse [07:51:17] *** PrakashGR_ has quit IRC [07:58:02] *** ngoonee has left #eclipse [07:58:19] *** rretzbach has joined #eclipse [07:58:48] *** rretzbach has quit IRC [07:59:57] *** winegoddess has quit IRC [08:04:06] *** Bass2 has joined #eclipse [08:07:26] *** Guest9870 is now known as ObsidianX [08:08:55] *** ObsidianX has quit IRC [08:09:32] *** ObsidianX has joined #eclipse [08:12:49] *** punknroll_ has quit IRC [08:14:05] *** erdal has joined #eclipse [08:14:13] *** Bass2 has quit IRC [08:18:12] *** Bass10 has quit IRC [08:20:22] *** Ambidex|Work has joined #eclipse [08:20:49] *** StefanK has quit IRC [08:24:31] *** punknroll_ has joined #eclipse [08:25:34] *** jeromebenois has joined #eclipse [08:39:17] *** kottlett has joined #eclipse [08:44:33] *** deng_c has quit IRC [08:51:14] *** pni1 has left #eclipse [09:00:51] *** sama has joined #eclipse [09:05:06] *** Kellindil has joined #eclipse [09:05:25] *** bbt has quit IRC [09:08:06] *** stijnbe has joined #eclipse [09:09:53] *** stijnbe_ has joined #eclipse [09:14:20] *** deSilva has joined #eclipse [09:15:14] *** Kudd has joined #eclipse [09:20:13] *** rretzbach has joined #eclipse [09:26:08] *** Theravadan has quit IRC [09:26:30] *** stijnbe has quit IRC [09:27:35] *** Milyardo_ has quit IRC [09:27:36] *** digitalis has quit IRC [09:27:38] *** Milyardo has joined #eclipse [09:27:47] *** digitalis has joined #eclipse [09:27:55] *** glima[WORK] has joined #eclipse [09:28:12] *** glima[AWAY] has quit IRC [09:28:13] *** nks has quit IRC [09:28:17] *** iridian has quit IRC [09:28:21] *** iridian has joined #eclipse [09:28:23] *** Aleph_One has joined #eclipse [09:28:38] *** nks has joined #eclipse [09:31:32] *** Dashkal has quit IRC [09:33:11] *** kthomas_vh has quit IRC [09:39:02] *** rretzbach has quit IRC [09:39:33] *** deSilva has quit IRC [09:41:57] *** rretzbach has joined #eclipse [09:44:00] *** Nescafe has joined #Eclipse [09:44:03] *** rretzbach has quit IRC [09:48:21] *** sama has quit IRC [09:53:52] *** nicoulaj has joined #eclipse [10:02:58] *** ArneS_ has joined #eclipse [10:03:03] *** kthomas_vh has joined #eclipse [10:03:24] <ArneS_> hello, how do i write to the general error-log? [10:04:30] *** dpino has joined #eclipse [10:08:18] *** erdal has quit IRC [10:08:27] *** lithium has joined #eclipse [10:16:10] *** sama has joined #eclipse [10:16:28] *** Carnage\ has joined #eclipse [10:19:12] *** bushwakko has joined #eclipse [10:27:01] *** amnesic has quit IRC [10:34:11] *** deSilva has joined #eclipse [10:34:30] *** fixl has joined #eclipse [10:43:14] *** buddhika_ has quit IRC [10:43:23] <ArneS_> does anybody know how to write to the error-log? [10:44:41] *** the_alien has joined #eclipse [10:50:43] *** stibotrac has quit IRC [10:50:43] *** Kudd_ has joined #eclipse [10:51:00] *** nicoulaj has quit IRC [10:51:25] *** stibotrac has joined #eclipse [10:55:40] *** nicoulaj has joined #eclipse [10:58:16] *** ArneS_ has quit IRC [11:08:23] *** Kudd has quit IRC [11:13:36] *** tphgangster has joined #eclipse [11:20:07] *** Aleph_One has left #eclipse [11:22:22] *** SniperFodder has joined #eclipse [11:25:12] *** Aleph_One has joined #eclipse [11:25:50] *** Aleph_One has quit IRC [11:37:51] *** kthomas_vh has quit IRC [11:40:10] *** buddhika_ has joined #eclipse [11:46:55] *** kthomas_vh has joined #eclipse [11:53:29] *** bushwakko_ has joined #eclipse [11:55:45] *** rednblue has joined #eclipse [11:57:38] *** rednblue has left #eclipse [12:01:25] *** deSilva has quit IRC [12:08:08] *** ObsidianX has quit IRC [12:08:47] *** ObsidianX has joined #eclipse [12:09:37] *** matt1s has quit IRC [12:09:41] *** bushwakko has quit IRC [12:10:48] *** z4z4 has joined #eclipse [12:13:06] *** bushwakko_ has quit IRC [12:34:36] *** erdal has joined #eclipse [12:40:26] <prahal_> is there a mean to pass xlib option to eclipse ? like --sync [12:42:11] *** philk_ has quit IRC [12:42:52] *** deSilva has joined #eclipse [12:47:05] *** SniperFodder has quit IRC [12:47:11] *** oisinh has joined #eclipse [12:47:41] *** philk_ has joined #eclipse [12:48:07] *** Carnage\ has quit IRC [12:48:15] *** Carnage\ has joined #eclipse [12:48:26] *** sama has quit IRC [12:48:34] <philk_> I have expported an app that is running fine here (the exported version). However the same version (zipped) does not run on my colleagues machine. It exits with :org.osgi.service.application.ApplicationException: No application id has been found [12:56:55] *** barbar__conan has joined #eclipse [13:01:36] *** acuster has joined #eclipse [13:05:21] *** tr1gger has quit IRC [13:06:39] *** Carnage\ has quit IRC [13:06:48] *** acuster has quit IRC [13:09:10] *** gambler__ has joined #eclipse [13:11:21] *** deSilva has quit IRC [13:16:43] *** ObsidianX has quit IRC [13:17:27] *** allisterb__ has joined #eclipse [13:20:27] *** m41n1 has joined #eclipse [13:20:31] <m41n1> hi guys [13:20:45] <m41n1> i am using Galileo Eclipse CDT [13:21:04] <m41n1> and when i click on the console window i get the same error over and over again [13:21:12] <m41n1> Problems occurred when invoking code from plug-in: "org.eclipse.ui.workbench". [13:21:29] <m41n1> anyone has a clue what the problem might be? [13:23:25] <erdal> dev.java.net is down? [13:25:04] *** bushwakko has joined #eclipse [13:25:10] <erdal> m41n1: you should provide the stack trace [13:25:40] *** EricInBNE has quit IRC [13:26:17] *** gambler_ has quit IRC [13:26:32] *** EricInBNE has joined #eclipse [13:26:37] *** Pikachu_2015 has quit IRC [13:26:39] *** Pikachu_2014 has quit IRC [13:27:53] *** Pikachu_2014 has joined #eclipse [13:27:54] *** Pikachu_2015 has joined #eclipse [13:31:18] *** kthomas_vh has quit IRC [13:31:51] *** deSilva has joined #eclipse [13:34:42] <paulweb515> m41n1: ~pastebin [13:34:42] <Arbalest> Please paste the relevant information onto a pastebin. The submission will then generate a URL, please copy/paste the generated URL back to the channel - http://www.pastebin.cz/ - http://papernapkin.org/pastebin/home - http://pastebin.com - http://pastebin.ca [13:34:44] *** allisterb_ has quit IRC [13:35:24] <paulweb515> prahal_: in the end, eclipse launches a JVM ... how would you pass such an option to Java itself? [13:41:16] *** Nescafe has quit IRC [13:41:20] *** dpy has joined #eclipse [13:41:25] *** Nes has joined #Eclipse [13:57:12] *** Spencer_tt has quit IRC [14:03:18] *** scorphus has joined #eclipse [14:08:29] *** Fragarach87 has joined #eclipse [14:10:26] *** adeodatus has joined #eclipse [14:13:17] *** tr1gger has joined #eclipse [14:15:11] *** pwnzilla has joined #eclipse [14:16:03] *** timothym has joined #eclipse [14:20:01] *** m41n1 has quit IRC [14:20:38] *** Jatinder_ has joined #eclipse [14:20:45] *** adeodatus has quit IRC [14:20:58] *** barbar__conan has quit IRC [14:30:45] *** Pikachu_2014 has quit IRC [14:32:54] *** Pikachu_2015 has quit IRC [14:35:40] *** oisinh has quit IRC [14:37:08] *** tom17bombadil has joined #eclipse [14:38:04] *** Jatinder has quit IRC [14:45:01] *** adeodatus has joined #eclipse [14:45:08] *** kthomas_vh has joined #eclipse [14:45:25] *** acuster has joined #eclipse [14:45:30] *** rcjsuen has joined #eclipse [14:46:19] *** adeodatus has quit IRC [14:49:53] *** Rayaken has joined #eclipse [14:55:03] *** dsugar100 has joined #eclipse [14:55:36] *** dual has joined #eclipse [14:56:46] <dual> Is it possible to make my own auto completion in Eclipse. For example if I write {% in a .html-document, it should automatically write {% %} and put the cursor in the middle of the %-signs? [14:56:50] *** acuster_ has joined #eclipse [14:57:57] <paulweb515> dual: if it is it will be under Preferences>*component*>Editors [14:58:12] <dual> Thanks, paulweb515 [14:58:27] <paulweb515> dual: for example, java supports creating templates and controls content proposals under Preferences>Java>Editors [14:58:50] <paulweb515> Preferences>Java>Editors>Content Assist [14:58:54] <dual> paulweb515, I think I found it now. Great :) [15:05:28] *** acuster_ has quit IRC [15:08:48] *** kthomas_vh has quit IRC [15:10:09] *** Bass2 has joined #eclipse [15:11:35] *** acuster has quit IRC [15:18:40] *** Carnage\ has joined #eclipse [15:21:32] *** rhk has joined #eclipse [15:22:30] *** Carnage\ has quit IRC [15:22:35] *** Carnage\ has joined #eclipse [15:23:09] *** Fragarach87 has quit IRC [15:24:58] *** Carnage\ has quit IRC [15:28:49] *** mchv has joined #eclipse [15:40:29] *** krbarnes has joined #eclipse [15:44:14] *** rgrunber has joined #eclipse [15:46:23] *** Shown has joined #eclipse [15:46:38] *** oisinh has joined #eclipse [15:48:19] *** amnesic has joined #eclipse [15:54:35] <prahal_> paulweb515, enivronment variable like LIBXCB_ALLOW_SLOPPY in its time helped working around xcb lock issue. But I cannot find a sync variable. I was also hoping for -vmargs [15:55:27] <prahal_> so I should hack swt itself to get the sync ... if it is even possible [15:58:01] <tr1gger> Hi, is there an up-to-date maven repository containing eclipse jars? [16:04:25] *** Jatinder_ has quit IRC [16:07:38] *** crashR has joined #eclipse [16:08:33] <tr1gger> I've found the eclipse:to-maven mojo which is quite a good solution. [16:08:37] *** winegoddess has joined #eclipse [16:28:10] *** oisinh has quit IRC [16:28:50] *** prahal_ has quit IRC [16:31:57] *** erdal has quit IRC [16:33:33] *** brendon_work has joined #eclipse [16:39:03] *** stijnbe_ has quit IRC [16:39:59] *** oisinh has joined #eclipse [16:41:47] *** choeger has joined #eclipse [16:42:21] <choeger> Hi, I could need some advice on handling models based on IResources [16:42:26] *** sama has joined #eclipse [16:42:35] *** deSilva has quit IRC [16:43:19] <choeger> If a new Model entry is created shall I a) create only the IResources and let a EventListener handle the creation of the Model or b) handle the creation directly after the IResources were created? [16:45:18] *** lord49 has joined #eclipse [16:45:28] *** RobW has joined #eclipse [16:49:48] <lord49> we want to migrate some aplications. we want to start using some ui, we saw swt, rcp and some web ui also, we want to know which platform we can consider the best to start our project [16:53:04] *** lord49 has quit IRC [16:55:29] *** lord49 has joined #eclipse [16:55:35] <lord49> we want to migrate some aplications. we want to start using some ui, we saw swt, rcp and some web ui also, we want to know which platform we can consider the best to start our project [16:55:42] *** lord49 is now known as luisgrin [17:01:20] *** stimpie has joined #eclipse [17:03:58] <luisgrin> hi stimpie [17:05:11] <stimpie> hi [17:05:26] <luisgrin> we want to migrate some aplications. we want to start using some ui, we saw swt, rcp and some web ui also, we want to know which platform we can consider the best to start our project [17:05:34] *** [TomTom] has joined #eclipse [17:05:39] <luisgrin> this is my question [17:06:36] *** Nescafe has joined #Eclipse [17:07:04] <stimpie> iam just struggeling to keep eclipse running ;-) [17:07:21] <stimpie> swt would be my first choice [17:07:24] <luisgrin> stimpie i have this problem using centos [17:08:22] *** TomTom has quit IRC [17:08:44] <stimpie> iam getting a classformat error with RefactoringAvailabilityTester see http://pastebin.ca/1589571 [17:08:58] *** glima[WORK] is now known as glima [17:09:37] <FauxFaux> Corruption? [17:11:26] <GoatCheez> O [17:15:03] <stimpie> I recoverd by removing org.eclipse.core.resources [17:15:27] * stimpie smiles again [17:16:47] <stimpie> oh no, still cant start the java editor [17:19:06] *** Nes has quit IRC [17:22:35] *** tr1gger has quit IRC [17:23:33] *** psst has joined #eclipse [17:23:56] *** krbarnes has left #eclipse [17:24:11] <psst> is there a refactoring in eclipse java that allows you to make a static method into a method on one of the parameters? [17:24:48] *** charley has quit IRC [17:29:39] *** bushwakko has quit IRC [17:31:05] *** Tesseraction has joined #eclipse [17:37:34] *** kottlett has quit IRC [17:37:39] *** mchv has quit IRC [17:37:49] <peper> hello [17:38:18] <peper> is adding more formatting options for pdt planned? [17:38:56] *** amitev has quit IRC [17:39:51] *** Tesseract has quit IRC [17:41:32] *** z4z4 has quit IRC [17:41:53] *** mbrown7776_ has joined #eclipse [17:43:01] *** psst has left #eclipse [17:46:25] *** scorphus has quit IRC [17:46:26] *** oisinh has quit IRC [17:47:08] *** bbt has joined #eclipse [17:47:29] *** lithium has quit IRC [17:49:31] *** oisinh has joined #eclipse [17:50:20] *** dpy has quit IRC [17:55:10] *** sama has quit IRC [17:56:47] *** mchv has joined #eclipse [17:57:14] *** Theravadan has joined #eclipse [17:58:27] *** dilton has joined #eclipse [17:58:29] *** philk__ has joined #eclipse [17:59:48] *** Ambidex|Work has quit IRC [18:03:55] *** LongBeach has quit IRC [18:04:11] *** philk_ has quit IRC [18:09:59] *** choeger has left #eclipse [18:12:36] *** prahal_ has joined #eclipse [18:13:52] *** Kellindil has quit IRC [18:19:12] <prahal_> ok I found out this is Device.Debug=true; to reproduce gtk --sync option [18:19:18] *** charley has joined #eclipse [18:25:45] *** Araxia has quit IRC [18:28:03] *** tr1gger has joined #eclipse [18:28:14] *** bbt has quit IRC [18:30:11] *** Nescafe has quit IRC [18:32:32] *** nicoulaj has quit IRC [18:39:42] *** buddhika_ has quit IRC [18:39:42] *** mchv has left #eclipse [18:40:41] *** buddhika_ has joined #eclipse [18:44:53] *** pwnzilla has quit IRC [18:45:42] *** oisinh_ has joined #eclipse [18:46:21] *** fixl has quit IRC [18:46:52] *** tom17bombadil has quit IRC [18:48:35] *** ekiczek has quit IRC [18:50:26] *** Raff7 has joined #eclipse [18:50:56] <Raff7> hi [18:51:17] <Raff7> someone runs eclipse (C ide) on windows? i would like to use the command prompt instead of the console [18:51:27] <Raff7> while running/debugging on windows [18:51:56] <Raff7> (i've eclipse ide for C\C++ dev, MinGw & Gdb latest version) [18:54:07] *** prahal_ has quit IRC [18:55:27] *** Araxia has joined #eclipse [18:56:41] *** buddhika_ has quit IRC [18:58:16] *** Araxia has quit IRC [19:00:46] *** buddhika_ has joined #eclipse [19:01:17] *** timothym1 has joined #eclipse [19:01:43] *** rretzbach has joined #eclipse [19:02:32] *** oisinh has quit IRC [19:02:39] *** timothym has quit IRC [19:02:54] *** timothym1 is now known as timothym [19:02:55] *** oisinh_ is now known as oisinh [19:07:27] *** jeromebenois has left #eclipse [19:07:31] *** soulreaper has joined #eclipse [19:11:19] *** Resistance5 has joined #eclipse [19:11:21] *** Resistance5 is now known as Resistance [19:11:55] *** ekiczek has joined #eclipse [19:13:02] *** nessuno2_ has joined #eclipse [19:15:38] *** oisinh has quit IRC [19:20:39] *** buddhika_ has quit IRC [19:23:39] *** StefanK has joined #eclipse [19:24:19] *** glima is now known as glima[AWAY] [19:24:24] *** glima[AWAY] is now known as glima [19:30:56] *** buddhika_ has joined #eclipse [19:41:09] *** kthomas_vh has joined #eclipse [19:43:45] *** bobbytek2 has joined #eclipse [19:43:52] <bobbytek2> why does eclipse suck so hard? [19:44:57] *** StefanK has quit IRC [19:45:13] <Raff7> dunno, i think that only eclipse console + printf sucks :P [19:46:54] *** Nyha has quit IRC [19:48:48] *** mbana has joined #eclipse [19:49:51] <dilton> Raff7: why not set a breakpoint [19:53:24] <charley> bobbytek2: trolling? :P What don't you like about Eclipse? [19:53:58] *** NoobFukaure has joined #eclipse [20:00:42] *** Kudd_ has quit IRC [20:06:49] *** zmanning has joined #eclipse [20:08:17] *** amnesic has quit IRC [20:08:22] *** amnesic has joined #eclipse [20:09:09] *** amnesic has quit IRC [20:13:34] <Raff7> dilton? [20:13:57] <dilton> Raff7: go ahead [20:14:07] <Raff7> dilton i've a problem with eclipse's console... don't work 'printf' prints everything after the program returned 0 [20:14:12] <Raff7> (exited) [20:14:37] *** tr1gger has quit IRC [20:14:59] <Raff7> i don't think it's a bug, but it's not a code problem, running it in cmd.exe works fine [20:15:26] *** fsteeg has joined #eclipse [20:15:31] *** winegoddess has quit IRC [20:15:36] <dilton> Raff7: dunno try the CDT newgroup they code in CDT all the time, might find someone there who's seen that problem [20:15:59] <Raff7> there is a forum? or you mean mailinglist? [20:16:34] <dilton> Raff7: search Google for "eclipse newsgroups" you'll find eclipse.tools.cdt [20:16:57] *** amnesic has joined #eclipse [20:17:05] <Raff7> ok [20:18:55] <charley> Raff7: Out of curiosity, will it work if you explicitly flush standard out? [20:19:08] <charley> Raff7: and what version of CDT/Eclipse are you using? [20:22:50] <Raff7> ehi [20:22:59] <Raff7> sorry i was reading the newsgroup [20:23:04] <charley> no problem :) [20:23:08] <Raff7> about flush i didn't tried [20:23:18] <Raff7> about CD/Eclipse latest stable version [20:23:22] <Raff7> CDT* [20:23:30] <Raff7> Build id: 20090920-1017 [20:23:42] <charley> Ah... I checked the newsgroup too and found some discussion about this, but it's probably not your problem since the discussion is *very* old :) [20:23:46] <Raff7> Eclipse C/C++ Development Tools SDK 6.0.0.200909110608 org.eclipse.cdt.sdk.feature.group [20:23:57] *** Nyha has joined #eclipse [20:24:15] <charley> although I know that my cdt is currently working okay in terms of output on the console [20:24:24] <Raff7> are you on windows? [20:34:27] *** Nescafe has joined #Eclipse [20:34:57] *** Shown has quit IRC [20:35:12] <charley> Raff7: Er... no :( Sorry [20:35:36] <Raff7> maybe that's why :\ [20:35:54] <Raff7> anyway i'll install debian later, but at university i must use windows + eclipse :( [20:36:35] *** Shown has joined #eclipse [20:36:36] <Raff7> with fflush(stdout); works fine [20:39:25] *** kthomas_vh has quit IRC [20:42:40] *** amnesic has quit IRC [20:43:25] *** amnesic has joined #eclipse [20:44:08] *** Vittor has joined #eclipse [20:45:00] *** Vittor has quit IRC [20:46:15] <rcjsuen> bobbytek2: Well, if you don't like Eclipse, feel free to use something else. :O Unless your job mandates it...then that's a different story. [20:47:41] <NoobFukaure> you can also use debian + eclipse [20:49:12] <charley> Raff7: interesting... your problem looks similar to the one in this discussion thread: (http://dev.eclipse.org/newslists/news.eclipse.tools.cdt/msg08018.html), except this is a discussion for a much older version of Eclipse/CDT, and the bugs have long been closed [20:49:26] <charley> Raff7: also, your uni doesn't have linux/unix labs? :( [20:49:53] * charley has to ensure all his submissions work on *nix, or he autofails :P [20:57:02] *** Theravadan has quit IRC [20:58:29] *** KleistDK has joined #eclipse [21:01:02] <Raff7> charley yeah [21:01:13] <Raff7> we have ubuntu in dual boot but we cannot use it [21:01:20] <Raff7> becouse our login/pass works only on windows [21:07:27] <NoobFukaure> I love how stupid universities are [21:07:47] <NoobFukaure> it's such an awesome dichotomy [21:07:57] *** EricInBNE has quit IRC [21:10:55] *** bobbytek2 has left #eclipse [21:11:45] <Raff7> NoobFukaire thei run windows servers... that's why they cannot use ubuntu with our login [21:11:52] <Raff7> windows doesn't suppirt linux [21:16:26] *** NoobFukaure has quit IRC [21:16:26] *** punknroll_ has quit IRC [21:16:27] *** rhk has quit IRC [21:16:27] *** dual has quit IRC [21:16:27] *** stibotrac has quit IRC [21:16:27] *** atpa8a has quit IRC [21:16:27] *** stimpie has quit IRC [21:16:27] *** crib has quit IRC [21:16:28] *** geoaxis has quit IRC [21:16:28] *** Doppp has quit IRC [21:16:28] *** xemacs has quit IRC [21:16:29] *** todd_dsm has quit IRC [21:16:29] *** peper has quit IRC [21:16:30] *** [TomTom] has quit IRC [21:16:32] *** nks has quit IRC [21:16:32] *** iridian has quit IRC [21:16:35] *** the_alien has quit IRC [21:16:35] *** digitalis has quit IRC [21:16:35] *** Laserbeak43 has quit IRC [21:16:35] *** Zenopus has quit IRC [21:16:35] *** paulweb515 has quit IRC [21:16:35] *** frey has quit IRC [21:16:37] *** obruT has quit IRC [21:16:37] *** krphop has quit IRC [21:16:37] *** Infinito has quit IRC [21:16:37] *** Shapeshifter has quit IRC [21:16:37] *** wifs has quit IRC [21:16:37] *** dosc^off has quit IRC [21:16:37] *** m0 has quit IRC [21:17:06] *** paulweb515 has joined #eclipse [21:17:06] *** NoobFukaure has joined #eclipse [21:17:06] *** [TomTom] has joined #eclipse [21:17:06] *** stimpie has joined #eclipse [21:17:06] *** rhk has joined #eclipse [21:17:06] *** dual has joined #eclipse [21:17:06] *** stibotrac has joined #eclipse [21:17:06] *** the_alien has joined #eclipse [21:17:06] *** nks has joined #eclipse [21:17:06] *** iridian has joined #eclipse [21:17:06] *** digitalis has joined #eclipse [21:17:06] *** punknroll_ has joined #eclipse [21:17:06] *** Laserbeak43 has joined #eclipse [21:17:06] *** crib has joined #eclipse [21:17:06] *** m0 has joined #eclipse [21:17:06] *** atpa8a has joined #eclipse [21:17:06] *** geoaxis has joined #eclipse [21:17:06] *** Doppp has joined #eclipse [21:17:06] *** xemacs has joined #eclipse [21:17:06] *** peper has joined #eclipse [21:17:06] *** todd_dsm has joined #eclipse [21:17:06] *** Zenopus has joined #eclipse [21:17:06] *** frey has joined #eclipse [21:17:06] *** dosc^off has joined #eclipse [21:17:06] *** wifs has joined #eclipse [21:17:06] *** Infinito has joined #eclipse [21:17:06] *** Shapeshifter has joined #eclipse [21:17:06] *** krphop has joined #eclipse [21:17:06] *** obruT has joined #eclipse [21:17:06] *** irc.freenode.net sets mode: +o paulweb515 [21:21:08] *** majkl578 has joined #eclipse [21:21:18] <majkl578> hi guys [21:21:27] *** gr00vy has quit IRC [21:21:40] <majkl578> i'm having really big troubles with eclipse [21:22:29] <majkl578> some buttons does not work - when I click on them, they do nothing, for instance "Open Perspective" button [21:24:05] <NoobFukaure> what OS? [21:24:08] <NoobFukaure> What does java -version say? [21:24:59] <majkl578> sorry, i forgot - Debian Linux i686; java version 1.6.0_16 [21:25:20] <NoobFukaure> hmm [21:25:32] *** Nyha has quit IRC [21:25:34] <NoobFukaure> Not sure, that should work swimmingly [21:25:39] <NoobFukaure> is it on a real low end machine? [21:25:52] <majkl578> it's laptop [21:25:58] <majkl578> dualcore cpu, 2gb ram [21:26:12] <NoobFukaure> those specs should be adequate as well [21:26:18] <NoobFukaure> Have you run a memory test? [21:26:24] <NoobFukaure> What version of eclipse? [21:26:51] <majkl578> the newest version of pdt [21:27:02] <majkl578> with no other plugins yet [21:27:23] <majkl578> just running it with default config [21:27:26] *** tr1gger has joined #eclipse [21:27:46] <NoobFukaure> Not sure, have you enabled the log output? [21:28:16] <majkl578> where? [21:28:38] <majkl578> or how :) [21:28:44] <Raff7> https://bugs.eclipse.org/bugs/show_bug.cgi?id=27663 charley it's the same bug [21:28:48] <Raff7> 4 years ago [21:29:05] <NoobFukaure> majkl578: add -log to the args I believe [21:30:27] *** atpa8a has quit IRC [21:31:03] *** Theravadan has joined #eclipse [21:31:47] <charley> Raff7: Hasn't been fixed yet? :( BTW have you tried launching in debug mode? [21:33:41] <majkl578> NoobFukaure: like "eclipse -log" ? [21:33:49] <NoobFukaure> yeah [21:34:21] <majkl578> and then? [21:35:05] *** buddhika_ has quit IRC [21:35:47] <NoobFukaure> majkl578: .metadata/.log I believe [21:36:01] *** buddhika_ has joined #eclipse [21:36:33] *** NoobFukaure has quit IRC [21:40:49] *** danf2 has joined #eclipse [21:41:38] <Raff7> charley no hasn't been fixed [21:41:46] <Raff7> and no i didn't tried [21:41:46] *** danf2 has left #eclipse [21:42:35] *** cr0mulent has joined #eclipse [21:46:56] <majkl578> :| [21:47:34] *** tr1gger has quit IRC [21:48:56] *** atpa8a has joined #eclipse [21:49:19] <majkl578> anyone can help? [21:54:46] <rhk> majkl578: are you running a version of eclipse that was installed with the distro, or one you downloaded from eclipse.org? [21:54:49] <rcjsuen> majkl578: What Eclipse version are you on? [21:54:53] <rcjsuen> And what is your GTK+ version [21:55:47] <charley> Raff7: OTOC, did it work in debug mode (if you've tried it out)? [21:55:50] <rhk> a lot of the packaged versions of eclipse I've seen for various distros are compiled with gcj, and didn't seem too reliable [21:55:54] <majkl578> rhk: downloaded from eclipse.org [21:56:30] <rhk> what version of debian? [21:56:35] <majkl578> rcjsuen: libgtk2.0-bin is in version 2.19.1 [21:56:42] <majkl578> rhk: unstable [21:56:44] <majkl578> =sod [21:56:45] <rcjsuen> is that even possible [21:56:46] <majkl578> sid* [21:56:47] <rcjsuen> 2.18.0 just came ou [21:57:00] <rcjsuen> like, on the 25th :o [21:57:01] <majkl578> 2.18 sorry :) [21:57:35] <rcjsuen> it's probably a 2.18 problem then [21:58:04] *** tnks has joined #eclipse [21:58:34] <tnks> I openned a tab (embedded browser) that killed eclipse. can't open eclipse anymore because it's trying to restore the session. [21:58:38] *** Nescafe has quit IRC [21:58:40] <cr0mulent> is anyone on snow leopard? could I ask someone to do this at terminal and post the out put? echo $JAVA_HOME [21:58:49] <tnks> how might I start eclipse without having to rebuild my workspace? [21:58:58] <tnks> just one bad tab, I think. [21:59:00] <cr0mulent> im having issues starting tomcat from eclipse since i upgraded to snow leopard [21:59:29] <majkl578> rcjsuen: well, what to do with it? [21:59:50] <rcjsuen> altho from what people have said [21:59:55] <rcjsuen> if they click a few more times those buttons work [22:00:02] <rcjsuen> i haven't heard cases where it "just doesn't work" I don't think [22:00:23] <rhk> odd bug [22:01:08] <majkl578> well, when I use "Show view as fast view", select one and click OK, it remains clicked forever and does nothing... [22:01:37] <rcjsuen> Anyway, please file a bug [22:02:06] <rcjsuen> majkl578: and what's your eclipse version again? i don't think we got that [22:02:08] <rcjsuen> unless I missed it [22:02:31] <majkl578> 3.5.0 [22:02:57] <rcjsuen> you can a) retry with 3.4.x and b) retry with gtk+ 2.16.x [22:03:05] <rcjsuen> I don't have problems with 2.16.6 [22:03:18] <rcjsuen> probably B would work, wouldn't really count on A [22:03:49] <rcjsuen> tnks: you mean a bad editor tab? [22:04:43] <rhk> cr0mulent: echo $JAVA_HOME was blank [22:04:50] <majkl578> rcjsuen: it'll be difficult to downgrade, it has lots of dependencies [22:04:59] <rcjsuen> yeah, I would imagine [22:05:00] <cr0mulent> thanks rhk [22:05:09] <rhk> cr0mulent: (got that indirectly from someone on IM - not on a mac right now) [22:05:24] <cr0mulent> oh, thanks :-) [22:05:32] <rcjsuen> you could, I suppose [22:05:36] <rcjsuen> compile gtk+ 2.16.x by hand [22:05:39] <rcjsuen> and then have Eclipse load that [22:05:42] <rcjsuen> i guess that might fly [22:06:01] *** punknroll_ has quit IRC [22:07:06] <luisgrin> we want to migrate some aplications. we want to start using some ui, we saw swt, we want to know which platform we can consider the best to start our project [22:07:15] <majkl578> should I fill in a bug report? [22:07:22] <rcjsuen> majkl578: Yes, that suggestion has not changed. [22:07:35] <rcjsuen> luisgrin: SWT is cross-platform, not sure what you are asking. [22:08:03] *** fsteeg_ has joined #eclipse [22:08:40] <luisgrin> i want to develop a desktop app, im using swt, is swt the best choice? [22:08:56] *** RobW has left #eclipse [22:09:53] <rcjsuen> luisgrin: Different people would give you different opinions. It'd depend on what you're looking for. [22:10:18] <rcjsuen> And being in the Eclipse channel you may get biased answers. I suggest you ask in ##java. [22:10:49] <luisgrin> ok, thanks a lot rcksuen [22:11:39] <tnks> rcjsuen: yeah, that's what I meant, but here's the deal. . . I got to talking to someone, for several minutes. . . and in the meantime. . . Eclipse just came back. [22:11:49] <tnks> so all the while, I guess it was working through something for real. [22:11:54] <rcjsuen> oic [22:12:01] <tnks> looked like it was just spinning, though. [22:12:48] <majkl578> compiling gtk+ 2.16 [22:13:07] <majkl578> how to force eclipse to use it? [22:13:47] *** fsteeg_ has quit IRC [22:14:10] *** Nebukadneza_ has joined #eclipse [22:14:11] <Nebukadneza_> oi [22:14:57] *** fsteeg has quit IRC [22:15:52] <rcjsuen> majkl578: probably thru clever usage of LD_LIBRARY_PATH or something like that, you could ask on the SWT newsgroup [22:15:58] *** Nebukadneza_ has left #eclipse [22:16:06] *** Resistance has quit IRC [22:16:22] *** Resistance2 has joined #eclipse [22:16:24] *** Resistance2 is now known as Resistance [22:18:48] *** plediii has quit IRC [22:31:16] *** Laserbeak431 has joined #eclipse [22:31:35] *** nessuno2_ has left #eclipse [22:32:01] *** ligi has joined #eclipse [22:39:35] *** bushwakko has joined #eclipse [22:40:05] *** ligi_ has quit IRC [22:44:23] *** brendon_work has quit IRC [22:46:51] *** Laserbeak43 has quit IRC [22:46:58] *** dpino has quit IRC [22:51:42] <cr0mulent> Could someone help me with this? Since upgrading to Snow Leopard I have not been able to load tomcat from Eclipse. I am using Tomcat 6.0.20 on Eclipse Ganymede. I have tried substituting Galileo and Tomcat 5.5, even erasing my Tomcat 6 directory and starting a fresh install but none of these things have worked. I have tried adding a -D32 command line argument to the jvm startup but this has failed as well. When I start tomc [22:51:42] <cr0mulent> from eclipse I am given this console output, which strangely doesnt get written to catalina.out, only the eclipse console. No war's are deployed and tomcat does not listen for war's dropped into the webapps directory even though unpack war is set to true in the tomcat configuration files. When I load tomcat from the CLI it works fine for the most part except for a small java script problem. Does anyone have any suggestions? [22:51:43] <cr0mulent> is the output for starting tomcat via eclipse, via the cli, the eclipse configuration and ps -ax | grep java http://pastebin.com/d71fa9829 [22:52:16] <rcjsuen> nitind? [22:52:22] <majkl578> rcjsuen: i dont understand the bug reporting system which is built-in eclipse [22:52:33] <rcjsuen> majkl578: then just use ~bugzilla the web ui [22:52:33] <Arbalest> Eclipse Bugzilla - https://bugs.eclipse.org/bugs/ [22:52:41] *** dmiles has joined #eclipse [22:52:57] *** dmiles_afk has quit IRC [22:54:24] <majkl578> i'll... i clicked "submit" twice and nothing has been submitted... [22:54:38] *** timothym has left #eclipse [22:56:28] <majkl578> is it IDE or UI problem? I suppose UI [22:58:07] <nitind> cr0mulent: Does your Servers view show the roght projects being deployed to the Tomcat instance? [22:58:56] *** bushwakko has quit IRC [22:59:59] <majkl578> rcjsuen: https://bugs.eclipse.org/bugs/show_bug.cgi?id=291257 [23:00:53] <rcjsuen> I'm not sure if "blocker" is appropriate. :o [23:01:10] <rcjsuen> So clicking 'X' on the tabs, nothing happens? [23:01:59] <majkl578> nope, i can click XX times and nothing... [23:02:25] <rcjsuen> yeah pretty sure i've not had people had that problem [23:03:30] *** mbrown7776_ has quit IRC [23:03:50] <majkl578> then it'll be invalid [23:03:58] <GoatCheez> i don't suppose anyone would be willing to hold my hand to figuring out why xdebug isn't working for me when i try to debug? a progress bar quickly disappears in the lower right and it goes away. nothing happens.... gone over tons of howtos.... it's remote debugging if that matters. eclipse pdt on win32 connecting to a fedora apache+xdebug [23:04:00] <rcjsuen> seems like different people are having different problems [23:05:17] *** prahal has joined #eclipse [23:05:17] *** NoobFukaire has quit IRC [23:06:02] *** NoobFukaire has joined #eclipse [23:06:52] <prahal> how could I get a backtrace of eclipse (jface/swt) and jni (gtk) in a raw ? jdb+gdb does not enable that except if one already knows where to put breakpoint (so the trace would be useless in this use case). [23:07:34] <prahal> are there any tool that enable this mix of code in backtrace ? for simple programs gcj+gdb is the anwser but for eclipse ? [23:08:20] <cr0mulent> nitind: my ant build moves .war's to the eclipse directory, I do not have the traditional tomcat/eclipse workflow [23:08:39] <rcjsuen> majkl578: you said 3.5.0 earlier but in the bug it is listed as 3.5.1 [23:08:50] <rcjsuen> majkl578: Help > About gives you 20090920-1017 [23:08:50] <rcjsuen> ? [23:09:30] <majkl578> uh [23:09:35] <majkl578> yep [23:10:40] <rcjsuen> o ok, then yeah it's 3.5.1 [23:10:58] <rcjsuen> a friend said they hope to have machines setup for modnay....of course, that doesn't help you in any way, shape, or form :( [23:12:06] <majkl578> i've updated from 3.5.0 to 3.5.1 before reporting. but same problem [23:12:24] <rcjsuen> yeah that probably wasn't gonna help [23:14:45] <majkl578> maybe i'll wait for a reply in bug report, dont want to spend lots of my time on setting older gtk [23:14:45] *** ekiczek has quit IRC [23:15:09] <rcjsuen> majkl578: Did you finish compiling? [23:15:13] <majkl578> yes [23:15:21] <majkl578> but i dont know what to do next :) [23:15:45] *** Phlogi has joined #eclipse [23:15:46] <rcjsuen> majkl578: I think you need to do [23:15:48] *** dsugar100 has quit IRC [23:16:04] <rcjsuen> well depends where the output went [23:16:09] <rcjsuen> if you even invoked make install [23:16:16] <rcjsuen> or if it's still in the folder [23:16:25] <majkl578> i didnt make install it [23:16:25] <rcjsuen> i think you need to do LD_LIBRARY_PATH=/your/gtk/libs/ ./eclipse [23:16:47] <majkl578> because it would override my actual gtk version [23:18:10] <rcjsuen> where did your so files go, i believe that's the path you need to use [23:18:29] <majkl578> i just used ./configure && make :) [23:18:36] <rcjsuen> well use a find | grep then I guess [23:19:36] <majkl578> http://pastebin.com/d419c6c24 [23:19:40] <rcjsuen> prahal: Still fighting your crasher? [23:20:21] *** rgrunber has quit IRC [23:20:54] *** dpino has joined #eclipse [23:21:51] <rcjsuen> majkl578: Try export GDK_NATIVE_WINDOWS=true and then starting Eclipse in that terminal (with the defined env var) and see if that helps. [23:23:24] <prahal> rcjsuen, yes ... currently stuck trying to find a pattern between both of the crashes (the bug is report though) [23:23:31] <rcjsuen> prahal: and i guess you can try that env var thing too [23:23:34] <prahal> it was not gtk [23:23:38] *** mcbulba_ has joined #eclipse [23:23:55] *** tnks has quit IRC [23:23:55] *** stimpie has quit IRC [23:23:56] *** dual has quit IRC [23:23:56] *** crib has quit IRC [23:23:56] *** rhk has quit IRC [23:23:56] *** stibotrac has quit IRC [23:23:57] *** geoaxis has quit IRC [23:23:57] *** todd_dsm has quit IRC [23:23:57] *** Doppp has quit IRC [23:23:57] *** xemacs has quit IRC [23:23:58] *** peper has quit IRC [23:23:58] *** atpa8a has quit IRC [23:23:58] *** buddhika_ has quit IRC [23:23:59] *** iridian has quit IRC [23:24:00] *** [TomTom] has quit IRC [23:24:00] *** nks has quit IRC [23:24:00] *** Phlogi has quit IRC [23:24:00] *** Laserbeak431 has quit IRC [23:24:00] *** digitalis has quit IRC [23:24:01] *** Zenopus has quit IRC [23:24:01] *** the_alien has quit IRC [23:24:01] *** paulweb515 has quit IRC [23:24:01] *** frey has quit IRC [23:24:02] *** obruT has quit IRC [23:24:02] *** krphop has quit IRC [23:24:02] *** Infinito has quit IRC [23:24:02] *** Shapeshifter has quit IRC [23:24:02] *** wifs has quit IRC [23:24:02] *** dosc^off has quit IRC [23:24:02] *** m0 has quit IRC [23:24:02] *** mcbulba has quit IRC [23:24:03] *** cmw72 has quit IRC [23:24:03] *** werdan7 has quit IRC [23:24:04] *** synx` has quit IRC [23:24:04] *** dogmeat has quit IRC [23:24:06] <rcjsuen> prahal: well yours was in pango right [23:24:07] <prahal> yes I did report the previous xcb issue too so [23:24:17] *** synx` has joined #eclipse [23:24:25] <majkl578> rcjsuen: wow, it works, cool & crazy [23:24:29] *** paulweb515 has joined #eclipse [23:24:29] *** Phlogi has joined #eclipse [23:24:29] *** Laserbeak431 has joined #eclipse [23:24:29] *** tnks has joined #eclipse [23:24:29] *** atpa8a has joined #eclipse [23:24:29] *** buddhika_ has joined #eclipse [23:24:29] *** [TomTom] has joined #eclipse [23:24:29] *** stimpie has joined #eclipse [23:24:29] *** rhk has joined #eclipse [23:24:29] *** dual has joined #eclipse [23:24:29] *** stibotrac has joined #eclipse [23:24:29] *** the_alien has joined #eclipse [23:24:29] *** nks has joined #eclipse [23:24:29] *** iridian has joined #eclipse [23:24:29] *** digitalis has joined #eclipse [23:24:29] *** crib has joined #eclipse [23:24:29] *** m0 has joined #eclipse [23:24:29] *** geoaxis has joined #eclipse [23:24:29] *** Doppp has joined #eclipse [23:24:29] *** xemacs has joined #eclipse [23:24:29] *** peper has joined #eclipse [23:24:29] *** todd_dsm has joined #eclipse [23:24:29] *** Zenopus has joined #eclipse [23:24:29] *** frey has joined #eclipse [23:24:29] *** dosc^off has joined #eclipse [23:24:29] *** wifs has joined #eclipse [23:24:29] *** Infinito has joined #eclipse [23:24:29] *** Shapeshifter has joined #eclipse [23:24:29] *** krphop has joined #eclipse [23:24:29] *** obruT has joined #eclipse [23:24:29] *** irc.freenode.net sets mode: +o paulweb515 [23:24:32] <rcjsuen> majkl578: Awesome. Please report on the bug. [23:24:33] <prahal> rcjsuen, yes both of the crashes I got are in pango (one is using the cancel or finish buttons, the second the close from the window manager [23:24:34] <dilton> lots of people left in the same second hmm [23:24:34] <rcjsuen> majkl578: I have to go now, good luck. [23:24:52] <rcjsuen> majkl578: I will triage the bug later (or someone else will), thanks for testing. [23:24:59] <prahal> the hs_err are not helpfull in that there is an interaction between threads and it only shows the main thread backtrace [23:25:14] *** rcjsuen has quit IRC [23:25:19] *** KleistDK has quit IRC [23:26:10] <majkl578> rcjsuen: thanks! [23:27:06] *** charley has quit IRC [23:28:36] *** majkl578 has left #eclipse [23:30:23] <prahal> ah GDK_NATIVE_WINDOWS , yes tried a few seconds ago and it did not helped [23:32:04] <prahal> I believe my issue is that somehow the shell destroy the display before destroying the widget items (and as gtk calls pango_layout_new via a few in and outs in the destroy scrollable widget process, missing a display make pango crashes [23:32:32] <prahal> though it would hepl a millionth times to have something to get better mixed backtrace of jni and java [23:32:36] *** akurtakov has quit IRC [23:43:05] *** Laserbeak43 has joined #eclipse [23:48:57] *** Laserbeak432 has joined #eclipse [23:50:03] *** wyvern` has quit IRC [23:50:56] *** Laserbeak431 has quit IRC [23:50:59] *** prahal has quit IRC [23:54:24] *** prahal has joined #eclipse [23:59:29] *** stijnbe has joined #eclipse