Re: [Stripes-users] Stripes re-open bug

2014-10-13 Thread Martin Walsh
privileges. Remi has re-opened it for me. Thanks, Martin -- Rick On Fri, Oct 10, 2014 at 10:11 AM, Martin Walsh martin.wa...@oracle.com mailto:martin.wa...@oracle.com wrote: I am trying to re-open the following bug: https://stripesframework.atlassian.net/browse/STS-878 Anyone know

[Stripes-users] Stripes re-open bug

2014-10-10 Thread Martin Walsh
I am trying to re-open the following bug: https://stripesframework.atlassian.net/browse/STS-878 Anyone know the procedure, or will I have to create a new bug. Thanks, Martin -- Meet PCI DSS 3.0 Compliance Requirements

Re: [Stripes-users] Stripes UrlBinding - Parameter disappears on submit

2012-08-30 Thread Martin Walsh
The stripes:param tag can be used inside the form to provide the parameters required to generate the clean url. e.g. stripes:form beanclass=${actionBean.class} stripes:param name=userId value=${actionBean.userId}/ /stripes:form Hope that helps. Thanks, M On 08/30/12 03:52 AM, Derrick Chua

Re: [Stripes-users] Formatting Collection values

2012-05-14 Thread Martin Walsh
understanding stripes: http://code.google.com/p/hcs-school-auction/ hope it gives you some idea on your problem, Cheers, Javier Domingo 2012/5/11 Martin Walsh martin.wa...@oracle.com mailto:martin.wa...@oracle.com Thanks for the response Javier. I have specified the type converter

Re: [Stripes-users] Formatting Collection values

2012-05-11 Thread Martin Walsh
is meant to be used. That in the action bean declaration. Hope that helps a little, Javier Domingo 2012/5/10 Martin Walsh martin.wa...@oracle.com mailto:martin.wa...@oracle.com I am having some issues related to the following bug: http://www.stripesframework.org/jira/browse/STS

[Stripes-users] Formatting Collection values

2012-05-10 Thread Martin Walsh
I am having some issues related to the following bug: http://www.stripesframework.org/jira/browse/STS-541 I am using BeanFirstPopulationStrategy with the OneToManyTypeConverter. A form takes a comma separated list of values from a single text field, then converts and stores them in a

Re: [Stripes-users] Stripes Clean URLs

2010-11-15 Thread Martin Walsh
. Thanks for the response, Martin -Ben On Fri, Nov 5, 2010 at 9:27 AM, Martin Walsh martin.wa...@oracle.com mailto:martin.wa...@oracle.com wrote: I am running into a few issues with clean URLs. I am using Stripes 1.5.2 and Tomcat 6.0.26. I am attempting to use clean URLs

[Stripes-users] Stripes Clean URLs

2010-11-05 Thread Martin Walsh
I am running into a few issues with clean URLs. I am using Stripes 1.5.2 and Tomcat 6.0.26. I am attempting to use clean URLs with parameters that represent a file path. e.g. binding = /action/test/{path} parameter = String path = tmp/test.txt I am using the stripes:link tag to generate the

Re: [Stripes-users] Stripes Clean URLs

2010-11-05 Thread Martin Walsh
Nope, same issues described below. M On 11/ 5/10 01:39 PM, Ben Gunter wrote: Please try 1.5.3 and see if that helps. -Ben On Fri, Nov 5, 2010 at 9:27 AM, Martin Walsh martin.wa...@oracle.com mailto:martin.wa...@oracle.com wrote: I am running into a few issues with clean URLs. I am

Re: [Stripes-users] Stripes Clean URLs

2010-11-05 Thread Martin Walsh
Thanks Nikolaos. Response in-line... On 11/ 5/10 04:14 PM, Nikolaos Giannopoulos wrote: Martin, Comments in-line... Martin Walsh wrote: Nope, same issues described below. M On 11/ 5/10 01:39 PM, Ben Gunter wrote: Please try 1.5.3 and see if that helps. -Ben On Fri, Nov 5, 2010

Re: [Stripes-users] Stripes Clean URLs

2010-11-05 Thread Martin Walsh
On 11/ 5/10 07:04 PM, Nikolaos Giannopoulos wrote: Martin, Comments in-line... Martin Walsh wrote: Thanks Nikolaos. Response in-line... That appears to be encoded properly. Is the URL correct i.e. have you tried simply going to: http://localhost:8080/test/action/test/tmp_test_txt

Re: [Stripes-users] RTL support for Integer Type Converter

2009-07-09 Thread Martin Walsh
Lionel wrote: Newman, John W wrote: Stripes simply uses NumberFormat under the hood, that is where this behavior is coming from. So it's either a jdk bug or not a bug at all. It is not a bug, it's people who don't respect the standards. It's the same with the french locale which can't be

Re: [Stripes-users] RTL support for Integer Type Converter

2009-07-09 Thread Martin Walsh
After further digging around, I believe the problem could be with Stripes URLs. According to http://www.ietf.org/rfc/rfc3987 URL parameters should be encoded RTL. This works fine when retrieving a value via the actionBean. e.g. ss:url value=%=ACCOUNT_KEYS_ACTION% event=view var=popup_url

[Stripes-users] RTL support for Integer Type Converter

2009-07-08 Thread Martin Walsh
It seems as though there is a bug in the Stripes IntegerTypeConverter when it is used with right to left languages. When a negative value is supplied, stripes fails validation. I believe the problem is that the converter expects 1- for RTL languages, when in fact it should be expecting -1.

Re: [Stripes-users] RTL support for Integer Type Converter

2009-07-08 Thread Martin Walsh
); } } } -Original Message- From: Martin Walsh [mailto:martin.wa...@sun.com] Sent: Wednesday, July 08, 2009 7:49 AM To: stripes-users@lists.sourceforge.net Subject: [Stripes-users] RTL support for Integer Type Converter It seems as though there is a bug in the Stripes IntegerTypeConverter when

Re: [Stripes-users] RTL support for Integer Type Converter

2009-07-08 Thread Martin Walsh
); } } } -Original Message- From: Martin Walsh [mailto:martin.wa...@sun.com] Sent: Wednesday, July 08, 2009 7:49 AM To: stripes-users@lists.sourceforge.net Subject: [Stripes-users] RTL support for Integer Type Converter It seems as though there is a bug in the Stripes IntegerTypeConverter when