Re: Trimmed down JSTL for JSP 1.1

2002-10-08 Thread dion
I'd also love a version of JSTL that works on JSP 1.1. How do we get this going? > I can help you if you want > > Eugene Bekker wrote: > > Hello, > > > > > I was wondering if there was any current effort going on for > > back-porting the Jakarta Standard Taglib to run under JSP 1.1? > >

Re: JSTL import question

2002-10-08 Thread petra staub
It works! Sorry for the confusion... My first version did not have the escapeXml set to false and therefore i had always the Javascript in my source files. I then modified the with escapeXml="false" (as I submited my problem) and somehow I managed to get it fail again what made me think that th

RE: JSTL import question

2002-10-08 Thread Martin Cooper
All three messages have the same code... The only problem I see is that you have the tag in both files. I'm not sure what kind of issues that would cause, but it's not good. ;-) -- Martin Cooper > -Original Message- > From: petra staub [mailto:[EMAIL PROTECTED]] > Sent: Tuesday, Octob

Re: JSTL import question

2002-10-08 Thread Shawn Bayern
On Tue, 8 Oct 2002, petra staub wrote: > I use the tag for including my general header file. > Parameters such as the title, I pass by parameters: name="title" value="myTitle">. > > However, in some jsp files I still require some javascript... > > What would be a good solution for providing f

[ANN] Jakarta-Taglibs String 1.0 Taglib Released

2002-10-08 Thread Glenn Nielsen
The Jakarta-Taglibs team is proud to announce the 1.0 release of the String JSP custom tag library. The String tag library provides a host of tags for manipulating java.lang.String. The 1.0 release of the String JSP custom tag library is compatible with the JavaServer Pages (JSP) 1.1 specificatio

Re: JSTL import question

2002-10-08 Thread petra staub
and again. i apologize but some how the maillist server cuts off my code :( header.jsp: -- <%@ taglib prefix="c" uri="/WEB-INF/tlds/jstl/c.tld" %> some jsp file with javascript code: -- < %@ taglib prefix="c" uri="/WEB-INF/tlds/jstl/c.tld" %

Re: JSTL import question

2002-10-08 Thread petra staub
sorry...me again... the code example was cut off. here another try... header.jsp: -- <%@ taglib prefix="c" uri="/WEB-INF/tlds/jstl/c.tld" %> some jsp file with javascript code: -- <%@ taglib prefix="c" uri="/WEB-INF/tlds/jstl/c.tld" %>

JSTL import question

2002-10-08 Thread petra staub
I use the tag for including my general header file. Parameters such as the title, I pass by parameters: . However, in some jsp files I still require some javascript... What would be a good solution for providing for individual jsp files some additional code? (without creating a "javascript" fil