473,804 Members | 2,271 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

charset for accented characters

Despite charset being discussed to death, and despite having followed
all of those threads, I still have problems.

http://www.tsmchughs.com/recipes/soda-bread

This page uses iso-8859-1 charset. From the headers:
Content-Type: text/html; charset=iso-8859-1

Under ingredients are characters for fractions (188, 189, and 190) and
the degree character (176), characters which Lynx can display on
http://www.obviously.com/browsers/iso-8859-1.html
However, Lynx does not display the one half character on my soda-bread
page. What have I done wrong?

Then there's accented letters.

http://www.bonfete.biz/
http://www.julietremblay.com/about/philosophy.html

Both of those pages contain accented e (the first has an e circumflex,
the second, e aigu). It's fine in Mozilla, IE/Win, and Opera. But in
Lynx, these letters show us as strange-looking (to me, at any rate)
glyphs. This is true on my pages, and on the browser test page. Is
there anything I should do to fix it?

--
Brian
follow the directions in my address to email me

Jul 20 '05
23 3954
On Wed, 17 Dec 2003, Andreas Prilop wrote:
On Tue, 16 Dec 2003, Stan Brown wrote:
You need to tell Lynx which character set you're using, via a
setting in the Lynx.cfg file. You didn't tell us anything about your
system, so I have no idea whether my setting
CHARACTER_SET:c p437
will work for you.
The obsolete cp437 is not a good idea since it does not cover all
Latin-1 characters; for example it has no "fraction 3/4".


That's true, and I said much the same. However, if Lynx is running in
a situation where cp437 _is_ the display character set, then you'd get
no benefit from lying about it to Lynx. Either tell it the truth, or,
if feasible, find out how to change the situation in which Lynx is
running.
Better use cp850, which has all characters from Latin-1.


If you have that choice, then indeed it is.

(When I use "putty" to make a connection from Windows to Linux, I can
run Lynx with a utf-8 display charset.)
Jul 20 '05 #21
In article <Pine.GSO.4.44. 0312171732410.1 724-100000@s5b004> in
comp.infosystem s.www.authoring.html, Andreas Prilop wrote:
On Tue, 16 Dec 2003, Stan Brown wrote:
You need to use the metric system and forget about silly fractions.


Who are you and what have you done with Andreas?


Hmmm, please note that the International System of Units (SI) is
one of my favourite topics.
<http://groups.google.c om/groups?q=SI+Pri lop>


That's as may be, and I happen to agree with you that the SI makes a
lot more sense than the peculiar system used in the US.

But the OP was asking questions about how to display Web pages that
contain ISO-8859-1 characters 160 through 255. It's hardly helpful
to say that the pages should have different content. That's why I
was sure that someone else had temporarily taken over your account.

--
Stan Brown, Oak Road Systems, Cortland County, New York, USA
http://OakRoadSystems.com/
HTML 4.01 spec: http://www.w3.org/TR/html401/
validator: http://validator.w3.org/
CSS 2 spec: http://www.w3.org/TR/REC-CSS2/
2.1 changes: http://www.w3.org/TR/CSS21/changes.html
validator: http://jigsaw.w3.org/css-validator/
Jul 20 '05 #22
In article <Pine.GSO.4.44. 0312171739220.1 724-100000@s5b004> in
comp.infosystem s.www.authoring.html, Andreas Prilop wrote:
On Tue, 16 Dec 2003, Stan Brown wrote:
You need to tell Lynx which character set you're using, via a
setting in the Lynx.cfg file. You didn't tell us anything about your
system, so I have no idea whether my setting
CHARACTER_SET:c p437
will work for you.


The obsolete cp437 is not a good idea since it does not cover all
Latin-1 characters; for example it has no "fraction 3/4".
Better use cp850, which has all characters from Latin-1.


Perhaps you have not seen my article, following up on Alan
Flavell's, in which I report the results of my experiment?

CP437 and CP850 both lack a 3/4 character. But Lynx (in Win98) does
a much worse job when told to display using CP850. At least when
told to use 437 it uses reasonable equivalents for the unavailable
characters; with 850 it displays garbage.

