Standard-example

2004-04-13 Thread khashayar sad
Hello! I have installed the jslt-standard and look at the examples. I couldnt undrestand what happend with jslt-exaples: for example you have this exapmle: %@ taglib prefix=c uri=http://java.sun.com/jsp/jstl/core; % html head titleJSTL: Expression Language Support -- Expr Example/title /head

Re: Standard-example

2004-04-13 Thread Pierre Delisle
My question is: where is ${customers} decalerade or got the values!!! This is explained at the bottom of the home page for standard-examples: Infrastructure The source code for the JSTL examples includes class startup.Init to initilialize the objects used in the examples. This allows us to mimic

Replacing returns with br

2004-04-13 Thread Keith
I have a column in a database that is used to store a comments section. It's just a large string (VARCHAR2(4000) in Oracle), and the information is entered into it via a textarea form field. If I output that data to another textarea I can see that the return characters are preserved in the

http://java.sun.com/jsp/jstl/functions

2004-04-13 Thread nrapagnani
I am having trouble finding info on this tag library. The link works but does not bring me to a page where functions information is available. I've searched the mailing list archive with no luck. I've searches the documentation that came with the standard tag library with no luck. I've also

Re: http://java.sun.com/jsp/jstl/functions

2004-04-13 Thread Bill Siggelkow
[EMAIL PROTECTED] wrote: I am having trouble finding info on this tag library. The link works but does not bring me to a page where functions information is available. I've searched the mailing list archive with no luck. I've searches the documentation that came with the standard tag library

input tags

2004-04-13 Thread Arora, Avinash
Hi, I was trying to obtain the input tags from jakarta.apache.org. But I can see that there are no files present in the Library release folder from any of the mirrors. But the nightly builds are available. Has any body faced similar problem. Is the nightly release reliable enough to be used.

Re: Replacing returns with br

2004-04-13 Thread Pierre Delisle
Not very intuitive, but the following should work: c:set var=s5 value=First line\nSecond line/ c:out value=${fn:replace(s5,'\\\n','br')} escapeXml=false/ -- Pierre Keith wrote: I have a column in a database that is used to store a comments section. It's just a large string