Re: Unicode problem (?) - WebOpac HomePage
Posted by nsid on Oct 10, 2011; 5:17am
URL: http://ngl.70.s1.nabble.com/Unicode-problem-WebOpac-HomePage-tp6864895p6875796.html
I think I have a very interesting finding for the development team.
If I select to open the library_home.html file with chrome and other browsers and I am getting junk characters...
The context of the library_home.html file is:
---------------
<div class="heading-1">Καλώς ήρθατε στον κατάλογο της Βιβλιοθήκης / Welcome to Platon's Library</div>
<div class="content">Platon's Library provides its users with access to sources of information in an atmosphere that encourages information sharing and access to a rich collection of services</div>
---------------
But when I add the following html code to library_home.html, I can open it with any browser and I am getting the Greek characters correctly!
------------
<html>
<head>
<meta content="text/html; charset=UTF8"
http-equiv="content-type">
<title>Library</title>
</head>
<body>
<div class="heading-1">Καλώς ήρθατε στον κατάλογο της Βιβλιοθήκης / Welcome to Platon's Library</div>
<div class="content">Platon's Library provides its users with access to sources of information in an atmosphere that encourages information sharing and access to a rich collection of services</div>
</body>
</html>
--------------
I believe it has something to do with the html statement about UTF8.
As I visit the NewGenLib homepage I am still getting the junk characters too. Maybe should we implement there the UTF8 parameter too?
Just an idea...