September 6, 2011  
1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30

[00:11:21] *** lilalinux has quit IRC
[00:11:21] *** AndroidLoverInSF has quit IRC
[00:24:32] *** alvint has quit IRC
[00:24:52] *** alvint has joined #eclipse
[00:34:36] *** briandealwis has joined #eclipse
[00:38:06] *** lpereira has quit IRC
[00:41:21] <seekr> I'm having problems with Xdebug/Zend breakpoints in a new Eclipse installation.  I'm new to all this stuff, so might have done something wrong, but I've looked at the config carefully, with the help of my sysadmin.  Just came across something that suggests a problem with "port mapping" - but I'm unfamiliar with that term outside the context of routers.  The article is at http://stackoverflow.com/questions/3422433/xdebug-ign
[00:41:21] <seekr> ores-breakpoints .  Can anyone advise me?  Thanks.
[00:42:07] <seekr> Sorry for the broken URL - try http://tinyurl.com/3vueucr instead.
[00:42:07] <ankk> heu
[00:42:09] <ankk> hey
[00:42:41] <seekr> ankk: Hi there.
[00:43:05] <ankk> when i'm trying to install subclipse via "help->install new software", it doesnt continue after eclipse.jdt.launching
[00:43:18] <ankk> is there a way to download manually and install?
[00:46:49] *** b52 has left #eclipse
[00:57:08] *** vmil86 has quit IRC
[00:57:38] *** daisuke_m has joined #eclipse
[00:58:14] *** buribux has quit IRC
[00:58:14] *** buribu has quit IRC
[00:59:14] <ankk> :s
[00:59:40] *** heinz has quit IRC
[00:59:54] *** arjen_ has quit IRC
[01:00:46] *** briandealwis has quit IRC
[01:02:08] *** Xgc has quit IRC
[01:19:09] *** Xgc has joined #eclipse
[01:19:40] *** alvint has quit IRC
[01:36:10] *** dmb has joined #eclipse
[01:40:54] *** DanC has quit IRC
[01:41:29] *** DanC has joined #eclipse
[01:59:36] *** _xor has quit IRC
[02:00:25] *** ghostthatal has joined #eclipse
[02:20:18] *** daisuke_m has quit IRC
[02:23:47] *** m_a_chinea has quit IRC
[02:23:59] *** AndroidLoverInSF has joined #eclipse
[02:41:15] *** dirk_77_ has quit IRC
[02:46:53] *** melic has joined #eclipse
[02:46:56] *** melic has quit IRC
[02:47:09] *** melic has joined #eclipse
[02:58:34] *** daisuke_m has joined #eclipse
[03:10:04] *** kkb110 has quit IRC
[03:21:48] *** d_a_carver has joined #eclipse
[03:24:15] *** delki8 has joined #eclipse
[03:26:39] *** evil_gordita has quit IRC
[03:29:55] *** onekenthomas has joined #eclipse
[03:30:05] *** kthomas_vh has joined #eclipse
[04:18:01] *** garrettheel has joined #eclipse
[04:18:36] *** rossand has quit IRC
[04:20:42] *** AndroidLoverInSF has quit IRC
[04:23:48] *** salil has quit IRC
[04:24:58] *** ctrlx has joined #eclipse
[04:35:32] <garrettheel> hi, i'm getting a NoClassDefFoundError error for a jdom class in an eclipse plugin i've written when I get no compile-time errors and it should be on the build path. can anyone suggest why this might happen
[04:41:24] *** kthomas_vh has quit IRC
[04:41:54] *** onekenthomas has quit IRC
[04:42:54] *** delki8 has quit IRC
[04:56:19] <nitind> garrettheel: Your _bundle_ doesn't say it's part of its classpath.  NoClassDefFoundError *always* means something's present at compile time that's not there at runtime.
[04:56:32] <nitind> garrettheel: Check your manifest file.
[04:56:50] *** SniperFodder has joined #eclipse
[04:57:24] <garrettheel> nitind: i figured that was the problem. eclipse will not let me add the jdom.* packages via "imported packages" though
[04:57:35] <garrettheel> they do not show up under a search
[04:58:27] <garrettheel> nitind: and i get a "No available bundle exports package 'org.jdom'" if i try to add it manually
[05:01:22] <nitind> garrettheel: You can only import a package that a bundle exports.  Is anything exporting that package?
[05:03:08] <garrettheel> nitind: not that i can see. but i also can't see anything exporting the apache commons libraries and i get no issues using them as dependencies
[05:05:57] <nitind> garrettheel: For compiling or for running?
[05:06:28] <garrettheel> nitind: both
[05:07:17] <garrettheel> nitind: for example, i have the org.apache.commons.httpclient as a dependency for my plugin and know that code is running using those classes without an issue (from stepping through code)
[05:11:45] <nitind> And where do those come from?  Are you using an org.jdom bundle?  Are you trying to include it in one of your own bundles (using the Bundle-Classpath header)?
[05:12:53] <garrettheel> nitind: jdom.jar is on the build path for the Eclipse project
[05:12:56] *** nile has joined #eclipse
[05:13:12] <garrettheel> i'm not trying to include it in the Bundle-Classpath header, but rather in the "Import-package"
[05:13:21] <nitind> garrettheel: That's not enough, not for runtime.  Add it using the Plug-in Manifest Editor.
[05:13:44] <nile> Hi all, I'm working in Eclipse Helios, but the shortcut "ctrl + alt + down" doesn't work. Anyone konws why?
[05:13:49] <garrettheel> nitind: sorry, i'm not familiar with that. where can i find it?
[05:16:23] <nitind> garrettheel: Check the Open With context menu on your manifest.mf or plugin.xml file.
[05:16:51] <garrettheel> oh right, that's what i've been using all along (i just didn't know that was the name)
[05:17:26] <garrettheel> nitind: where are you suggesting I add jdom within the Plugin-In Manifest Editor?
[05:18:02] <nitind> garrettheel: http://help.eclipse.org/indigo/topic/org.eclipse.pde.doc.user/guide/tools/editors/manifest_editor/runtime.htm
[05:18:30] <nitind> garrettheel: Don't edit a Plug-in Project's Java Build Path manually.
[05:20:05] <garrettheel> nitind: so you are saying to not have anything on the build path in Eclipse?
[05:20:28] <nitind> I don't recall saying that.
[05:21:14] <garrettheel> nitind: i'm trying to understand what you meant in what you just said
[05:22:14] *** onekenthomas has joined #eclipse
[05:22:19] *** kthomas_vh has joined #eclipse
[05:24:42] *** nathanm32292394 has joined #eclipse
[05:32:55] *** d_a_carver has quit IRC
[05:34:22] <nitind> garrettheel: Let the manifest editor handle the Java Build Path.
[05:37:20] <garrettheel> nitind: so here's what i'm looking at: http://i.imgur.com/9AXQG.png
[05:37:44] <garrettheel> where here should i be listing my dependency on jdom?
[05:39:58] *** kthomas_vh has quit IRC
[05:39:58] *** onekenthomas has quit IRC
[05:40:35] <nitind> garrettheel: Where it says Classpath.
[05:40:57] *** kthomas_vh has joined #eclipse
[05:41:04] <garrettheel> nitind: so i should remove the jars from the build path that eclipse manages?
[05:41:13] *** ghostthatal has quit IRC
[05:42:18] <nitind> garrettheel: Yes.  There's no benefit to them being there once you correctly state it in the manifest )either manually or in the manifest editor).
[05:44:25] <garrettheel> nitind: right, i thought i had tried this and it failed but it seems to be working now so thank you very much
[05:51:06] *** garrettheel has quit IRC
[05:59:56] *** lilalinux has joined #eclipse
[06:01:20] *** drthingums has joined #eclipse
[06:09:59] *** kthomas_vh has quit IRC
[06:11:16] *** kthomas_vh has joined #eclipse
[06:12:30] *** ksawicki has quit IRC
[06:13:02] *** nile has quit IRC
[06:13:11] *** SniperFodder has quit IRC
[06:22:17] *** Chetic has quit IRC
[06:27:16] *** Chetic has joined #eclipse
[06:34:50] *** _gwsmith has quit IRC
[06:53:44] *** ron has joined #eclipse
[06:54:35] *** aminpy has joined #eclipse
[07:10:53] *** amitev2 has joined #eclipse
[07:12:51] *** cantblend has quit IRC
[07:12:51] *** P-l has quit IRC
[07:12:52] *** ddk has joined #eclipse
[07:13:04] *** cantblend has joined #eclipse
[07:13:16] *** Orphis_ has joined #eclipse
[07:13:16] *** magnet has quit IRC
[07:13:16] *** MadTBone has quit IRC
[07:13:16] *** alx has quit IRC
[07:13:17] *** cbeust has quit IRC
[07:13:17] *** Orphis has quit IRC
[07:13:17] *** amitev has quit IRC
[07:14:24] *** mchua is now known as mchua_afk
[07:14:55] *** alx has joined #eclipse
[07:14:56] *** P-l has joined #eclipse
[07:14:56] *** magnet has joined #eclipse
[07:14:56] *** 92AAD7U1L has joined #eclipse
[07:15:06] *** MadTBone has joined #eclipse
[07:15:10] *** P-l has quit IRC
[07:15:10] *** P-l has joined #eclipse
[07:16:22] *** TomTom has joined #eclipse
[07:27:11] *** mluser-home has quit IRC
[07:29:10] *** LongBeach has joined #eclipse
[07:29:48] *** vwegert has joined #eclipse
[07:45:03] *** javahorn has joined #eclipse
[07:45:05] <javahorn> hi
[07:48:15] *** LongBeach has quit IRC
[07:59:25] *** kthomas_vh has quit IRC
[08:03:03] *** Chetic has quit IRC
[08:05:15] *** novex has joined #eclipse
[08:05:27] *** Pasqualle has joined #eclipse
[08:09:39] *** ron has quit IRC
[08:10:14] *** coalado has joined #eclipse
[08:10:22] <coalado> Hi there.
[08:11:15] <coalado> I wonder if there is an eclipse plugin to automate creation of often required class "constructs"
[08:15:48] *** kthomas_vh has joined #eclipse
[08:18:53] *** hemna__ has quit IRC
[08:24:10] *** kottlett has joined #eclipse
[08:24:19] *** hemna has joined #eclipse
[08:31:48] *** a0sle has quit IRC
[08:35:50] *** denisr has joined #eclipse
[08:36:32] *** a0sle has joined #eclipse
[08:48:11] *** a0sle has quit IRC
[08:50:04] *** hemna has quit IRC
[08:50:09] *** bittyx-windows has joined #eclipse
[08:51:53] *** Echidna_ has quit IRC
[08:51:57] *** ualtin has joined #eclipse
[08:53:08] *** Echidna has joined #eclipse
[08:54:00] *** ron has joined #eclipse
[08:55:28] *** bittyx-windows has left #eclipse
[08:56:48] *** paissad has quit IRC
[09:02:05] *** a0sle has joined #eclipse
[09:02:06] *** a0sle has joined #eclipse
[09:04:22] *** Jonah11_ has quit IRC
[09:08:36] *** a0sle has quit IRC
[09:14:16] <antiguru> coalado: Templates?
[09:14:32] <antiguru> You can configure them from the preferences
[09:19:16] *** a0sle has joined #eclipse
[09:21:26] <coalado> antiguru:  but I cannot create classes in templates
[09:22:16] <ron> create classes in templates?
[09:29:06] *** a0sle has quit IRC
[09:29:22] *** a0sle has joined #eclipse
[09:30:10] *** pulse00 has joined #eclipse
[09:31:00] <pulse00> hi all. does anyone know how to create a layout with 2 columns where each column can be dragged horizontally to alter it's width ?
[09:32:07] <ron> (in swt)
[09:32:41] <pulse00> yes
[09:35:53] <ron> it wasn't a question. I was completing yours. :)
[09:36:16] <pulse00> thanks, thats kind of you ^^
[09:37:58] *** nicoulaj has joined #eclipse
[09:39:37] *** vmil86 has joined #eclipse
[09:40:17] <ron> :p
[09:43:26] *** kthomas_vh has quit IRC
[09:52:06] *** kthomas_vh has joined #eclipse
[09:56:44] *** aminpy_ has joined #eclipse
[09:56:58] *** aminpy has quit IRC
[09:57:15] *** deSilva has joined #eclipse
[10:09:25] *** cs02rm0 has joined #eclipse
[10:10:58] <cs02rm0> i'm having problems with a 4.1 maven project's classpath, e.g. if i add a new jar to the pom.xml eclipse isn't aware of it. do i need to add a mavne plugin or similar in 4.1?
[10:11:53] *** danlucraft has joined #eclipse
[10:13:15] *** coalado1 has joined #eclipse
[10:15:43] *** coalado has quit IRC
[10:33:29] *** faleibalidra has joined #eclipse
[10:43:30] *** ronr__ has joined #eclipse
[10:45:59] *** ron has quit IRC
[10:48:12] *** WhiteBeard has quit IRC
[10:48:29] *** cantoma has quit IRC
[10:49:39] *** ddk has quit IRC
[10:50:20] *** coalado1 has quit IRC
[10:51:54] *** coalado has joined #eclipse
[10:53:21] *** soc42 has joined #eclipse
[10:58:02] <soc42> hi #eclipses
[10:58:56] <soc42> i am looking for how to toggle the display code in editor view to line wrap
[10:59:16] <soc42> is that a setting which has to be made in each indivual filetype editor?
[10:59:35] <soc42> or is there a global parameter anywhere?
[10:59:50] <soc42> i don't know how to name it excatly to find it
[10:59:58] <soc42> the context-menus are almost empty
[11:01:02] *** cantoma has joined #eclipse
[11:04:09] *** pulse00 has quit IRC
[11:04:38] *** noord has joined #eclipse
[11:06:37] *** dpy has joined #eclipse
[11:07:23] *** ronr___ has joined #eclipse
[11:09:20] *** ddk has joined #eclipse
[11:09:24] *** ronr__ has quit IRC
[11:10:05] <faleibalidra> Hello! Lately we have been having problems with handles and user objects. It started with a no more handles exception some of our client were getting in Windows XP machines. Our first reaction was to make some tabs (and by that I mean pages in a MultiPageEditorPart) that were not used that frequently.  It made thing a lot better yet we are still concerned this could cause some trouble in the future . I'm are aware of the GDIProcessHandleQuota
[11:11:25] *** danlucraft has quit IRC
[11:13:18] *** dirk_77_ has joined #eclipse
[11:15:45] *** danlucraft has joined #eclipse
[11:21:19] <javahorn> Hi
[11:21:45] <javahorn> i start Jboss Studio(Eclipse only), it starts in a JVM.
[11:22:06] <javahorn> now i start Jboss server, will it be in the same JVM or different new one?
[11:22:20] <cs02rm0> different
[11:22:55] <javahorn> cs02rm0: how?
[11:23:05] <javahorn> we kickstart from studio only, then?
[11:25:05] <cs02rm0> as i understand it. fire up jconsole and it give you a clear indication.
[11:25:14] <cs02rm0> +should
[11:25:55] *** ualtin has left #eclipse
[11:26:45] *** dirk_77__ has joined #eclipse
[11:29:55] *** barq has joined #eclipse
[11:30:09] *** dirk_77_ has quit IRC
[11:31:24] *** noord has quit IRC
[11:35:09] *** dirk_77__ has quit IRC
[11:36:35] *** ronr___ is now known as ron
[11:38:02] *** tvo has joined #eclipse
[11:39:28] *** ifdef42 has quit IRC
[11:40:34] *** ifdef42 has joined #eclipse
[11:53:30] *** kgilmer has joined #eclipse
[11:54:17] *** coalado1 has joined #eclipse
[11:56:27] *** coalado has quit IRC
[11:56:40] *** noord has joined #eclipse
[11:58:54] *** coalado1 has quit IRC
[11:59:17] *** Pasqualle has quit IRC
[12:14:16] *** danlucraft has quit IRC
[12:14:31] *** danlucraft has joined #eclipse
[12:14:44] *** daisuke_m has quit IRC
[12:28:28] *** dirk_77_ has joined #eclipse
[12:32:03] *** ghostthatal has joined #eclipse
[12:33:38] *** rossand has joined #eclipse
[12:41:29] *** napster has joined #eclipse
[12:41:39] <napster> is there any plugin available for python
[12:41:39] <napster> ?
[12:42:01] <mihael> PyDev
[12:42:28] <mihael> http://pydev.org/
[12:43:01] <napster> mihael: ty
[12:43:09] <mihael> np
[12:44:51] *** andrey_ has joined #eclipse
[12:47:11] *** napster has left #eclipse
[12:48:10] *** dpy has quit IRC
[12:48:43] *** ohcibi_ has quit IRC
[12:49:13] *** ohcibi has joined #eclipse
[12:52:34] *** ronr__ has joined #eclipse
[12:55:08] *** ron has quit IRC
[12:55:49] *** daisuke_m has joined #eclipse
[13:03:01] *** dirk_77_ has quit IRC
[13:04:35] *** dirk_77_ has joined #eclipse
[13:05:35] *** kgilmer has quit IRC
[13:06:55] *** dirk_77_ has quit IRC
[13:07:07] *** kgilmer has joined #eclipse
[13:07:40] *** drthingums has quit IRC
[13:08:18] *** faleibalidra has quit IRC
[13:12:06] *** drthingums has joined #eclipse
[13:16:43] *** vdv has joined #eclipse
[13:19:23] *** faleibalidra has joined #eclipse
[13:20:00] *** hex` has joined #eclipse
[13:21:17] *** ronr__ is now known as ron
[13:22:56] *** dirk_77_ has joined #eclipse
[13:24:05] *** Orphis_ has quit IRC
[13:24:34] *** andrey_ has quit IRC
[13:25:00] *** andrey_ has joined #eclipse
[13:26:13] *** ronr__ has joined #eclipse
[13:28:09] *** Orphis has joined #eclipse
[13:28:23] *** ddk has quit IRC
[13:29:07] *** wainersm has joined #eclipse
[13:29:30] *** ron has quit IRC
[13:31:46] *** drthingums has quit IRC
[13:34:04] *** Kamaran has joined #eclipse
[13:40:58] *** faleibalidra has left #eclipse
[13:41:30] *** rossand has quit IRC
[13:43:03] *** ghostthatal has quit IRC
[13:43:25] *** dirk_77_ has quit IRC
[13:44:02] *** barq has quit IRC
[13:44:12] <rcjsuen_> unlord: This might be helpful http://holistictendencies.wordpress.com/2011/03/28/bundle-nativecode-using-platform-specific-dlls-from-osgi/
[13:45:37] *** dsugar100 has joined #eclipse
[13:48:17] *** WhiteBeard has joined #eclipse
[13:48:18] *** WhiteBeard has joined #eclipse
[13:50:01] *** BigKing has joined #eclipse
[13:53:29] *** tlocalhos has quit IRC
[13:53:57] *** vdv has quit IRC
[13:56:47] *** tlocalhos has joined #eclipse
[13:57:04] *** kkb110 has joined #eclipse
[13:59:46] *** kirean has joined #eclipse
[14:00:47] <kirean> hi, I have a workspace with modified svn properties (svn-ignore) and some other modified files. How can I commit ONLY the svn-ignore?
[14:07:06] *** klausk has joined #eclipse
[14:07:17] *** otaviobp has joined #eclipse
[14:11:04] *** Harrold has joined #eclipse
[14:28:00] *** ronr__ is now known as ron
[14:33:44] *** EricInBNE has quit IRC
[14:37:23] *** rossand has joined #eclipse
[14:39:56] *** barq has joined #eclipse
[14:40:29] *** navlelo has joined #eclipse
[14:41:38] *** rcjsuen_ is now known as rcjsuen
[14:46:55] *** paulweb515_ has quit IRC
[14:48:00] *** paulweb515_ has joined #eclipse
[14:55:04] *** dcoll has joined #eclipse
[14:57:26] *** kaje1 has joined #eclipse
[14:58:31] *** javahorn has quit IRC
[14:59:38] *** Xgc has quit IRC
[15:01:36] *** lighta has joined #eclipse
[15:01:57] *** kaje1 has quit IRC
[15:02:40] *** kgilmer has quit IRC
[15:04:23] *** kgilmer has joined #eclipse
[15:13:14] *** baedert has joined #eclipse
[15:14:50] *** scorphus has joined #eclipse
[15:15:52] *** rgrunber has joined #eclipse
[15:19:22] *** siyb has joined #eclipse
[15:20:00] <siyb> hi, where does eclipse keep information about source attachments?
[15:20:03] *** hartzie has joined #eclipse
[15:21:26] <lighta> are you looking for a file or where to set linked source ?
[15:22:15] *** d_a_carver has joined #eclipse
[15:22:17] <siyb> lighta: for a file
[15:22:55] <lighta> having an issue with windows builder plugins. I can't make it work with. (I have eclipse galileo, running on ubuntu )
[15:23:47] *** dcoll has quit IRC
[15:25:04] *** mpiggott has joined #eclipse
[15:31:49] *** daisuke_m has quit IRC
[15:35:11] *** rawbdor has quit IRC
[15:38:28] *** mluser-home has joined #eclipse
[15:38:52] *** faleibalidra has joined #eclipse
[15:40:36] *** klausk has quit IRC
[15:41:04] *** daisuke_m has joined #eclipse
[15:42:50] *** BigKing has quit IRC
[15:45:21] *** daisuke_m has quit IRC
[15:46:47] *** vwegert has quit IRC
[15:47:45] *** kaje has joined #eclipse
[15:48:09] *** IRCReaderBOT has joined #eclipse
[15:49:35] *** kirean has left #eclipse
[15:51:59] *** ddk has joined #eclipse
[15:53:58] *** aminpy_ has quit IRC
[15:56:27] *** klausk has joined #eclipse
[15:57:31] *** drworm has joined #eclipse
[15:57:56] *** shining_ has joined #eclipse
[15:58:03] <shining_> hi
[15:58:15] <shining_> kennt sich hier jemand mit mdd und xpand aus?
[16:03:29] <rcjsuen> English, or try #eclipse-de
[16:03:39] <rcjsuen> Although maybe this isn't German :o
[16:05:15] *** kaje1 has joined #eclipse
[16:05:18] <hartzie> yes its german
[16:05:22] *** kaje has quit IRC
[16:05:31] <drworm> I'm getting a NullPointerException when launching an RCP product before anything ever comes up on the screen. No debug messages, no splash, no nothing, just an error. Thoughts?
[16:06:30] <rcjsuen> And what is this NPE
[16:13:16] *** noord has quit IRC
[16:15:07] *** kaje1 has quit IRC
[16:16:08] <drworm> NVM, figured it out. Missing build.properties file. Don't know how that happened...
[16:16:11] <drworm> But thanks.
[16:16:12] *** drworm has left #eclipse
[16:21:02] *** purestrain has joined #eclipse
[16:21:47] *** vipaca has joined #eclipse
[16:22:07] *** ddk has quit IRC
[16:23:23] *** ddk has joined #eclipse
[16:25:59] *** alvint has joined #eclipse
[16:28:18] <shining_> is someone familiar with mdd and xpand?
[16:28:57] *** myusuf3 has joined #eclipse
[16:29:28] *** WhiteBeard has quit IRC
[16:31:04] *** Jonah11_ has joined #eclipse
[16:31:18] *** kaje has joined #eclipse
[16:33:51] *** Pasqualle has joined #eclipse
[16:34:22] *** cvanes has joined #eclipse
[16:38:51] *** sereal-work has joined #eclipse
[16:39:52] <sereal-work> is there a way to search a eclipse workspace for a string (say a import or a call to a class)
[16:40:00] <rcjsuen> Ctrl+H?
[16:40:04] *** Xgc has joined #eclipse
[16:44:21] *** briandealwis has joined #eclipse
[16:45:12] *** Pasqualle has quit IRC
[16:48:31] *** Pasqualle has joined #eclipse
[16:49:25] *** kkb110 has quit IRC
[16:49:47] *** FunnyLookinHat has joined #eclipse
[16:52:06] *** klausk has quit IRC
[16:54:45] *** shining_ has quit IRC
[16:55:39] *** cmw72 has joined #eclipse
[17:01:04] *** lighta has quit IRC
[17:02:49] *** cvanes_ has joined #eclipse
[17:03:23] *** cvanes has quit IRC
[17:05:24] *** klausk has joined #eclipse
[17:05:43] <Echidna> is it possible to use windows shortcuts in a DirectoryDialog?
[17:05:51] <Echidna> if it's a shortcut to a ditr
[17:05:58] <rcjsuen> try it and see
[17:06:08] *** daisuke_m has joined #eclipse
[17:06:16] <rcjsuen> tho i'm not even totally sure what you're asking here
[17:06:33] <rcjsuen> since a shortcut is a file, unless this is one of those discussions over the differences of a folder and a directory
[17:06:46] <Echidna> well a windows shortcut
[17:06:54] *** denisr has quit IRC
[17:07:13] <Echidna> that links to a directory
[17:08:13] <Echidna> i want to be able to select it in a DirectoryDialog
[17:08:26] <Echidna> but if it's a file, i guess it wont work
[17:08:36] <Echidna> thought maybe theres a flag for enableing those or smt
[17:08:52] <rcjsuen> Certainly the Windows directory dialog anyway only shows the tree view and is unlike a file dialog
[17:08:57] <rcjsuen> so I'm not sure a shortcut would show up
[17:09:17] *** ronr__ has joined #eclipse
[17:09:35] <Echidna> it doesnt
[17:11:45] *** ron has quit IRC
[17:13:33] *** lighta has joined #eclipse
[17:16:59] <faleibalidra> I'm having trouble with "user objects'" under windows because there is a limit of 10000.  I don't seam to have any leaks (have looked very carefully with Sleak and everything is correctly disposed after I close the  EditorPart) but even though it is very unlikely  that a user will open enough editors at the same time to reach the limit (I'm creating about 300 "user objects" per editorpart  and I'm already creating some pages only if the user
[17:20:07] *** ghostthatal has joined #eclipse
[17:21:32] *** danhello has joined #eclipse
[17:21:33] <nbf> man I can't wait for this AAA cycle to finish
[17:21:42] <nbf> whoops
[17:22:24] *** snuff has joined #eclipse
[17:22:26] *** ghostthatal has quit IRC
[17:23:48] *** cvanes_ has quit IRC
[17:26:56] *** drworm has joined #eclipse
[17:28:18] <drworm> Is it possible to add contributions to a view toolbar strictly declaratively, i.e. with no programmatic implementation? Because I've read a lot of tutorials that purport it to be possible and it seems not to be so.
[17:29:21] <rcjsuen> i'm not sure how much you could express in xml'
[17:29:28] *** danhello has quit IRC
[17:29:29] <rcjsuen> what would happen after the user clicks on this item?
[17:29:43] <drworm> A message dialog pops up.
[17:29:49] <drworm> That part I have implemented.
[17:30:13] <drworm> I just can't get the button to show up in the view toolbar, which should be possible in XML.
[17:30:26] <drworm> I can't even get it to show up in the main application toolbar.
[17:30:45] <drworm> Which may or may not be important to solving the view toolbar issue.
[17:32:24] <rcjsuen> org.eclipse.ui.menus extension pt
[17:33:02] <drworm> Got that.
[17:33:13] *** cantblend has quit IRC
[17:33:57] *** daisuke_m has quit IRC
[17:34:06] <drworm> I have a new menuContribution that has locationURI as toolbar:my.project.myview
[17:34:18] *** piksu has quit IRC
[17:34:24] *** daisuke_m has joined #eclipse
[17:34:30] *** andrey_ has quit IRC
[17:34:47] <drworm> That contribution has a command contribution with id my.project.commandHandler
[17:34:48] *** rhowlett82 has left #eclipse
[17:35:10] *** Alvo has joined #eclipse
[17:35:19] <drworm> The command has a defaultHandler that pulls up a message dialog.
[17:35:38] <Alvo> hi how can i assiugn a shortcut for overriding methods? (i am used to do this in intellij)
[17:39:28] *** daisuke_m has quit IRC
[17:39:41] <rcjsuen> ~keys
[17:39:41] <Arbalest> For a list of available key bindings press Ctrl + Shift + L. To configure your key bindings, press Ctrl + Shift + L twice or see Window > Preference > General > Keys. See also http://wiki.eclipse.org/IRC_FAQ#What.27s_the_key_for_....3F
[17:41:48] <drworm> I have not, however, implemented any ActionBars.
[17:42:19] <drworm> Like I said, however, multiple sources tell me that getting a button to show up in a view toolbar should be possible declaratively.
[17:42:22] <rcjsuen> you don't need to implement IActionBars
[17:42:24] <drworm> And it's not, apparently.
[17:43:16] <drworm> Because Actions and Commands are different?
[17:43:37] <rcjsuen> That's an orthogonal topic.
[17:43:41] <drworm> Noted.
[17:43:46] <Alvo> rcjsuen 10x
[17:44:21] <drworm> ...Is "10x" supposed to be "Thanks?"
[17:45:10] <Alvo> drworm yeh many thanks
[17:46:51] *** ronr__ is now known as ron
[17:48:07] *** m_a_chinea has joined #eclipse
[17:49:08] *** ron has quit IRC
[17:49:46] *** ronr__ has joined #eclipse
[17:50:03] *** ronr__ is now known as ron
[17:50:12] *** tvo has quit IRC
[17:50:37] <rcjsuen> <menuContribution locationURI="toolbar:org.eclipse.ui.navigator.ProjectExplorer"><command commandId="org.eclipse.ui.file.save"/></menuContribution>
[17:50:39] <rcjsuen> this should just work
[17:51:04] <drworm> Testing...
[17:53:26] *** navlelo has quit IRC
[17:54:36] *** danhello has joined #eclipse
[17:55:07] *** njlg has joined #eclipse
[17:55:14] *** njlg has quit IRC
[17:55:24] *** TomTom has quit IRC
[17:55:31] *** njlg has joined #eclipse
[17:55:51] <drworm> Nothing's different. I'll try giving it an image or something.
[17:56:42] <drworm> Nothing.
[17:59:14] *** soc42 has quit IRC
[18:00:14] *** TJCRI has joined #eclipse
[18:00:23] *** faleibalidra has left #eclipse
[18:01:38] <rcjsuen> works for me anyway
[18:02:58] <drworm> Idea: my Application class creates a new ApplicationWorkbenchAdvisor, which creates a new ApplicationWorkbenchWindowAdvisor, which creates a new ApplicationActionBarAdvisor, which has two empty methods, makeActions and fillMenuBar. It seems like these might need to be implemented. But I could be, and probably am, wrong.
[18:08:41] *** cantblend has joined #eclipse
[18:10:42] *** kaje has quit IRC
[18:13:49] *** hartzie has quit IRC
[18:14:01] *** kottlett has quit IRC
[18:14:30] *** danlucraft has quit IRC
[18:16:16] *** navlelo has joined #eclipse
[18:16:24] *** lighta has quit IRC
[18:16:46] *** abhatnag has joined #eclipse
[18:16:47] *** barq has quit IRC
[18:16:58] *** Alvo has quit IRC
[18:19:24] *** novex has quit IRC
[18:21:31] *** abhatnag has quit IRC
[18:27:27] *** ronr__ has joined #eclipse
[18:29:46] *** ron has quit IRC
[18:36:03] *** ronr__ has quit IRC
[18:37:07] *** vwegert has joined #eclipse
[18:37:08] *** abhatnag has joined #eclipse
[18:37:42] <drworm> rcjsuen: You will be pleased to know that I was doing it wrong.
[18:37:53] <drworm> I was using the class name instead of the ID.
[18:38:11] <drworm> The terminology "locationURI" was confusing me.
[18:38:19] <drworm> I now feel like an idiot.
[18:38:25] *** cs02rm0 has quit IRC
[18:39:18] *** abstrakt has joined #eclipse
[18:40:09] *** navlelo has quit IRC
[18:40:15] *** barq has joined #eclipse
[18:40:40] *** barq has joined #eclipse
[18:41:00] <abstrakt> anyone have any idea why clicking "debug" in PDT all of a sudden seems to be a complete no-op
[18:41:12] <abstrakt> just a few days ago eclipse was fine, I could debug no problem
[18:41:55] <abstrakt> now it doesn't even open firefox, i can't even see any observable behavior, i click the little green bug and, well... just "nothing"
[18:42:09] <abstrakt> how can I debug this? and or how can I find out what's actually going on behind the scenes?
[18:42:22] *** nicoulaj has quit IRC
[18:53:34] *** Zentoo has joined #eclipse
[18:57:41] *** danhello has quit IRC
[18:59:21] *** C0br4 has quit IRC
[18:59:26] *** sixsigma has joined #eclipse
[18:59:34] <sixsigma> is ti possible to use remote system explorer with svn?
[18:59:46] <sixsigma> I mean making a checkout to my remote system (ssh)?
[19:01:48] <abstrakt> sixsigma, SSHFS
[19:02:07] <sixsigma> ok
[19:04:03] <sixsigma> nice, ty abstrakt
[19:04:05] *** sixsigma has left #eclipse
[19:04:09] <rcjsuen> drworm: I assumed when you tested my snippet that you did a direct copy/paste, guess not.
[19:04:15] <rcjsuen> drworm: But you solved your problem anyway oh well
[19:05:57] *** ksawicki has joined #eclipse
[19:06:08] *** klausk has quit IRC
[19:08:27] *** Zentoo has quit IRC
[19:08:38] *** skotisis has joined #eclipse
[19:10:42] *** ReneP has quit IRC
[19:10:59] *** ReneP has joined #eclipse
[19:14:04] *** hemna has joined #eclipse
[19:14:48] *** C0br4 has joined #eclipse
[19:15:29] *** ReneP has quit IRC
[19:15:40] *** abhatnag has quit IRC
[19:16:08] *** abhatnag has joined #eclipse
[19:17:35] *** abhatnag has quit IRC
[19:18:03] *** abhatnag has joined #eclipse
[19:20:55] *** abhatnag has quit IRC
[19:21:04] *** navlelo has joined #eclipse
[19:21:28] *** navlelo has quit IRC
[19:21:57] *** heinz has joined #eclipse
[19:22:59] *** tvo has joined #eclipse
[19:23:24] *** danhello has joined #eclipse
[19:23:56] *** _nor has joined #eclipse
[19:24:59] *** Kamaran has quit IRC
[19:30:14] *** nicoulaj has joined #eclipse
[19:33:08] *** rrva_ has joined #eclipse
[19:34:24] *** Dessimat0r has joined #eclipse
[19:34:36] *** CanisMajoris has joined #eclipse
[19:37:54] *** klausk has joined #eclipse
[19:42:07] *** Kamaran has joined #eclipse
[19:43:16] *** ddk has quit IRC
[19:45:12] *** Dessimat0r has quit IRC
[19:52:38] *** Dessimat0r has joined #eclipse
[19:54:50] *** rrva_ has quit IRC
[19:57:09] *** iXeno has quit IRC
[19:57:52] *** iXeno has joined #eclipse
[19:58:37] *** drworm has left #eclipse
[19:59:28] *** hex` has quit IRC
[20:04:00] *** skotisis has left #eclipse
[20:04:50] *** skotisis has joined #eclipse
[20:07:32] *** a0sle- has joined #eclipse
[20:07:47] *** a0sle has quit IRC
[20:09:25] *** a0sle has joined #eclipse
[20:10:12] *** klausk has quit IRC
[20:11:59] *** a0sle- has quit IRC
[20:21:17] *** abhatnag has joined #eclipse
[20:21:44] *** Dessimat0r has quit IRC
[20:22:31] *** soc42 has joined #eclipse
[20:24:22] *** semeion has quit IRC
[20:25:12] *** lpereira has joined #eclipse
[20:25:41] *** abhatnag has quit IRC
[20:28:19] *** klausk has joined #eclipse
[20:29:39] *** DevInquiry has joined #eclipse
[20:30:26] <DevInquiry> Hi, for html css and javascript, Amateras, how good that is
[20:30:27] <DevInquiry> ?
[20:30:38] <DevInquiry> Or should I go for WTP
[20:30:53] <DevInquiry> But WTP is for J2EE mostly...
[20:33:54] <nitind> Poppycock.
[20:36:33] <nitind> It it has html css and javascript support as well.
[20:40:17] *** semeion has joined #eclipse
[20:41:36] *** paissad has joined #eclipse
[20:43:38] <DevInquiry> What?
[20:43:41] <DevInquiry> shutup
[20:44:28] <rcjsuen> But WTP does have HTML CSS and JavaScript tooling :o
[20:52:03] *** ronr__ has joined #eclipse
[20:52:51] *** ronr__ is now known as ron
[20:58:57] *** semeion has quit IRC
[21:01:04] <DevInquiry> rcjsuen: Will I be able to write css files in WTP
[21:01:05] <DevInquiry> ?
[21:01:54] <DevInquiry> nitind: sorry..
[21:02:18] <ron> sure, why not?
[21:03:20] <DevInquiry> Yes?
[21:03:33] <ron> yes?
[21:03:48] <DevInquiry> oh..
[21:04:45] <DevInquiry> The evolution of Eclipse Ganymede Has WTP
[21:04:49] <rcjsuen> DevInquiry: Yes, WTP provides a plug-in or a css editor
[21:04:54] <rcjsuen> so yes you can create css files
[21:04:58] <rcjsuen> with syntax highlighting
[21:06:55] <DevInquiry> Eclipse Is A Wonderfull Tool, History Of Eclipse Of Adventures, If You Come To Know, You would run away
[21:07:40] <DevInquiry> ??
[21:08:02] <DevInquiry> ?
[21:08:19] <briandealwis> I can't seem much of a question there?
[21:08:40] <DevInquiry> 10 years later, I will ask you that
[21:09:05] *** robottinosino has joined #eclipse
[21:09:15] *** WhiteBeard has joined #eclipse
[21:09:16] *** WhiteBeard has joined #eclipse
[21:10:53] *** dmiles_afk has quit IRC
[21:11:03] <DevInquiry> Eclipse is open for updates...
[21:11:50] <DevInquiry> I installed eclipse on Fedora, and it crashed, obviously it will, so I take care of the matter
[21:12:16] *** soc42 has quit IRC
[21:13:32] *** semeion has joined #eclipse
[21:14:38] <DevInquiry> Eclipse subjucates updates... we used and ruled eclipse for 1400 years, How many updates did that subjucate
[21:16:15] <DevInquiry> Islam Subjucates women, Muslim ruled india for one thousand years How Many Women Did They SSubjucate??
[21:17:10] <DevInquiry> Media... right?
[21:21:18] *** _nor has quit IRC
[21:21:29] *** DevInquiry has quit IRC
[21:24:19] *** sereal-work has quit IRC
[21:28:40] *** hex` has joined #eclipse
[21:28:41] *** _nor has joined #eclipse
[21:32:24] *** tvo has quit IRC
[21:35:08] *** lpereira has quit IRC
[21:36:04] *** _nor has quit IRC
[21:38:07] *** danhello has quit IRC
[21:39:16] *** vinse has joined #eclipse
[21:39:44] *** purestrain has quit IRC
[21:39:46] *** vinse has left #eclipse
[21:41:03] *** robottinosino has quit IRC
[21:41:51] *** Alvo_ has joined #eclipse
[21:44:15] *** _nor has joined #eclipse
[21:45:17] *** baedert has quit IRC
[21:46:03] *** kthomas_vh has quit IRC
[21:53:47] *** abhatnag has joined #eclipse
[21:54:22] <Caleb--> man, when will the Nebula project publish binaries :S
[21:56:16] *** evil_gordita has joined #eclipse
[21:57:56] *** dirk_77_ has joined #eclipse
[22:00:29] *** abhatnag has quit IRC
[22:00:35] *** abhatnag has joined #eclipse
[22:01:58] *** DeviceZer0 has quit IRC
[22:02:46] <rcjsuen> Caleb--: When it's an itch someone wants to scratch :)
[22:05:55] *** EricInBNE has joined #eclipse
[22:07:03] *** snuff has quit IRC
[22:09:14] *** vipaca has quit IRC
[22:09:56] *** ron has quit IRC
[22:10:54] *** kthomas_vh has joined #eclipse
[22:16:02] *** vipaca has joined #eclipse
[22:16:10] *** vipaca has joined #eclipse
[22:16:36] *** Alvo_ has quit IRC
[22:17:42] *** hex` has quit IRC
[22:21:13] <myusuf3> briandealwis, I added eclipse help plugin to eclipse product
[22:21:27] <myusuf3> and I keep getting all these bundle exceptions on launch
[22:21:31] <myusuf3> any idea what is going on?
[22:21:45] <myusuf3> here is the log
[22:22:15] <briandealwis> myusuf3: have you tried loading the log into the Error Log view?  It greatly improves navigating to see the unresolved dependencies
[22:22:39] <myusuf3> well its standalone rcp app
[22:22:46] <myusuf3> let me get the log
[22:22:53] <briandealwis> you can still load the load into a different Eclipse session
[22:24:03] *** rossand has quit IRC
[22:25:49] <myusuf3> how?
[22:26:06] <briandealwis> One of the buttons in the view toolbar is "Import"
[22:28:17] <myusuf3> well its saying it cant resolve various jars for org.eclipse.osgi
[22:28:27] <myusuf3> briandealwis, thanks got it working
[22:28:40] <myusuf3> missing imported package
[22:30:49] *** u_so_nuts has joined #eclipse
[22:31:34] <u_so_nuts> am asking about netbeans can anyone help me here plizz.
[22:32:06] <myusuf3> this is eclipse irc
[22:32:10] <myusuf3> you can ask if someone can help
[22:32:12] <myusuf3> they will
[22:32:25] <u_so_nuts> ok do u know netbeans well
[22:32:35] <u_so_nuts> coz i really need help
[22:33:13] <briandealwis> u_so_nuts: you'll likely have better success in the netbeans channel
[22:33:14] <nitind> u_so_nuts: Better chance in #netbeans
[22:33:44] <u_so_nuts> i want to know how to add 3rd party libraries in netbeans and configuring them such that i can see them in library management table
[22:33:56] <nitind> u_so_nuts: You want #netbeans.
[22:34:01] <u_so_nuts> have asked those guys but
[22:34:09] <u_so_nuts> they are not asnwering me
[22:34:21] <u_so_nuts> so i thought maybe u guys can help
[22:34:32] <nitind> Then use their forums, as the channel topic suggests.
[22:35:06] <u_so_nuts> ok let me try that
[22:35:17] *** iXeno has quit IRC
[22:35:35] *** u_so_nuts has quit IRC
[22:36:56] *** iXeno has joined #eclipse
[22:37:41] *** WhiteBeard has quit IRC
[22:38:46] *** abhatnag has left #eclipse
[22:42:50] *** dmiles_afk has joined #eclipse
[22:46:00] <Caleb--> what the hell, i can't build Nebula :S
[22:46:22] <Caleb--> i'm getting: C:\Users\Caleb\workspace\org.eclipse.swt.nebula\org.eclipse.nebula.build\masterbuild.xml:111: java.io.IOException: Cannot run program "cvs" (in directory "C:\Users\Caleb\workspace"): CreateProcess error=2, The system cannot find the file specified
[22:46:34] <Caleb--> even though cvs is in the workspace folder
[22:48:10] <nitind> As a directory or executable?
[22:48:37] <Caleb--> executable
[22:48:45] <Caleb--> cvs.exe
[22:48:47] *** klausk has quit IRC
[22:48:51] <nitind> You have read and executable permission?
[22:48:57] <Caleb--> it's windows
[22:49:19] <Caleb--> i do
[22:49:41] <rcjsuen> I'm not sure it being in the ws folder means anything
[22:49:46] *** rcjsuen has quit IRC
[22:50:17] *** rcjsuen has joined #eclipse
[22:52:32] <Caleb--> rcjsuen, am i reading the error incorrectly then?
[22:53:08] <rcjsuen> The problem is likely that 'cvs' isn't in your PATH
[22:53:23] <Caleb--> ok, let's try fixing that
[22:56:28] <Caleb--> new error now
[22:56:30] <Caleb-->  [cvs] cvs server: cannot find module `org.eclipse.swt.nebula/${component}' - ignored
[22:56:55] <Caleb--> and before that one: [cvs] cvs checkout: warning: failed to open C:\Users\Caleb/.cvspass for reading: No such file or directory
[22:57:23] *** otaviobp has quit IRC
[22:59:07] <Caleb--> maybe i should try the maven build files
[23:01:40] *** rcjsuen is now known as rcjsuen_
[23:02:13] *** Kamaran has quit IRC
[23:09:09] *** kthomas_vh has quit IRC
[23:15:34] *** Zenopus_ has joined #eclipse
[23:15:43] *** Zenopus has quit IRC
[23:15:49] *** Zenopus_ is now known as Zenopus
[23:16:17] *** vipaca has quit IRC
[23:17:25] *** wainersm has quit IRC
[23:18:02] *** rgrunber has quit IRC
[23:19:22] *** WhiteBeard has joined #eclipse
[23:19:22] *** WhiteBeard has joined #eclipse
[23:21:35] <Caleb--> ok, after running mvn install in the particular widget's folder, i get:
[23:21:35] <Caleb--> org.apache.maven.InternalErrorException: Internal error: java.lang.RuntimeException: org.eclipse.equinox.p2.core.ProvisionException: No solution found because the problem is unsatisfiable.
[23:22:02] *** heinz has quit IRC
[23:36:20] *** vwegert has quit IRC
[23:36:28] *** mpiggott has quit IRC
[23:39:41] *** dsugar100 has quit IRC
[23:39:42] *** TJCRI has quit IRC
[23:40:38] *** cantblend has quit IRC
[23:43:17] *** nicoulaj has quit IRC
[23:43:41] *** DeviceZer0 has joined #eclipse
[23:43:41] *** DeviceZer0 has joined #eclipse
[23:53:29] *** cantblend has joined #eclipse
[23:54:40] *** iXeno has quit IRC
[23:55:56] *** iXeno has joined #eclipse

top