Re: timezone, ok I'm done

2013-03-12 Thread Theodore Petrosky
i did pull down the most recent wonder but I forgot the last step (sudo ant frameworks frameworks.install). so it was running fine on my development box but not installing for deploy. Thank you. --- On Tue, 3/12/13, David Holt wrote: > From: David Holt > Subject: Re: timezone, ok I'm done >

Re: timezone, ok I'm done

2013-03-12 Thread Pascal Robert
To be more precise: https://github.com/projectwonder/wonder/commit/e573538b44e7f8d98966261ce1a1c8de2019e985 > Are you using a recent version of Wonder? > > I just fixed this. PST is a hard coded string. > > David > > > On 2013-03-12, at 11:14 AM, Theodore Petrosky wrote: > >> beautiful (alm

Re: timezone, ok I'm done

2013-03-12 Thread David Holt
Are you using a recent version of Wonder? I just fixed this. PST is a hard coded string. David On 2013-03-12, at 11:14 AM, Theodore Petrosky wrote: > beautiful (almost). so I stuck this in my application constructor: > TimeZone.setDefault(TimeZone.getTimeZone("Canada/Eastern"));

simpleListPage ???

2013-03-12 Thread Theodore Petrosky
I doctored the ERMDSimpleListPageRepetition adding: to the top so I could fly in a component depending on the current user's permissions. here is the WOD InstructionComponent : WOSwitchComponent { WOComponentName = d2wContext.headerInstructionComponentName; } InstructionCompon

Re: timezone, ok I'm done

2013-03-12 Thread Theodore Petrosky
beautiful (almost). so I stuck this in my application constructor: TimeZone.setDefault(TimeZone.getTimeZone("Canada/Eastern")); NSTimeZone.setDefault(TimeZone.getTimeZone("Canada/Eastern")); and on my development box I see EDT for the timezone. on the deployment box (centos 6) at t

Re: Community/WOWODC sponsorship

2013-03-12 Thread Pascal Robert
Le 2013-03-12 à 13:46, Musall Maik a écrit : > Hi Pascal, > > for the membership WOWODC ticket discount, if a running membership expires > before WOWODC, which is the relevant date? > Date of ticket purchase or date of conference? Answer is here: http://www.wocommunity.org/wowodc13/tickets.h

Re: Community/WOWODC sponsorship

2013-03-12 Thread Musall Maik
Hi Pascal, for the membership WOWODC ticket discount, if a running membership expires before WOWODC, which is the relevant date? Date of ticket purchase or date of conference? Maik Am 12.03.2013 um 18:25 schrieb Pascal Robert : > Hi, > > With the rethinking done on membership, and as previou

Re: (ERX)WOForm creates a new Session

2013-03-12 Thread Chuck Hill
Hi Roger, You need to bind directActionName and have the login form submit to a direct action. The action then validates the credentials and returns the page after login if valid. This also requires that the login page come from a direct action. Chuck On 2013-03-12, at 10:33 AM, Roger Perry

Re: (ERX)WOForm creates a new Session

2013-03-12 Thread Ramsey Gurley
Hi Roger, Someone may correct me if I'm wrong, but I think you have to provide an actionClass or directActionName binding on the woform or it will generate a /wo/ url which, being a component action, will generate a session. Ramsey On Mar 12, 2013, at 10:33 AM, Roger Perryman wrote: > I am cr

(ERX)WOForm creates a new Session

2013-03-12 Thread Roger Perryman
I am creating a Login page and I don't want it to create a new Session until after the page is submitted. Loading the Login page creates a new session. Initially, I had a few elements that had session references but I corrected those. I am still getting a session created. I've traced it down to

Community/WOWODC sponsorship

2013-03-12 Thread Pascal Robert
Hi, With the rethinking done on membership, and as previously announced, we redid the sponsorship for WOWODC. Instead, we now have packages that covers sponsorship for WOWODC and wocommunity.org: http://store.wocommunity.org/collections/membership The Bronze package is that the same price ($

Re: timezone, ok I'm done

2013-03-12 Thread David Holt
Application constructor is one way: // Default time zone // System.out.println("TimeZone IDs"+Arrays.toString(TimeZone.getAvailableIDs())); TimeZone.setDefault(TimeZone.getTimeZone("Canada/Eastern")); NSTimeZone.setDefault(TimeZone.getTimeZone("Canada/Eastern"));

timezone, ok I'm done

2013-03-12 Thread Theodore Petrosky
How do I select the timezone to use the ERDEditDatePopup? I have been googling for so long my fingers hurt. can someone help me with a d2w rule to set my ERDEditDatePopup. thank you ___ Do not post admin requests to the list. They will be ignored. Web

Online Store is now available for membership and WOWODC

2013-03-12 Thread Pascal Robert
Hi, The WOCommunity Association Online Store is now up and running! You can now buy tickets for WOWODC 2013, the Cayenne Training Day, membership and sponsorship packages. Please visit: http://store.wocommunity.org/ Right now, payment is done by PayPal. You can pay by credit card with PayPal

Re: Pass parameters from One HTML to another HTML

2013-03-12 Thread jp . malrieu
Your remark leads me to another question: I noticed indeed that in some components, inline bindings do not work (silently fail to display dynamic strings for example), whereas, in others, they do work... That is probably what happened to you. Has anybody else faced this problem? What could poss