Ticket #248 (closed defect: fixed)

Opened 19 years ago

Last modified 19 years ago

Small fix to ModelGlue.dtd

Reported by: nando Owned by: somebody
Priority: low Milestone:
Version: Severity: minor
Keywords: Cc:

Description

Not sure in other editors, but in XMLBuddy, i'm getting an incorrect validation error because of the order of the child elements of <scaffold> and <event-handler> in the DTD. I tried changing it to reflect the normal ordering of the elements, and the error goes away. So i'd like to suggest this change.

I changed lines 12 and 14 as follows:

FROM 12 <!ELEMENT scaffold (broadcasts*,views*,results*)> 14 <!ELEMENT event-handler (broadcasts*,views*,results*)>

TO

12 <!ELEMENT scaffold (broadcasts*,results*,views*)> 14 <!ELEMENT event-handler (broadcasts*,results*,views*)>

(While you're picking Mark Mandel's brain, maybe he could also help with creating an XML Schema for MG, since the ones for Transfer are so well done? :-)

Change History

Changed 19 years ago by joe.rinehart

I'll talk to Mark. The Transfer one does rock.

Side note: it's perfectly valid (from mg's standpoint) to have broadcasts, results, and views in any order

Changed 19 years ago by joe.rinehart

  • status changed from new to closed
  • resolution set to fixed

(In [283]) Fixes #248. I'm sorry if this invalidates people's XML from the pre-<results> days, but they should be before views IMHO.

Note: See TracTickets for help on using tickets.