Re: strange inheritance problem

2009-06-19 Thread Tim Worman
On Jun 18, 2009, at 10:14 PM, Chuck Hill wrote: Hi Tim, On Jun 18, 2009, at 6:12 PM, Tim Worman wrote: All: I have some fetches that are not respecting the restricting qualifiers in my model for a simple inheritance structure. I'm using WO 5.4.3. This what I have: Job Approver

Re: strange inheritance problem

2009-06-19 Thread David Avendasora
On Jun 19, 2009, at 2:00 AM, Tim Worman wrote: On Jun 18, 2009, at 10:14 PM, Chuck Hill wrote: Hi Tim, On Jun 18, 2009, at 6:12 PM, Tim Worman wrote: All: I have some fetches that are not respecting the restricting qualifiers in my model for a simple inheritance structure. I'm

Can't make localization

2009-06-19 Thread Gustavo Pizano
Hello, Hello I followed the instructions found here: http://en.wikibooks.org/wiki/WebObjects/Project_WONDER/Frameworks/ERExtensions/ERXLocalizer to create localization files and use them in the application. I created English.lproj and Sk.lproj each of the has their oun Localizable.string file

Fwd: Can't make localization UPDATE

2009-06-19 Thread Gustavo Pizano
ok I was able to show the change in the English.lproj .strings file.. I did a clean of the project and I saw the actual value in the WOString that has the .strings file.\ But when I try to use the Sk.. it doesn't work Im using theERXLocalizer.setDefaultLanguage(English); method in the

Report validation error to interface?

2009-06-19 Thread Yung-Luen Lan
Hi, About data validation, there is a common pattern: 1. Present a form to let user input data. 2. Validate the data during input or when form submitted. 3. If there are invalid data, shows error message to each field. To complete this task, I follow the approach that set the error messages to

Clean URL

2009-06-19 Thread .::welemski::.
Hi Lists, Can someone enlighten me on how did https://www.survs.com/app/wa/signincleaned their webobjects URL? I'm kinda jealous... and want to learn how'd they do it... Thanks, •••  Lemuel Raganas  welem...@gmail.com

Re: File upload as longresponse page

2009-06-19 Thread WebObjects - Anazys
Hi all, I'm looking for a solution to give feedback to the user when he wants to upload large files, ideally without any javascript.. I try to do that without any javascript, but I'm not sure that it could be possible. I found this old mail in the mailing list, but the link to wocode is

Announce: Using ERExcelLook Screencast

2009-06-19 Thread David LeBer
For those of you who don't follow my blog or twitter feed: I've posted a short screencast on adding and using Project Wonder's ERExcelLook to your app. This framework leverages Direct To Web and the ExcelGenerator framework to give you (almost) code free Excel exports The blog post with

Re: Clean URL

2009-06-19 Thread Yung-Luen Lan
Use a rewrite rule like this (if you use Apache): RewriteRule ^app/(.*)$ cgi-bin/WebObjects/YourWOApp.woa/$1 [R] Wach out if you have HTTP GET url. It seems that Apache rewrite didn't handle URL encoding escape well. (Or just because I didn't set it up correctly.) Regards, yllan On Fri, Jun

Re: Clean URL

2009-06-19 Thread Kieran Kelleher
Also, to work properly, all URLs generated by WebObjects for links on your pages can be made to comply with the apache directive by simply setting properties if you use Project Wonder's ERExtensions framework. See ERExtensions/Properties file for details. On Jun 19, 2009, at 8:49 AM,

http://wiki.objectstyle.org/ appears to be down.

2009-06-19 Thread Kieran Kelleher
http://wiki.objectstyle.org/ appears to be down. Any idea when it will be up? ___ Do not post admin requests to the list. They will be ignored. Webobjects-dev mailing list (Webobjects-dev@lists.apple.com) Help/Unsubscribe/Update your

Turning off EO debugging

2009-06-19 Thread Miguel Arroz
Hi! Sorry, this is driving me crazy. When I create a new Wonder App, by default, it logs all the changes one makes on an EO (stuff like updating startDate from null to 2009-06-18 23:00:00 Etc/GMT). How do I turn this off? I'm playing with log4j, but no luck so far. Yours Miguel

Fwd: Turning off EO debugging

2009-06-19 Thread John Huss
Turn off debug logging for your eos. In Properties: log4j.logger.your.app.model=INFO with the name of your eo package of course On Fri, Jun 19, 2009 at 9:06 AM, Miguel Arroz ar...@guiamac.com wrote: Hi! Sorry, this is driving me crazy. When I create a new Wonder App, by default, it logs

How can I use a components code?

