doubleNumber, newDoubleColumn

2011-01-07 Thread Jesse Tayler
Is there something wrong with the prototype for MSQL if I get a EOGen result like this: questionTable.newDoubleColumn("lat", ${attribute.precision}, ${attribute.scale}, true); I'm adding lat/lon for storing geo numbers, I used the doubleNumber prototype but it seems to want something

Re: @sum for a group of displayGroups?

2011-01-07 Thread David Holt
When all you have is a volcano everything looks like fuel. On 2011-01-07, at 12:43 PM, Chuck Hill wrote: > > On Jan 7, 2011, at 12:07 PM, Hugi Thordarson wrote: > > Seriously. Does WOnder do _everything_?? > Did you see the new ERXToastAndButter()? >>> >>> >>> I think Q i

Re: @sum for a group of displayGroups?

2011-01-07 Thread Chuck Hill
On Jan 7, 2011, at 12:07 PM, Hugi Thordarson wrote: Seriously. Does WOnder do _everything_?? >>> >>> Did you see the new ERXToastAndButter()? >> >> >> I think Q is working on ERXToastAndVegemite() > > Burn it! Burn it with fire! Burn it? It is every so much more lovely just light

Re: @sum for a group of displayGroups?

2011-01-07 Thread Hugi Thordarson
>>> Seriously. Does WOnder do _everything_?? >>> >> >> Did you see the new ERXToastAndButter()? > > > I think Q is working on ERXToastAndVegemite() Burn it! Burn it with fire! - hugi ___ Do not post admin requests to the list. They will be ignored.

Re: @sum for a group of displayGroups?

2011-01-07 Thread Theodore Petrosky
I thought that was in the special ERXSousVide extensions.. --- On Fri, 1/7/11, Chuck Hill wrote: > From: Chuck Hill > Subject: Re: @sum for a group of displayGroups? > To: "Mark Wardle" > Cc: "David Avendasora" , > "webobjects-dev@lists.apple.com" , "Theodore > Petrosky" > Date: Friday, Jan

Re: @sum for a group of displayGroups?

2011-01-07 Thread Pascal Robert
Too bad it's not having ERXAutomaticallyCreateCodeForCommunityMembershipInTheCommunityApp > Seriously. Does WOnder do _everything_?? > > Dave > > On Jan 7, 2011, at 1:55 PM, Ramsey Gurley wrote: > >> You may want to consider an ERXDateGrouper instead of a display group for >> every day of the

Re: @sum for a group of displayGroups?

2011-01-07 Thread Chuck Hill
On Jan 7, 2011, at 11:34 AM, Mark Wardle wrote: > On 7 Jan 2011, at 19:25, David Avendasora wrote: > >> Seriously. Does WOnder do _everything_?? >> > > Did you see the new ERXToastAndButter()? I think Q is working on ERXToastAndVegemite() -- Chuck Hill Senior Consultant / VP

Re: @sum for a group of displayGroups?

2011-01-07 Thread Chuck Hill
No one told you??? On Jan 7, 2011, at 11:25 AM, David Avendasora wrote: > Seriously. Does WOnder do _everything_?? > > Dave > > On Jan 7, 2011, at 1:55 PM, Ramsey Gurley wrote: > >> You may want to consider an ERXDateGrouper instead of a display group for >> every day of the week. I think w

Re: @sum for a group of displayGroups?

2011-01-07 Thread Mark Wardle
On 7 Jan 2011, at 19:25, David Avendasora wrote: > Seriously. Does WOnder do _everything_?? > Did you see the new ERXToastAndButter()? Mark -- Dr. Mark Wardle Specialist registrar, Neurology (Sent from my mobile) ___ Do not post admin requests to t

Re: @sum for a group of displayGroups?

2011-01-07 Thread David Avendasora
Seriously. Does WOnder do _everything_?? Dave On Jan 7, 2011, at 1:55 PM, Ramsey Gurley wrote: > You may want to consider an ERXDateGrouper instead of a display group for > every day of the week. I think with that, you can just set your grouping > mode to week, sum, then set it back to whatev

Re: DB Localization problem - valueForKey(): lookup of unknown key: 'my_desc'.

2011-01-07 Thread Ramsey Gurley
Try setting a breakpoint in ERXGenericRecord._otherStorageBinding() and see what happens when your my_desc key is passed through it. Does it create a localized binding? Ramsey On Jan 7, 2011, at 9:05 AM, Sreenivasulu A wrote: Hi All, In my application, I am doing Database Localization.

Re: @sum for a group of displayGroups?

2011-01-07 Thread Ramsey Gurley
You may want to consider an ERXDateGrouper instead of a display group for every day of the week. I think with that, you can just set your grouping mode to week, sum, then set it back to whatever you were doing. Ramsey On Jan 7, 2011, at 12:56 PM, Theodore Petrosky wrote: I have a number

@sum for a group of displayGroups?

2011-01-07 Thread Theodore Petrosky
I have a number of displayGroups on my page that I get a sum on: SumAmountOfTimeMonday : WOString { value = mondaylistdg.displayedobjec...@sum.amountoftime; // VALID numberformat = "##.##"; } this is on a weekly calendar. I want to sum across: sundaylistdg.displayedobjec...@sum.amountoftime

Re: DB Localization problem - valueForKey(): lookup of unknown key: 'my_desc'.

2011-01-07 Thread Travis Britt
It's been a while since I set this up, but do you have the localized attributes in your Currency entity? Attributes like myDesc_en, myDesc_ms ? tb On Jan 7, 2011, at 9:05 AM, Sreenivasulu A wrote: > Hi All, > > In my application, I am doing Database Localization. > For this I did the followin

DB Localization problem - valueForKey(): lookup of unknown key: 'my_desc'.

2011-01-07 Thread Sreenivasulu A
Hi All, In my application, I am doing Database Localization. For this I did the following: DB charset = UTF-8 public class _Currency extends ERXGenericRecord {} _Currency.plist: == { allowsNull = N; columnName = "my_desc"; name = "my_desc

Re: multipart upload become garbage

2011-01-07 Thread Yung-Luen Lan
I did some tests and verified that the string and multipart binary POST is correct. What I did to fix the bug is just removing 8 lines of erroneous code which attempt to add a zero to the end of the content. https://github.com/yllan/wonder/commit/175145c3897f7da92be66d7be07802fb5f0dd461 if