473,385 Members | 1,531 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,385 software developers and data experts.

HTML validation

I used the W3C markup and validation service for http://www.wasmundbindery.com
and got this reply back. I don't understand what it means or how to fix it.

The DOCTYPE Declaration in your document was not recognized. This probably
means that the Formal Public Identifier contains a spelling error, or that the
Declaration is not using correct syntax. Validation has been performed using a
default "fallback" Document Type Definition that closely resembles HTML 4.01
Transitional, but the document will not be Valid until you have corrected the
problem with the DOCTYPE Declaration.
This page is not Valid HTML 4.01 Transitional!
Below are the results of attempting to parse this document with an SGML parser.
Line 1, column 0: no document type declaration; implying "<!DOCTYPE HTML
SYSTEM>"

Jul 23 '05 #1
12 2438
In comp.infosystems.www.authoring.html Marinemasters said:
I used the W3C markup and validation service for http://www.wasmundbindery.com
and got this reply back. I don't understand what it means or how to fix it.

The DOCTYPE Declaration in your document was not recognized.


<meta name="generator" content="Microsoft FrontPage 5.0">

its not really worth the effort to help you. FP will just screw it up
again but stick this at the top of your documents:

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">

i strongly recommend dumping FP. if you want wysinwyg use an editor that
can do it without errors[1]:
http://www-3.ibm.com/software/webservers/hpbuilder/
[1]except for a few proprietary attributes that you should be using css
for anyway.

--
the facts and opinions expressed by brucies
l i t t l e v o i c e s
are not necessarily the same as those held by brucie.
Jul 23 '05 #2
Marinemasters wrote:
I used the W3C markup and validation service for http://www.wasmundbindery.com
and got this reply back. I don't understand what it means or how to fix it.

The DOCTYPE Declaration in your document was not recognized. ... This page is not Valid HTML 4.01 Transitional!


That's because your page has no doctype
declaration. Insert
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN">
at the very top of your document.

And while I'm at it: Replace your Javascript menu
with something that everybody can use, replace
font tags with css and use css for someting really
useful. The styling of your scrollbars is only
visible to Internet Explorer users.
--
Inger Helene Falch-Jacobsen
http://home.online.no/~ingerfaj/
Jul 23 '05 #3
In our last episode,
<20***************************@mb-m25.aol.com>,
the lovely and talented Marinemasters
broadcast on comp.infosystems.www.authoring.html:
I used the W3C markup and validation service for
http://www.wasmundbindery.com and got this reply back. I don't
understand what it means or how to fix it. The DOCTYPE Declaration in your document was not recognized.
Because the document does not have a DOCTYPE declaration. Put one
in, according to which DTD you want to validate against.
This probably
means that the Formal Public Identifier contains a spelling error, or that the
Declaration is not using correct syntax. Validation has been performed using a
default "fallback" Document Type Definition that closely resembles HTML 4.01
Transitional, but the document will not be Valid until you have corrected the
problem with the DOCTYPE Declaration. This page is not Valid HTML 4.01 Transitional!
Below are the results of attempting to parse this document with an SGML parser.
Line 1, column 0: no document type declaration; implying "<!DOCTYPE HTML
SYSTEM>"


This is a DOCTYPE declaration. It goes at the top of the document:

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">

The part in the quotes is the name of the DTD you think you are using
(or want to validate against). You can also have a second quoted part
giving a URI for where the DTD can be located. This is not usually
necessary for a very standard DTD, such as one of W3C DTDs.

--
Lars Eighner -finger for geek code- ei*****@io.com http://www.io.com/~eighner/
If it wasn't for muscle spasms, I wouldn't get any exercise at all.
Jul 23 '05 #4
On Thu, 04 Nov 2004 01:49:56 -0600, Lars Eighner <ei*****@io.com>
declared in comp.infosystems.www.authoring.html:
You can also have a second quoted part
giving a URI for where the DTD can be located. This is not usually
necessary for a very standard DTD, such as one of W3C DTDs.


But in the case of the Transitional DTD (you'd be better off with
Strict, IMHO), not including the URL triggers quirks mode in most modern
browsers.

