Re: WOLips update site for Eclipse 4.4 (Luna)

2015-05-04 Thread David Avendasora
On May 3, 2015, at 1:41 AM, Gavin Eadie ga...@umich.edu wrote: I downloaded the WOLips source tonight to look for why absent WOD files cause NPEs and scanned it for likely places, but this is not code I've ever looked at before and it feels like needle-in-haystack time! I also scanned

Re: WOLips update site for Eclipse 4.4 (Luna)

2015-05-04 Thread Gavin Eadie
On Mon, May 4, 2015 at 8:02 AM, David Avendasora webobje...@avendasora.com wrote: I’d suggest creating the .wod files and tell Git to ignore them for now until you, or someone else, can track down the bug. I’m sure you could easily create them all with some form of terminal touch magic… I'm

Re: WOLips update site for Eclipse 4.4 (Luna)

2015-05-02 Thread Gavin Eadie
I downloaded the WOLips source tonight to look for why absent WOD files cause NPEs and scanned it for likely places, but this is not code I've ever looked at before and it feels like needle-in-haystack time! I also scanned the code commit messages to see if I could find where this behavior might

Re: WOLips update site for Eclipse 4.4 (Luna)

2015-04-30 Thread Gavin Eadie
.. sadly, this is only a brief respite. This file (org.objectstyle. wolips.wodclipse.core.prefs) is recreated, with the same contents, and has to be deleted each time before I launch Eclipse. I can live with this if my case is worth exploring for the true cause, or I can start over with a new

Re: WOLips update site for Eclipse 4.4 (Luna)

2015-04-30 Thread Samuel Pelletier
You experience exactly the behaviour I had before my patch. Either, you are not running the same code as me or you found something else. My patch is supposed to reset the height of the WOD panel if the ratio read from the prefs is bellow 15% to make sure enough of it is visible. The crash I

Re: WOLips update site for Eclipse 4.4 (Luna)

2015-04-30 Thread Chuck Hill
Possibly true, but I'd need more than just some. Not that I would be opposed to that... On 2015-04-30, 11:24 AM, Hugi Thordarson wrote: Heh, Dave :). And Chuck; trust me. You'll love the fermented shark once you've had some brennivín! - hugi On 29. apr. 2015, at 23:45, Chuck Hill

Re: WOLips update site for Eclipse 4.4 (Luna)

2015-04-30 Thread Hugi Thordarson
Heh, Dave :). And Chuck; trust me. You’ll love the fermented shark once you’ve had some brennivín! - hugi On 29. apr. 2015, at 23:45, Chuck Hill ch...@gevityinc.com wrote: I still want to go there and see one of the famed “Icelandic Coffee Hoses”. They sound awesome. The fermented

Re: WOLips update site for Eclipse 4.4 (Luna)

2015-04-30 Thread Gavin Eadie
I’m not understanding your “uninstalling” reference, so pardon me if I’m being stupid. I deleted my entire old (v3.7) Eclipse directory [Time Machine is my friend if I need to revert to last week’s old software], downloaded a fresh Luna 4.4.2 (same release as yours), and told it to add the

Re: WOLips update site for Eclipse 4.4 (Luna)

2015-04-30 Thread Gavin Eadie
OK .. Yosemite with none of Java, WebObjects, Eclipse, etc installed: Install Java SE 7, Luna 4.4.2, WOLips for Luna from Jenkins (WOLips only; not WOLips Goodies). Create new Wonder App from template .. frameworks aren't installed so linking complaints, but can I edit Main.WO? Yes, Main.WO is

Re: WOLips update site for Eclipse 4.4 (Luna)

2015-04-30 Thread Gavin Eadie
It's the missing *.wod that kills the component editor. On Thu, Apr 30, 2015 at 5:02 PM, Gavin Eadie ga...@umich.edu wrote: OK .. Yosemite with none of Java, WebObjects, Eclipse, etc installed: Install Java SE 7, Luna 4.4.2, WOLips for Luna from Jenkins (WOLips only; not WOLips Goodies).

