mlhim-specs-dev team mailing list archive
-
mlhim-specs-dev team
-
Mailing list archive
-
Message #00092
[Branch ~mlhim-specs-dev/mlhim-specs/main] Rev 87: Work in progress. Lots more work to do.
------------------------------------------------------------
revno: 87
committer: Timothy W. Cook <timothywayne.cook@xxxxxxxxx>
branch nick: mlhim-specs
timestamp: Fri 2011-04-15 18:15:24 -0500
message:
Work in progress. Lots more work to do.
modified:
specs/2.0.x/mlhim/schemas/common.xsd
specs/2.0.x/mlhim/schemas/content.xsd
specs/2.0.x/mlhim/schemas/datatypes.xsd
specs/2.0.x/mlhim/schemas/entity.xsd
specs/2.0.x/mlhim/schemas/structures.xsd
specs/2.0.x/mlhim/schemas/support.xsd
--
lp:mlhim-specs
https://code.launchpad.net/~mlhim-specs-dev/mlhim-specs/main
Your team MLHIM Specifications Developers is subscribed to branch lp:mlhim-specs.
To unsubscribe from this branch go to https://code.launchpad.net/~mlhim-specs-dev/mlhim-specs/main/+edit-subscription
=== modified file 'specs/2.0.x/mlhim/schemas/common.xsd'
--- specs/2.0.x/mlhim/schemas/common.xsd 2011-04-15 20:11:25 +0000
+++ specs/2.0.x/mlhim/schemas/common.xsd 2011-04-15 23:15:24 +0000
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<!-- Copyright 2011 Timothy W. Cook and Contributors. See http://www.mlhim.org-->
-<xs:schema elementFormDefault="qualified" id="common" targetNamespace="http://www.mlhim.org/common.xsd" version="2.0" xmlns:mlhim2="http://www.mlhim.org/mlhim2" xmlns:xs="http://www.w3.org/2001/XMLSchema">
+<xs:schema elementFormDefault="qualified" id="common" targetNamespace="http://www.mlhim.org/mlhim2" version="2.0" xmlns:mlhim2="http://www.mlhim.org/mlhim2" xmlns:xs="http://www.w3.org/2001/XMLSchema">
</xs:schema>
=== modified file 'specs/2.0.x/mlhim/schemas/content.xsd'
--- specs/2.0.x/mlhim/schemas/content.xsd 2011-04-15 20:11:25 +0000
+++ specs/2.0.x/mlhim/schemas/content.xsd 2011-04-15 23:15:24 +0000
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<!-- Copyright 2011 Timothy W. Cook and Contributors. See http://www.mlhim.org-->
-<xs:schema elementFormDefault="qualified" id="content" targetNamespace="http://www.mlhim.org/content.xsd" version="2.0" xmlns:mlhim2="http://www.mlhim.org/mlhim2" xmlns:xs="http://www.w3.org/2001/XMLSchema">
+<xs:schema elementFormDefault="qualified" id="content" targetNamespace="http://www.mlhim.org/mlhim2" version="2.0" xmlns:mlhim2="http://www.mlhim.org/mlhim2" xmlns:xs="http://www.w3.org/2001/XMLSchema">
</xs:schema>
=== modified file 'specs/2.0.x/mlhim/schemas/datatypes.xsd'
--- specs/2.0.x/mlhim/schemas/datatypes.xsd 2011-04-15 20:11:25 +0000
+++ specs/2.0.x/mlhim/schemas/datatypes.xsd 2011-04-15 23:15:24 +0000
@@ -1,6 +1,76 @@
<?xml version="1.0" encoding="UTF-8"?>
<!-- Copyright 2011 Timothy W. Cook and Contributors. See http://www.mlhim.org-->
-<xs:schema elementFormDefault="qualified" id="datatypes" targetNamespace="http://www.mlhim.org/datatypes.xsd" version="2.0" xmlns:mlhim2="http://www.mlhim.org/mlhim2" xmlns:xs="http://www.w3.org/2001/XMLSchema">
+<xs:schema elementFormDefault="qualified" id="datatypes" targetNamespace="http://www.mlhim.org/mlhim2" version="2.0" xmlns:mlhim2="http://www.mlhim.org/mlhim2" xmlns:xs="http://www.w3.org/2001/XMLSchema">
+ <xs:include schemaLocation="support.xsd"></xs:include>
+ <xs:complexType name="DvAny" abstract="true">
+ <xs:sequence>
+ <xs:element name="valid_time_begin" maxOccurs="1" minOccurs="0" type="xs:string"></xs:element>
+ <xs:element name="valid_time_end" maxOccurs="1" minOccurs="0" type="xs:string"></xs:element>
+ <xs:element name="ev" maxOccurs="1" minOccurs="0" type="mlhim2:ExceptionalValue"></xs:element>
+ </xs:sequence>
+ </xs:complexType>
+ <xs:complexType name="DvText" base="mlhim2:DvAny" abstract="false">
+ <xs:sequence>
+ <xs:element name="uuid" maxOccurs="1" minOccurs="1" type="xs:string" nillable="false"></xs:element>
+ <xs:element name="language" maxOccurs="1" minOccurs="0" type="xs:string" nillable="true"></xs:element>
+ <xs:element name="dv" maxOccurs="1" minOccurs="0" type="xs:string" nillable="true"></xs:element>
+ </xs:sequence>
+ </xs:complexType>
+ <xs:complexType name="DvCodedText" base="mlhim2:DvText" abstract="false">
+ <xs:sequence>
+ <xs:element name="code_string" maxOccurs="1" minOccurs="0" type="xs:string"></xs:element>
+ <xs:element name="terminology_name" maxOccurs="1" minOccurs="0" type="xs:string"></xs:element>
+ <xs:element name="terminology_abbrev" maxOccurs="1" minOccurs="0" type="xs:string"></xs:element>
+ </xs:sequence>
+ </xs:complexType>
+ <xs:complexType name="DvIdentifier" base="mlhim2:DvText" abstract="false">
+ <xs:sequence>
+ <xs:element name="issuer" maxOccurs="1" minOccurs="0" type="xs:string"></xs:element>
+ <xs:element name="assigner" maxOccurs="1" minOccurs="0" type="xs:string"></xs:element>
+ <xs:element name="name" maxOccurs="1" minOccurs="0" type="xs:string"></xs:element>
+ </xs:sequence>
+ </xs:complexType>
+ <xs:complexType name="DvBoolean" base="mlhim2:DvAny" abstract="false">
+ <xs:sequence>
+ <xs:element name="dv" maxOccurs="1" minOccurs="0" type="xs:string" nillable="true"></xs:element>
+ </xs:sequence>
+ </xs:complexType>
+ <xs:complexType name="DvURI" base="mlhim2:DvAny" abstract="false">
+ <xs:sequence>
+ <xs:element name="dv" maxOccurs="1" minOccurs="0" type="xs:string" nillable="true"></xs:element>
+ </xs:sequence>
+ </xs:complexType>
+ <xs:complexType name="DvParagraph" base="mlhim2:DvAny" abstract="false">
+ <xs:sequence>
+ <xs:element name="items" maxOccurs="Unbounded" minOccurs="0" type="mlhim2:DvText" nillable="false"></xs:element>
+ </xs:sequence>
+ </xs:complexType>
+ <xs:complexType name="DvEncapsulated" base="mlhim2:DvAny" abstract="true">
+ <xs:sequence>
+ <xs:element name="size" maxOccurs="1" minOccurs="1" type="xs:integer"></xs:element>
+ <xs:element name="charset" maxOccurs="1" minOccurs="0" type="xs:string"></xs:element>
+ <xs:element name="language" maxOccurs="1" minOccurs="0" type="xs:string"></xs:element>
+ </xs:sequence>
+ </xs:complexType>
+ <xs:complexType name="DvParsable" base="mlhim2:DvEncapsulated" abstract="false">
+ <xs:sequence>
+ <xs:element name="dv" maxOccurs="1" minOccurs="0"ttype="xs:string" nillable="true"></xs:element>
+ <xs:element name="formalism" maxOccurs="1" minOccurs="0" type="xs:string"></xs:element>
+ </xs:sequence>
+ </xs:complexType>
+ <xs:complexType name="DvMultimedia" base="mlhim2:DvEncapsulated" abstract="false">
+ <xs:sequence>
+ <xs:element name="dv" maxOccurs="1" minOccurs="0" type="xs:base64Binary" nillable="true"></xs:element>
+ <xs:element name="mime_type" maxOccurs="1" minOccurs="0" type="xs:string"></xs:element>
+ <xs:element name="compression_algorithm" maxOccurs="1" minOccurs="0" type="xs:string"></xs:element>
+ <xs:element name="integrity_check" maxOccurs="1" minOccurs="0" type="xs:base64Binary" nillable="true"></xs:element>
+ <xs:element name="integrity_check_algorithm" maxOccurs="1" minOccurs="0" type="xs:string"></xs:element>
+ <xs:element name="thumbnail" maxOccurs="1" minOccurs="0" type="xs:base64Binary" nillable="true"></xs:element>
+ <xs:element name="uri" maxOccurs="1" minOccurs="0" type="mlhim2:DvURI" nillable="true"></xs:element>
+ <xs:element name="alt_text" maxOccurs="1" minOccurs="0"ttype="xs:string" nillable="true"></xs:element>
+ </xs:sequence>
+ </xs:complexType>
+
</xs:schema>
=== modified file 'specs/2.0.x/mlhim/schemas/entity.xsd'
--- specs/2.0.x/mlhim/schemas/entity.xsd 2011-04-15 20:11:25 +0000
+++ specs/2.0.x/mlhim/schemas/entity.xsd 2011-04-15 23:15:24 +0000
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<!-- Copyright 2011 Timothy W. Cook and Contributors. See http://www.mlhim.org-->
-<xs:schema elementFormDefault="qualified" id="entity" targetNamespace="http://www.mlhim.org/entity.xsd" version="2.0" xmlns:mlhim2="http://www.mlhim.org/mlhim2" xmlns:xs="http://www.w3.org/2001/XMLSchema">
+<xs:schema elementFormDefault="qualified" id="entity" targetNamespace="http://www.mlhim.org/mlhim2" version="2.0" xmlns:mlhim2="http://www.mlhim.org/mlhim2" xmlns:xs="http://www.w3.org/2001/XMLSchema">
</xs:schema>
=== modified file 'specs/2.0.x/mlhim/schemas/structures.xsd'
--- specs/2.0.x/mlhim/schemas/structures.xsd 2011-04-15 20:11:25 +0000
+++ specs/2.0.x/mlhim/schemas/structures.xsd 2011-04-15 23:15:24 +0000
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<!-- Copyright 2011 Timothy W. Cook and Contributors. See http://www.mlhim.org-->
-<xs:schema elementFormDefault="qualified" id="structures" targetNamespace="http://www.mlhim.org/structures.xsd" version="2.0" xmlns:mlhim2="http://www.mlhim.org/mlhim2" xmlns:xs="http://www.w3.org/2001/XMLSchema">
+<xs:schema elementFormDefault="qualified" id="structures" targetNamespace="http://www.mlhim.org/mlhim2" version="2.0" xmlns:mlhim2="http://www.mlhim.org/mlhim2" xmlns:xs="http://www.w3.org/2001/XMLSchema">
</xs:schema>
=== modified file 'specs/2.0.x/mlhim/schemas/support.xsd'
--- specs/2.0.x/mlhim/schemas/support.xsd 2011-04-15 20:11:25 +0000
+++ specs/2.0.x/mlhim/schemas/support.xsd 2011-04-15 23:15:24 +0000
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<!-- Copyright 2011 Timothy W. Cook and Contributors. See http://www.mlhim.org-->
-<xs:schema elementFormDefault="qualified" id="support" targetNamespace="http://www.mlhim.org/support.xsd" version="2.0" xmlns:mlhim2="http://www.mlhim.org/mlhim2" xmlns:xs="http://www.w3.org/2001/XMLSchema">
+<xs:schema elementFormDefault="qualified" id="support" targetNamespace="http://www.mlhim.org/mlhim2" version="2.0" xmlns:mlhim2="http://www.mlhim.org/mlhim2" xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:complexType abstract="true" name="ExceptionalValue">
<xs:sequence>
<xs:element maxOccurs="1" minOccurs="1" name="ev_name" type="xs:string"/>