2009-06-19 Thread James Cicenia
Hello - I am not thinking to clearly here as I have never done this. I have a D2WQueryPage that my users can use to filter their project list. This works great and I even figured out how to do an OR !!! However, they want this filter to set upon log in. How do I instantiate the code only and

Re: http://wiki.objectstyle.org/ appears to be down.

2009-06-19 Thread Andrus Adamchik
Hmm.. works for me. On Jun 19, 2009, at 5:02 PM, Kieran Kelleher wrote: http://wiki.objectstyle.org/ appears to be down. Any idea when it will be up? ___ Do not post admin requests to the list. They will be ignored. Webobjects-dev mailing list

Re: http://wiki.objectstyle.org/ appears to be down.

2009-06-19 Thread Francisc Simon
For me it works too :-) it could be that it is an problem with your ISP's DNS ... :-) Am 19.06.2009 um 16:24 schrieb Andrus Adamchik: Hmm.. works for me. On Jun 19, 2009, at 5:02 PM, Kieran Kelleher wrote: http://wiki.objectstyle.org/ appears to be down. Any idea when it will be up?

Re: http://wiki.objectstyle.org/ appears to be down.

2009-06-19 Thread Pascal Robert
It works for me now, but it wasn't 30 minutes ago. Same thing for David A. For me it works too :-) it could be that it is an problem with your ISP's DNS ... :-) Am 19.06.2009 um 16:24 schrieb Andrus Adamchik: Hmm.. works for me. On Jun 19, 2009, at 5:02 PM, Kieran Kelleher wrote:

Re: http://wiki.objectstyle.org/ appears to be down.

2009-06-19 Thread Kieran Kelleher
It is working now again must have been a temporary internet traffic jam in North America ;-) On Jun 19, 2009, at 10:35 AM, Pascal Robert wrote: It works for me now, but it wasn't 30 minutes ago. Same thing for David A. For me it works too :-) it could be that it is an problem with

Re: Turning off EO debugging

2009-06-19 Thread Kieran Kelleher
You want this: log4j.logger.er=INFO or this: log4j.rootCategory=INFO, etc, etc. Check for either of those in your Properties file. One is probably set to DEBUG instead of INFO On Jun 19, 2009, at 10:06 AM, Miguel Arroz wrote: Hi! Sorry, this is driving me crazy. When I create a new

Re: strange inheritance problem

2009-06-19 Thread Tim Worman
On Jun 19, 2009, at 12:33 AM, David Avendasora wrote: On Jun 19, 2009, at 2:00 AM, Tim Worman wrote: On Jun 18, 2009, at 10:14 PM, Chuck Hill wrote: Hi Tim, On Jun 18, 2009, at 6:12 PM, Tim Worman wrote: All: I have some fetches that are not respecting the restricting qualifiers in

Re: strange inheritance problem

2009-06-19 Thread David Avendasora
On Jun 19, 2009, at 12:20 PM, Tim Worman wrote: On Jun 19, 2009, at 12:33 AM, David Avendasora wrote: On Jun 19, 2009, at 2:00 AM, Tim Worman wrote: On Jun 18, 2009, at 10:14 PM, Chuck Hill wrote: Hi Tim, On Jun 18, 2009, at 6:12 PM, Tim Worman wrote: All: I have some fetches that

Re: File upload as longresponse page

2009-06-19 Thread Chuck Hill
Take a look at AjaxFileUpload in Wonder's Ajax framework. Chuck On Jun 19, 2009, at 5:35 AM, WebObjects - Anazys wrote: Hi all, I'm looking for a solution to give feedback to the user when he wants to upload large files, ideally without any javascript.. I try to do that without any

Re: strange inheritance problem

2009-06-19 Thread Tim Worman
On Jun 19, 2009, at 9:45 AM, David Avendasora wrote: On Jun 19, 2009, at 12:20 PM, Tim Worman wrote: On Jun 19, 2009, at 12:33 AM, David Avendasora wrote: On Jun 19, 2009, at 2:00 AM, Tim Worman wrote: On Jun 18, 2009, at 10:14 PM, Chuck Hill wrote: Hi Tim, On Jun 18, 2009, at 6:12

My pop-up is not setting the selection?!?

2009-06-19 Thread Ricardo J. Parada
Hi All, I have a form with a pop-up list in there. An AjaxObserveField refreshes an ajax update container when the selection in the pop-up changes. But the selection in my component is not being set. I set a breakpoint in ERXWOForm's takeValuesFromRequest(). It is getting called. And

Re: Can't make localization

2009-06-19 Thread Gustavo Adolfo Pizano
Aha.. I see.. ok I will try that then. Thanks G On Jun 19, 2009, at 7:20 PM, Guido Neitzer wrote: Timo explained why parts are not working, the rest is: On Jun 19, 2009, at 2:47 AM, Gustavo Pizano wrote: er.extensions.ERXLocalizer.availableLanguages=(English,German) You need to specify

