Re: Site management strategies with Subversion

2006-03-14 Thread Anjo Krank
Am 14.03.2006 um 23:37 schrieb [EMAIL PROTECTED]: My concern has been that doing "svn merge -r 60" will pull in every change that has been committed to the entire repository in versions 43-60, *to all files*, and that's almost never what I want. I don't understand why the Subversion folks

Re: Compatability with MacBook Pro

2006-03-14 Thread Lachlan Deck
Hi there, On 15/03/2006, at 2:20 PM, Luke Holton wrote: Thanks for passing the message on to me. I've tried various combinations without success. Xcode 2.0 with WO 5.2.4 as brought over with OS Migration Tool: Most things worked but EOModler was unabled to make connections to a

Re: Optimistic locking failure on insert

2006-03-14 Thread Ian Joyner
On 15/03/2006, at 6:56 AM, Janine Sisk wrote: No problem, just use your SCC package to compare the current code to the last known good version and see what has changed. Which just proves my point, because that's exactly what I did without an SCC package! Would I like to avoid part of my man

Re: Optimistic locking failure on insert

2006-03-14 Thread Ian Joyner
OK, found the problem. It was not in the model, but rather in the code for initializing a JTree. First, I was getting top-level nodes by getting them out of the display group: NSArray notes = EOQualifier.filteredArrayWithQualifier (display_group.allObjects (), EOQualifier.qualifierWithQua

Re: Compatability with MacBook Pro

2006-03-14 Thread Luke Holton
Kieran, Thanks for passing the message on to me. I've tried various combinations without success. Xcode 2.0 with WO 5.2.4 as brought over with OS Migration Tool: Most things worked but EOModler was unabled to make connections to a database. Xcode 2.2.1 with WO 5.2.4 WO 5

Re: Site management strategies with Subversion

2006-03-14 Thread womail
Ok, now we're getting somewhere. If I can do this on a per-file basis then that's not quite so bad; it wasn't clear to me from the documentation that this was possible. It's still not ideal; it's much more convenient to do "cvs tag -F stable x.java, x.html, x.js" than it is to look up a

Re: SSL Questions

2006-03-14 Thread James Cicenia
Great.. I will look at it tonight when I get home... thanksOn Mar 14, 2006, at 4:28 PM, Geoff Hopson wrote:Practical WebObjects covers this subject pretty well, including switching in and out of SSL mode, dealing with forms, links and so on. Chapter 4, if memory serves me right... http://www.global

Re: SSL Questions

2006-03-14 Thread James Cicenia
Ken - Thank you for your prompt response. Actually, since we have a subscription based application I can go completely secure. We do actually Direct Actions a bit too. We would also upgrade our servers during this process to ones that will be about three times faster than the current serv

Re: SSL Questions

2006-03-14 Thread Geoff Hopson
Practical WebObjects covers this subject pretty well, including switching in and out of SSL mode, dealing with forms, links and so on. Chapter 4, if memory serves me right... http://www.global-village.net/products/practical_webobjectsSource code:http://www.apress.com/ApressCorporate/supplement/1/24

Re: SSL Questions

2006-03-14 Thread Ken Anderson
James, That's a pretty loaded question. It really depends on what you're trying to accomplish. How much of the site needs to be secure? Do you use a lot of direct actions? Mostly components? Generally, if you're just switching your entire site to SSL and don't need to switch back and

SSL Questions

2006-03-14 Thread James Cicenia
Hello - We are about to go SSL with our application. What do I have to worry about on the WebObjects side of things? Anything that I need to be aware of or does it just work? Thanks James Cicenia ___ Do not post admin requests to the list. They wi

Re: boolean changing value in a RR loop

2006-03-14 Thread Dev WO
Hi Ken, In fact the user doesn't change the boolean directly, but the action will change the boolean to true to "display" the result of his search. I'm actually trying to "determine" something using the debugger... Thanks for your help and advice:) Xavier If this boolean can be changed thr

Re: boolean changing value in a RR loop

2006-03-14 Thread Dev WO
Hi Art, I was actually trying with the accessor, but same result. I'm trying the debugger now, there's so much things written in the stacktrace;) I need to learn how to use it:) I'll keep on trying it. Thanks for the pointer:) Xavier On Mar 14, 2006, at 11:21 AM, Dev WO wrote: Is there

Re: Optimistic locking failure on insert

2006-03-14 Thread Jerry W. Walker
Oooh!!! What a shot! :-) Regards, Jerry On Mar 14, 2006, at 2:57 PM, [EMAIL PROTECTED] wrote: No problem, just use your SCC package to compare the current code to the last known good version and see what has changed. Oh, wait. janine :) On Mar 13, 2006, at 10:09 PM, Ian Joyner wr

Re: Generating reports in excel?

2006-03-14 Thread Anjo Krank
The idea behind ExcelGenerator ist that you can use - hopefully - the same HTML that you output anyway for your reporting tasks. In particular, you should be able to re-use DynaReporter HTML and you also need only a minimal amount of work to use D2W. Sometimes, you might need to apply some

Re: boolean changing value in a RR loop

