Changes for page UTF-8 Encoding Tips
Last modified by Ray Kiddy on 2022/01/11 21:36
From version 17.1
edited by Antoine Berry
on 2012/09/20 10:32
on 2012/09/20 10:32
Change comment:
There is no comment for this version
To version 18.1
edited by Ramsey Gurley
on 2013/06/12 13:30
on 2013/06/12 13:30
Change comment:
There is no comment for this version
Summary
-
Page properties (2 modified, 0 added, 0 removed)
Details
- Page properties
-
- Author
-
... ... @@ -1,1 +1,1 @@ 1 -XWiki.a berry1 +XWiki.ramsey - Content
-
... ... @@ -1,13 +1,12 @@ 1 1 = UTF-8 Encoding Tips = 2 2 3 -Encoding questions are asked frequently on the mailing list. This is just a collection of tips for using UTF-8. It's a checklist of sorts. :-)3 +Encoding questions are asked frequently on the mailing list. This is just a collection of tips for using UTF-8. It's a checklist of sorts. Make sure you've done all the things specified here before pitching your computer into the ocean 4 4 5 5 == Check your database == 6 6 7 -The database needs to be storing values in UTF-8. 7 +The database needs to be storing values in UTF-8. If it isn't, then all your effort is wasted. For example, on MySQL that means a db url like 8 8 9 9 {{noformat}} 10 - 11 11 jdbc:mysql://localhost/Example?capitalizeTypenames=true&zeroDateTimeBehavior=convertToNull&useUnicode=true&characterEncoding=UTF-8 12 12 13 13 {{/noformat}} ... ... @@ -14,14 +14,13 @@ 14 14 15 15 And setting your default charset and collation in your my.cnf file 16 16 17 -[[image:options.png]] 16 +[[image:attach:options.png]] 18 18 19 19 == Fonts & CSS == 20 20 21 -Different fonts may not have all the characters to display the different characters. 20 +Different fonts may not have all the characters to display the different characters. If you're using a default stylesheet, then the browsers may be displaying differently simply because of fonts. Speaking of stylesheets, you probably want to encode that in UTF-8 also. Start your stylesheet with something like 22 22 23 23 {{noformat}} 24 - 25 25 @charset "UTF-8"; 26 26 @import url("reset.css"); 27 27 ... ... @@ -31,14 +31,13 @@ 31 31 32 32 == Set eclipse encoding == 33 33 34 -[[image:preferences.png]] 32 +[[image:attach:preferences.png]] 35 35 36 36 == Use Project Wonder == 37 37 38 -I think this goes without saying but: **Use Wonder**. Set encoding in the properties file. Notice it is UTF-8 with a hyphen. It it always UTF-8 with a hyphen... well, except with the MySQL image above because they excel in doing things differently :-)36 +I think this goes without saying but: **Use Wonder**. Set encoding in the properties file. Notice it is UTF-8 with a hyphen. It it always UTF-8 with a hyphen... well, except with the MySQL image above because they excel in doing things differently 39 39 40 40 {{noformat}} 41 - 42 42 # Project Encoding 43 43 er.extensions.ERXApplication.DefaultEncoding=UTF-8 44 44 ... ... @@ -47,7 +47,6 @@ 47 47 == Set encoding in your page wrapper == 48 48 49 49 {{noformat}} 50 - 51 51 <?xml version="1.0" encoding="UTF-8" standalone="no"?> 52 52 <!DOCTYPE html PUBLIC 53 53 "-//W3C//DTD XHTML 1.1 plus MathML 2.0 plus SVG 1.1//EN" ... ... @@ -55,9 +55,9 @@ 55 55 56 56 {{/noformat}} 57 57 58 -== Localizable strings should be in UTF-16 == 54 +== Localizable strings should be in UTF-16! == 59 59 60 -Localizable.strings should be encoded in UTF-16. The localizer can detect UTF-16 without error, where it can confuse UTF-8 with other encodings. Pascalsays useUTF-16LEif youwant to be explicitaboutthings...Especially if you areediting yourstringsfiles inan external editorlikeBBEditwhatnot. I usetheeclipse editorandUTF-16 myself and all seems toworkfinefor me. So to each hisown.56 +Localizable.strings should be encoded in UTF-16. The localizer can detect UTF-16 without error, where it can confuse UTF-8 with other encodings. Specifically, you should be using UTF-16 BE with no BOM if you are using an external text editor instead of eclipse. 61 61 62 62 == Build your files in UTF-8. == 63 63 ... ... @@ -64,7 +64,6 @@ 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 65 66 66 {{code language="xml"}} 67 - 68 68 <wocompile srcdir="Sources" destdir="bin" encoding="utf-8"> 69 69 70 70 {{/code}}