Re: [Stripes-users] Feature Request for label selection

2009-11-27 Thread Simon Keen

Many thanks.  I did consider all of your suggestions.  I don't want to use
Javascript at present for a variety of reasons, not least the impact it has
on screen readers used by the visually impaired.

I agree I could use HTML but I decided in the end to create another event. 
It was just a suggestion for a new feature.  A better suggestion , as it
applies to several tags, might be to be able to alter the value resolution
order in the tag.  So I could put in a value attribute or body (as one of
the suggestion was but it won't work) and force the tag to use that instead
of the normal resolution order.  This would be useful for other tags as
well, e.g.g when collecting a value and altering it to pass on (say a flag
that indicated read only but needs to be switched to the opposite). I
currently do this by declaring a write-only property that in fact alters its
readonly variant.


-- 
View this message in context: 
http://old.nabble.com/Feature-Request-for-label-selection-tp26525265p26540671.html
Sent from the stripes-users mailing list archive at Nabble.com.


--
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus on 
what you do best, core application coding. Discover what's new with
Crystal Reports now.  http://p.sf.net/sfu/bobj-july
___
Stripes-users mailing list
Stripes-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/stripes-users


Re: [Stripes-users] Feature Request for label selection

2009-11-27 Thread Lionel
Iwao AVE! wrote:
> It wouldn't work, unfortunately.
> Please see:
> http://www.stripesframework.org/jira/browse/STS-679

It's strange: I used it once and works fine !
(with stripes 1.5.2) 




--
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus on 
what you do best, core application coding. Discover what's new with
Crystal Reports now.  http://p.sf.net/sfu/bobj-july
___
Stripes-users mailing list
Stripes-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/stripes-users


Re: [Stripes-users] Feature Request for label selection

2009-11-27 Thread Iwao AVE!
It works only when you don't have a corresponding entry for the 'name'  
value in your StripesResources.properties.

// Iwao

On 2009/11/27, at 20:54, "Lionel"  wrote:

> Iwao AVE! wrote:
>> It wouldn't work, unfortunately.
>> Please see:
>> http://www.stripesframework.org/jira/browse/STS-679
>
> It's strange: I used it once and works fine !
> (with stripes 1.5.2)

--
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus on 
what you do best, core application coding. Discover what's new with
Crystal Reports now.  http://p.sf.net/sfu/bobj-july
___
Stripes-users mailing list
Stripes-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/stripes-users


[Stripes-users] Size limit on file uploads

2009-11-27 Thread Mike McNally
That limit - 10MB? - on file uploads (and I know it's configurable).
Is that limit imposed on a per-parameter (i.e., per-file) basis or
does it cover the whole HTTP request?

Consider something like the image uploader forms that photo printer
websites provide. You can upload 5 or 10 image files at a time. Would
the Stripes limit be applied to the overall request when the "submit"
button is clicked?

-- 
Turtle, turtle, on the ground,
Pink and shiny, turn around.

--
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus on 
what you do best, core application coding. Discover what's new with
Crystal Reports now.  http://p.sf.net/sfu/bobj-july
___
Stripes-users mailing list
Stripes-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/stripes-users


[Stripes-users] Stripes wiki layout

2009-11-27 Thread Mike McNally
Am I the only person bugged by the broken layout that pervades the
Stripes Wiki?  Many, if not all, pages spill off the window and
require horizontal scrollbars, and as far as I can tell it's all just
a matter of bad CSS somewhere.

-- 
Turtle, turtle, on the ground,
Pink and shiny, turn around.

--
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus on 
what you do best, core application coding. Discover what's new with
Crystal Reports now.  http://p.sf.net/sfu/bobj-july
___
Stripes-users mailing list
Stripes-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/stripes-users


Re: [Stripes-users] Size limit on file uploads

2009-11-27 Thread Mike McNally
I think the Stripes documentation (the wiki) answers this pretty
clearly - the limit is on the overall size of the POST.



On Fri, Nov 27, 2009 at 7:43 AM, Mike McNally  wrote:
> That limit - 10MB? - on file uploads (and I know it's configurable).
> Is that limit imposed on a per-parameter (i.e., per-file) basis or
> does it cover the whole HTTP request?
>
> Consider something like the image uploader forms that photo printer
> websites provide. You can upload 5 or 10 image files at a time. Would
> the Stripes limit be applied to the overall request when the "submit"
> button is clicked?
>
> --
> Turtle, turtle, on the ground,
> Pink and shiny, turn around.
>



-- 
Turtle, turtle, on the ground,
Pink and shiny, turn around.

--
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus on 
what you do best, core application coding. Discover what's new with
Crystal Reports now.  http://p.sf.net/sfu/bobj-july
___
Stripes-users mailing list
Stripes-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/stripes-users


Re: [Stripes-users] Size limit on file uploads

2009-11-27 Thread Freddy Daoud
Indeed, it is the total size of the request data, including all
uploaded files, request parameters, request headers. This is a
limitation of the HTTP specification. Before processing a request, the
only information that’s available is the total size of the request
data.

Cheers,
Freddy
http://www.stripesbook.com

- 
- I think the Stripes documentation (the wiki) answers this pretty
- clearly - the limit is on the overall size of the POST.
- 
- On Fri, Nov 27, 2009 at 7:43 AM, Mike McNally http://p.sf.net/sfu/bobj-july
___
Stripes-users mailing list
Stripes-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/stripes-users


Re: [Stripes-users] Size limit on file uploads

2009-11-27 Thread Oscar Westra van Holthe - Kind
On 27-11-2009 at 18:52, Freddy Daoud wrote:
> Indeed, it is the total size of the request data, including all
> uploaded files, request parameters, request headers. This is a
> limitation of the HTTP specification. Before processing a request, the
> only information that’s available is the total size of the request
> data.

From a network transfer point of view, this makes most sense, as the upload
limit is not meant as a validation (i.e. no file should be more than 10MB).
It's to prevent a DoS, abuse of memory, ... .

Unfortunately we have to translate this to terms a user understands. As a
result, I usually report a megabyte less than the actual memory. I say the
limit is 30MB while I configure 31MB. Enforcing a strict limit of 30MB can
always be added as a validation.


Oscar

-- 
   ,-_  Oscar Westra van Holthe - Kind  http://www.xs4all.nl/~kindop/
  /() )
 (__ (  The haves and the have-nots can often be traced back to the
=/  ()  dids and the did-nots.

--
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus on 
what you do best, core application coding. Discover what's new with
Crystal Reports now.  http://p.sf.net/sfu/bobj-july
___
Stripes-users mailing list
Stripes-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/stripes-users


Re: [Stripes-users] Stripes wiki layout

2009-11-27 Thread Alamgir Kahn
Works fine for me.  What browser are you using?

Mike McNally  writes:

> 
> Am I the only person bugged by the broken layout that pervades the
> Stripes Wiki?  Many, if not all, pages spill off the window and
> require horizontal scrollbars, and as far as I can tell it's all just
> a matter of bad CSS somewhere.
> 





--
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus on 
what you do best, core application coding. Discover what's new with
Crystal Reports now.  http://p.sf.net/sfu/bobj-july
___
Stripes-users mailing list
Stripes-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/stripes-users