12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- <?xml version="1.0" encoding="UTF-8"?>
- <!--
- Licensed Materials - Property of IBM
- IBM Cognos Products: rsvp
- (C) Copyright IBM Corp. 2013
- US Government Users Restricted Rights - Use, duplication or disclosure
- restricted by GSA ADP Schedule Contract with IBM Corp.
- -->
- <!-- COPYRIGHT_DATA { 'YEAR':[2013, 2012], 'RELEASE':['caspian_rp1', 'caspian'], 'VISIBLE':'YES', 'COMPONENT':'rsvp' }-->
- <!--All lines above the COPYRIGHT_DATA line will be replaced when copyright notices are generated. -->
- <xs:schema xmlns="http://developer.cognos.com/schemas/mobileRendering/1.0/" xmlns:jlauncher="http://developer.cognos.com/schemas/mobileRendering/1.0/" xmlns:xs="http://www.w3.org/2001/XMLSchema" targetNamespace="http://developer.cognos.com/schemas/mobileRendering/1.0/" elementFormDefault="qualified" attributeFormDefault="unqualified">
- <xs:element name="configuration">
- <xs:annotation>
- <xs:documentation>Specifies the outputs produced by ReportService when processing the mobile run option.</xs:documentation>
- </xs:annotation>
- <xs:complexType>
- <xs:all>
- <xs:element name="formats">
- <xs:annotation>
- <xs:documentation>Specify the formats that will be produced for mobile output.</xs:documentation>
- </xs:annotation>
- <xs:complexType>
- <xs:sequence maxOccurs="unbounded">
- <xs:element name="format">
- <xs:complexType>
- <xs:attribute name="value"/>
- </xs:complexType>
- </xs:element>
- </xs:sequence>
- </xs:complexType>
- </xs:element>
- <xs:element name="xsl" minOccurs="0">
- <xs:annotation>
- <xs:documentation>Specifies the name of the xsl transformation to apply when rendering HTML based output. The file must be located in the standard folder.</xs:documentation>
- </xs:annotation>
- <xs:complexType>
- <xs:attribute name="value"/>
- </xs:complexType>
- </xs:element>
- <xs:element name="parameters" minOccurs="0">
- <xs:annotation>
- <xs:documentation>Specify the parameters and their values to be passed to the xsl transformation processor when generating output intended for mobile.</xs:documentation>
- </xs:annotation>
- <xs:complexType>
- <xs:sequence>
- <xs:element name="parameter" maxOccurs="unbounded">
- <xs:complexType>
- <xs:attribute name="name"/>
- <xs:attribute name="value"/>
- </xs:complexType>
- </xs:element>
- </xs:sequence>
- </xs:complexType>
- </xs:element>
- </xs:all>
- </xs:complexType>
- </xs:element>
- </xs:schema>
|