2006-03-14 Thread Ken Anderson
If this boolean can be changed through something the user does, you're probably getting a mismatch from what the page looked like when it was sent out, and when the form came back. You can't change the structure of the page, because when WO reconstitutes the page to fill in the form values

Re: boolean changing value in a RR loop

2006-03-14 Thread Art Isbell
On Mar 14, 2006, at 11:21 AM, Dev WO wrote: Is there any way I could check what is accessing this boolean in a request-response loop? If you haven't created accessor methods for this boolean in your component, do so. Then set debugger breakpoints in the setter and getter methods. You s

boolean changing value in a RR loop

2006-03-14 Thread Dev WO
Hi guys, I've got something strange happening to me here: I've got a boolean to manage what's displayed in a WOComponent. an action is triggered inside this WOComponent and changes the value of the boolean (to "true"). If I check the value of the boolean inside this action, it has the correc

Re: Site management strategies with Subversion

2006-03-14 Thread Arturo Perez
[EMAIL PROTECTED] wrote: I was just looking at the branching/merging chapter of the red-bean book, and it looks like not even having my own working branch is going to completely save me, because when you go to merge changes it's still based on a revision, not on a per-file basis. So I'm still

Re: Generating reports in excel?

2006-03-14 Thread Valerio Luccio
Zac Konopa wrote: I'm working on a project where we need to generate a report in an Excel format. Has anyone done this before and do you have any tips and tricks? Thx Zac I use jexcel (http://www.andykhan.com/jexcelapi/) it works fine for me. -- Valerio Luccio (212) 998-87

Re: Site management strategies with Subversion

2006-03-14 Thread womail
On Mar 14, 2006, at 12:33 PM, Lachlan Deck wrote: I'm not sure I'm understanding why your frameworkA and frameworkB aren't in their own respective svn repository. That way they have their own version numbers and, of course, your application(s) can depend on certain versions of them... The

Re: Site management strategies with Subversion

2006-03-14 Thread Lachlan Deck
Hi there, On 15/03/2006, at 6:34 AM, [EMAIL PROTECTED] wrote: Ok, I think I've got it. I don't like it, but I've got it. - set up main codebase in /trunk - create three branches: release, work, tweaks - set up live site from release branch - do longer term work in work branch, committing as

Re: Site management strategies with Subversion

2006-03-14 Thread womail
On Mar 14, 2006, at 12:13 PM, Geoff Hopson wrote: Remind us againwhy do you want to leave CVS? :-) Heh. Not such a bad question, obviously! I started looking into this because moving to WebObjects means leaving behind nearly everything we have been doing for the last 7 years, and wit

Re: Compatability with MacBook Pro

2006-03-14 Thread Lachlan Deck
Hi there, On 15/03/2006, at 5:50 AM, Kieran Kelleher wrote: Cliff Tuel from Apple just responded to me saying XCode 2.2 is needed for Intel. Now WebObjects 5.3.1 _requires_ XCode 2.2, but will XCode 2.2 work with a WebObjects 5.2.4 installation such that I can build my apps for deploymen

Re: Site management strategies with Subversion

2006-03-14 Thread Geoff Hopson
Remind us againwhy do you want to leave CVS? :-)On 14/03/06, [EMAIL PROTECTED] < [EMAIL PROTECTED]> wrote:Ok, I think I've got it.   I don't like it, but I've got it. - set up main codebase in /trunk- create three branches:  release, work, tweaks- set up live site from release branch- do longer

Re: Optimistic locking failure on insert

2006-03-14 Thread womail
No problem, just use your SCC package to compare the current code to the last known good version and see what has changed. Oh, wait. janine :) On Mar 13, 2006, at 10:09 PM, Ian Joyner wrote: I have been running this model for six months and saving this entity just fine. Suddenly, I a

Re: Site management strategies with Subversion

2006-03-14 Thread womail
Ok, I think I've got it. I don't like it, but I've got it. - set up main codebase in /trunk - create three branches: release, work, tweaks - set up live site from release branch - do longer term work in work branch, committing as desired - do changes that need to go out right away to tweaks br

Re: Site management strategies with Subversion

2006-03-14 Thread womail
I was just looking at the branching/merging chapter of the red-bean book, and it looks like not even having my own working branch is going to completely save me, because when you go to merge changes it's still based on a revision, not on a per-file basis. So I'm still stuck with having wor

Re: Generating reports in excel?

2006-03-14 Thread Hugi Thordarson
I've use JExcelAPI on several projects. It's quite clean and convenient to use and I find it's API is a bit simpler than POI's. - H On 14.3.2006, at 18:53, Kieran Kelleher wrote: Project Wonder's ExcelGenerator framework works OK it is a WebObjects-ified wrapper around the Apache POI

Re: Generating reports in excel?

2006-03-14 Thread Kieran Kelleher
Project Wonder's ExcelGenerator framework works OK it is a WebObjects-ified wrapper around the Apache POI functionality. I head JExcelAPI open source framework is pretty good too, but I have not used it yet. Regards, Kieran On Mar 14, 2006, at 1:10 PM, Zac Konopa wrote: I'm working o