http://gutfeldt.ch/matthias/articles...tch/table.html
http://diveintomark.org/archives/2002/05/29/quirks_mode

--
Mark Parnell
http://www.clarkecomputers.com.au
Jul 23 '05 #5
In message <o5**************@usenetshit.info>, brucie
<sh**@usenetshit.info> writes
i strongly recommend dumping FP. if you want wysinwyg use an editor that
can do it without errors[1]:
http://www-3.ibm.com/software/webservers/hpbuilder/ [1]except for a few proprietary attributes that you should be using css
for anyway.


I used a sixty day trial version of Home Page builder a while ago. I
liked it and almost purchased the full version. However I read that it
contains a few annoying bugs, and IBM appear to have stopped developing
it.

I used to like HotMetal as a WYSI(N)WYG editor, but that died sometime
ago.
--
Martin Jay
Jul 23 '05 #6
don't be so lazy, I still use the old DOS edit command, or notepad.

I have 22, 000 files on my server that reflect the same.
..

"Martin Jay" <ma****@spam-free.org.uk> wrote in message
news:BO**************@aio.spam-free.org.uk...
In message <o5**************@usenetshit.info>, brucie
<sh**@usenetshit.info> writes
i strongly recommend dumping FP. if you want wysinwyg use an editor that
can do it without errors[1]:
http://www-3.ibm.com/software/webservers/hpbuilder/

[1]except for a few proprietary attributes that you should be using css
for anyway.


I used a sixty day trial version of Home Page builder a while ago. I
liked it and almost purchased the full version. However I read that it
contains a few annoying bugs, and IBM appear to have stopped developing
it.

I used to like HotMetal as a WYSI(N)WYG editor, but that died sometime
ago.
--
Martin Jay

Jul 23 '05 #7
SwampRat wrote:

"Martin Jay" wrote...

I used a sixty day trial version of Home Page builder a while ago.
I liked it and almost purchased the full version.

I used to like HotMetal as a WYSI(N)WYG editor, but that died
sometime ago.


don't be so lazy, I still use the old DOS edit command, or notepad.

I have 22, 000 files on my server that reflect the same. .


You lazy man! Real coders use edln!

--
Brian (remove "invalid" to email me)
Jul 23 '05 #8
On Thu, 11 Nov 2004 20:13:33 GMT, Brian
<us*****@julietremblay.com.invalid> wrote:
SwampRat wrote:

"Martin Jay" wrote...

I used a sixty day trial version of Home Page builder a while ago.
I liked it and almost purchased the full version.

I used to like HotMetal as a WYSI(N)WYG editor, but that died
sometime ago.


don't be so lazy, I still use the old DOS edit command, or notepad.

I have 22, 000 files on my server that reflect the same. .


You lazy man! Real coders use edln!


I use a very pointy magnet and manually manipulate the individual bits on
the disk. That's the man's way!
Jul 23 '05 #9
Neal wrote:
Brian wrote:
SwampRat wrote:
"Martin Jay" wrote...

I used a sixty day trial version of Home Page builder a while
ago.

don't be so lazy, I still use the old DOS edit command, or
notepad.


You lazy man! Real coders use edln!


I use a very pointy magnet and manually manipulate the individual
bits on the disk. That's the man's way!


Disk?! Pshaw! Get punch cards, and forget that new-fangled magnetic
storage device. <grumble>Dang wet-behind-the-ears newbies with their
contraptions...</grumble>

--
Brian (remove "invalid" to email me)
Jul 23 '05 #10
In comp.infosystems.www.authoring.html Brian said:
You lazy man! Real coders use edln!
I use a very pointy magnet and manually manipulate the individual
bits on the disk. That's the man's way!
Disk?! Pshaw! Get punch cards, and forget that new-fangled magnetic
storage device. <grumble>Dang wet-behind-the-ears newbies with their
contraptions...</grumble>


ppffffttttt try hard wannabees

http://editor.usenetshit.info/

