Re: [OS-webwork] Webwork 1.4.1

2004-01-20 Thread Hani Suleiman
On Jan 20, 2004, at 9:17 PM, Scott Farquhar wrote: On Tue, Jan 20, 2004 at 09:07:34PM -0500, Hani Suleiman wrote: Scott, what features do you need in 1.4.1 that aren't in 1.4.0? Mainly the Pell fixes. On another note - did we eventually move the Pell classes into Webwork? We'd need to maintain

Re: [OS-webwork] Webwork 1.4.1

2004-01-20 Thread Scott Farquhar
On Tue, Jan 20, 2004 at 09:07:34PM -0500, Hani Suleiman wrote: > Scott, what features do you need in 1.4.1 that aren't in 1.4.0? Mainly the Pell fixes. On another note - did we eventually move the Pell classes into Webwork? We'd need to maintain another module, as it is LGPL? > Dick and I have

Re: [OS-webwork] Webwork 1.4.1

2004-01-20 Thread Hani Suleiman
Scott, what features do you need in 1.4.1 that aren't in 1.4.0? Dick and I have a number of things we'd like to see in 1.4.1, and not many of those have been done yet. My side of things includes updating jasper and making sure it works on all containers, Dick wanted to add string concatenation

[OS-webwork] Webwork 1.4.1

2004-01-20 Thread Scott Farquhar
Guys, I'm looking to get webwork 1.4.1 fixed up (for selfish reasons - I want to release a JIRA version using it). I'm looking through the features, and most of them are issues that I'm not too familiar with: http://tinyurl.com/2x66a I'll go through and work on any of them that I have a vag

[OS-webwork] accessing errors collection in velocity

2004-01-20 Thread Gerardo Segura
Hi all, i wonder what's the name of the error collections when using velocity... somewhere in the documentacion says is $errors, but it's not working... thanks in advance for any help... --- The SF.Net email is sponsored by EclipseCon 200

[OS-webwork] example of using xwork with spring integration

2004-01-20 Thread Francisco Hernandez
anyone have an example of how to use the spring integration with xwork? --- The SF.Net email is sponsored by EclipseCon 2004 Premiere Conference on Open Tools Development and Integration See the breadth of Eclipse activity. February 3-5 in Anahei

Re: [OS-webwork] how should i display a radio button Yes/No combo?

2004-01-20 Thread Jonas Eriksson
You also need to specify where to get the key and value for each option. Something like this works: #tag( Radio "label='label'" "name='name'" "list=#{ 'A':'0' , 'B':'1' , 'C':'2' }" "listKey=top.key" "listValue=top.value" ) Cheers Jonas Rachel McConnell wrote: I believe you need to use this sy

Re: [OS-webwork] Subset and Iterator tags

2004-01-20 Thread Scott Farquhar
The correct syntax would be: http://www.opensymphony.com/webwork/api/webwork/view/taglib/IteratorStatus.html Cheers, Scott On Tue, Jan 20, 2004 at 12:57:13PM -0500, Hani Suleiman wrote: > You're better off using the mod operator, something like if status % 3 > == 0 then br (for 3 items per line

Re: [OS-webwork] how should i display a radio button Yes/No combo?

2004-01-20 Thread Rachel McConnell
I believe you need to use this syntax: #tag( Radio "name='comVisita'" "list='{ 'SIM' : '0' , 'NÃO' : '1' }'" ) Note that there are two "" sets in the tag, one for each key/value pair. Rachel Samuel Mota wrote: Guys, For my last post with no answers I have found this one :) ... but it's not wo

Re: [OS-webwork] Browser setup problems

2004-01-20 Thread Hani Suleiman
This is fixed, and should show up the next time the website is updated. Hani Suleiman wrote: Of course not! Us webwork 1.4 people though tend to know what we're doing with it so there's less of the 'let's figure out together how to get stuff working' ;) I'll fix the docs shortly. Larsson, Jon

Re: [OS-webwork] Subset and Iterator tags

2004-01-20 Thread Hani Suleiman
You're better off using the mod operator, something like if status % 3 == 0 then br (for 3 items per line), so in your case it'd be (from memory, so exact syntax might be wrong) Rich wrote: Let's say I had something like below: What this is trying to do is display images. I would like it to

[OS-webwork] Subset and Iterator tags

2004-01-20 Thread Rich
Let's say I had something like below:   What this is trying to do is display images. I would like it to display only a certain amount per row, defined by the variable "maxThumbsPerRow". I figured the best way to do this would be to check if "@status/index" divided by "maxThumbsPerRow" is equa

RE: [OS-webwork] how should i display a radio button Yes/No combo?

2004-01-20 Thread Samuel Mota
Guys, For my last post with no answers I have found this one :) ... but it's not working at velocity, ideas? #tag( Radio "name='comVisita' list='{ 'SIM' : '0' , 'NÃO' : '1' }'" ) thanks

Re: [OS-webwork] Browser setup problems

2004-01-20 Thread Hani Suleiman
Of course not! Us webwork 1.4 people though tend to know what we're doing with it so there's less of the 'let's figure out together how to get stuff working' ;) I'll fix the docs shortly. Larsson, Jonas wrote: That would be great! Thanks. Has everyone already migrated to WW2 and OGNL since no

RE: [OS-webwork] Browser setup problems

2004-01-20 Thread Larsson, Jonas
That would be great! Thanks. Has everyone already migrated to WW2 and OGNL since no one else seem to regard this as an issue? /Jonas -Original Message- From: Hani Suleiman [mailto:[EMAIL PROTECTED] Sent: Monday, January 19, 2004 8:04 AM To: [EMAIL PROTECTED] Subject: Re: [OS-webwork] Br

RE: [OS-webwork] XWork IoC in other Java classes (not Actions)

2004-01-20 Thread Jason Carreira
Could you make these POJO classes components with dependencies on those services, and make your Actions have dependencies on those POJO components? The Xwork IoC should resolve multiple levels of dependencies and fill them all... > -Original Message- > From: GALIOT support [mailto:[EMAIL P

RE: [OS-webwork] xwork: MonoParametersInterceptor ( a key without a value )

2004-01-20 Thread Jason Carreira
This hasn't been done anywhere, as far as I know... If this works, then go for it, and if you can make it generic, let us know and we'll look at putting it in. > -Original Message- > From: Jeremy Rayner [mailto:[EMAIL PROTECTED] > Sent: Tuesday, January 20, 2004 7:39 AM > To: [EMAIL PROTE

[OS-webwork] xwork: MonoParametersInterceptor ( a key without a value )

2004-01-20 Thread Jeremy Rayner
Hi all, Quick question. We are using WW2beta2, and are just debating the best way round this issue: When you have a webpage with this will yield the parameters http://example.com/delicatessen/Shop.action?cheese.x=56&cheese.y=15 i.e. the value "edam" is not sent by the browser. Hen

RE: [OS-webwork] XWork IoC in other Java classes (not Actions)

2004-01-20 Thread GALIOT support
Plain Java classes for model description, for database access, e-mail/SMS sending ... Currently it works in two ways: - first if those components are nested from component defined in action class - second I have to obtain ComponentManager ("DefaultComponentManager" ) from context, and than call