Re: Tag libraries that use ExpressionEvaluator depend on Jakartaimplementation

2003-03-10 Thread Pierre Delisle
David M. Karr wrote: This is probably obvious, but it is the case that any tag libraries that use the ExpressionEvaluator class in the Jakarta JSTL implementation are actually dependent on the Jakarta implementation, as opposed to the specification, correct? Yes this is correct, as mentioned

RE: Tag libraries that use ExpressionEvaluator depend on Jakarta implementation

2003-03-10 Thread Karr, David
-Original Message- From: Pierre Delisle [mailto:[EMAIL PROTECTED] David M. Karr wrote: This is probably obvious, but it is the case that any tag libraries that use the ExpressionEvaluator class in the Jakarta JSTL implementation are actually dependent on the Jakarta

JSTL c:out rewrites html tags

2003-03-10 Thread Hanasaki JiJi
The JSTL taglibs (c:out) re-write html tags into GT so the actual text prints out. Is there any way to disable this? - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: JSTL c:out rewrites html tags

2003-03-10 Thread Brian Buckley
Set the escapeXml attribute to false. c:out value=${foo} escapeXml=false / The JSTL taglibs (c:out) re-write html tags into GT so the actual text prints out. Is there any way to disable this? - To unsubscribe, e-mail:

Re: JSTL c:out rewrites html tags

2003-03-10 Thread Shawn Bayern
On Mon, 10 Mar 2003, Hanasaki JiJi wrote: The JSTL taglibs (c:out) re-write html tags into GT so the actual text prints out. Is there any way to disable this? Yes, the escapeXml=false attribute of the c:out tag disables this behavior. -- Shawn Bayern JSTL in Action

Re: JSTL c:out rewrites html tags

2003-03-10 Thread Hanasaki JiJi
Thanks to Brian and Shawn! anyone know of a lib that will perfrom the escXML on a String? goal: take in input string that may / maynot have HTML tags zap the html tags or turn them to pure text ala LT add some HTML tags output via c:out escapeXml=false dont want

Re: JSTL c:out rewrites html tags

2003-03-10 Thread Shawn Bayern
On Mon, 10 Mar 2003, Hanasaki JiJi wrote: Thanks to Brian and Shawn! anyone know of a lib that will perfrom the escXML on a String? goal: take in input string that may / maynot have HTML tags zap the html tags or turn them to pure text ala LT You can use c:out wrapped by