Skip to main content



      Home
Home » Eclipse Projects » Rich Client Platform (RCP) » Problem with non-english characters in welcome screen
Problem with non-english characters in welcome screen [message #445123] Tue, 28 February 2006 05:26 Go to next message
Eclipse UserFriend
Hi! I`ve tryed to edit welcome screen, from RCP example apps., and I`ve
discovered that I`can`t place any non-english characters. I`ve tried to
put them by code, like this : "\u0146", the same result - page cannot be
displayed. I`m total newbie to xhtml, can somebody explain what I can do
to solve this?
Re: Problem with non-english characters in welcome screen [message #445126 is a reply to message #445123] Tue, 28 February 2006 05:57 Go to previous messageGo to next message
Eclipse UserFriend
You need to set the charset correctly and be sure to save the xhtml page
in the correct charset.

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
</head>
<body>
</body>
</html>

Notice how the xml declaration specifies UTF-8 and how the meta tag
defines UTF-8. The latter can also be used in HTML 4 to specify the
content encoding.


Andrey Bondarenko wrote:
> Hi! I`ve tryed to edit welcome screen, from RCP example apps., and I`ve
> discovered that I`can`t place any non-english characters. I`ve tried to
> put them by code, like this : "\u0146", the same result - page cannot be
> displayed. I`m total newbie to xhtml, can somebody explain what I can do
> to solve this?
>
Solved: Problem with non-english characters in welcome screen [message #445127 is a reply to message #445126] Tue, 28 February 2006 06:43 Go to previous message
Eclipse UserFriend
Thanks!
Previous Topic:open initial editor when the user opens perspective
Next Topic:Preventing multiple executions of RCP applications
Goto Forum:
  


Current Time: Thu Nov 06 20:52:01 EST 2025

Powered by FUDForum. Page generated in 0.07523 seconds
.:: Contact :: Home ::.

Powered by: FUDforum 3.0.2.
Copyright ©2001-2010 FUDforum Bulletin Board Software

Back to the top