Re: WOLips update site for Eclipse 4.4 (Luna)

2015-04-30 Thread Gavin Eadie
I don’t recall for certain, but have a nagging feeling that Apple’s inline binding implementation (which I use) is enabled by the absence of a *.wod file. It’s been years and years since I tripped over this and my memory may be faulty (it may be a zero byte *.wod has the same effect). On Apr

Re: WOLips update site for Eclipse 4.4 (Luna)

2015-04-30 Thread David Avendasora
Chuck keeps trying to kill his liver. I don't think he's ever seen it either. Coincidence? I. Think. Not. Sent from my iPhone On Apr 30, 2015, at 5:58 PM, Hugi Thordarson h...@karlmenn.is wrote: That’s like trying to whack off a phantom limb.

Re: WOLips update site for Eclipse 4.4 (Luna)

2015-04-30 Thread Hugi Thordarson
Might explain it. I’ve been using inline bindings since forever but never actually deleted the .wod. That’s like trying to whack off a phantom limb. - hugi On 30. apr. 2015, at 21:54, Gavin Eadie ga...@umich.edu wrote: It's the missing *.wod that kills the component editor. On Thu, Apr

Re: WOLips update site for Eclipse 4.4 (Luna)

2015-04-30 Thread Gavin Eadie
OK .. Continuing to appreciate the assistance: Samuel: Are you using the build from Jenkins? --- Yes For what it's worth: org.objectstyle.wolips.componenteditor.sashWeights=1000 Also: Moving to a new workspace isn't a solution --- Still getting errors in the WOD editor (on opening a second WOD

Re: WOLips update site for Eclipse 4.4 (Luna)

2015-04-30 Thread David Avendasora
The commit that fixed the bug had the following code: if (sashWeights[1] / (float)sashWeights[0] 0.15) { sashWeights[0] = 85; sashWeights[1] = 15; } So it appears that there are multiple sash weights for the HTMLWodTab and they are percentages and the sum of the two panes

Re: WOLips update site for Eclipse 4.4 (Luna)

2015-04-30 Thread Samuel Pelletier
Strange, Dave merged my pull request that fix this problem few builds ago. Try to remove all the plugin content et reinstall it. When I debugged this problem, I had to do it many times, it seems some parts where not always replaced by a reinstallation. Are you using the build from Jenkins ?

Re: WOLips update site for Eclipse 4.4 (Luna)

2015-04-29 Thread David Avendasora
I Gavin, I have pulled several changes into WOLips since getting the build working - Including a fix for this EXACT issue. Make sure you have at least build 33 (4.4.20150427.33) We are now on build 37 BTW! Dave On Apr 27, 2015, at 11:19 PM, Gavin Eadie ga...@umich.edu wrote: On Sun,

Re: WOLips update site for Eclipse 4.4 (Luna)

2015-04-29 Thread David Avendasora
I ran in to this problem on the flight back from Germany just trying to setup a new workspace using WOLips 4.4. Editing the WOLips preferences would cause an error which would cause me to have to force-quit eclipse. After a bit of digging I found the Unsupported major.minor version 51.0 buried

Re: WOLips update site for Eclipse 4.4 (Luna)

2015-04-29 Thread David Avendasora
I believe that once the component editor has been set with the WOD editor smaller than the minimum which the old one allowed you to do, the workspace becomes corrupted. Before trying to open a component try resetting the perspective. If that doesn't work, then you might need to just create a

Re: WOLips update site for Eclipse 4.4 (Luna)

2015-04-29 Thread Gavin Eadie
You're a jolly bunch of clowns! I love you guys!! On Wed, Apr 29, 2015 at 7:48 PM, David Avendasora webobje...@avendasora.com wrote: On Apr 29, 2015, at 4:14 PM, Gavin Eadie ga...@umich.edu wrote: .. you are a wonderful human being! On Apr 29, 2015, at 6:10 PM, Gavin Eadie

Re: WOLips update site for Eclipse 4.4 (Luna)

2015-04-29 Thread Hugi Thordarson
You can also fix it by deleting the component editor preferences file from your workspace (the .metadata folder is in the root of your workspace and contains all of its settings). Here: .metadata/.plugins/org.eclipse.core.runtime/.settings/org.objectstyle.wolips.wodclipse.core.prefs Haven’t

Re: WOLips update site for Eclipse 4.4 (Luna)

2015-04-29 Thread David Avendasora
On Apr 29, 2015, at 4:14 PM, Gavin Eadie ga...@umich.edu wrote: .. you are a wonderful human being! On Apr 29, 2015, at 6:10 PM, Gavin Eadie ga...@umich.edu wrote: hmm .. reinstalled Eclipse 4.4.2, WOLips build 37 and JDK 1.7.0_79 but still cannot display (or, therefore, edit)

Re: WOLips update site for Eclipse 4.4 (Luna)

2015-04-29 Thread Chuck Hill
I still want to go there and see one of the famed Icelandic Coffee Hoses. They sound awesome. The fermented shark loin... not so much. :-P Chuck On 2015-04-29, 4:43 PM, David Avendasora wrote: On Apr 29, 2015, at 7:20 PM, Hugi Thordarson h...@karlmenn.ismailto:h...@karlmenn.is wrote: You

Re: WOLips update site for Eclipse 4.4 (Luna)

2015-04-29 Thread Gavin Eadie
On Wed, Apr 29, 2015 at 7:44 AM, David Avendasora webobje...@avendasora.com wrote: I have pulled several changes into WOLips since getting the build working - Including a fix for this EXACT issue. Make sure you have at least build 33 (4.4.20150427.33) We are now on build 37 BTW! hmm ..

Re: WOLips update site for Eclipse 4.4 (Luna)

2015-04-29 Thread Gavin Eadie
Looks like it's running with the Java 8 VM .. from what I've read that would cause trouble .. On Wed, Apr 29, 2015 at 6:10 PM, Gavin Eadie ga...@umich.edu wrote: On Wed, Apr 29, 2015 at 7:44 AM, David Avendasora webobje...@avendasora.com wrote: I have pulled several changes into WOLips

Re: WOLips update site for Eclipse 4.4 (Luna)

2015-04-29 Thread Gavin Eadie
On Wed, Apr 29, 2015 at 6:17 PM, Gavin Eadie ga...@umich.edu wrote: Looks like it's running with the Java 8 VM .. from what I've read that would cause trouble . Nope! Running the 1.7.0_79 VM fails the same way. ___ Do not post admin requests to

Re: WOLips update site for Eclipse 4.4 (Luna)

2015-04-29 Thread Gavin Eadie
On Wed, Apr 29, 2015 at 7:20 PM, Hugi Thordarson h...@karlmenn.is wrote: .metadata/.plugins/org.eclipse.core.runtime/.settings/ deleting this file fixed the problem .. many thanks. The file contained the following: gavin$ cat org.objectstyle.wolips.wodclipse.core.prefs

Re: WOLips update site for Eclipse 4.4 (Luna)

2015-04-29 Thread Ken Anderson
I was about to say, I can edit components without trouble. So seems like SQL generation is the open item - is there anything I can do to help on this one? On Apr 29, 2015, at 7:34 PM, Gavin Eadie ga...@umich.edu wrote: On Wed, Apr 29, 2015 at 7:20 PM, Hugi Thordarson h...@karlmenn.is

Re: WOLips update site for Eclipse 4.4 (Luna)

2015-04-29 Thread David Avendasora
On Apr 29, 2015, at 7:20 PM, Hugi Thordarson h...@karlmenn.is wrote: You can also fix it by deleting the component editor preferences file from your workspace I hope everyone here appreciates the irony of the guy that **lives on a freakin’ volcano** telling someone they don’t have to blow

Re: WOLips update site for Eclipse 4.4 (Luna)

2015-04-28 Thread Ken Anderson
So, even while running Eclipse Luna on 1.7, I couldn’t build. I had to start using the 1.7 JVM for my app. That works fine, so all good… just thought I’d let everyone know. I hope everyone has had safe travel back from Germany! Ken On Apr 28, 2015, at 12:22 PM, Ken Anderson

Re: WOLips update site for Eclipse 4.4 (Luna)

2015-04-28 Thread Ken Anderson
All, I’m having a little trouble with my ancient build.xml files. I’m getting this when trying to do an install: java.lang.UnsupportedClassVersionError: org/objectstyle/woproject/ant/WOCompile : Unsupported major.minor version 51.0 I’m guessing eclipse 4.4 doesn’t like plugins compiled with

Re: WOLips update site for Eclipse 4.4 (Luna)

2015-04-28 Thread Chuck Hill
51 is Java 7. You must be running Eclipse with Java 6. Chuck On 2015-04-28, 5:41 AM, Ken Anderson wrote: All, I'm having a little trouble with my ancient build.xml files. I'm getting this when trying to do an install: java.lang.UnsupportedClassVersionError:

Re: WOLips update site for Eclipse 4.4 (Luna)

2015-04-28 Thread Ken Anderson
Ok got it. Yes, only Java 6 is on the machine. I'll try installing 7 and running eclipse with it. Thanks, Ken On Apr 28, 2015, at 12:06 PM, Chuck Hill ch...@gevityinc.com wrote: 51 is Java 7. You must be running Eclipse with Java 6. Chuck On 2015-04-28, 5:41 AM, Ken Anderson wrote:

Re: WOLips update site for Eclipse 4.4 (Luna)

2015-04-27 Thread Gavin Eadie
Kudos, gentlemen .. On Apr 26, 2015, at 12:39 PM, Ken Anderson kenli...@anderhome.com wrote: WOLips for Eclipse 4.4 (Luna) is now successfully building on the WOCommunity Jenkins server! ___ Do not post admin requests to the list. They will be

Re: WOLips update site for Eclipse 4.4 (Luna)

2015-04-27 Thread Timothy Worman
Muchas Gracias! Tim Worman UCLA GSEIS On Apr 27, 2015, at 8:19 AM, Gavin Eadie ga...@umich.edu wrote: Kudos, gentlemen .. On Apr 26, 2015, at 12:39 PM, Ken Anderson kenli...@anderhome.com wrote: WOLips for Eclipse 4.4 (Luna) is now successfully building on the WOCommunity Jenkins

Re: WOLips update site for Eclipse 4.4 (Luna)

2015-04-26 Thread Ken Anderson
AWESOME!! On Apr 26, 2015, at 11:31 AM, David Avendasora webobje...@avendasora.com wrote: I’d like to announce that due to a some hard work at WOWODC by Larry Mills-Gahl, Tom Philip, Pascal Robert and some furious “build”-button-clicking by myself… WOLips for Eclipse 4.4 (Luna) is

WOLips update site for Eclipse 4.4 (Luna)

2015-04-26 Thread David Avendasora
I’d like to announce that due to a some hard work at WOWODC by Larry Mills-Gahl, Tom Philip, Pascal Robert and some furious “build”-button-clicking by myself… WOLips for Eclipse 4.4 (Luna) is now successfully building on the WOCommunity Jenkins server! The Eclipse update site for Eclipse 4.4

Re: WOLips update site for Eclipse 4.4 (Luna)

2015-04-26 Thread Hugi Thordarson
You guys rock! - hugi On 26. apr. 2015, at 15:31, David Avendasora webobje...@avendasora.com wrote: I’d like to announce that due to a some hard work at WOWODC by Larry Mills-Gahl, Tom Philip, Pascal Robert and some furious “build”-button-clicking by myself… WOLips for Eclipse

Re: WOLips update site for Eclipse 4.4 (Luna)

2015-04-26 Thread Paul Hoadley
On 27 Apr 2015, at 1:01 am, David Avendasora webobje...@avendasora.com wrote: I’d like to announce that due to a some hard work at WOWODC by Larry Mills-Gahl, Tom Philip, Pascal Robert and some furious “build”-button-clicking by myself… WOLips for Eclipse 4.4 (Luna) is now successfully