OASIS Mailing List ArchivesView the OASIS mailing list archive below
or browse/search using MarkMail.

 


Help: OASIS Mailing Lists Help | MarkMail Help

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[xml-dev] white spaces




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&#32;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