From: G?nther B. <br...@us...> - 2002-03-08 19:04:41
|
Update of /cvsroot/xpg-xml/edu/iicm/xpg In directory usw-pr-cvs1:/tmp/cvs-serv1393 Modified Files: statemachine_schema.xml test0.xml Added Files: Test0.xsd Log Message: schema for test0 added; bug removed; generating output modified --- NEW FILE: Test0.xsd --- <?xml version="1.0" standalone="no"?> <xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema"> <xsd:element name="document"> <xsd:complexType> <xsd:sequence> <xsd:choice> <xsd:element name="title" type="xsd:string" /> <xsd:element name="docinfo" type="DocInfo" /> </xsd:choice> <xsd:element name="content" type="xsd:string" /> </xsd:sequence> </xsd:complexType> </xsd:element> <xsd:complexType name="DocInfo"> <xsd:sequence> <xsd:element name="title" type="xsd:string" /> <xsd:element name="author" type="xsd:string" minOccurs="0" /> </xsd:sequence> </xsd:complexType> </xsd:schema> Index: statemachine_schema.xml =================================================================== RCS file: /cvsroot/xpg-xml/edu/iicm/xpg/statemachine_schema.xml,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** statemachine_schema.xml 4 Mar 2002 09:49:31 -0000 1.1 --- statemachine_schema.xml 8 Mar 2002 19:04:37 -0000 1.2 *************** *** 2,7 **** <statemachine xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="StateMachineConfig.xsd"> ! <path>edu.iicm.xpg.transitions.simple</path> ! <path>hallo.du</path> <states> <startstate>file top</startstate> --- 2,8 ---- <statemachine xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="StateMachineConfig.xsd"> ! ! <path>edu.iicm.xpg.transitions.simple</path> ! <states> <startstate>file top</startstate> *************** *** 25,29 **** <beginstate>file top</beginstate> <nextstate>finished</nextstate> ! <element type="enddoc"> </element> <classname>StopMachineTransition</classname> </transition> --- 26,30 ---- <beginstate>file top</beginstate> <nextstate>finished</nextstate> ! <element type="enddoc" /> <classname>StopMachineTransition</classname> </transition> Index: test0.xml =================================================================== RCS file: /cvsroot/xpg-xml/edu/iicm/xpg/test0.xml,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** test0.xml 24 Feb 2002 21:06:09 -0000 1.4 --- test0.xml 8 Mar 2002 19:04:37 -0000 1.5 *************** *** 1,6 **** <?xml version="1.0" standalone="no"?> - <!-- DOCTYPE document SYSTEM "test0.dtd" --> ! <document> <docinfo> --- 1,6 ---- <?xml version="1.0" standalone="no"?> ! <document xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" ! xsi:noNamespaceSchemaLocation="Test0.xsd"> <docinfo> |