Re: JSTL fmt:formatDate bug ???

2004-02-26 Thread Pierre Delisle
But would this work? fmt_rt:formatDate value=${row.TIME} timeZone=%= Constants.TIMEZONE % pattern=dd-MM- 'at' HH:mm/ I'm using both rt and EL in the same tag ? No. It is one or the other. Cannot mix within the same action. However, you can mix both EL-

RE: JSTL fmt:formatDate bug ???

2004-02-25 Thread Martin van Dijken
PROTECTED] Sent: woensdag 25 februari 2004 8:18 To: Tag Libraries Users List Subject: RE: JSTL fmt:formatDate bug ??? Could you post the code to manually format the date? I can easily compare that to what is being done by the JSTL implementation and give you some feedback

RE: JSTL fmt:formatDate bug ???

2004-02-25 Thread Riaan Oberholzer
fmt:formatDate bug ??? Could you post the code to manually format the date? I can easily compare that to what is being done by the JSTL implementation and give you some feedback on that. Something to the extend of: static { SimpleDateFormatter sdf = new

RE: JSTL fmt:formatDate bug ???

2004-02-25 Thread Martin van Dijken
confusing and illogical to work with, but that's just my personal frustration. Martin -Original Message- From: Riaan Oberholzer [mailto:[EMAIL PROTECTED] Sent: woensdag 25 februari 2004 10:48 To: Tag Libraries Users List Subject: RE: JSTL fmt:formatDate bug ??? I'm a bit lost here

RE: JSTL fmt:formatDate bug ???

2004-02-25 Thread Riaan Oberholzer
List Subject: RE: JSTL fmt:formatDate bug ??? I'm a bit lost here can you give me an example of what I should give to jstl to print the time as Europe/London ? Thanks Charl --- Martin van Dijken [EMAIL PROTECTED] wrote: Hey Riaan, Try fiddling around

RE: JSTL fmt:formatDate bug ???

2004-02-25 Thread SREEKANT Rajan
... please help me to resolve the above problem with some Examples. R.Sreekant -Original Message- From: Martin van Dijken [mailto:[EMAIL PROTECTED] Sent: Wednesday, February 25, 2004 4:39 PM To: 'Tag Libraries Users List' Subject: RE: JSTL fmt:formatDate bug ??? Try

RE: JSTL fmt:formatDate bug ???

2004-02-25 Thread Martin van Dijken
12:17 To: Tag Libraries Users List Subject: RE: JSTL fmt:formatDate bug ??? fmt:setLocale value=nl_NL/ fmt:formatDate value=${obj} timeZone=Europe/London type=time/ I want to keep the language english... possible? IE, say that we are in The Netherlands, but work in English

Re: JSTL fmt:formatDate bug ???

2004-02-25 Thread Adam Hardy
On 02/25/2004 12:16 PM Riaan Oberholzer wrote: fmt:setLocale value=nl_NL/ fmt:formatDate value=${obj} timeZone=Europe/London type=time/ I want to keep the language english... possible? IE, say that we are in The Netherlands, but work in English ... otherwise it will try to locate Dutch resource

Re: JSTL fmt:formatDate bug ???

2004-02-25 Thread Riaan Oberholzer
I know that in fmt:message there is a deficiency which means that date formatting of parameters to the message does not happen. I'm using the latest version, 1.0.5, released on January 27 pretty much up to date. Don't worry about not having Dutch resource bundles. OK, good to hear

RE: JSTL fmt:formatDate bug ???

2004-02-25 Thread Riaan Oberholzer
[mailto:[EMAIL PROTECTED] Sent: woensdag 25 februari 2004 10:48 To: Tag Libraries Users List Subject: RE: JSTL fmt:formatDate bug ??? I'm a bit lost here can you give me an example of what I should give to jstl to print the time as Europe/London ? Thanks Charl

RE: JSTL fmt:formatDate bug ???

2004-02-25 Thread Riaan Oberholzer
februari 2004 8:18 To: Tag Libraries Users List Subject: RE: JSTL fmt:formatDate bug ??? Could you post the code to manually format the date? I can easily compare that to what is being done by the JSTL implementation and give you some feedback

RE: JSTL fmt:formatDate bug ???

2004-02-25 Thread Riaan Oberholzer
PROTECTED] Sent: woensdag 25 februari 2004 10:48 To: Tag Libraries Users List Subject: RE: JSTL fmt:formatDate bug ??? I'm a bit lost here can you give me an example of what I should give to jstl to print the time as Europe/London ? Thanks Charl --- Martin

Re: JSTL fmt:formatDate bug ???

2004-02-25 Thread Pierre Delisle
List Subject: RE: JSTL fmt:formatDate bug ??? I'm a bit lost here can you give me an example of what I should give to jstl to print the time as Europe/London ? Thanks Charl --- Martin van Dijken [EMAIL PROTECTED] wrote: Hey Riaan, Try fiddling around with setting the locale in JSTL

Re: JSTL fmt:formatDate bug ???

2004-02-25 Thread Riaan Oberholzer
-Original Message- From: Riaan Oberholzer [mailto:[EMAIL PROTECTED] Sent: woensdag 25 februari 2004 10:48 To: Tag Libraries Users List Subject: RE: JSTL fmt:formatDate bug ??? I'm a bit lost here can you give me an example of what I should give to jstl to print

JSTL fmt:formatDate bug ???

2004-02-24 Thread Riaan Oberholzer
I have an application that runs in The Netherlands, but is operated from England. Date/times are thus stored and converted with a dateformatter set with the Timezone Europe/London. It looks fine. Ie, I enter a time as 15:00 (UK time) and in the database it shows 16:00 (Dutch time) which is

RE: JSTL fmt:formatDate bug ???

2004-02-24 Thread Martin van Dijken
: Riaan Oberholzer [mailto:[EMAIL PROTECTED] Sent: dinsdag 24 februari 2004 22:18 To: [EMAIL PROTECTED] Subject: JSTL fmt:formatDate bug ??? I have an application that runs in The Netherlands, but is operated from England. Date/times are thus stored and converted with a dateformatter set

RE: JSTL fmt:formatDate bug ???

2004-02-24 Thread Riaan Oberholzer
Could you post the code to manually format the date? I can easily compare that to what is being done by the JSTL implementation and give you some feedback on that. Something to the extend of: static { SimpleDateFormatter sdf = new SimpleDateFormatter(-MM-dd HH:mm);