Re: [OS-webwork] Request to core developers

2003-06-06 Thread Mike Cannon-Brookes
Erik, OK - good idea. Any particular issues you want to point us at? M On 6/6/03 10:21 PM, "Erik Beeson" ([EMAIL PROTECTED]) penned the words: > It would be nice if the core developers could make comments on JIRA issues > as they come in. I'm fairly familiar with the codebase as I've been > inv

Re: [OS-webwork] How ActionTag in WW2 work?

2003-06-06 Thread Cuong Tran
#foo.blah works for me since it is simply a bean getter. Why do you need the context? --- Dick Zetterberg <[EMAIL PROTECTED]> wrote: > - Original Message - > From: "Pat Lightbody" <[EMAIL PROTECTED]> > Subject: Re: [OS-webwork] How ActionTag in WW2 work? > > > > The new way the act

[OS-webwork] Can any one give example for Iterator sort tag?

2003-06-06 Thread Satya
I am using collection object in iterator. I used the sort tag like this... But its not working...Is this correct? here "budgets" is my collection object. Thanks, -Satya. --- Th

[OS-webwork] Can any one give example for Iterator sort tag?

2003-06-06 Thread Satya
I am using collection object in iterator. I used the sort tag like this... But its not working...Is this is correct? here "budgets" is my collection object --- This SF.net ema

[OS-webwork] Can any one give example for Iterator sort tag?

2003-06-06 Thread Satya
I am using collection object in iterator. I used the sort tag like this... But its not working...Is this is correct? here "budgets" is my collection object. --- This SF.net ema

RE: [OS-webwork] searching archivess

2003-06-06 Thread Robert Douglass
Yeah, sf seems to have an especially tenuous grip on searching. I had success with the mail-archives. Thanks! -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of Erik Beeson Sent: Friday, 06 June, 2003 2:51 PM To: [EMAIL PROTECTED] Subject: Re: [OS-webwork] searc

Re: [OS-webwork] searching archivess

2003-06-06 Thread Erik Beeson
sf.net archives the mailing list, but it works just about as well as everything else sf.net does. mail-archive's version would probably be better. --Erik On Fri, 6 Jun 2003, Robert Douglass wrote: > Is it possible to do keyword searches on the mail list archives? Out of the > 101 questions that

RE: [OS-webwork] searching archives

2003-06-06 Thread Andre Mermegas
Heya, You can search archives here http://www.mail-archive.com/[EMAIL PROTECTED]     Regards, -Andre Mermegas   -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Robert Douglass Sent: Friday, June 06, 2003 4:01 AM To: [EMAIL PROTECTED] Sub

Re: [OS-webwork] How ActionTag in WW2 work?

2003-06-06 Thread Erik Beeson
> I cannot seem to find the testSimple class so if I have misunderstood something, > please correct me. webwork2/src/test/com/opensymphony/webwork/views/jsp/ActionTagTest.java#testSimple() --Erik --- This SF.net email is sponsored by: Etnus

[OS-webwork] Request to core developers

2003-06-06 Thread Erik Beeson
It would be nice if the core developers could make comments on JIRA issues as they come in. I'm fairly familiar with the codebase as I've been involved with it from the start, and it would be easy for me to fix a lot of the issues in JIRA, but I'm always afraid that a proposed solution isn't a good

Re: [OS-webwork] How ActionTag in WW2 work?

2003-06-06 Thread Dick Zetterberg
There will be an ActionContext during the execution, yes, but when the #foo.blah method is called there will be no ActionContext, right? So if I would for example call the #foo.locale method (the getLocale method in BaseActionSupport) that method will try to access the ActionContext but it will

[OS-webwork] [JIRA-Opensymphony] Created: (WW-209) Jasper reports cannot access ActionContext in subreports

2003-06-06 Thread legendaryservice
Message: A new issue has been created in JIRA. - View the issue: http://jira.opensymphony.com/secure/ViewIssue.jspa?key=WW-209 Here is an overview of the issue: -

RE: [OS-webwork] How ActionTag in WW2 work?

2003-06-06 Thread Jason Carreira
It should not be a problem. If you don't have an ActionContext before the tag, you won't have one after, but during the execution of the Action it will have one (ActionContext's are created in the creation of the ActionInvocation, which is created with the ActionProxy in the ActionTag). The execute

[OS-webwork] Storing synamic inputs in Action file

2003-06-06 Thread Seshagiri Varanasi
Hi Jason & Dick , Thank you for your suggestions. They worked to store dynamic inputs. I did not use indexed properties.   Regards, Seshagiri. Catch all the cricket action. Download Yahoo! Score tracker

[OS-webwork] WW2 Release Schedule?

2003-06-06 Thread andmer
Title: WW2 Release Schedule? Hey guys, havent had time to really pay close attention to what was going on the past couple months with WW2, but I just started looking again and it seems awesome. I'm going to be starting a new project really soon, next week or two and I was curious when your go

[OS-webwork] searching archives

2003-06-06 Thread Robert Douglass
Is it possible to do keyword searches on the mail list archives? Out of the 101 questions that I'm likely to have in the following days, I'm sure 99 of them have already been answered!   -Robert Douglass

Re: [OS-webwork] How ActionTag in WW2 work?

2003-06-06 Thread Dick Zetterberg
- Original Message - From: "Cuong Tran" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, June 06, 2003 2:09 AM Subject: Re: [OS-webwork] How ActionTag in WW2 work? > > #foo.blah works for me since it is simply a bean getter. Why do you > need the context? > > #foo.blah mi