RE: single Quotes in SQL

2002-05-16 Thread James Mitchell
Not sure if you got the answer to this. single quotes should be changed to double single quotes (not " but '') JM > -Original Message- > From: Shawn Bayern [mailto:[EMAIL PROTECTED]] > Sent: Thursday, May 16, 2002 5:19 PM > To: Tag Libraries Users List > Subject: Re: single Quotes i

Re: release date (fwd)

2002-05-16 Thread Pierre Delisle
You should expect an official FCS release around mid-june. -- Pierre > Date: Thu, 16 May 2002 20:46:23 +0400 > From: Roman Kapshevich <[EMAIL PROTECTED]> > Reply-To: Tag Libraries Users List <[EMAIL PROTECTED]> > To: Tag Libraries Users List <[EMAIL PROTECTED]> > Subject: release date > >

Re: JSTL/Standard not really JSP 1.1?

2002-05-16 Thread Lawrence You
Thanks Stu, your email helps clarify the situation for me. I won't be able to volunteer do the work to get JSTL back into 1.1 now although I did tweak a few tags in JSTL to see if it work with 1.1 just to ask "what if...?" At least it sounds like backporting is a possibility though. As for my

RE: Is there a way to capture a copy of the html page that my jspcreates?

2002-05-16 Thread Rajesh Kalluri manduca
Richard, I do something similar capture jsp output to a html file but to avoid the over head of exposing a jsp as i work on a content site with havey traffic traffic, here is how i use io tag and it works fine for me. <% File titufile = new File( "/local/mypage.html" ); FileWriter fileWr

Re: single Quotes in SQL

2002-05-16 Thread Shawn Bayern
On Thu, 16 May 2002, DAVE ANAND wrote: > How you handle single Quotes in the sql stmt inside > an sql tag. It's best to use PreparedStatement behind the scenes. For instance, you can use JSTL's tag inside a tag: select * from users where last_name=? Of course, 'value' can po

Re: JSTL/Standard not really JSP 1.1?

2002-05-16 Thread Henri Yandell
> If anybody were to place a 1.1-ified JSTL port under > sourceforge, I'm sure it would get used. I think Jakarta would be happy to host such a thing. It's been mentioned once or twice and is really just waiting for someone with the itch to go ahead and do it. I imagine that those with the itch

Re: JSTL/Standard not really JSP 1.1?

2002-05-16 Thread stuart robertson
Back in November(?) I modified EA1 to work with JSP 1.1 to use in a "proof of concept" app. The main incompatibilities I remember offhand were the lack of the new IteratorTag and TryCatchFinally(?) interfaces. The expression language had no depencies on JSP 1.2. Changing the JSTL taglibs to wor

single Quotes in SQL

2002-05-16 Thread DAVE ANAND
How you handle single Quotes in the sql stmt inside an sql tag. -- To unsubscribe, e-mail: For additional commands, e-mail:

Re: Is there a way to capture a copy of the html page that my jspcreates?

2002-05-16 Thread Stuart Thomson
Do you want to do this programatically or frm the browser. Netscape and IE have view source options from which you can save the html. Richard Elsberry wrote: > > Hello, > > I've searched the archives and played around quite a bit with some of the > tag libraries and am having a hard time. > >

RE: Parameterized Struts Templates

2002-05-16 Thread Rajesh Kalluri manduca
Brian, This is what i do with tiles to change a template sections u can safely replace tiles with templates and it should work. <%@ page language="java" %> <%@ taglib uri="/WEB-INF/TLD/tiles.tld" prefix="tiles" %> <% String content ="/index.html" %> Note that you can put in re

Parameterized Struts Templates

2002-05-16 Thread Brian J. Sletten
Does anyone know of any examples that parameterize the Struts template taglib? For example, I'd like to set what goes in the 'content' template section based on a request parameter, session variable, etc. Thanks for any pointers, Brian -- To unsubscribe, e-mail:

Re: Usage of i18n in JSTL

2002-05-16 Thread Jan Luehe
Vernon: > I just start to use the JSTL since the day before. It seems to me > that the i18n messages have to be placed in a subclass of the > ListResourceBundle. The messages are stored in a two dimension > string array. And it can't be constructed in the object initiation > time (since it is in

release date

2002-05-16 Thread Roman Kapshevich
Hello! Someone know proposed release date of JSTL tags? --- Best regards, Roman Kapshevich -- To unsubscribe, e-mail: For additional commands, e-mail:

Usage of i18n in JSTL

2002-05-16 Thread Vernon Wu
I just start to use the JSTL since the day before. It seems to me that the i18n messages have to be placed in a subclass of the ListResourceBundle. The messages are stored in a two dimension string array. And it can't be constructed in the object initiation time (since it is in a static final

Re: Antw: Re: regexp taglib functionality

2002-05-16 Thread Shawn Bayern
On Thu, 16 May 2002, TIMO EINSIEDLER-BURGER wrote: > Here is the text after first substitution... > > > how would you stick it in the c:set tag? -- Shawn Bayern "JSP Standard Tag Library" http://www.jstlbook.com (coming this summer from Manning Publications) -- To unsubscribe, e-mai

Re: Antw: Re: regexp taglib functionality

2002-05-16 Thread Paul DuBois
>i am using the http://jakarta.apache.org/taglibs/regexp-1.0 taglib >to perform the substitution. > >the syntax looks like this: > ><%-- create the first substitute regexp --%> >s/method="POST"/method="GET"/gmi > ><%-- create the second substitute regexp --%> >id="rx2">s/href="(http:\/\/www.din

Antw: Re: regexp taglib functionality

2002-05-16 Thread TIMO EINSIEDLER-BURGER
i am using the http://jakarta.apache.org/taglibs/regexp-1.0 taglib to perform the substitution. the syntax looks like this: <%-- create the first substitute regexp --%> s/method="POST"/method="GET"/gmi <%-- create the second substitute regexp --%> s/href="(http:\/\/www.din-metallbauerhandwer

jms example not working

2002-05-16 Thread Eric Hansen
Hello, I've just download the JMS tags and the example is not working for me. It appears that the org.apache.commons.messenger.InitMessengerServlet class is missing from the commons-messenger.jar file. Has anyone else had this problem? Thanks, Eric- -- To unsubscribe, e-mail:

Re: regexp taglib functionality

2002-05-16 Thread Henri Yandell
On Thu, 16 May 2002, Shawn Bayern wrote: > I'm not sure what you're using to perform the regular-expression > substitution (the String Taglib?), but it sounds like whatever it is, you > can stick it inside JSTL's tag to "capture" the output as a > String. The regexp taglib? :) String taglib a

Re: regexp taglib functionality

2002-05-16 Thread Shawn Bayern
On Thu, 16 May 2002, TIMO EINSIEDLER-BURGER wrote: > I must perfom multiple substitutions on an imported (-> import tag) > text. > > But as far as i read and (hopefully) understood the docs and specs it > is only possible to perform one regular expression on a text and then > print out the text

regexp taglib functionality

2002-05-16 Thread TIMO EINSIEDLER-BURGER
hello and a nice day... I am having following problem and cannot find any solution to it, maybe some of you know how to deal with it: I must perfom multiple substitutions on an imported (-> import tag) text. But as far as i read and (hopefully) understood the docs and specs it is only possib