RE: nested tags

2004-11-18 Thread Felix Velasco
have you tried looking at the generated .java files? At worst you might be able to decompile the .class generated for this jsp -Original Message- From: luca [mailto:[EMAIL PROTECTED] Sent: 18 November 2004 13:45 To: Tag Libraries Users List Subject: nested tags Hallo, I have

RE: xml and date problem

2004-06-02 Thread Felix Velasco
also worked for me, in Jetty (Servlet 2.3/JSP1.2) with far older Xerces and Xalan version. Xerces 1.4.3, Xalan 2.3.1 -Original Message- From: Kris Schneider [mailto:[EMAIL PROTECTED] Sent: 02 June 2004 18:45 To: Tag Libraries Users List Subject: Re: xml and date problem I changed

RE: xml and date problem

2004-06-02 Thread Felix Velasco
,just to see if it's really an xml problem, or has something to do with the updated var, the fmt tags? -Original Message- From: Felix Velasco [mailto:[EMAIL PROTECTED] Sent: 02 June 2004 18:49 To: 'Tag Libraries Users List' Subject: RE: xml and date problem also worked for me, in Jetty

RE: Unable to parse XML input using x:parse

2004-05-28 Thread Felix Velasco
you are parsing the xml correctly, the trouble is that you are not displaying it correctly. From your code: x:out select=$parsedxml//*/ This will show nothing, as the String XPath value of your whole xml is empty c:out value=${parsedxml}/ This shows [#document: null], since you'r displaying an

RE: Replacing returns with br

2004-04-14 Thread Felix Velasco
you have a typo: the attribute is escapeXml ,not escapeXmL (look at the 'L') -Original Message- From: Keith [mailto:[EMAIL PROTECTED] Sent: 14 April 2004 15:24 To: Tag Libraries Users List Subject: Re: Replacing returns with br When I try putting the '\\\n' in with the escapeXmL

RE: isLast() method of LoopTagStatus class

2004-04-12 Thread Felix Velasco
try loop_status.last instead of loop_status.isLast(). EL will translate it as per javabeans specification -Original Message- From: Keith [mailto:[EMAIL PROTECTED] Sent: 12 April 2004 18:41 To: Taglibs Subject: isLast() method of LoopTagStatus class I'm trying to output a comma delimited

RE: isLast() method of LoopTagStatus class

2004-04-12 Thread Felix Velasco
with JSTL right now. I had tried looking in the Java Docs, but I really didn't know where to begin. Keith -- Original Message --- From: Felix Velasco [EMAIL PROTECTED] To: 'Tag Libraries Users List' [EMAIL PROTECTED] Sent: Mon, 12 Apr 2004 18:41:51 +0200 Subject: RE: isLast() method

RE: Internal Servlet Error using Taglibs-image on Tomcat 3.2.3 an d j2sdk1.4.1_06

2004-03-16 Thread Felix Velasco
I don't think you can do it without upgrading your Tomcat version. You're using the 2.2 servlet API, and need at least the 2.3 version of the api for custom tags, even if you downgrade the code to use the HttpUtils.getRequestURL deprecated method. FĂ©lix -Original Message-

RE: Formatting (Gregorian)Calendar instances?

2004-02-03 Thread Felix Velasco
try: fmt:formatDate value=${myCalendar.date} var=mmdd type=date pattern=-MM-dd/ that way you'd access the getDate method of the Calendar interface, that returns the equivalent java.util.Date instance -Original Message- From: otisg [mailto:[EMAIL

RE: Formatting (Gregorian)Calendar instances?

2004-02-03 Thread Felix Velasco
ps i wrote too fast. It's myCalendar.time, not date, as Brian pointed. sorry -Original Message- From: Felix Velasco [mailto:[EMAIL PROTECTED] Sent: 03 February 2004 13:26 To: 'Tag Libraries Users List' Subject: RE: Formatting (Gregorian)Calendar instances? try: fmt:formatDate

RE: c:url generates incorrect encoding?

2003-09-19 Thread Felix Velasco
the problem is the space in the xml header ? xml version=1.0 encoding=ISO-8859-1 ? ^ shuld be ?xml version=1.0 encoding=ISO-8859-1 ? -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: 19 September 2003 13:49 To: Andreas Schildbach Cc: [EMAIL PROTECTED] Subject: