VirtualBox

source: vbox/trunk/src/VBox/Main/xml/VirtualBox-settings-linux.xsd@ 13538

Last change on this file since 13538 was 11982, checked in by vboxsync, 16 years ago

All: license header changes for 2.0 (OSE headers, add Sun GPL/LGPL disclaimer)

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 3.9 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 * Sun xVM VirtualBox Settings Schema Version 1.0-linux
7
8 Copyright (C) 2004-2008 Sun Microsystems, Inc.
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 Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
19 Clara, CA 95054 USA or visit http://www.sun.com if you need
20 additional information or have any questions.
21-->
22
23<xsd:schema
24 xmlns:xsd="http://www.w3.org/2001/XMLSchema"
25 xmlns="http://www.innotek.de/VirtualBox-settings"
26 xmlns:vb="http://www.innotek.de/VirtualBox-settings"
27 targetNamespace="http://www.innotek.de/VirtualBox-settings"
28 elementFormDefault="qualified"
29>
30
31<xsd:annotation>
32 <xsd:documentation xml:lang="en">
33 Sun xVM VirtualBox Settings Schema (linux).
34 Copyright (c) 2004-2008 Sun Microsystems, Inc.
35 </xsd:documentation>
36</xsd:annotation>
37
38<xsd:include schemaLocation="VirtualBox-settings-common.xsd"/>
39
40<!--
41 this includes a computed VirtualBox element definition that contains
42 a proper 'version' attribute constraint (e.g. recent verison number
43 and platform suffix)
44-->
45<xsd:include schemaLocation="VirtualBox-settings-root.xsd"/>
46
47<!--
48// Simple types
49/////////////////////////////////////////////////////////////////////////
50-->
51
52<!--
53// Complex types
54/////////////////////////////////////////////////////////////////////////
55-->
56
57<xsd:complexType name="TMemory">
58 <xsd:attribute name="RAMSize" use="required">
59 <xsd:simpleType>
60 <xsd:restriction base="xsd:unsignedInt">
61 <xsd:minInclusive value="4"/>
62 <xsd:maxInclusive value="3584"/>
63 </xsd:restriction>
64 </xsd:simpleType>
65 </xsd:attribute>
66</xsd:complexType>
67
68<xsd:complexType name="TNetwork">
69 <xsd:sequence>
70 <xsd:element name="Adapter" minOccurs="0" maxOccurs="unbounded">
71 <xsd:complexType>
72 <xsd:complexContent>
73 <xsd:extension base="TNetworkAdapter">
74 <xsd:choice minOccurs="0">
75 <xsd:element name="NAT">
76 <xsd:complexType>
77 <xsd:attribute name="network" type="xsd:string"/>
78 </xsd:complexType>
79 </xsd:element>
80 <xsd:element name="HostInterface">
81 <xsd:complexType>
82 <xsd:attribute name="name" type="TLocalFile"/>
83 <xsd:attribute name="TAPSetup" type="TLocalFile"/>
84 <xsd:attribute name="TAPTerminate" type="TLocalFile"/>
85 </xsd:complexType>
86 </xsd:element>
87 <xsd:element name="InternalNetwork">
88 <xsd:complexType>
89 <xsd:attribute name="name" type="xsd:string" use="required"/>
90 </xsd:complexType>
91 </xsd:element>
92 </xsd:choice>
93 </xsd:extension>
94 </xsd:complexContent>
95 </xsd:complexType>
96 </xsd:element>
97 </xsd:sequence>
98</xsd:complexType>
99
100<xsd:complexType name="TAudioAdapter">
101 <xsd:complexContent>
102 <xsd:extension base="TAudioAdapterBase">
103 <xsd:attribute name="driver" use="required">
104 <xsd:simpleType>
105 <xsd:restriction base="xsd:token">
106 <xsd:enumeration value="Null"/>
107 <xsd:enumeration value="OSS"/>
108 <xsd:enumeration value="ALSA"/>
109 <xsd:enumeration value="Pulse"/>
110 </xsd:restriction>
111 </xsd:simpleType>
112 </xsd:attribute>
113 </xsd:extension>
114 </xsd:complexContent>
115</xsd:complexType>
116
117</xsd:schema>
Note: See TracBrowser for help on using the repository browser.

© 2023 Oracle
ContactPrivacy policyTerms of Use