RE: validator and refc delimiter

jonathan chetwynd wrote:

> Anyone care to comment on when the issue of data in urls,
> causing pages not to validate, will be cleared up?

Which issue?

> once again trawling through peepo.com and learningdifferently.com
> and checking for accessibility issues.

I don't think this is specifically accessibility related, but
the problem you apparently refer to is caused by document errors:
the use of "&" in contexts where it is followed by an alphabetic
character but meant to stand for "&" itself. The fix is to use
"&" instead of "&". The validator's message is caused by the
fact that when validating against an XHTML doctype, the terminating
semicolon is required.

This is one of the most common problems with validators, see
http://www.htmlhelp.org/tools/validator/problems.html#amp
and XHTML has just added a new feature to it.

For example, a string like
...membername=tuluum&url=http...
is doubly incorrect in XHTML: first, the entity reference is
syntactically malformed (&url instead of &url;); second, it refers
to an undefined entity. Validators report both errors. Using the correct
...membername=tuluum&url=http...
avoids both.

-- 
Jukka Korpela, senior adviser 
TIEKE Finnish Information Society Development Centre
http://www.tieke.fi/
Diffuse Business Guide to Web Accessibility and Design for All:
http://www.diffuse.org/accessibility.html

Received on Thursday, 3 October 2002 05:28:48 UTC