[Idrs-commit] CVS: Idrs/dev/projects/compiler rmlTrans.xml,1.3,1.4 rmlTransSchema.xml,1.3,1.4
Brought to you by:
bigman921
|
From: Marc B. <big...@us...> - 2002-01-21 21:28:04
|
Update of /cvsroot/idrs/Idrs/dev/projects/compiler In directory usw-pr-cvs1:/tmp/cvs-serv3829/dev/projects/compiler Modified Files: rmlTrans.xml rmlTransSchema.xml Log Message: THe macro processor is nearly complete, just a few kinks to work out Index: rmlTrans.xml =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/projects/compiler/rmlTrans.xml,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** rmlTrans.xml 2002/01/19 17:42:45 1.3 --- rmlTrans.xml 2002/01/21 21:05:59 1.4 *************** *** 2,34 **** <trans:rmlTrans xmlns:trans="rmlTransSchema.xml"> <!-- define valid rml tags --> ! <trans:rml simple="false" >rml</trans:rml> ! <trans:rml simple="true" >ishtml</trans:rml> ! <trans:rml simple="true" >scriptClass</trans:rml> ! <trans:rml simple="false" >head</trans:rml> ! <trans:rml simple="false" >object</trans:rml> ! <trans:rml simple="true" >class</trans:rml> ! <trans:rml simple="false" >constructor</trans:rml> ! <trans:rml simple="true" >vartype</trans:rml> ! <trans:rml simple="false" >method</trans:rml> ! <trans:rml simple="true" >name</trans:rml> ! <trans:rml simple="false" >db</trans:rml> ! <trans:rml simple="true" >dbDriver</trans:rml> ! <trans:rml simple="true" >dbName</trans:rml> ! <trans:rml simple="true" >dbUser</trans:rml> ! <trans:rml simple="true" >dbPass</trans:rml> ! <trans:rml simple="true" >useDb</trans:rml> ! <trans:rml simple="true" >usemethod</trans:rml> ! <trans:rml simple="false" >sql</trans:rml> ! <trans:rml simple="false" >storedProc</trans:rml> ! <trans:rml simple="false" >varlist</trans:rml> ! <trans:rml simple="false" >body</trans:rml> ! <trans:rml simple="true" >field</trans:rml> ! <trans:rml simple="true" >src</trans:rml> ! <trans:rml simple="false" >ifResults</trans:rml> ! <trans:rml simple="false" >yes</trans:rml> ! <trans:rml simple="false" >no</trans:rml> ! <trans:rml simple="false" >repeat</trans:rml> ! <trans:rml simple="false" >ifChange</trans:rml> ! <trans:rml simple="true" >inputResults</trans:rml> <!-- text tag --> --- 2,34 ---- <trans:rmlTrans xmlns:trans="rmlTransSchema.xml"> <!-- define valid rml tags --> ! <trans:rml simple="true" ownLine="true" >rml</trans:rml> ! <trans:rml simple="true" ownLine="true">ishtml</trans:rml> ! <trans:rml simple="true" ownLine="true">scriptClass</trans:rml> ! <trans:rml simple="false" ownLine="true" >head</trans:rml> ! <trans:rml simple="true" ownLine="true" >object</trans:rml> ! <trans:rml simple="true" ownLine="true" >class</trans:rml> ! <trans:rml simple="true" ownLine="true">constructor</trans:rml> ! <trans:rml simple="true" ownLine="true">vartype</trans:rml> ! <trans:rml simple="true" ownLine="true">method</trans:rml> ! <trans:rml simple="true" ownLine="true">name</trans:rml> ! <trans:rml simple="true" ownLine="true">db</trans:rml> ! <trans:rml simple="true" ownLine="true">dbDriver</trans:rml> ! <trans:rml simple="true" ownLine="true">dbName</trans:rml> ! <trans:rml simple="true" ownLine="true">dbUser</trans:rml> ! <trans:rml simple="true" ownLine="true">dbPass</trans:rml> ! <trans:rml simple="true" ownLine="true">useDb</trans:rml> ! <trans:rml simple="true" ownLine="false">usemethod</trans:rml> ! <trans:rml simple="true" ownLine="true">sql</trans:rml> ! <trans:rml simple="true" ownLine="true">storedProc</trans:rml> ! <trans:rml simple="true" ownLine="true">varlist</trans:rml> ! <trans:rml simple="false" ownLine="true">body</trans:rml> ! <trans:rml simple="true" ownLine="false">field</trans:rml> ! <trans:rml simple="true" ownLine="true">src</trans:rml> ! <trans:rml simple="true" ownLine="false">ifResults</trans:rml> ! <trans:rml simple="false" ownLine="true">yes</trans:rml> ! <trans:rml simple="false" ownLine="true" >no</trans:rml> ! <trans:rml simple="false" ownLine="true">repeat</trans:rml> ! <trans:rml simple="false" ownLine="true">ifChange</trans:rml> ! <trans:rml simple="true" ownLine="false">inputResults</trans:rml> <!-- text tag --> Index: rmlTransSchema.xml =================================================================== RCS file: /cvsroot/idrs/Idrs/dev/projects/compiler/rmlTransSchema.xml,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** rmlTransSchema.xml 2002/01/19 17:42:46 1.3 --- rmlTransSchema.xml 2002/01/21 21:05:59 1.4 *************** *** 7,10 **** --- 7,11 ---- <xs:element name="rml" type="xs:string" minOccurrs="1" maxOccurrs="unbound"> <xs:attribute name="simple" type="xs:boolean" /> + <xs:attribute name="ownLine" type="xs:boolean" /> </xs:element> |