Tagged Questions
17
votes
4answers
4k views
what actually is PCDATA and CDATA?
it seems that a loose definition of PCDATA and CDATA is that
1) PCDATA is character data, but is to be parsed.
2) CDATA is character data, and is not to be parsed.
but then someone told me that ...
1
vote
1answer
263 views
Why is this not a valid XML DTD? (Parameter entity and #PCDATA)
Using the DTD validator here, I am informed that the following DTD is invalid.
<!ENTITY % text "(#PCDATA|L)*">
<!ELEMENT H (%text;)+>
<!ELEMENT L (#PCDATA)>
The ...
1
vote
2answers
253 views
Element Declaration: Defining content as #PCDATA and one occurence of child element
In the xml spec, it says:
[Definition: An element type has mixed content when elements of that type may contain character data, optionally interspersed with child elements.] In this case, the types ...
0
votes
2answers
78 views
Problem with xml
I am novice to xml...I just started studying xml....I have the following doubts..
The following is my xml code
<?xml version="1.0" encoding="ISO-8859-1"?>
<!DOCTYPE book [
<!ELEMENT book ...
0
votes
1answer
55 views
Questions for making a MySQL table from a DTD file
I have a dtd file which describes what columns my columns should have.
The problem is, it gives no info on what data type I should use for the columns, i.e whether INT, Varchar, or Text, and no info ...
0
votes
1answer
61 views
XML-element with content #PCDATA or list of elements
I like to define a DTD with an element like following:
<result>
<name/><resultType/>[more elements...]
</result>
OR it could be:
<result>Some text</result>
My ...