Re: regarding escaping of single quotes in attrbutes of html tags

2014-05-03 Thread Vimil Saju
The rules: http://tomcat.apache.org/lists.html#tomcat-users 6. Do not top-post 7. Do not use HTML e-mails As you can see from the above, from HTML point of view there is no difference. onclick= =3Dclicked('Hello')Hello/a=0A/body=0A/html=0A=0AI was wo= ndering why the single quotes are now

Re: regarding escaping of single quotes in attrbutes of html tags

2014-05-03 Thread Konstantin Kolinko
2014-05-03 16:26 GMT+04:00 Vimil Saju vimils...@yahoo.com: The rules: http://tomcat.apache.org/lists.html#tomcat-users 6. Do not top-post 7. Do not use HTML e-mails As you can see from the above, from HTML point of view there is no difference. onclick=

regarding escaping of single quotes in attrbutes of html tags

2014-05-02 Thread Vimil Saju
Hi, I noticed that in version 7.0.53 single quotes in attributes of html tags that are generated using jspx are being escaped with #039; This was not the case in version 7.0.32. Could someone explain the reason behind this change? Thanks Vimil

Re: regarding escaping of single quotes in attrbutes of html tags

2014-05-02 Thread Konstantin Kolinko
2014-05-02 17:46 GMT+04:00 Vimil Saju vimils...@yahoo.com: Hi, I noticed that in version 7.0.53 single quotes in attributes of html tags that are generated using jspx are being escaped with ' This was not the case in version 7.0.32. Could someone explain the reason behind this change? 1)

Re: regarding escaping of single quotes in attrbutes of html tags

2014-05-02 Thread Vimil Saju
Sorry about not providing an example. Below is the contents of a jspx file jsp:root xmlns:jsp=http://java.sun.com/JSP/Page; version=2.0 html            body a href=# onclick=clicked('Hello')Hello/a /body /html /jsp:root In tomcat 7.0.32 the above jspx would generate the following html  html  

Re: regarding escaping of single quotes in attrbutes of html tags

2014-05-02 Thread Konstantin Kolinko
2014-05-02 21:56 GMT+04:00 Vimil Saju vimils...@yahoo.com: Sorry about not providing an example. Below is the contents of a jspx file jsp:root xmlns:jsp=http://java.sun.com/JSP/Page; version=2.0 html body a href=# onclick=clicked('Hello')Hello/a /body /html /jsp:root In