-
New Feature
-
Resolution: Won't Fix
-
Major
-
1.1.8
-
None
-
None
Everywhere we found the same SimpleDateFormat pattern just for SAXing a date/calendar.
An helper would be very much welcome, and the raw format must be compatible with:
- ExtJS for formatting date as we want ;
- I18NTransformer for formatting date as we want.
The timezone must be handled because international applications may depends on it.
Another missing feature is to SAX user in a standard manner:
<user login="ced"> <email>ced@anwrt.com</email> <fullName>Cédric Damioli</fullName> </user>
Sometimes we want to SAX a string and replace linefeeds with a proper tag (textearea):
<text>mon texte<linebreak/>sur plusieurs lignes.</text>
And, finally a way to SAX a value which will be injected into a JS string:
<value>Mon caractère \' et son pendant \" avec un retour à la ligne\net la suite.</value>
which can be used easily inject :
alert("<xsl:value-of select="value"/>");
will produce:
alert("Mon caractère \' et son pendant \" avec un retour à la ligne\net la suite.");
There's many helper around here