1_0.xsd 3.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. <?xml version="1.0"?>
  2. <xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema" targetNamespace="http://symbian.com/xml/build" xmlns="http://symbian.com/xml/build" elementFormDefault="qualified">
  3. <xsd:annotation>
  4. <xsd:documentation xml:lang="en">
  5. Copyright (c) 2008-2009 Nokia Corporation and/or its subsidiary(-ies).
  6. All rights reserved.
  7. This component and the accompanying materials are made available
  8. under the terms of the License "Eclipse Public License v1.0"
  9. which accompanies this distribution, and is available
  10. at the URL "http://www.eclipse.org/legal/epl-v10.html".
  11. Initial Contributors:
  12. Nokia Corporation - initial contribution.
  13. Contributors:
  14. Description:
  15. </xsd:documentation>
  16. </xsd:annotation>
  17. <xsd:element name="build">
  18. <xsd:complexType>
  19. <xsd:sequence>
  20. <xsd:element ref="config" minOccurs="0" maxOccurs="unbounded"/>
  21. <xsd:element ref="var" minOccurs="0" maxOccurs="unbounded"/>
  22. </xsd:sequence>
  23. </xsd:complexType>
  24. </xsd:element>
  25. <xsd:element name="config">
  26. <xsd:complexType>
  27. <xsd:sequence>
  28. <xsd:element name="varRef" minOccurs="0" maxOccurs="unbounded">
  29. <xsd:complexType>
  30. <xsd:attribute name="ref" type="xsd:string"/>
  31. </xsd:complexType>
  32. </xsd:element>
  33. <xsd:element ref="var" minOccurs="0" maxOccurs="unbounded"/>
  34. <xsd:element name="configRef" minOccurs="0" maxOccurs="unbounded">
  35. <xsd:complexType>
  36. <xsd:attribute name="ref" type="xsd:string"/>
  37. </xsd:complexType>
  38. </xsd:element>
  39. <xsd:element ref="config" minOccurs="0" maxOccurs="unbounded"/>
  40. </xsd:sequence>
  41. <xsd:attribute name="name" type="xsd:string"/>
  42. <xsd:attribute name="abstract" type="xsd:boolean"/>
  43. </xsd:complexType>
  44. </xsd:element>
  45. <xsd:element name="var">
  46. <xsd:complexType>
  47. <xsd:sequence maxOccurs="unbounded">
  48. <xsd:element name="env" minOccurs="0" maxOccurs="unbounded">
  49. <xsd:complexType>
  50. <xsd:attribute name="name" type="xsd:string"/>
  51. <xsd:attribute name="default" type="xsd:string"/>
  52. <xsd:attribute name="type" type="xsd:string"/>
  53. <xsd:attribute name="versionCommand" type="xsd:string"/>
  54. <xsd:attribute name="versionResult" type="xsd:string"/>
  55. </xsd:complexType>
  56. </xsd:element>
  57. <xsd:element name="set" minOccurs="0" maxOccurs="unbounded">
  58. <xsd:complexType>
  59. <xsd:attribute name="name" type="xsd:string"/>
  60. <xsd:attribute name="value" type="xsd:string"/>
  61. <xsd:attribute name="type" type="xsd:string"/>
  62. <xsd:attribute name="versionCommand" type="xsd:string"/>
  63. <xsd:attribute name="versionResult" type="xsd:string"/>
  64. </xsd:complexType>
  65. </xsd:element>
  66. <xsd:element name="append" minOccurs="0" maxOccurs="unbounded">
  67. <xsd:complexType>
  68. <xsd:attribute name="name" type="xsd:string"/>
  69. <xsd:attribute name="value" type="xsd:string"/>
  70. <xsd:attribute name="separator" type="xsd:string"/>
  71. </xsd:complexType>
  72. </xsd:element>
  73. </xsd:sequence>
  74. <xsd:attribute name="name" type="xsd:string"/>
  75. </xsd:complexType>
  76. </xsd:element>
  77. </xsd:schema>