Re: WOWODC 2014: more details

2013-09-26 Thread David Holt
Definitely interested. Sent from my iPad > On Sep 26, 2013, at 6:25 PM, Pascal Robert wrote: > > Hi guys, > > The ticket for WOWODC 2014 will be $580. As usual, we will have special price > for groups. Tickets will be on sale before December. Ticket will include a > dinner on Sunday April 13

WOWODC 2014: more details

2013-09-26 Thread Pascal Robert
Hi guys, The ticket for WOWODC 2014 will be $580. As usual, we will have special price for groups. Tickets will be on sale before December. Ticket will include a dinner on Sunday April 13th, at this sugar shack: http://www.sucreriedelamontagne.com/ Daniel, the event manager, knows the owners

Re: Clarification on passing EOs to background threads

2013-09-26 Thread Paul Hoadley
Hi Henrique, Thanks for your input. Just out of curiosity, can I ask you to expand on a few points? (My original problem is solved—I'll just have to do the report creation in a less general way. But I think it's interesting to get to the bottom of the received wisdom on this issue.) On 27/0

Re: d2w query question

2013-09-26 Thread David Holt
Your method calling this query page should actually be: public WOComponent queryBillboarAction() { return D2W.factory().pageForConfigurationNamed("QueryBillboard", session()); } pageConfiguration = "QueryBillboard" => entity = "Grid" [com.webobjects.directtoweb.EntityAssignment], task

Re: d2w query question

2013-09-26 Thread David Holt
Yes! You're coming to the crux of D2W power. Congratulations :-) All you need to do is set some rules for task and entity of the custom configuration you need. Typed into Mail: pageConfiguration = "RowsAndRowsOfMyAwesomeBillboards" => task = 'list' [com.webobjects.directtoweb.Assignment] pageCo

Re: d2w query question

2013-09-26 Thread Theodore Petrosky
On Sep 26, 2013, at 5:07 PM, David Holt wrote: > Hi Ted, > > well Grid is the entity, but you only want to display those grids that are > billboards? > > "Pages.ListGrid" = "List Billboards" > "Nav.ListGrid" = "List Billboards" > >> ((D2WComponent) qpi).d2wContext().takeValueForKey("List

Re: structure opinions

2013-09-26 Thread Marco A Gonzalez
A client has a mandatory to-one to person who has a to-one to address. Sent from my iPhone > On Sep 25, 2013, at 5:39 PM, Mark Wardle wrote: > > Hi. > > An address doesn't need to relate back to the person or client. > > Have a one-way relationship. > > Mark > >> On 14 Sep 2013, at 05:29

Re: d2w query question

2013-09-26 Thread David Holt
Hi Ted, well Grid is the entity, but you only want to display those grids that are billboards? "Pages.ListGrid" = "List Billboards" "Nav.ListGrid" = "List Billboards" > ((D2WComponent) qpi).d2wContext().takeValueForKey("ListBillboard", > "navigationState"); > ((D2WComponent) qpi).d

Re: Anyone using EOF to access Informix?

2013-09-26 Thread Hugi Thordarson
OK. I wrote a plugin to work around the date issue. There's probably a better way to handle it, but it seems to work fine so I'm sharing it in case anyone needs it in the future. https://gist.github.com/hugith/6719255 Cheers, - hugi On 26.9.2013, at 16:08, Paul Yu wrote: > Yes. We used EO

Re: d2w query question

2013-09-26 Thread Theodore Petrosky
yes, I use the Localizable.strings. I don't see how this would help? I thought I wanted to change the context pageConfiguration. What did I miss? On Sep 26, 2013, at 12:12 PM, David Holt wrote: > Are you using Localizable.strings? > > > On 2013-09-26, at 7:24 AM, Theodore Petrosky wrote

Re: Clarification on passing EOs to background threads

2013-09-26 Thread Henrique Prange
Hi Paul, I've refactored the report generation in one of applications lately to use a background task. A few lessons that I learned: 1) Do not create the editing context you're going to use in the background task during the request-response cycle. 2) Do not pass EOs to the background task. Onl

Re: d2w query question

2013-09-26 Thread David Holt
Are you using Localizable.strings? On 2013-09-26, at 7:24 AM, Theodore Petrosky wrote: > > On Sep 26, 2013, at 4:41 AM, Fabian Peters wrote: > >> Hi Ted, >> >> Am 26.09.2013 um 01:51 schrieb Theodore Petrosky: >> >>> yea sometimes the original answer to a post was over my head and I didn't

Re: Anyone using EOF to access Informix?

2013-09-26 Thread Paul Yu
Yes. We used EOF to talk to Informix on the CHCH-II project when I was at Apple. We had to write some extensions to deal with their Blades technology? I don't know where any of that is now. Paul On Sep 26, 2013, at 8:21 AM, Jesse Tayler wrote: > > I recall EOF working with Informix. But t

Re: d2w query question

2013-09-26 Thread Theodore Petrosky
On Sep 26, 2013, at 4:41 AM, Fabian Peters wrote: > Hi Ted, > > Am 26.09.2013 um 01:51 schrieb Theodore Petrosky: > >> yea sometimes the original answer to a post was over my head and I didn't >> understand something, so I gave up. >> >> I have your solution working beautifully. I hope this

Re: Anyone using EOF to access Informix?

2013-09-26 Thread Jesse Tayler
I recall EOF working with Informix. But that was a ‘while’ ago…. On Sep 26, 2013, at 7:04 AM, Hugi Thordarson wrote: > Please. Don't laugh at me. > > I need to use Informix, at least until we've migrate this particular legacy > system to something that's … well … not Informix. > I'm hitting

Anyone using EOF to access Informix?

2013-09-26 Thread Hugi Thordarson
Please. Don't laugh at me. I need to use Informix, at least until we've migrate this particular legacy system to something that's … well … not Informix. I'm hitting some walls though (for example regarding querying on dates)—and before I start tackling the problems from the ground up I wanted to

Re: d2w query question

2013-09-26 Thread Fabian Peters
Hi Ted, Am 26.09.2013 um 01:51 schrieb Theodore Petrosky: > yea sometimes the original answer to a post was over my head and I didn't > understand something, so I gave up. > > I have your solution working beautifully. I hope this helps me to understand > the delegates more. > > but here is an