[00:01:15] <obsidian01> awesome [00:02:10] <obsidian01> 1 year old bug, status new [00:02:15] <obsidian01> quality control :) [00:02:24] <obsidian01> no fix in sight, I'm sure. [00:02:34] <obsidian01> Should I reinstall? What other URLs am I missing? [00:04:01] *** Theravadan has quit IRC [00:04:28] *** Laserbeak431 has quit IRC [00:05:16] *** mizako has left #eclipse [00:07:04] <vadi> Can I debug a Python webapp, which runs in a remote server, with my local eclipse? [00:08:15] *** gambler has joined #eclipse [00:10:58] *** allisterb has joined #eclipse [00:11:38] <obsidian01> beats me man [00:11:47] <obsidian01> i don't see anything about remote debugging in pydev [00:11:54] <obsidian01> but i don't know if there isn't some separate python web thing [00:12:03] <obsidian01> bleh python :( [00:12:09] <obsidian01> bleh python web app :( [00:13:23] *** obsidian01 has quit IRC [00:13:44] *** amnesic has quit IRC [00:15:30] *** amnesic has joined #eclipse [00:23:07] *** uebera|| has quit IRC [00:24:01] *** uebera|| has joined #eclipse [00:26:25] *** allisterb__ has quit IRC [00:37:53] <cr0mulent> vadi: look into aptana [00:38:14] *** barbar__conan has joined #eclipse [00:38:18] *** cr0mulent has quit IRC [00:38:40] *** barbar__conan has quit IRC [00:46:01] *** glima[AWAY] has quit IRC [00:51:00] *** Laserbeak43 has joined #eclipse [00:52:01] *** robinr has joined #eclipse [00:52:41] *** oisinh has quit IRC [00:54:40] *** lurkdev has quit IRC [01:01:34] *** allisterb_ has joined #eclipse [01:03:16] *** magnet has quit IRC [01:03:18] *** amnesic has quit IRC [01:09:26] *** tmartins_ has quit IRC [01:11:28] *** oisinh has joined #eclipse [01:12:18] *** Nescafe has quit IRC [01:12:46] *** Druid has joined #eclipse [01:18:18] *** kassens has joined #eclipse [01:18:35] *** allisterb has quit IRC [01:22:39] *** Druid_ has quit IRC [01:25:46] *** Guest55408 has joined #eclipse [01:30:35] *** tophyr has joined #eclipse [01:32:06] <tophyr> what is the url that holds eclipse's own plugins? apparently ubuntu cripples their eclipse package because they can't figure out how to include update urls by default, and i need org.eclipse.wst.xml.core [01:33:49] *** Powerplay has quit IRC [01:34:01] <rcjsuen> tophyr: see FAQ in channel topic, it'll list the problem and the default site [01:35:41] <tophyr> rcjsuen: grazie, found it just as you replied :) [01:42:16] *** tophyr has quit IRC [01:46:41] *** amnesic has joined #eclipse [01:57:59] *** oisinh has quit IRC [02:00:57] *** c0dem4gnetic has quit IRC [02:01:44] *** robinr has quit IRC [02:05:59] *** kassens has quit IRC [02:17:36] *** Guest55408 has quit IRC [02:19:05] *** lednerk has quit IRC [02:28:50] *** tmartins has joined #eclipse [02:46:07] *** ta1yn has joined #eclipse [02:48:19] <ta1yn> greetings [02:48:41] <ta1yn> i've got a question about setting event.doit = false for an swt treeitem [02:49:01] <ta1yn> i'm guessing treeitems aren't one of the widgets that support that? [02:49:19] <rcjsuen> Not every event can be intercepted I don't think. [02:50:52] <ta1yn> thanks rcjsuen, all i'm trying to do is prevent the item from expanding if the subitems couldn't be evaluated. even calling treeitem.setexpanded(false) from within the expand listener doesn't collapse it again [02:51:06] <ta1yn> is there a 'proper' way to do this? [02:51:28] <rcjsuen> So what happens right now exactly [02:55:06] <ta1yn> i'm using the expand listener to perform lazy evaluation of a tree (files specifically). if the connection to one of the files requires authentication (over smb:// using jcifs), but the user cancels out of the authentication or provides incorrect credentials, the treeitem should still be able to be reexpanded (rather than being expanded, with no children) [02:55:47] <rcjsuen> Are you using a TreeViewer? [02:56:25] <ta1yn> naa, just the org.eclipse.swt.widgets.Tree [02:56:52] <ta1yn> that one's the jface tree, right? [02:56:59] <rcjsuen> Can't you just add back a TreeItem child to the parent again so it can be expanded again? [02:57:37] <ta1yn> i'm doing that, but it doesn't recollapse (i'm adding a dummy so it can be rexpanded, but you can see the dummy item) [02:59:11] *** Theravadan has joined #eclipse [02:59:14] <rcjsuen> we'll have to see some code, and screenshots i guess [03:01:35] *** LongBeach has quit IRC [03:07:56] <ta1yn> what would be the best way to send over some test code [03:08:10] <rcjsuen> use a ~pastebin and an ~imagebin [03:08:11] <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 [03:08:11] <Arbalest> Please upload your screenshots online and then paste the link back to the channel - http://imagebin.org/index.php?page=add - http://www.freeimagehosting.net/ - http://imagebin.ca/upload.php - http://imageshack.us/ [03:11:05] <ta1yn> here's test code: http://pastebin.com/d4238cfc [03:12:04] <rcjsuen> create the dummy item later instead? [03:13:21] <ta1yn> one: http://i38.tinypic.com/fc1um9.jpg [03:13:21] <ta1yn> two: http://i36.tinypic.com/mcd5vm.jpg [03:13:23] <ta1yn> screenshots [03:13:52] <ta1yn> i thought of that but i;m not sure when - i want this all to be triggered by expansion of the treeitem [03:14:15] <rcjsuen> use display's asyncExec method [03:14:15] <ta1yn> after expanding and calling setexpanded(false), i'd expect the second screenshot to look like the first did [03:15:04] <ta1yn> from where, inside the expand listener's handleevent() ? [03:15:12] <rcjsuen> Try it and see. [03:15:20] <ta1yn> hmm ok [03:15:22] *** decker has quit IRC [03:15:38] * rcjsuen does not have his workspace open. [03:16:19] <ta1yn> holy crap it worked ^^ [03:16:20] *** Shown has quit IRC [03:16:37] <ta1yn> thanks a lot [03:17:11] <ta1yn> i would've thought it had to be syncexec'ed [03:17:23] <rcjsuen> Feel free to try that too [03:17:27] <rcjsuen> But I can tell it will fail. [03:17:54] <ta1yn> yea - that's pretty much what it was already doing, ya [03:18:05] <ta1yn> ? [03:18:14] <rcjsuen> in this scenario yes [03:18:15] <ta1yn> it just does the same thing [03:19:13] <ta1yn> ah, well thanks a lot - i've just wasted a few hours trying to figure this out XP [03:19:58] <ta1yn> cheers [03:20:06] *** ta1yn has left #eclipse [03:27:46] *** deSilva has quit IRC [03:51:25] *** nmatrix9 has quit IRC [03:54:24] *** nmatrix9 has joined #eclipse [03:55:31] *** [TomTom] has joined #eclipse [04:12:08] *** TomTom has quit IRC [04:24:49] *** ExElNeT_ has quit IRC [04:29:18] *** S1kx has joined #eclipse [04:31:33] <dmiles_afk> i am trying to build a plugin example and run it.. i am on 64bit wondows .. how do i get arround http://libomv.pastebin.ca/1661699? [04:33:15] <rcjsuen> get a 32-bit vm instead i guess? [04:34:03] <dmiles_afk> that wht i am trying.. it's wierd when downloading windows JDK.. it seems to never give a platform choice [04:34:27] <dmiles_afk> i got luckuy i guess accidently having a 634bit one ;) [04:35:00] <dmiles_afk> i've seen people wih 32bit struggle to get a 64bit one in the past [04:35:04] <rcjsuen> http://java.sun.com/javase/downloads/widget/jdk6.jsp can't you just select from the combo? [04:35:47] <dmiles_afk> perfext.. thanks.. the ther downlaod pae i was one didnt distinguish between the two [04:36:24] <dmiles_afk> this one you gave me just now must been how i originaly force a 64bit one [04:38:27] <dmiles_afk> cool.. getting a 32bit one now [04:39:12] <dmiles_afk> wierd that my eclpse is runing just fine and happy.. just issues DEbug -> "Run as Eclipse Apllication" [04:42:26] <dmiles_afk> so rcjsuen: thx .. the 32bit jvm in the startup config should be enough [04:49:57] <Druid> hm [04:50:03] <Druid> anyone using zend? [04:51:07] *** ralf_e has quit IRC [05:11:02] *** allisterb has joined #eclipse [05:22:38] *** rcjsuen has quit IRC [05:22:58] *** da_krowa has quit IRC [05:25:33] *** allisterb_ has quit IRC [05:26:34] *** allisterb_ has joined #eclipse [05:33:19] *** allisterb__ has joined #eclipse [05:33:56] *** atpa8a has quit IRC [05:40:42] *** allisterb_ has quit IRC [05:41:08] *** allisterb_ has joined #eclipse [05:41:54] *** allisterb has quit IRC [05:44:20] *** allisterb has joined #eclipse [05:47:06] *** parasol has joined #eclipse [05:54:41] *** Theravadan has quit IRC [05:55:20] *** allisterb__ has quit IRC [05:59:35] *** nmatrix9 has quit IRC [06:00:49] *** allisterb_ has quit IRC [06:03:57] *** docenergyzero has joined #eclipse [06:04:17] *** allisterb has quit IRC [06:06:15] *** allisterb has joined #eclipse [06:07:48] *** tmartins has quit IRC [06:08:34] *** tr1gger has joined #eclipse [06:19:27] *** docenergyzero has left #eclipse [06:39:12] *** nmatrix9 has joined #eclipse [06:42:16] *** armence has quit IRC [06:48:21] *** armence has joined #eclipse [07:05:27] *** phoenixz has joined #eclipse [07:35:48] *** armence has quit IRC [07:45:55] *** phoenixz has quit IRC [07:49:40] *** allisterb has quit IRC [08:14:01] *** Theravadan has joined #eclipse [08:25:37] *** [TomTom] is now known as TomTom [08:27:41] *** __lupo__ has joined #eclipse [08:28:11] <__lupo__> hi all, does anybody use eclipse from ubuntu repository ? [08:28:50] *** robinr has joined #eclipse [08:35:28] *** JabDesign has joined #eclipse [09:00:17] *** JabDesign has quit IRC [09:00:53] *** xor has joined #eclipse [09:01:02] *** xor has left #eclipse [09:10:48] *** nmatrix9 has quit IRC [09:13:06] *** parasol has quit IRC [09:18:46] *** tr1gger has quit IRC [09:18:46] *** odin__ has quit IRC [09:18:46] *** cantoma has quit IRC [09:18:48] *** gambler has quit IRC [09:18:49] *** philk_ has quit IRC [09:18:49] *** EricInBNE has quit IRC [09:18:49] *** srcerer has quit IRC [09:18:49] *** ReneP has quit IRC [09:18:49] *** Echidna has quit IRC [09:18:49] *** dgts has quit IRC [09:18:49] *** Pikachu_2014 has quit IRC [09:18:49] *** booyab has quit IRC [09:18:50] *** meeper has quit IRC [09:18:50] *** the_alien has quit IRC [09:18:50] *** konigsberg has quit IRC [09:18:50] *** krphop_ has quit IRC [09:18:50] *** prince has quit IRC [09:18:50] *** Ian_Corne has quit IRC [09:18:50] *** mcbulba has quit IRC [09:18:50] *** francis4 has quit IRC [09:19:09] *** karltk_ has quit IRC [09:19:09] *** debio264 has quit IRC [09:19:09] *** adante has quit IRC [09:19:09] *** alankila has quit IRC [09:19:09] *** paulweb515 has quit IRC [09:19:09] *** Infinito has quit IRC [09:19:09] *** [-jon-] has quit IRC [09:19:09] *** trac^ has quit IRC [09:19:09] *** elvedin has quit IRC [09:19:09] *** maxb has quit IRC [09:19:09] *** guyzmo has quit IRC [09:19:09] *** wifs has quit IRC [09:19:09] *** Arbalest has quit IRC [09:19:09] *** BearPerson has quit IRC [09:19:09] *** Druid has quit IRC [09:19:10] *** ycy has quit IRC [09:19:10] *** Nurbs has quit IRC [09:19:10] *** felipe` has quit IRC [09:19:10] *** Cobi has quit IRC [09:19:10] *** evil_gordita has quit IRC [09:19:11] *** bois has quit IRC [09:19:11] *** ramon1 has quit IRC [09:19:11] *** smiler has quit IRC [09:19:11] *** loesh has quit IRC [09:19:48] *** tr1gger has joined #eclipse [09:19:48] *** Druid has joined #eclipse [09:19:48] *** gambler has joined #eclipse [09:19:48] *** philk_ has joined #eclipse [09:19:48] *** ReneP has joined #eclipse [09:19:48] *** Echidna has joined #eclipse [09:19:48] *** odin__ has joined #eclipse [09:19:48] *** dgts has joined #eclipse [09:19:48] *** cantoma has joined #eclipse [09:19:48] *** Pikachu_2014 has joined #eclipse [09:19:48] *** Ian_Corne has joined #eclipse [09:19:48] *** booyab has joined #eclipse [09:19:48] *** EricInBNE has joined #eclipse [09:19:48] *** meeper has joined #eclipse [09:19:48] *** ycy has joined #eclipse [09:19:48] *** the_alien has joined #eclipse [09:19:48] *** srcerer has joined #eclipse [09:19:48] *** konigsberg has joined #eclipse [09:19:48] *** krphop_ has joined #eclipse [09:19:48] *** prince has joined #eclipse [09:19:48] *** BearPerson has joined #eclipse [09:19:48] *** trac^ has joined #eclipse [09:19:48] *** maxb has joined #eclipse [09:19:48] *** karltk_ has joined #eclipse [09:19:48] *** guyzmo has joined #eclipse [09:19:48] *** debio264 has joined #eclipse [09:19:48] *** wifs has joined #eclipse [09:19:48] *** mcbulba has joined #eclipse [09:19:48] *** elvedin has joined #eclipse [09:19:48] *** alankila has joined #eclipse [09:19:48] *** Infinito has joined #eclipse [09:19:48] *** Arbalest has joined #eclipse [09:19:48] *** adante has joined #eclipse [09:19:49] *** francis4 has joined #eclipse [09:19:49] *** paulweb515 has joined #eclipse [09:19:49] *** [-jon-] has joined #eclipse [09:19:49] *** Nurbs has joined #eclipse [09:19:49] *** evil_gordita has joined #eclipse [09:19:49] *** Cobi has joined #eclipse [09:19:49] *** felipe` has joined #eclipse [09:19:49] *** bois has joined #eclipse [09:19:49] *** ramon1 has joined #eclipse [09:19:49] *** loesh has joined #eclipse [09:19:49] *** smiler has joined #eclipse [09:19:49] *** kaje has quit IRC [09:27:23] *** werdan7 has quit IRC [09:27:36] *** LongBeach has joined #eclipse [09:28:04] *** werdan7 has joined #eclipse [09:30:40] *** robinr has quit IRC [09:38:21] *** tr1gger has quit IRC [09:38:22] *** odin__ has quit IRC [09:38:22] *** cantoma has quit IRC [09:38:22] *** philk_ has quit IRC [09:38:38] *** EricInBNE has quit IRC [09:38:38] *** gambler has quit IRC [09:38:39] *** srcerer has quit IRC [09:38:39] *** meeper has quit IRC [09:38:39] *** dgts has quit IRC [09:38:39] *** Echidna has quit IRC [09:38:39] *** ReneP has quit IRC [09:38:39] *** konigsberg has quit IRC [09:38:39] *** Pikachu_2014 has quit IRC [09:38:40] *** booyab has quit IRC [09:38:40] *** the_alien has quit IRC [09:38:40] *** mcbulba has quit IRC [09:38:40] *** Ian_Corne has quit IRC [09:38:41] *** francis4 has quit IRC [09:38:41] *** krphop_ has quit IRC [09:38:41] *** trac^ has quit IRC [09:38:41] *** karltk_ has quit IRC [09:38:41] *** Infinito has quit IRC [09:38:41] *** alankila has quit IRC [09:38:41] *** [-jon-] has quit IRC [09:38:41] *** maxb has quit IRC [09:38:41] *** guyzmo has quit IRC [09:38:41] *** wifs has quit IRC [09:38:41] *** elvedin has quit IRC [09:38:42] *** Arbalest has quit IRC [09:38:42] *** paulweb515 has quit IRC [09:38:42] *** debio264 has quit IRC [09:38:42] *** adante has quit IRC [09:38:42] *** BearPerson has quit IRC [09:38:42] *** prince has quit IRC [09:38:42] *** ycy has quit IRC [09:38:42] *** Nurbs has quit IRC [09:38:42] *** Druid has quit IRC [09:38:42] *** felipe` has quit IRC [09:38:42] *** Cobi has quit IRC [09:38:42] *** ramon1 has quit IRC [09:38:42] *** bois has quit IRC [09:38:43] *** smiler has quit IRC [09:38:43] *** evil_gordita has quit IRC [09:38:43] *** loesh has quit IRC [09:43:44] *** Theravadan has quit IRC [09:55:40] *** tom17bombadil has joined #eclipse [10:03:19] *** reid05 has quit IRC [10:03:47] *** reid05 has joined #eclipse [10:14:38] *** sama has joined #eclipse [10:21:52] *** tom17bombadil has quit IRC [10:27:47] *** BearPerson has joined #eclipse [10:27:47] *** trac^ has joined #eclipse [10:27:47] *** maxb has joined #eclipse [10:27:47] *** karltk_ has joined #eclipse [10:27:47] *** guyzmo has joined #eclipse [10:27:47] *** debio264 has joined #eclipse [10:27:47] *** wifs has joined #eclipse [10:27:47] *** mcbulba has joined #eclipse [10:27:47] *** elvedin has joined #eclipse [10:27:47] *** alankila has joined #eclipse [10:27:47] *** Infinito has joined #eclipse [10:27:47] *** Arbalest has joined #eclipse [10:27:47] *** adante has joined #eclipse [10:27:47] *** francis4 has joined #eclipse [10:27:47] *** paulweb515 has joined #eclipse [10:27:47] *** [-jon-] has joined #eclipse [10:27:47] *** prince has joined #eclipse [10:27:47] *** krphop_ has joined #eclipse [10:27:47] *** Ian_Corne has joined #eclipse [10:27:47] *** TigerDuck has joined #eclipse [10:27:47] *** the_alien has joined #eclipse [10:27:47] *** meeper has joined #eclipse [10:27:47] *** booyab has joined #eclipse [10:27:47] *** Pikachu_2014 has joined #eclipse [10:27:47] *** dgts has joined #eclipse [10:27:47] *** Echidna has joined #eclipse [10:27:47] *** ReneP has joined #eclipse [10:27:47] *** Lorthirk has joined #eclipse [10:27:47] *** cantoma has joined #eclipse [10:27:47] *** odin__ has joined #eclipse [10:27:47] *** tr1gger has joined #eclipse [10:27:47] *** smiler has joined #eclipse [10:27:47] *** loesh has joined #eclipse [10:27:47] *** ramon1 has joined #eclipse [10:27:48] *** bois has joined #eclipse [10:27:48] *** evil_gordita has joined #eclipse [10:27:48] *** felipe` has joined #eclipse [10:27:48] *** Nurbs has joined #eclipse [10:27:48] *** ycy has joined #eclipse [10:27:48] *** Druid has joined #eclipse [10:27:48] *** srcerer has joined #eclipse [10:27:48] *** EricInBNE has joined #eclipse [10:27:48] *** philk_ has joined #eclipse [10:27:48] *** gambler has joined #eclipse [10:27:48] *** konigsberg has joined #eclipse [10:32:19] *** navi_sir has joined #eclipse [10:35:06] *** navi_sir has left #eclipse [10:40:08] *** sama has quit IRC [10:45:28] *** njbartlett has quit IRC [10:46:00] *** __lupo__ has quit IRC [10:47:01] *** philk__ has joined #eclipse [10:55:25] *** philk_ has quit IRC [11:10:01] *** galpin has joined #eclipse [11:10:17] <galpin> Does anybody have any ideas on this question: http://www.eclipse.org/forums/index.php?t=msg&th=157326&start=0&S=518592c559c7452fafd2bc0f20170cfb [11:10:24] *** galpin is now known as epoch [11:10:38] *** epoch is now known as ep0ch [11:13:56] *** TigerDuck has left #eclipse [11:17:43] *** ep0ch has quit IRC [11:20:45] *** oisinh has joined #eclipse [11:37:05] *** deSilva has joined #eclipse [11:37:11] *** deSilva has quit IRC [11:37:59] *** deSilva has joined #eclipse [12:01:28] *** tromey` has quit IRC [12:17:38] *** Freak5 has joined #eclipse [12:20:01] <Freak5> I addet this path "C:\Programmieren\GTK\lib" and the libary "gdk-win32-2.0.lib" by using the Project->Linker->Libraries option, but I still get the message [12:20:01] <Freak5> C:\Programmieren\mingw\bin\..\lib\gcc\mingw32\3.4.5\..\..\..\..\mingw32\bin\ld.exe: cannot find -lgtk-win32-2.0.lib [12:20:01] <Freak5> It worked perfectly by using MSVC++ ( although that resulted into runtime errors ) [12:20:14] <Freak5> How do I add a libary correctly? [12:20:28] <Freak5> I thought telling the path and the name of the libary schould work? [12:20:36] <Freak5> Did I use the wrong options? [12:21:04] <Freak5> As you might noticed I'm using the C/C++ mod [12:25:34] <Freak5> http://pastebin.com/m6d82fbc1 [12:25:41] <Freak5> that's the complete error. [12:26:01] <Freak5> its actually quite short and it should be visible if I set the path corectly or not [12:33:33] <Freak5> ok, i just erased the ending ( 'lib' ). Now it compiles, but the programm just closes instantly [12:55:27] *** da_krowa has joined #eclipse [13:02:56] *** Shown has joined #eclipse [13:12:55] *** da_krowa has quit IRC [13:13:23] *** pschriner has joined #eclipse [13:16:12] *** dgts2 has joined #eclipse [13:19:37] *** rcjsuen has joined #eclipse [13:21:38] *** dgts has quit IRC [13:24:45] *** vwegert has joined #eclipse [13:27:33] <vwegert> Hi all. I have an issue with p2 - it doesn't seem to recognize suff i place in the dropins folder. How do I debug this? [13:33:15] <rcjsuen> You could try using -console and check if it shows up in the OSGi console. [13:33:20] <rcjsuen> Tho when it's failed for me it didn't show up there. [13:37:15] <vwegert> rcjsuen: doesn't show up, no error messages with -consoleLog [13:37:29] *** Nescafe has joined #Eclipse [13:39:56] <rcjsuen> Dunno, that's the same thing that happened to me. [13:41:45] <vwegert> rcjsuen: I'll try -clean although that shouldn't be necessary according to the docs [13:42:18] <vwegert> doesn't work either [13:42:58] <Druid> hm, is anyone using actually zend eclipse? [13:44:34] *** the_alien_ has joined #eclipse [13:46:15] *** SpektoM has joined #eclipse [13:54:10] *** vadi has left #eclipse [13:55:40] *** the_alien has quit IRC [13:55:40] *** the_alien_ is now known as the_alien [14:00:48] *** allisterb has joined #eclipse [14:12:18] *** RandomTask has joined #eclipse [14:22:13] <vwegert> rcjsuen: very weird. Can't seem to reproduce the issue with new installs, but I can't fix it in the old install either [14:28:25] *** LongBeach has quit IRC [14:28:30] *** tmartins has joined #eclipse [14:30:12] *** tmartins has quit IRC [14:33:15] *** Lorthirk has quit IRC [14:38:36] *** galpin has joined #eclipse [14:48:46] *** galpin has quit IRC [14:58:23] *** mbana has joined #eclipse [15:09:17] *** pschriner has quit IRC [15:38:42] *** njbartlett has joined #eclipse [15:47:40] *** Laserbeak43 has quit IRC [16:01:38] *** Hanumaan has joined #eclipse [16:02:53] *** tarzan has joined #eclipse [16:04:35] *** EricInBNE_ has joined #eclipse [16:04:57] *** gambler_ has joined #eclipse [16:08:14] *** gambler has quit IRC [16:08:15] *** EricInBNE has quit IRC [16:13:39] *** njbartlett has quit IRC [16:13:50] <tarzan> hi... i have a bundle exporting junit.framework package... when running equinox, i can see that this package is exportes as it should be (using the packages command). however in eclipse i can't import classes from this package [16:14:16] <tarzan> i can add the import to my bundle using the ui, however the classes in this package are not found [16:32:45] *** ldiamond has joined #eclipse [16:41:05] *** tom17bombadil has joined #eclipse [16:41:42] *** LongBeach has joined #eclipse [16:43:08] *** nmatrix9 has joined #eclipse [16:53:23] *** rhk has joined #eclipse [17:37:59] *** Laserbeak43 has joined #eclipse [17:46:51] *** SpektoM has quit IRC [17:48:08] *** robinr has joined #eclipse [17:48:43] *** nlc has joined #eclipse [17:51:28] *** sama has joined #eclipse [18:12:11] *** magnet has joined #eclipse [18:19:15] *** nico__ has joined #eclipse [18:19:35] *** Powerplay has joined #eclipse [18:26:21] *** phil123 has joined #eclipse [18:26:27] <phil123> whats the heap? [18:27:58] <rcjsuen> depends on the context you speak of, http://en.wikipedia.org/wiki/Heap [18:29:15] *** phil123 has left #eclipse [18:30:24] *** dgts2 has quit IRC [18:37:18] *** nico__ has quit IRC [18:38:33] *** volodya has quit IRC [18:49:47] *** mbana has quit IRC [18:50:28] *** anderslinden has joined #eclipse [18:50:53] <anderslinden> I am trying to run a j2me midlet in eclipseme, but all I get is a cell phone window and a hanged eclipse [18:51:10] <anderslinden> What is a good channel for j2me development in eclipse? [18:52:14] <deSilva> I dont know of such channel, so I guess this is it.. [18:52:23] <anderslinden> :) [18:52:51] <anderslinden> Maybe I should start visit forums more than I do [18:53:08] *** EricInBNE_ has quit IRC [18:55:15] <deSilva> might be fruitful, yes [18:56:15] *** robinr has quit IRC [19:12:36] *** tangent3 has quit IRC [19:12:46] *** tangent3 has joined #eclipse [19:13:42] *** tangent3 has quit IRC [19:14:48] *** Mlouis has joined #eclipse [19:15:10] *** Mlouis has left #eclipse [19:15:19] <anderslinden> When I try to debug a midlet in eclipse, it seems that no arguments was sent to the emulator program, so my application did not pop up in it, instead eclipse hanged [19:15:21] <anderslinden> Strange stuff [19:25:06] <nlc> arguments from command line or an input expected in the program runtime ? [19:25:27] <anderslinden> Seems that the emulator takes a lot of command line arguments [19:26:33] <anderslinden> Hm, but when I run it in the right way, it actually seems to be find, when I instead of pressing F11 right clicks the application and debug as->emulator j2me midlet [19:26:39] <anderslinden> to be fine [19:26:48] <anderslinden> But then eclipse hangs as previously mentioned [19:27:04] <anderslinden> The application comes up, no complains about missing command line arguments what I can see [19:27:09] <anderslinden> But no application is actually runned [19:27:23] <anderslinden> Maybe because eclipse is hanging [19:28:51] <nlc> maybe you doesn't configure the "Run as" such as you set the "Debug as" [19:30:11] *** volodya has joined #eclipse [19:30:13] <anderslinden> Hm [19:30:18] <anderslinden> i have not tried to run as any time [19:30:37] <anderslinden> I have tried F11 and the way I mentioned [19:48:25] *** uptownben has joined #eclipse [19:49:20] <uptownben> Hey all. I want to use eclipse on my mac and I do PHP and Android dev. will I have a problem using eclipse + PDT + ADT ? [19:53:48] *** debio264 has quit IRC [19:54:31] *** the_pers0n has joined #eclipse [20:06:11] *** TomTom has quit IRC [20:13:30] *** armence has joined #eclipse [20:15:12] *** Shown has quit IRC [20:15:13] *** amnesic has quit IRC [20:15:47] *** Arrowhead has joined #eclipse [20:19:38] *** armence has quit IRC [20:22:49] *** amnesic has joined #eclipse [20:23:24] *** Shown has joined #eclipse [20:24:13] *** Arrowhead has left #eclipse [20:30:41] *** armence has joined #eclipse [20:40:09] *** multiHYP has joined #eclipse [20:40:50] <multiHYP> is there any svn capable free server that i could create projects but add password protection to it, so that only people i want have access to the source code and the executables? [20:41:02] *** scorphus has joined #eclipse [20:41:04] <multiHYP> if google code allows that, let me know please! [20:42:05] *** aksn has joined #eclipse [20:45:33] *** volodya has quit IRC [20:47:10] <multiHYP> no suggestion eclipse channel? [20:47:45] *** aksn has quit IRC [20:47:57] *** dmiles_afk has quit IRC [20:47:57] *** Powerplay has quit IRC [20:49:00] <Infinito> I don't know about free servers.. I always just set up my own, as do I suppose a lot of the people here [20:49:15] <Infinito> maybe you can find free hosting and then set up an svn repository there [20:49:47] <the_pers0n> eclipse is gewd [20:49:58] *** atpa8a has joined #eclipse [20:51:41] <Infinito> it is common to make svn repositories web-available through apache, you can set up passwords, restring/allow access by ip range [20:52:04] <Infinito> or specific ips etc, the works. [20:52:55] <Infinito> *restring = restrict [20:56:11] *** tr1gger has quit IRC [20:57:08] *** cnkurzke has joined #eclipse [21:02:52] *** hefty has joined #eclipse [21:11:47] *** xor has joined #eclipse [21:12:09] <xor> hi [21:12:16] *** xor is now known as Guest2885 [21:12:34] <Guest2885> does anyone know what is the default run configuration for a plugin project ? [21:13:29] <rcjsuen> i guess the default would be to just make a new 'Eclipse APplication' launch config and go from there [21:15:37] <Guest2885> thanks it's not a RCP launch config is it ? [21:15:54] <Guest2885> i just created a new project from the template hello world command [21:16:04] <Guest2885> and there's no new config created with it... [21:16:19] <rcjsuen> when you create a new plug-in project, a new config is not generated [21:17:58] *** aksn has joined #eclipse [21:19:50] *** atpa8a has quit IRC [21:21:41] <Guest2885> oh.. [21:21:57] <Guest2885> so can i run a plugin with the eclipse application launch config ? [21:22:33] <rcjsuen> yes [21:27:00] <hefty> hi [21:27:56] <hefty> my internal eclipse editor is not showing syntax highlightning anymore via my CDT perspective. I already did reset the [21:28:16] <hefty> I already reset the semantic syntax highlithning. DId anyone saw this before? [21:28:43] <multiHYP> thanks guys [21:29:46] <multiHYP> i think by using shell to reset my svn on sourceforge i screwed things up [21:30:25] <multiHYP> now my svn client, svnx is complaining that the revisions are not existing on the server, which is what i wanted, but the svn is not usable anymore :( [21:31:56] <the_pers0n> Hi. I'm in a java class, and our instructor is teaching us how to program, i'm highly noob, but i want to learn fast. We're using this little program called "TextPad", which has a link to java compiler and run programs automaticly in windows CMD. Thing is, i've heard eclipse is better. I downloaded it, but i don't know how to integrate this little java program that our teacher gave us to read input from the keyboard which is called InputKb.java and Inp [21:33:30] <rcjsuen> I'd stick with TextPad if I were you (I used that too in high school). [21:33:38] <rcjsuen> Does the code us System.console()? [21:34:51] *** Nescafe has quit IRC [21:35:06] *** plediii has quit IRC [21:35:35] <the_pers0n> rcjsuen, Do you mean InputKb.java's code?. I'm reading it and i don't see such line [21:35:36] *** ecfuser60216 has joined #eclipse [21:36:03] *** ecfuser89387 has joined #eclipse [21:36:12] <rcjsuen> and your message got cut off, btw [21:37:09] <ecfuser89387> fs [21:37:10] <ecfuser60216> hallo [21:37:46] <multiHYP> rcjsuen: whats the best solution to add svn to my heavy cocoa 32bit eclipse for java ide that is already loaded with the latest cdt? [21:38:15] *** Powerplay has joined #eclipse [21:38:16] <rcjsuen> check eric rizzo's blog, he has instructions for something like that [21:38:32] <multiHYP> cheers [21:40:24] <the_pers0n> rcjsuen Ok: which is called InputKb.java and InputKb.class. In textpad i only have to paste the InputKb.java file in the same directory where the class is, and call it with InputKb.read(), but how can i do that with eclipse? [21:40:54] <rcjsuen> you don't, you make a java project and put your source files in the source folder [21:41:11] <the_pers0n> And i mean i only have to paste it in the same dir where the class that i'm working on right now is. And call it in the code using InputKb.read() [21:41:44] <the_pers0n> rcjsuen, So i only have to paste InputKb.java in the src directory of my project? [21:41:58] <rcjsuen> some tutorials http://eclipsetutorial.sourceforge.net/ vogella.de [21:42:01] *** ecfuser89387 has quit IRC [21:42:28] *** s1kx- has joined #eclipse [21:42:48] <the_pers0n> rcjsuen, Well thanks but i just don't have the time right now read tutorials. I'm studying maths at the same time :( [21:42:58] <the_pers0n> Well i guess i'll stick to textpad [21:42:58] <the_pers0n> thanks [21:44:32] *** ecfuser60216 has quit IRC [21:45:28] <Guest2885> hmm how to create a "eclipse application" launch config? i noticed i have already a such config but when i launch my "hello world command" with it, eclipse says it cannot launch. below are the dozens of messages about "bundle org.eclipse.mylyn.xxxx was not resolved" [21:46:07] <rcjsuen> you can just make new ones in the launch config dialog [21:46:22] *** armence has quit IRC [21:49:59] <Guest2885> should i hmm [21:50:09] <Guest2885> click on the new button? [21:50:24] <Guest2885> when i do, it says "New_configuration"..... [21:50:34] <Guest2885> by the way thank you so much rcjsuen :D [21:51:16] <multiHYP> how can i reset my local svn client to match the one that is reset on the server? [21:51:24] *** mbana has joined #eclipse [21:57:11] *** armence has joined #eclipse [21:58:01] *** robinr has joined #eclipse [21:58:13] *** S1kx has quit IRC [22:05:31] *** nlc has quit IRC [22:05:41] *** Guest2885 has quit IRC [22:07:19] *** tom17bombadil has quit IRC [22:13:03] *** armence has quit IRC [22:19:56] *** vwegert has quit IRC [22:23:51] *** mwg has joined #eclipse [22:23:53] <mwg> Hi [22:24:43] <mwg> I'm trying to delete the multiple selected items from a treeviewer, storing selected items in an IList<> (using the sleection listener) but after each remove(), the selection is updated and no more nodes are removed [22:24:56] <mwg> What is the best way to delete multiple selected nodes from a treeviewer? [22:25:19] <rcjsuen> isn't there a remove method that takes an array? [22:25:39] <mwg> I thought so but that diesn't seem to work as expected! [22:26:01] *** stijnbe has joined #eclipse [22:26:16] <rcjsuen> if it didn't work that'd be a major bug [22:26:29] <mwg> Let me look into it [22:26:49] *** da_krowa has joined #eclipse [22:26:55] *** NoobFukaire has joined #eclipse [22:29:11] <mwg> As another question [22:29:17] <mwg> If I have a List<T> [22:29:40] <mwg> And I make it an observablelist using IListProperty.observe() [22:29:48] <mwg> Will it automatically update on remove/add? [22:29:52] <mwg> (fire events) [22:30:10] *** tr1gger has joined #eclipse [22:30:21] *** Nescafe has joined #Eclipse [22:33:36] * multiHYP good night all [22:33:39] *** multiHYP has left #eclipse [22:36:58] *** allisterb_ has joined #eclipse [22:44:23] *** armence has joined #eclipse [22:53:42] *** allisterb has quit IRC [22:58:19] *** nmatrix9 has quit IRC [22:58:50] *** robinr has quit IRC [22:58:55] *** ExElNeT has joined #eclipse [23:03:02] *** LongBeach has quit IRC [23:05:01] *** stijnbe has quit IRC [23:06:29] *** armence has quit IRC [23:10:39] *** tr1gger has quit IRC [23:11:15] *** RandomTask has quit IRC [23:15:13] *** da_krowa has quit IRC [23:15:15] *** sama has quit IRC [23:15:41] <mwg> What's the easiest way to delete the selection from a TreeViewer? [23:15:50] <mwg> (with variable depth nodes) [23:23:12] <rcjsuen> I would just remove the element from the TreeViewer. But I don't use databinding. [23:25:39] <Druid> heya [23:25:54] <Druid> is there anyway to setup a remote dev server but excluding e.g. a huge /data directory? [23:27:48] <mwg> thanks [23:28:02] <mwg> why don't you use data biding? [23:28:16] <Druid> hm [23:28:20] <Druid> as in data i mean [23:28:25] <Druid> webroot got a /data folder [23:28:32] <Druid> with like a million images / subdirs [23:28:52] <Druid> but takes forever when using pdt to initialize [23:29:53] <rcjsuen> mwg: never bothered to learn it in my several years of working with Eclipse APIs [23:30:01] <rcjsuen> tho now i'm getting some exposure ;p [23:30:05] <mwg> That's interesting [23:30:14] <mwg> What do you do with Eclipse mostly? [23:30:37] <rcjsuen> i write plug-ins, i worked on an rcp app, now i work on the platform itself [23:31:02] <mwg> commericially? [23:31:15] <rcjsuen> in my past lives as an intern, now it's my job, so yes [23:31:24] <rcjsuen> intern/volunteer my free time [23:32:35] <mwg> yeah, interesting [23:32:40] <mwg> who do you work for, if you don't mind me asking? [23:32:44] <mwg> i'm just interested [23:32:49] <mwg> i'm really just standing out with Eclipse [23:32:52] <mwg> on a commerical project [23:32:57] <NoobFukaire> eclipse is rad :) [23:33:34] <rcjsuen> i intern'd at IBM and Versant in the past (and some other places not eclipse related), now i work for IBM [23:34:09] <mwg> that's very cool [23:34:16] *** philk_ has joined #eclipse [23:34:20] <mwg> congratulations, sounds like you have done well for yourself [23:34:51] <rcjsuen> if you spend your waking life on irc and eclipse instead of getting fresh air like me then it's doable [23:35:21] <mwg> haha [23:39:26] *** philk__ has quit IRC [23:44:16] *** Kaio_monolith has joined #eclipse [23:59:37] *** anderslinden has quit IRC [23:59:41] *** cnkurzke has quit IRC [23:59:52] *** SJr has quit IRC [23:59:58] *** dshap has joined #eclipse