Changes for page UTF-8 Encoding Tips
Last modified by Ray Kiddy on 2022/01/11 21:36
From version 11.1
edited by Antoine Berry
on 2012/09/20 10:12
on 2012/09/20 10:12
Change comment:
There is no comment for this version
To version 12.1
edited by Antoine Berry
on 2012/09/20 10:30
on 2012/09/20 10:30
Change comment:
There is no comment for this version
Summary
-
Page properties (1 modified, 0 added, 0 removed)
Details
- Page properties
-
- Content
-
... ... @@ -62,3 +62,9 @@ 62 62 == Build your files in UTF-8. == 63 63 64 64 If you have some special characters in your code (like '€' for exemple), then you will need to specify which encoding you want when you build your application. To do that, you have to modify your "build.xml" file by adding the property "encoding="utf-8" into your <wocompile> statement. 65 + 66 +{{code language="xml"}} 67 + 68 + <wocompile srcdir="Sources" destdir="bin" encoding="utf-8"> 69 + 70 +{{/code}}