sbsv1/abld/kif/group/kif1.xsd
author Mike Kinghan <mikek@symbian.org>
Wed, 01 Dec 2010 12:02:41 +0000
changeset 42 cf609178ac39
parent 40 68f68128601f
permissions -rw-r--r--
1) fix_tools_exports.pl need only be run on Windows hosts; was run unnecessarily on Linux too. 2) Need to export modload.pm on Linux as well as Windows hosts.

<?xml version="1.0" encoding="UTF-8"?>
<!--
Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies). All Rights Reserved. 
-->
<xsd:schema
  xmlns:xsd="http://www.w3.org/2001/XMLSchema"
  xmlns:ki="http://www.symbian.com/kif1"
  targetNamespace="http://www.symbian.com/kif1">
	<xsd:element name="kitinfo">
		<xsd:complexType>
			<!-- Note I'd like to have used xsd:all here but it's not allowed to contain xsd:any -->
			<xsd:sequence>
				<xsd:any namespace="##other" minOccurs="0" maxOccurs="unbounded"/>
				<xsd:element ref="ki:release"/>
				<xsd:any namespace="##other" minOccurs="0" maxOccurs="unbounded"/>
			</xsd:sequence>
			<xsd:attribute name="label" type="xsd:string" use="required"/>	
		</xsd:complexType>
	</xsd:element>
	<xsd:element name="release">
		<xsd:complexType>
			<xsd:attribute name="version" type="xsd:string" use="required"/>
			<xsd:attribute name="build" type="xsd:string" use="required"/>
		</xsd:complexType>
	</xsd:element>
</xsd:schema>