On 11/5/06, Carfield Yim <[EMAIL PROTECTED]> wrote: > I have just talk a look for the bugs. Like to confirm one thing, is > that mean for *.properties, it still need to use escaped ASCII text as > value, but if you are using XML, it is ok to directly use UTF-8 > without using native2acsii converter, right?
Yep, properties still need to be escaped, but XML can be put in directly. If you look at: <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE properties SYSTEM "http://java.sun.com/dtd/properties.dtd"> <properties> <entry key="foo">bar</entry> </properties> The encoding is in the first statement. Eelco ------------------------------------------------------------------------- Using Tomcat but need to do more? Need to support web services, security? Get stuff done quickly with pre-integrated technology to make your job easier Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642 _______________________________________________ Wicket-user mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/wicket-user
