Connecting Tech Pros Worldwide Help | Site Map

w3c compliant code..

  #1  
Old November 11th, 2008, 07:55 PM
maya
Guest
 
Posts: n/a

hi,

I'm trying to validate this url..
http://www.francesdelrio.com/resume/

I don't quite these errors:

http://validator.w3.org/check?uri=ht...Inline&group=0


Line 1, Column 114: character "/" invalid: only delimiter ">", delimiter
"[", "CDATA", "NDATA", "SDATA" and parameter separators allowed.

…g/TR/xhtml1/DTD/xhtml1-frameset.dtd" />



and what is wrong with a tag like this?
<frameset rows="180,*" frameborder="0" framespacing="0" border="0"
onLoad="loc();" />

or a tag like this?
<frame name="topfr" SRC="top.html" marginwidth="0" marginheight="0"
scrolling="auto" frameborder="0" />

what's wrong with 'src' attribute????

I don't get this?? are FRAMES no longer w3c-compliant????


thank you...





  #2  
Old November 11th, 2008, 08:15 PM
Jukka K. Korpela
Guest
 
Posts: n/a

re: w3c compliant code..


maya wrote:
Quote:
>I'm trying to validate this url..
http://www.francesdelrio.com/resume/
So why do you use the Subject line "w3c compliant code" then?
Quote:
I don't quite these errors:
You now have _different_ errors. You seem to have changed the document.

Have you considered using a _correct_ doctype declaration, as copied from
W3C specs?
Quote:
and what is wrong with a tag like this?
<frameset rows="180,*" frameborder="0" framespacing="0" border="0"
onLoad="loc();" />
Frames are evil. Using XHTML for them to the bogosity.
Quote:
or a tag like this?
<frame name="topfr" SRC="top.html" marginwidth="0" marginheight="0"
scrolling="auto" frameborder="0" />
Inline frames are inline evil.
Quote:
I don't get this?? are FRAMES no longer w3c-compliant????
They never really were. From the beginning, they have been deprecated. But
this has nothing to do with validation. You get validation errors because
your markup is invalid. You haven't even got the doctype declaration right.

--
Yucca, http://www.cs.tut.fi/~jkorpela/

  #3  
Old November 11th, 2008, 09:25 PM
maya
Guest
 
Posts: n/a

re: w3c compliant code..


Jukka K. Korpela wrote:
Quote:
maya wrote:
>
Quote:
>I'm trying to validate this url..
>http://www.francesdelrio.com/resume/
>
So why do you use the Subject line "w3c compliant code" then?
>
Quote:
>I don't quite these errors:
>
You now have _different_ errors. You seem to have changed the document.
>
Have you considered using a _correct_ doctype declaration, as copied
from W3C specs?
>
Quote:
>and what is wrong with a tag like this?
><frameset rows="180,*" frameborder="0" framespacing="0" border="0"
>onLoad="loc();" />
>
Frames are evil. Using XHTML for them to the bogosity.
>
Quote:
>or a tag like this?
><frame name="topfr" SRC="top.html" marginwidth="0" marginheight="0"
>scrolling="auto" frameborder="0" />
>
Inline frames are inline evil.
>
Quote:
>I don't get this?? are FRAMES no longer w3c-compliant????
>
They never really were. From the beginning, they have been deprecated.
But this has nothing to do with validation. You get validation errors
because your markup is invalid. You haven't even got the doctype
declaration right.
>
ok, fine, will give up on that one, then... am trying to w3c-check this
url:
http://www.francesdelrio.com/photoblog/


what can be wrong w/this line?

Line 5270, Column 75: general entity "page" not defined and no default
entity.
…toblog/feedback.jsp?section=section1&page=page1" class="main
sectionsLinks">

are urls with query-strings not w3c-compliant????

thank you...



  #4  
Old November 11th, 2008, 09:25 PM
Chris F.A. Johnson
Guest
 
Posts: n/a

re: w3c compliant code..


On 2008-11-11, maya wrote:
Quote:
am trying to w3c-check this
url:
http://www.francesdelrio.com/photoblog/
>
what can be wrong w/this line?
>
Line 5270, Column 75: general entity "page" not defined and no default
entity.
…toblog/feedback.jsp?section=section1&page=page1" class="main
sectionsLinks">
>
are urls with query-strings not w3c-compliant????
The ampersand needs to be converted to a character entity, &amp;

<a href="/photoblog/feedback.jsp?section=section1&amp;page=page1"

--
Chris F.A. Johnson <http://cfaj.freeshell.org>
================================================== =================
Author:
Shell Scripting Recipes: A Problem-Solution Approach (2005, Apress)
  #5  
Old November 11th, 2008, 09:45 PM
maya
Guest
 
Posts: n/a

re: w3c compliant code..


Chris F.A. Johnson wrote:
Quote:
On 2008-11-11, maya wrote:
Quote:
> am trying to w3c-check this
>url:
>http://www.francesdelrio.com/photoblog/
>>
>what can be wrong w/this line?
>>
>Line 5270, Column 75: general entity "page" not defined and no default
>entity.
>…toblog/feedback.jsp?section=section1&page=page1" class="main
>sectionsLinks">
>>
>are urls with query-strings not w3c-compliant????
>
The ampersand needs to be converted to a character entity, &amp;
>
<a href="/photoblog/feedback.jsp?section=section1&amp;page=page1"
>
oh wow.. had no idea.. thank you very much....




  #6  
Old November 12th, 2008, 12:35 AM
Scott Bryce
Guest
 
Posts: n/a

re: w3c compliant code..


Chris F.A. Johnson wrote:
Quote:
The ampersand needs to be converted to a character entity, &amp;
Or replaced with a semicolon, if your script is able to parse it that way.
Closed Thread


Similar Threads
Thread Thread Starter Forum Replies Last Post
Nearly The Whole Of The Internet Is NOT W3C Valid Alberto answers 9 November 23rd, 2005 03:29 AM
Code for controling FTP from Access VBA Lauren Wilson answers 17 November 13th, 2005 03:25 PM
<DIV>tag in netscape? but works in IE (see code) D E answers 5 July 23rd, 2005 12:44 PM
active link in IE 6 and Opera 7 Peter Brause answers 36 July 20th, 2005 11:40 PM