[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[xml-dev] white spaces
- From: "Caro, Samuel" <Samuel.Caro@USAHQ.UnitedSpaceAlliance.com>
- To: xml-dev@lists.xml.org
- Date: Mon, 08 Oct 2001 17:19:59 -0500
I am writing a DTD and I have an attribute that is a enumerated type.
so it looks something like
<!ATTLIST Parameter
dataType (boolean | integer | String ) #IMPLIED
>
My problem is that the options include types with spaces on the names like
"bcd unsigned".
The following is NOT valid
<!ATTLIST Parameter
dataType (boolean | integer | String | bcd unsigned ) #IMPLIED
>
<!ENTITY % bcdUnsigned "bcd unsigned">
<!ATTLIST Parameter
dataType (boolean | integer | String | %bcdUnsigned; ) #IMPLIED
>
<!ENTITY % bcdUnsigned "bcd unsigned">
<!ATTLIST Parameter
dataType (boolean | integer | String | %bcdUnsigned; ) #IMPLIED
>
Does anybody know the correct syntax?
I need to restrict the dataType to a set of values and some of them include
spaces
Am I at least on the right track with enumerated attribute types?
Thanks