MobileSpecification.xsd 2.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!--
  3. Licensed Materials - Property of IBM
  4. IBM Cognos Products: rsvp
  5. (C) Copyright IBM Corp. 2013
  6. US Government Users Restricted Rights - Use, duplication or disclosure
  7. restricted by GSA ADP Schedule Contract with IBM Corp.
  8. -->
  9. <!-- COPYRIGHT_DATA { 'YEAR':[2013, 2012], 'RELEASE':['caspian_rp1', 'caspian'], 'VISIBLE':'YES', 'COMPONENT':'rsvp' }-->
  10. <!--All lines above the COPYRIGHT_DATA line will be replaced when copyright notices are generated. -->
  11. <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">
  12. <xs:element name="configuration">
  13. <xs:annotation>
  14. <xs:documentation>Specifies the outputs produced by ReportService when processing the mobile run option.</xs:documentation>
  15. </xs:annotation>
  16. <xs:complexType>
  17. <xs:all>
  18. <xs:element name="formats">
  19. <xs:annotation>
  20. <xs:documentation>Specify the formats that will be produced for mobile output.</xs:documentation>
  21. </xs:annotation>
  22. <xs:complexType>
  23. <xs:sequence maxOccurs="unbounded">
  24. <xs:element name="format">
  25. <xs:complexType>
  26. <xs:attribute name="value"/>
  27. </xs:complexType>
  28. </xs:element>
  29. </xs:sequence>
  30. </xs:complexType>
  31. </xs:element>
  32. <xs:element name="xsl" minOccurs="0">
  33. <xs:annotation>
  34. <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>
  35. </xs:annotation>
  36. <xs:complexType>
  37. <xs:attribute name="value"/>
  38. </xs:complexType>
  39. </xs:element>
  40. <xs:element name="parameters" minOccurs="0">
  41. <xs:annotation>
  42. <xs:documentation>Specify the parameters and their values to be passed to the xsl transformation processor when generating output intended for mobile.</xs:documentation>
  43. </xs:annotation>
  44. <xs:complexType>
  45. <xs:sequence>
  46. <xs:element name="parameter" maxOccurs="unbounded">
  47. <xs:complexType>
  48. <xs:attribute name="name"/>
  49. <xs:attribute name="value"/>
  50. </xs:complexType>
  51. </xs:element>
  52. </xs:sequence>
  53. </xs:complexType>
  54. </xs:element>
  55. </xs:all>
  56. </xs:complexType>
  57. </xs:element>
  58. </xs:schema>