|
From: Rashmi B. <ra...@us...> - 2005-04-26 17:33:22
|
Update of /cvsroot/pocolap/pocolap/data/xsd/CrosstabXSD In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv21465 Modified Files: crosstab.jar pocOLAPConfig.xsd pocOLAPConfig.xsdconfig Log Message: PDF related changes Index: pocOLAPConfig.xsdconfig =================================================================== RCS file: /cvsroot/pocolap/pocolap/data/xsd/CrosstabXSD/pocOLAPConfig.xsdconfig,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** pocOLAPConfig.xsdconfig 22 Apr 2005 17:00:37 -0000 1.2 --- pocOLAPConfig.xsdconfig 26 Apr 2005 17:33:12 -0000 1.3 *************** *** 26,31 **** <xb:qname name="pc:reportIcon" javaname="ReportIconItem" /> <xb:qname name="pc:pdfConfig" javaname="PdfConfigItem" /> <xb:qname name="pc:crosstab" javaname="CrossTabDef" /> ! <xb:qname name="pc:crosstabType" javaname="CrossTabDefItem" /> --- 26,33 ---- <xb:qname name="pc:reportIcon" javaname="ReportIconItem" /> <xb:qname name="pc:pdfConfig" javaname="PdfConfigItem" /> + <xb:qname name="pc:pdfFormat" javaname="PdfFormatItem" /> + <xb:qname name="pc:formatType" javaname="FormatTypeItem" /> <xb:qname name="pc:crosstab" javaname="CrossTabDef" /> ! <xb:qname name="pc:crosstabType" javaname="CrossTabDefItem" /> Index: crosstab.jar =================================================================== RCS file: /cvsroot/pocolap/pocolap/data/xsd/CrosstabXSD/crosstab.jar,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 Binary files /tmp/cvsasodMx and /tmp/cvsFOQRkN differ Index: pocOLAPConfig.xsd =================================================================== RCS file: /cvsroot/pocolap/pocolap/data/xsd/CrosstabXSD/pocOLAPConfig.xsd,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** pocOLAPConfig.xsd 22 Apr 2005 17:00:37 -0000 1.2 --- pocOLAPConfig.xsd 26 Apr 2005 17:33:12 -0000 1.3 *************** *** 157,163 **** --- 157,181 ---- <xsd:complexType name="pdfConfig"> + <xsd:sequence> + <xsd:element type="pc:pdfFormat" name="pdfFormat" minOccurs="0" maxOccurs="1" /> + </xsd:sequence> <xsd:attribute name="display" type="xsd:boolean" use="optional" default="true" /> </xsd:complexType> + <xsd:complexType name="pdfFormat"> + <xsd:sequence> + <xsd:element type="pc:formatType" name="formatType" minOccurs="0" maxOccurs="1" default="Contemporary"/> + </xsd:sequence> + </xsd:complexType> + + <xsd:simpleType name="formatType" > + <xsd:restriction base="xsd:string"> + <xsd:enumeration value="Html" /> + <xsd:enumeration value="Contemporary" /> + <xsd:enumeration value="SimpleGrid" /> + <xsd:enumeration value="Plain" /> + </xsd:restriction> + </xsd:simpleType> + <xsd:complexType name="reportIcon"> <xsd:attribute name="src" use="required" type="xsd:string" /> |