VirtualBox

source: vbox/trunk/src/VBox/Main/xml/VirtualBox-settings-solaris.xsd@ 6796

Last change on this file since 6796 was 6606, checked in by vboxsync, 17 years ago

attempt to fix xsl

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 3.7 KB
Line 
1<?xml version="1.0" encoding="UTF-8"?>
2<!--
3 * :tabSize=2:indentSize=2:noTabs=true:
4 * :folding=explicit:collapseFolds=1:
5 *
6 * innotek VirtualBox Settings Schema Version 1.0-solaris
7
8 Copyright (C) 2004-2007 innotek GmbH
9
10 This file is part of VirtualBox Open Source Edition (OSE), as
11 available from http://www.virtualbox.org. This file is free software;
12 you can redistribute it and/or modify it under the terms of the GNU
13 General Public License (GPL) as published by the Free Software
14 Foundation, in version 2 as it comes in the "COPYING" file of the
15 VirtualBox OSE distribution. VirtualBox OSE is distributed in the
16 hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
17-->
18
19<xsd:schema
20 xmlns:xsd="http://www.w3.org/2001/XMLSchema"
21 xmlns="http://www.innotek.de/VirtualBox-settings"
22 xmlns:vb="http://www.innotek.de/VirtualBox-settings"
23 targetNamespace="http://www.innotek.de/VirtualBox-settings"
24 elementFormDefault="qualified"
25>
26
27<xsd:annotation>
28 <xsd:documentation xml:lang="en">
29 innotek VirtualBox Settings Schema Version 1.0-solaris.
30 Copyright (c) 2004-2007 innotek GmbH.
31 </xsd:documentation>
32</xsd:annotation>
33
34<xsd:include schemaLocation="VirtualBox-settings-common.xsd"/>
35
36<!--
37// Simple types
38/////////////////////////////////////////////////////////////////////////
39-->
40
41<!--
42// Complex types
43/////////////////////////////////////////////////////////////////////////
44-->
45
46<xsd:complexType name="TMemory">
47 <xsd:attribute name="RAMSize" use="required">
48 <xsd:simpleType>
49 <xsd:restriction base="xsd:unsignedInt">
50 <xsd:minInclusive value="4"/>
51 <xsd:maxInclusive value="2000"/>
52 </xsd:restriction>
53 </xsd:simpleType>
54 </xsd:attribute>
55</xsd:complexType>
56
57<xsd:complexType name="TNetwork">
58 <xsd:sequence>
59 <xsd:element name="Adapter" minOccurs="0" maxOccurs="unbounded">
60 <xsd:complexType>
61 <xsd:complexContent>
62 <xsd:extension base="TNetworkAdapter">
63 <xsd:choice minOccurs="0">
64 <xsd:element name="NAT">
65 <xsd:complexType/>
66 </xsd:element>
67 <xsd:element name="HostInterface">
68 <xsd:complexType>
69 <xsd:attribute name="name" type="TLocalFile"/>
70 <xsd:attribute name="TAPSetup" type="TLocalFile"/>
71 <xsd:attribute name="TAPTerminate" type="TLocalFile"/>
72 </xsd:complexType>
73 </xsd:element>
74 <xsd:element name="InternalNetwork">
75 <xsd:complexType>
76 <xsd:attribute name="name" type="xsd:string" use="required"/>
77 </xsd:complexType>
78 </xsd:element>
79 </xsd:choice>
80 </xsd:extension>
81 </xsd:complexContent>
82 </xsd:complexType>
83 </xsd:element>
84 </xsd:sequence>
85</xsd:complexType>
86
87<xsd:complexType name="TAudioAdapter">
88 <xsd:complexContent>
89 <xsd:extension base="TAudioAdapterBase">
90 <xsd:attribute name="driver" use="required">
91 <!--- @todo (dmik) capitalize enum values on next format change! -->
92 <xsd:simpleType>
93 <xsd:restriction base="xsd:token">
94 <xsd:enumeration value="null"/>
95 <xsd:enumeration value="esd"/>
96 </xsd:restriction>
97 </xsd:simpleType>
98 </xsd:attribute>
99 </xsd:extension>
100 </xsd:complexContent>
101</xsd:complexType>
102
103<!--
104// Root element
105/////////////////////////////////////////////////////////////////////////
106-->
107
108<xsd:element name="VirtualBox">
109 <xsd:complexType>
110 <xsd:complexContent>
111 <xsd:extension base="TVirtualBox">
112 <xsd:attribute name="version" type="xsd:token" fixed="1.2-solaris" use="required"/>
113 </xsd:extension>
114 </xsd:complexContent>
115 </xsd:complexType>
116</xsd:element>
117
118</xsd:schema>
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette