DO NOT REPLY [Bug 35604] New: - [FEATURE] Allow use of native languages in resource bundle

2005-07-05 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG· RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT . ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND· INSERTED IN THE BUG DATABASE. http://issues.apache.org/bugzilla/show_bu

DO NOT REPLY [Bug 35604] - [FEATURE] Allow use of native languages in resource bundle

2005-07-05 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG· RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT . ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND· INSERTED IN THE BUG DATABASE. http://issues.apache.org/bugzilla/show_bu

DO NOT REPLY [Bug 35615] New: - Not able to display image when url-pattern is "/" in web.xml

2005-07-05 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG· RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT . ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND· INSERTED IN THE BUG DATABASE. http://issues.apache.org/bugzilla/show_bu

DO NOT REPLY [Bug 35615] - Not able to display image when url-pattern is "/" in web.xml

2005-07-05 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG· RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT . ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND· INSERTED IN THE BUG DATABASE. http://issues.apache.org/bugzilla/show_bu

Re: HTTP method for action-mappings

2005-07-05 Thread Joe Germuska
At 7:11 PM +0100 7/4/05, Miles, AJ \(Alistair\) wrote: Hi all, A struts-config.xml file is a great way to formally specify a REST API. However, with struts 1.2 you cannot configure separate action mappings for GET vs POST requests to the same resource. What about adding a 'method' attribute

Re: HTTP method for action-mappings

2005-07-05 Thread Michael Jouravlev
At 7:11 PM +0100 7/4/05, Miles, AJ \(Alistair\) wrote: >Hi all, > >A struts-config.xml file is a great way to formally specify a REST >API. However, with struts 1.2 you cannot configure separate action >mappings for GET vs POST requests to the same resource. What about >adding a 'method' attribut

Re: HTTP method for action-mappings

2005-07-05 Thread Don Brown
Couldn't you create a custom DispatchAction that also takes into account the request method? Don Michael Jouravlev wrote: At 7:11 PM +0100 7/4/05, Miles, AJ \(Alistair\) wrote: Hi all, A struts-config.xml file is a great way to formally specify a REST API. However, with struts 1.2 you cann

Re: HTTP method for action-mappings

2005-07-05 Thread Michael Jouravlev
On 7/5/05, Don Brown <[EMAIL PROTECTED]> wrote: > Couldn't you create a custom DispatchAction that also takes into account the > request method? > > Don Actually, this is what I did. The idea was to enhance DispatchAction and to build a Struts/JSP component framework on it without sliding to JSF

Struts Dialogs (was HTTP method for action-mappings)

2005-07-05 Thread Don Brown
About Struts Dialogs, perhaps I missed it, but how does it differ from Beehive? They seem to be tackling the same problem and are quite far along. Don On 7/5/05, Michael Jouravlev <[EMAIL PROTECTED]> wrote: > On 7/5/05, Don Brown <[EMAIL PROTECTED]> wrote: > > Couldn't you create a custom Dispat

Re: Struts Dialogs (was HTTP method for action-mappings)

2005-07-05 Thread Michael Jouravlev
On 7/5/05, Don Brown <[EMAIL PROTECTED]> wrote: > About Struts Dialogs, perhaps I missed it, but how does it differ from > Beehive? They seem to be tackling the same problem and are quite far > along. > > Don Beehive is an all-ebracing system, they call a "control" anything that exposes some kin

Shale Mailing Lists

2005-07-05 Thread Jeremy_Barth
Are there mailing lists specifically for Shale? Jeremy

Re: Shale Mailing Lists

2005-07-05 Thread Sean Schofield
Nope. Right now people seem to be using the struts-dev list and including [shale] in the subject header (for those using email filtering rules.) sean On 7/5/05, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > Are there mailing lists specifically for Shale? > > Jeremy > > --

Re: Struts Dialogs (was HTTP method for action-mappings)

2005-07-05 Thread Michael Jouravlev
I want to add a little to my previous email. Let's look at Portlet spec. "A portlet fragment can be aggregated with other fragments to form a complete document. The content of a portlet is normally aggregated with the content of other portlets to form the portal page." Yup, can do that. "The lif

Re: Shale Mailing Lists

2005-07-05 Thread gvanmatre
Nope. Shale discussion is on the Struts user and developer mailing lists. However, you might prefix the subject with [Shale] for curiously of those wanting to filter based on subproject. Gary --- Begin Message --- Are there mailing lists specifically for Shale? Jeremy --- End Message ---

[Shale] Maven

2005-07-05 Thread Jeremy_Barth
I see an experimental Maven 1 style project.xml in svn for Shale. How is that coming along? Are there plans to move to Maven 2?

Re: HTTP method for action-mappings

2005-07-05 Thread netsql
protected boolean isInput(HttpServletRequest request) { return "POST".equalsIgnoreCase(request.getMethod()); } Michael. Just to state the obvious... one can allwas set up a filter... a lot of 1up.com is in filters to actions. .V ---

Re: [Shale] Maven

2005-07-05 Thread Craig McClanahan
On 7/5/05, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > I see an experimental Maven 1 style project.xml in svn for Shale. How > is that coming along? Are there plans to move to Maven 2? This file was added by Ted and then edited by a few others along the way, but not in the last six months or

Re: [Shale] Maven

2005-07-05 Thread Tim O'Brien
Craig McClanahan wrote: On 7/5/05, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: I see an experimental Maven 1 style project.xml in svn for Shale. How is that coming along? Are there plans to move to Maven 2? This file was added by Ted and then edited by a few others along the way, b

Re: Struts Dialogs (was HTTP method for action-mappings)

2005-07-05 Thread Frank W. Zammetti
So are you saying you've implemented the Portlet specification, or some subset of it? If not, I'm not sure I see the point. If so, why would I choose this over an actual portlet implementation (which can be built on top of Struts, which is exactly what we use at work in the form of IBM's port

svn commit: r209369 - in /struts/shale/trunk/core-library: ./ src/java/org/apache/shale/ src/java/org/apache/shale/dialog/ src/java/org/apache/shale/tiles/

2005-07-05 Thread dgeary
Author: dgeary Date: Tue Jul 5 17:58:35 2005 New Revision: 209369 URL: http://svn.apache.org/viewcvs?rev=209369&view=rev Log: This commit contains an optional integration layer for working with standalone Tiles. That integration, like Shale's Spring integration, is optional. If you specify a pr

Re: Struts Dialogs (was HTTP method for action-mappings)

2005-07-05 Thread Michael Jouravlev
On 7/5/05, Frank W. Zammetti <[EMAIL PROTECTED]> wrote: > So are you saying you've implemented the Portlet specification, or some > subset of it? > > If not, I'm not sure I see the point. > > If so, why would I choose this over an actual portlet implementation > (which can be built on top of Stru

[Struts Wiki] Update of "StrutsMaintenanceMaven" by WendySmoak

2005-07-05 Thread Apache Wiki
Dear Wiki user, You have subscribed to a wiki page or wiki category on "Struts Wiki" for change notification. The following page has been changed by WendySmoak: http://wiki.apache.org/struts/StrutsMaintenanceMaven --

svn commit: r209409 - in /struts/sandbox/trunk/tiles/core-library/src/java/org/apache/tiles: DefinitionsUtil.java definition/ReloadableDefinitionsFactory.java

2005-07-05 Thread craigmcc
Author: craigmcc Date: Tue Jul 5 22:22:33 2005 New Revision: 209409 URL: http://svn.apache.org/viewcvs?rev=209409&view=rev Log: Replace "enum" as an instance variable name, since it is a reserved word as of JDK 1.5. Modified: struts/sandbox/trunk/tiles/core-library/src/java/org/apache/tiles