Re: Compatability with MacBook Pro

2006-03-14 Thread Kieran Kelleher
Cliff Tuel from Apple just responded to me saying XCode 2.2 is needed for Intel. Now WebObjects 5.3.1 _requires_ XCode 2.2, but will XCode 2.2 work with a WebObjects 5.2.4 installation such that I can build my apps for deployment using XCode 1.5 and WO 5.2.3 for deployment on Panther Serv

Re: Site management strategies with Subversion

2006-03-14 Thread Arturo Perez
[EMAIL PROTECTED] wrote: Mind you, I'm no subversion expert (don't even play one on TV :-). I am learning it as part of my current position. I've been using it for several months now over several releases. Like you, I prefer Perforce but we don't always get to choose :-) This link may hel

Re: Generating reports in excel?

2006-03-14 Thread Geoff Hopson
Thereis also the APache Jakarta POI project - http://jakarta.apache.org/poi/index.html(maybe Wonder wrappers this...dunno...just used POI in the past and found it pretty easy to incorporate into WO) GeoffOn 14/03/06, Jean-François Veillette <[EMAIL PROTECTED]> wrote: oops : http://wonder.sf.netLe 0

Re: Site management strategies with Subversion

2006-03-14 Thread womail
On Mar 14, 2006, at 9:53 AM, Arturo Perez wrote: So what you really need is a way to pick and choose the revisions that go into your stable copy, not the individual files. You may be right. Let me tell you how I envision this, and you can tell me if I'm wrong (please!). Let's say I check

Re: Generating reports in excel?

2006-03-14 Thread Jean-François Veillette
oops : http://wonder.sf.net Le 06-03-14, à 13:14, Jean-François Veillette a écrit : Look at WOnder, there is a framework to do this. I've done it, work well. It generate xsl files with format and formulas if need be. http://wonder.fs.net - jfv Le 06-03-14, à 13:10, Zac Konopa a écrit : I

Re: Generating reports in excel?

2006-03-14 Thread Jean-François Veillette
Look at WOnder, there is a framework to do this. I've done it, work well. It generate xsl files with format and formulas if need be. http://wonder.fs.net - jfv Le 06-03-14, à 13:10, Zac Konopa a écrit : I'm working on a project where we need to generate a report in an Excel format. Has a

Re: Generating reports in excel?

2006-03-14 Thread Chuck Hill
Excel format meaning with formulas, or just in CSV format that Excel can import? On Mar 14, 2006, at 10:10 AM, Zac Konopa wrote: I'm working on a project where we need to generate a report in an Excel format. Has anyone done this before and do you have any tips and tricks? Thx Zac ___

Generating reports in excel?

2006-03-14 Thread Zac Konopa
I'm working on a project where we need to generate a report in an Excel format. Has anyone done this before and do you have any tips and tricks? Thx Zac ___ Do not post admin requests to the list. They will be ignored. Webobjects-dev mailing list

Re: Compatability with MacBook Pro

2006-03-14 Thread Luke Holton
All, Re: What is the minimum version of XCode that runs natively on MacBook Pro w/Intel (for use with WebObjects only)? I too am interested in the answer to this question. We have legacy apps built with Xcode 2.0 and WO 5.2.4. I've not been able to get those versions working properly on my M

Re: Site management strategies with Subversion

2006-03-14 Thread Arturo Perez
[EMAIL PROTECTED] wrote: Something I do frequently is push small changes from a dev site to a live site. In CVS I do this by tagging the files in the dev site I want to move over with "stable", then going over to the live site (which was originally created by checking out on the "stable" tag)

Compatability with MacBook Pro

2006-03-14 Thread Kieran Kelleher
What is the minimum version of XCode that runs natively on MacBook Pro w/Intel (for use with WebObjects only)? ___ Do not post admin requests to the list. They will be ignored. Webobjects-dev mailing list (Webobjects-dev@lists.apple.com) Help/Unsu

Re: EOKeyValueQualifier not resolving vertical inheritance?

2006-03-14 Thread Kieran Kelleher
I had issues with EOQualifiers and inheritance hierarchies generating bad SQL a few weeks ago and the solution (Chuck Hill responded I think) was to stick with single table inheritance if you want reliable SQL generated from your EOQualifiers. Regards, Kieran On Mar 14, 2006, at 3:11 AM, W

Re: EOKeyValueQualifier not resolving vertical inheritance?

2006-03-14 Thread Lachlan Deck
Hi Wolfram, On 14/03/2006, at 7:11 PM, Wolfram Stebel wrote: i create a complex query from user input via EOKeyValueQualifier and other EOQualifiers. <...> When the left hand side points to an attribute of an inherited class it evaluates to the wrong derived entity: Compared to the above

EOKeyValueQualifier not resolving vertical inheritance?

2006-03-14 Thread Wolfram Stebel
Hi List, i create a complex query from user input via EOKeyValueQualifier and other EOQualifiers. Absolutely fine is: EOKeyValueQualifier ( myAttributeName, mySelector, myComparedEO ); Also OK is it for a keypath to a non flattened attribute (lets say: "location.derivedClassAttribute", where loc