[Home] [By Thread] [By Date] [Recent Entries]
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
|

Cart