--
the facts and opinions expressed by brucies
l i t t l e v o i c e s
are not necessarily the same as those held by brucie.
Jul 23 '05 #11
Neal <ne*****@yahoo.com> wrote in
news:op**************@news.individual.net:
don't be so lazy, I still use the old DOS edit command, or notepad.
You lazy man! Real coders use edln!
I use a very pointy magnet and manually manipulate the individual bits
on the disk. That's the man's way!


I was once involved with trying to recover data from a
mini-computer removable disk pack that had suffered
a head crash. The law firm involved hired a 'consultant'
to fly up from the USA. On at least one of the trips
he rented a Ferrari to get around in Vancouver. At various
times he went to another part of the law offices, out of
sight of the rest of us, and came back with head assemblies
from the disk drive that he had "modified". We were laughing
to ourselves, because they were covered in soot - not a good thing
for read/write heads that 'fly' over the magnetic disk surface
at a few thousandths of an inch. Sure enough, the drive crashed
again once his "modified" heads were installed. He never did
contribute to getting any data from the crashed disks.

If he got paid for his 'work' and expenses, including the
Ferrari, then I'd say his use of a pocket lighter to solve
'technical problems' is a more lucrative approach than using
a pointy stick ;-)

--
Dave Patton
Canadian Coordinator, Degree Confluence Project
http://www.confluence.org/
My website: http://members.shaw.ca/davepatton/
Jul 23 '05 #12
On Fri, 12 Nov 2004 07:29:12 +1000, brucie <sh**@usenetshit.info> wrote:
ppffffttttt try hard wannabees

http://editor.usenetshit.info/


Now we're talking.

Jul 23 '05 #13

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

Similar topics

4
by: dfirefire | last post by:
Hi, i tried to validate a html doc, but the validator complained without reason. This is an excerpt of the validation results: Below are the results of attempting to parse this document with an...
81
by: sinister | last post by:
I wanted to spiff up my overly spartan homepage, and started using some CSS templates I found on a couple of weblogs. It looks fine in my browser (IE 6.0), but it doesn't print right. I tested...
15
by: Pasta Bolognese | last post by:
Open VS.2003. Click on a control on an aspx page in the HTML view. Does it tell me the pixel position on the page? Nooooooooooo.................
2
by: Nick Gilbert | last post by:
Hi I have a number of pages where it is valid for the user to enter HTML. On these pages, I have turned off RequestValidation ("ValidateRequest = false" in the page directive) so that the...
9
by: Alan Silver | last post by:
Hello, I am writing a web form where the user is allowed to enter HTML into one of the textboxes. This of course generates the "potentially dangerous" server error. Now I know I can switch...
4
by: Arthur Dent | last post by:
Hello all, ive been programming with ASP.NET since it came out, but am just getting my feet with now with v.2. Ive noticed something strange in the way my HTML tables get rendered with 2. I use...
12
by: Nalaka | last post by:
Hi, I suddenly started getting a lot of errors from html validation (some CSS) so I followed the following instructions to disable it. If you'd rather not have these types of HTML validation...
40
by: VK | last post by:
Hi, After the response on my request from W3C I'm still unclear about Tidy vs. Validator discrepansies. That started with <IFRAME> issue, but there is more as I know. Anyway, this very basic...
1
by: Tatyana | last post by:
Hi All, I have a question regarding validation with XHTML on ASP.Net websites. Our site is built on ASP.NET 2.0 with validation XHTML. Search Engine Optimizer advised us that we should change it...
8
by: =?Utf-8?B?U2hhd24gUmFtaXJleg==?= | last post by:
I am coming at the world from the standpoint of a veteran ASP Classic developer. I am not clear on the advantages of using the ASP.NET control over standard HTML control. With the ASP.NET...
0
by: Faith0G | last post by:
I am starting a new it consulting business and it's been a while since I setup a new website. Is wordpress still the best web based software for hosting a 5 page website? The webpages will be...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 3 Apr 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 former...
0
by: ryjfgjl | last post by:
In our work, we often need to import Excel data into databases (such as MySQL, SQL Server, Oracle) for data analysis and processing. Usually, we use database tools like Navicat or the Excel import...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...

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.