--
Stan Brown, Oak Road Systems, Cortland County, New York, USA
http://OakRoadSystems.com/
HTML 4.01 spec: http://www.w3.org/TR/html401/
validator: http://validator.w3.org/
CSS 2 spec: http://www.w3.org/TR/REC-CSS2/
2.1 changes: http://www.w3.org/TR/CSS21/changes.html
validator: http://jigsaw.w3.org/css-validator/
Jul 20 '05 #23
Stan Brown <th************ @fastmail.fm> wrote:
Perhaps you have not seen my article, following up on Alan
Flavell's, in which I report the results of my experiment?
It have seen it only later.
CP437 and CP850 both lack a 3/4 character.
cp850 has *all* Latin-1 characters, including "fraction 3/4".
http://www.unicode.org/Public/MAPPIN...T/PC/CP850.TXT
But Lynx (in Win98) does
a much worse job when told to display using CP850. At least when
told to use 437 it uses reasonable equivalents for the unavailable
characters; with 850 it displays garbage.


I didn't mean just to set cp850 in Lynx but to set cp850 as system
code page in Windows 98. This is of course possible, and it is the
default value in all countries with Western languages except the USA,
where Microsoft chose cp437.
Jul 20 '05 #24

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

1
3846
by: Bernhard Georg Enders | last post by:
I'm using the php 'file' command to read the contents of an ASCII text file to a variable. The original text file contains some accented and special characters. The problem arises when I echo this variable: the accented characters are messed up. And not only accented characters, for example, the special characters ª is printed as ª. What can I do to correct this issue? I have tried, without success, to use the 'setlocale' command. TIA,
1
2454
by: Fuzzyman | last post by:
I've written an anagram finder that produces anagrams from a dictionary of words. The user can load their own dictionary. ( http://www.voidspace.org.uk/atlantibots/nanagram.html ) In order to ensure it is able to find anagrams properly I wanted to strip characters like punctuation etc from words in the dictionary and words the user entered. I test(ed) against the 26 English letters ( string.ascii_lowercase ).
14
16130
by: Nicolas Bouillon | last post by:
Hi I would like to replace accentuel chars (like "é", "è" or "à") with non accetued ones ("é" -> "e", "è" -> "e", "à" -> "a"). I have tried string.replace method, but it seems dislike non ascii chars... Can you help me please ? Thanks.
2
2662
by: Remco van den Berg | last post by:
I'm running a MySQL database with one of tables holding the members of a volleybal club in the Netherlands. One the the fields in that table is holding the name of the players. How do I search for all people with the name "Andre", with the important remark, that it should also match "André"!! So with the letter "e" with an accent "'" on it. In the Netherlands those names can be spelled with and without the accent and I do not always...
2
1707
by: nicolas_riesch | last post by:
I try to use python as the language in an asp page with Microsoft IIS 5.0. I have these two files, req_bad.asp and req_ok.asp ---------- req_bad.asp --------- <%@LANGUAGE=Python%> <%
4
2032
by: Satish | last post by:
Hi Gurus, Please help me in this, I have tried all options available to me. (Option 1) I am making a simple request from VB.NET client to WBI generated WSDL and passing request parameters. The response I am expecting should have some accented characters (Customer Name: Lokalcenter Åbygård), but this gets truncated and response is as follows (Customer Name: Lokalcenter bygrd). The WSDL has utf-8 character set defined.
0
2307
by: shintu | last post by:
Hallo, I am trying to write french accented characters é è ê in Excel worksheet using my perl script , But I am stuck here as I couldnt find a way of writing it !: My code: use strict; use warnings;
2
6433
by: gsuns82 | last post by:
Hi all, I have to replace accented characters from a input string with normal plain text.I have coded as follows. String input = "ÄÀÁÂÃ"; input= input.replaceAll("", "A"); like wise v can do for all. output was: ************ AAAAA
4
2899
by: gsuns82 | last post by:
Hi all, I am facing a strange issue. i.e: I have a jsp page with an input text field where the user can enter searching value even along with Accented Characters.After that i am getting the input value at the controller inorder to compose a query,before that i am replacing Accented Characters with plain text values so that i can append the proper input value in the DBquery. I tried to replace the input string for ...
0
9714
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
9594
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
10599
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
10346
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
0
9173
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
7635
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
5673
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
4308
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
2
3832
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.