Large dataset for RDBMS/EOF tests?

2009-06-19 Thread Pascal Robert
This is a bit off-topic, but does anyone have a good large example dataset to test different RDBMS, mainly for performance? In fact, I think it would be nice to have such a thing with a EOModel so that not only people can test the RDBMS but also different settings for EO fetching (batch

Re: My pop-up is not setting the selection?!?

2009-06-19 Thread Klaus Berkling
On Jun 19, 2009, at 10:46 AM, Ricardo J. Parada wrote: GPCIPopUp: WOPopUpButton { name = gpciPopUp; displayString = aGpci.displayString; item = aGpci; list = gpciList; selection = selectedGpci; } My setSelectedGpci() method in the component never gets

Re: strange inheritance problem

2009-06-19 Thread Chuck Hill
Hi Tim, On Jun 19, 2009, at 10:21 AM, Tim Worman wrote: On Jun 19, 2009, at 9:45 AM, David Avendasora wrote: On Jun 19, 2009, at 12:20 PM, Tim Worman wrote: On Jun 19, 2009, at 12:33 AM, David Avendasora wrote: On Jun 19, 2009, at 2:00 AM, Tim Worman wrote: On Jun 18, 2009, at 10:14 PM,

Place of Wonder Frameworks when deployin on OS X10.5 Server

2009-06-19 Thread Gustavo Adolfo Pizano
On Jun 19, 2009, at 8:11 PM, webobjects-dev-ow...@lists.apple.com wrote: You are not allowed to post to this mailing list, and your message has been automatically rejected. If you think that your messages are being rejected in error, contact the mailing list owner at

Re: My pop-up is not setting the selection?!?

2009-06-19 Thread Gustavo Adolfo Pizano
Hello Ricardo. I had a similar thing in my app, but as I see you have it inside a form, so so far its fine, are you using a ajaxsubmitbutton? I hadn't try the dynamic stuff with popupbuttons, but I know the Ajax examples has one... maybe checking one will show you where the mistake is..

Re: My pop-up is not setting the selection?!?

2009-06-19 Thread Ricardo J. Parada
The ajax update container is getting refreshed! The selection from the pop-up is also in the request's form values! But the pop-up is simply ignoring the form values in the request. And that is what I'm trying to find out why. I got a little desperate and I added a

Re: strange inheritance problem

2009-06-19 Thread Tim Worman
On Jun 19, 2009, at 11:15 AM, Chuck Hill wrote: Hi Tim, On Jun 19, 2009, at 10:21 AM, Tim Worman wrote: On Jun 19, 2009, at 9:45 AM, David Avendasora wrote: On Jun 19, 2009, at 12:20 PM, Tim Worman wrote: On Jun 19, 2009, at 12:33 AM, David Avendasora wrote: On Jun 19, 2009, at 2:00 AM,

Re: Large dataset for RDBMS/EOF tests

2009-06-19 Thread Dino Strausz
Hola Pascal! I have a huge database (15 years of history of a manufacturer business) in Sybase However, most of it is confidential and before it can be publicly applied it needs to be adjusted... some SQLs here and there... let me see if this is easy enough... On 19 Jun 2009, at 2:10

Re: strange inheritance problem

2009-06-19 Thread Chuck Hill
On Jun 19, 2009, at 12:08 PM, Tim Worman wrote: On Jun 19, 2009, at 11:15 AM, Chuck Hill wrote: Hi Tim, On Jun 19, 2009, at 10:21 AM, Tim Worman wrote: On Jun 19, 2009, at 9:45 AM, David Avendasora wrote: On Jun 19, 2009, at 12:20 PM, Tim Worman wrote: On Jun 19, 2009, at 12:33 AM,

Re: Place of Wonder Frameworks when deployin on OS X10.5 Server

2009-06-19 Thread Kieran Kelleher
See below On Jun 19, 2009, at 2:33 PM, Gustavo Adolfo Pizano wrote: On Jun 19, 2009, at 8:11 PM, webobjects-dev-ow...@lists.apple.com wrote: You are not allowed to post to this mailing list, and your message has been automatically rejected. If you think that your messages are

Re: Report validation error to interface?

2009-06-19 Thread Yung-Luen Lan
Or is there any advanced technology in newer framework/runtime that gives a beautiful solution? regards, yllan On Fri, Jun 19, 2009 at 7:45 PM, Yung-Luen Lanyungl...@gmail.com wrote: Hi, About data validation, there is a common pattern: 1. Present a form to let user input data. 2. Validate

Re: My pop-up is not setting the selection?!?

2009-06-19 Thread Gustavo Adolfo Pizano
now that's weird for my small knowledge G On Jun 19, 2009, at 9:03 PM, Ricardo J. Parada wrote: The ajax update container is getting refreshed! The selection from the pop-up is also in the request's form values! But the pop-up is simply ignoring the form values in the request. And

Re: Large dataset for RDBMS/EOF tests?

2009-06-19 Thread David Avendasora
On Jun 19, 2009, at 2:07 PM, Pascal Robert wrote: This is a bit off-topic, but does anyone have a good large example dataset to test different RDBMS, mainly for performance? In fact, I think it would be nice to have such a thing with a EOModel so that not only people can test the RDBMS

Re: Report validation error to interface?

2009-06-19 Thread Chuck Hill
I gave a presentation on WebObjects Validation Next Generation at WOWODC. However... the code is not 100% complete yet AND it needs an example app and more documentation. Soon... Chuck On Jun 19, 2009, at 12:56 PM, Yung-Luen Lan wrote: Or is there any advanced technology in newer

Re: strange inheritance problem

2009-06-19 Thread David Avendasora
On Jun 19, 2009, at 3:08 PM, Tim Worman wrote: On Jun 19, 2009, at 11:15 AM, Chuck Hill wrote: Hi Tim, On Jun 19, 2009, at 10:21 AM, Tim Worman wrote: On Jun 19, 2009, at 9:45 AM, David Avendasora wrote: On Jun 19, 2009, at 12:20 PM, Tim Worman wrote: On Jun 19, 2009, at 12:33 AM, David

Re: strange inheritance problem

2009-06-19 Thread Chuck Hill
On Jun 19, 2009, at 1:07 PM, Tim Worman wrote: All: I have some fetches that are not respecting the restricting qualifiers in my model for a simple inheritance structure. I'm using WO 5.4.3. This what I have: Job Approver Employee I have subclassed Approver into PrimaryApprover and

Re: Large dataset for RDBMS/EOF tests?

2009-06-19 Thread Dov Rosenberg
Check out Netflix's recommendation engine challenge http://www.netflixprize.com/ I think they have a large data set you can download. Dov On 6/19/09 4:07 PM, David Avendasora webobje...@avendasora.com wrote: On Jun 19, 2009, at 2:07 PM, Pascal Robert wrote: This is a bit off-topic, but

Re: Large dataset for RDBMS/EOF tests?

2009-06-19 Thread Yung-Luen Lan
Um, do you require that as a movie database? Otherwise, you could find some large enough database at http://download.wikimedia.org/backup-index.html Regards, yllan On Sat, Jun 20, 2009 at 4:27 AM, Dov Rosenbergdrosenb...@inquira.com wrote: Check out Netflix's recommendation engine challenge

Re: strange inheritance problem

2009-06-19 Thread Tim Worman
On Jun 19, 2009, at 1:10 PM, David Avendasora wrote: On Jun 19, 2009, at 3:08 PM, Tim Worman wrote: On Jun 19, 2009, at 11:15 AM, Chuck Hill wrote: Hi Tim, On Jun 19, 2009, at 10:21 AM, Tim Worman wrote: On Jun 19, 2009, at 9:45 AM, David Avendasora wrote: On Jun 19, 2009, at 12:20

Re: Report validation error to interface?

2009-06-19 Thread Yung-Luen Lan
Looking forward to that! :-) Regards, yllan On Sat, Jun 20, 2009 at 4:08 AM, Chuck Hillch...@global-village.net wrote: I gave a presentation on WebObjects Validation Next Generation at WOWODC.  However... the code is not 100% complete yet AND it needs an example app and more documentation.

Re: My pop-up is not setting the selection?!? -- [SOLVED]

2009-06-19 Thread Ricardo J. Parada
Well, I figured it out: if you are using AjaxObserveField to observe a WOPopUpButton then don't use the name binding in your WOPopUpButton. Man... that took some time to figure out I think I lost some hair in the process :-) Here's what I had to change in my definition:

Re: My pop-up is not setting the selection?!? -- [SOLVED]

2009-06-19 Thread Timo Hoepfner
Am 19.06.2009 um 23:56 schrieb Ricardo J. Parada: As you can see I just removed the name binding. That SOLVES IT!! :-D :-D P.S. I'll file a Jira. I would think that's a Wonder bug. If not someone correct me. I also think it's a bug. And I think I already encountered

Re: My pop-up is not setting the selection?!? -- [SOLVED]

2009-06-19 Thread Ricardo J. Parada
Done! Also attached tiny wonder app to demo the problem. On Jun 19, 2009, at 6:24 PM, Timo Hoepfner wrote: Am 19.06.2009 um 23:56 schrieb Ricardo J. Parada: As you can see I just removed the name binding. That SOLVES IT!! :-D :-D P.S. I'll file a Jira. I would think