Re: How to write JUnit test case to an Action class which extends TilesAction

2006-07-07 Thread Ashok Kumar Y
- - Posted via Jive Forums http://forums.opensymphony.com/thread.jspa?threadID=36264&messageID=71877#71877 - To unsubscribe, e-mail: [EMAIL PROTECTED] For additi

Re: [s2] Taglib prefix

2006-07-07 Thread Ted Husted
I think we are using s: with the faces-taglib, so it makes sense to bring that convention forward to Struts 2. The JSTL conventions use "c" and "x", but the others are longer, like "fmt" and "sql", so we won't run into a convention conflict there. -Ted. On 7/7/06, Don Brown <[EMAIL PROTECTED]> w

Shale mailing lists [was: Shale Validation Framework Issue]

2006-07-07 Thread Hubert Rabago
It's interesting that I learned about the new Shale lists over at the MyFaces lists instead of here at the Struts lists. Hubert -- Forwarded message -- From: Matthias Wessendorf <[EMAIL PROTECTED]> Date: Jul 7, 2006 1:32 PM Subject: Re: Shale Validation Framework Issue. To: MyFac

Announcement: Strecks (Struts extensions for Java 5) version 1.0 beta 3 released

2006-07-07 Thread Phil Zoio
I'd like to announce the release of Strecks 1.0 beta 3. Strecks is a set of extensions to Struts aimed at Java 5 users aimed at streamlining development of Struts application with features such as POJO actions, interceptors, dependency injections, data binding, etc. For more details see http://

Announcement: Strecks (Struts extensions for Java 5) version 1.0 beta 3 released

2006-07-07 Thread Phil Zoio
I'd like to announce the release of Strecks 1.0 beta 3. Strecks is a set of extensions to Struts aimed at Java 5 users aimed at streamlining development of Struts application with features such as POJO actions, interceptors, dependency injections, data binding, etc. For more details see http://

Re: Shale mailing lists [was: Shale Validation Framework Issue]

2006-07-07 Thread Wendy Smoak
On 7/7/06, Hubert Rabago <[EMAIL PROTECTED]> wrote: It's interesting that I learned about the new Shale lists over at the MyFaces lists instead of here at the Struts lists. We're just trying to get the web site in order before making an announcement. At the moment it appears the only list we

Re: Shale mailing lists [was: Shale Validation Framework Issue]

2006-07-07 Thread Ted Husted
On 7/7/06, Wendy Smoak <[EMAIL PROTECTED]> wrote: It shouldn't be long now. Of course, we'll have to drag Craig away from his vacation to send the announcement. :) Why would you have to wait? The PMC should be able to operate regardless of whether a particular individual is available, even if

Re: Shale mailing lists [was: Shale Validation Framework Issue]

2006-07-07 Thread James Mitchell
Craig is preparing the announcement, and he's just offline for a 1/2 day or so. Also, I'd like to get 1 or 2 more things finished on the site before we send it out. -- James Mitchell Software Engineer EdgeTech, Inc. 678.910.8017 - Original Message - From: "Ted Husted" <[EMAIL PROTE

New JIRA filters

2006-07-07 Thread Ted Husted
I setup new global filtesr for "Struts 1" and "Struts 2" TODO. Rainer, could you delete the "Struts Action 2.0" filter, since it replicates the old SAF2.0 filter. (If anyone was subscribed to that filter, you should subscribe to "Struts 2 TODO" instead.) Patrick, do we still need the WW2.2.2 fi

Re: svn commit: r420020 - in /struts/site/src/site: fml/roadmap.fml xdoc/announce-2005.xml xdoc/downloads.xml xdoc/index.xml

2006-07-07 Thread Wendy Smoak
On 7/7/06, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: http://maven.apache.org";> Apache Maven -2.0, +2.0 (beta 5 or later), Ted, what does this mean? It looks like a plugin version number. Thanks, -- Wend

Would like to remove Ant build from Struts 2

2006-07-07 Thread Don Brown
I'd like to remove the Ant build from Struts 2. I don't think it has worked for a little while and the new Maven 2 layout discourages it for any complex builds. Unless someone seriously wants to put the effort into keeping it up, I think it should be removed. Don ---

Re: Would like to remove Ant build from Struts 2

2006-07-07 Thread tm jee
I think we should not remove these ant targets, - xdoclet-taglib - xdoclet-tagdocs They are used to generate the tld and docs for struts2 tags. - Original Message From: Don Brown <[EMAIL PROTECTED]> To: Struts Developers List Sent: Saturday, 8 July, 2006 9:00:41 AM Subject: Would like

Re: Would like to remove Ant build from Struts 2

2006-07-07 Thread Don Brown
We do that already with Maven 2 for Struts 1. I'm sure we could do the same here. Wendy? Don tm jee wrote: I think we should not remove these ant targets, - xdoclet-taglib - xdoclet-tagdocs They are used to generate the tld and docs for struts2 tags. - Original Message From: Don

Re: Would like to remove Ant build from Struts 2

2006-07-07 Thread Wendy Smoak
tm jee wrote: > I think we should not remove these ant targets, > - xdoclet-taglib > - xdoclet-tagdocs > > They are used to generate the tld and docs for struts2 tags. On 7/7/06, Don Brown <[EMAIL PROTECTED]> wrote: We do that already with Maven 2 for Struts 1. I'm sure we could do the same he

Move the tg4w module to the sandbox?

2006-07-07 Thread Wendy Smoak
James, how is the TestGen4Web stuff going? Should we move it to the sandbox or do you have plans? Thanks, Wendy - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Move the tg4w module to the sandbox?

2006-07-07 Thread James Mitchell
Well, to be honest, I haven't done much of anything with it since first creating the plug-in. The basic feature set of the browser components did not turn out to be as mature as I had hoped. It's such a great idea and I'd still like to pursue this some more though. All of the code for this is

500 or 404 for an unknown action?

2006-07-07 Thread Paul Benedict
If I attempt to execute an action that does not exist (blah.do), I get a 500. Shouldn't this really be a 404? I find it inappropriate it's an internal server error for a resource which is missing. Granted, it's not a file resource, but it is a virtual resource which does not exist. How do other

Re: 500 or 404 for an unknown action?

2006-07-07 Thread Paul Benedict
I wrote too soon. All I need to do is set one of my actions to be unknown="true" and redirect it to the 404 page. Thanks. Paul Benedict <[EMAIL PROTECTED]> wrote: If I attempt to execute an action that does not exist (blah.do), I get a 500. Shouldn't this really be a 404? I find it inappropriat

Re: 500 or 404 for an unknown action?

2006-07-07 Thread Frank W. Zammetti
Doesn't the unknown attribute suffice in this case? It allows you to do whatever you want in that situation, including throwing a 404 if you want. Frank Paul Benedict wrote: If I attempt to execute an action that does not exist (blah.do), I get a 500. Shouldn't this really be a 404? I find i

Re: Would like to remove Ant build from Struts 2

2006-07-07 Thread tm jee
> taglib-maven-plugin generates the documentation. If not mistaken, i think the taglib-macen-plugin generates document (html) from taglib.tld. The struts2 xdoclet-taglib ant task actually generates taglib.tld based on some tagging (eg. a2.tagattribute ) in the javadoc. > If you are currentl