lmi-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[lmi-commits] [6130] Increment version


From: Greg Chicares
Subject: [lmi-commits] [6130] Increment version
Date: Mon, 16 Mar 2015 04:09:18 +0000

Revision: 6130
          http://svn.sv.gnu.org/viewvc/?view=rev&root=lmi&revision=6130
Author:   chicares
Date:     2015-03-16 04:09:17 +0000 (Mon, 16 Mar 2015)
Log Message:
-----------
Increment version

Modified Paths:
--------------
    lmi/trunk/multiple_cell_document.cpp
    lmi/trunk/multiple_cell_document.rnc
    lmi/trunk/multiple_cell_document.xsd
    lmi/trunk/single_cell_document.cpp
    lmi/trunk/single_cell_document.rnc
    lmi/trunk/single_cell_document.xsd

Modified: lmi/trunk/multiple_cell_document.cpp
===================================================================
--- lmi/trunk/multiple_cell_document.cpp        2015-03-15 17:45:35 UTC (rev 
6129)
+++ lmi/trunk/multiple_cell_document.cpp        2015-03-16 04:09:17 UTC (rev 
6130)
@@ -84,10 +84,11 @@
 ///
 /// version 0: [prior to the lmi epoch]
 /// version 1: 20120220T0158Z
+/// version 2: 20150316T0409Z
 
 int multiple_cell_document::class_version() const
 {
-    return 1;
+    return 2;
 }
 
 //============================================================================

Modified: lmi/trunk/multiple_cell_document.rnc
===================================================================
--- lmi/trunk/multiple_cell_document.rnc        2015-03-15 17:45:35 UTC (rev 
6129)
+++ lmi/trunk/multiple_cell_document.rnc        2015-03-16 04:09:17 UTC (rev 
6130)
@@ -27,12 +27,12 @@
 # 'class_defaults'; but those elements wouldn't be expected to have
 # any analogue on an administration system, so it seems best to copy
 # them from this document:
-#   
http://svn.savannah.nongnu.org/viewvc/*checkout*/lmi/trunk/sample.cns?revision=5556&root=lmi
+#   
http://svn.savannah.nongnu.org/viewvc/*checkout*/lmi/trunk/sample.cns?root=lmi
 # overwriting its 'particular_cells' with the individual records of
 # all contracts in the group.
 
 start = element multiple_cell_document
-    {attribute version {"1"}
+    {attribute version {"2"}
     ,attribute data_source {xsd:nonNegativeInteger}
 
     ,element case_default     {cell_element  }

Modified: lmi/trunk/multiple_cell_document.xsd
===================================================================
--- lmi/trunk/multiple_cell_document.xsd        2015-03-15 17:45:35 UTC (rev 
6129)
+++ lmi/trunk/multiple_cell_document.xsd        2015-03-16 04:09:17 UTC (rev 
6130)
@@ -30,7 +30,7 @@
     'class_defaults'; but those elements wouldn't be expected to have
     any analogue on an administration system, so it seems best to copy
     them from this document:
-      
http://svn.savannah.nongnu.org/viewvc/*checkout*/lmi/trunk/sample.cns?revision=5556&root=lmi
+      
http://svn.savannah.nongnu.org/viewvc/*checkout*/lmi/trunk/sample.cns?root=lmi
     overwriting its 'particular_cells' with the individual records of
     all contracts in the group.
   -->
@@ -44,15 +44,11 @@
       <xs:attribute name="version" use="required">
         <xs:simpleType>
           <xs:restriction base="xs:token">
-            <xs:enumeration value="1"/>
+            <xs:enumeration value="2"/>
           </xs:restriction>
         </xs:simpleType>
       </xs:attribute>
-      <xs:attribute name="data_source" type="xs:nonNegativeInteger">
-        <xs:annotation>
-          <xs:documentation>Optional for now; to be required in the 
future.</xs:documentation>
-        </xs:annotation>
-      </xs:attribute>
+      <xs:attribute name="data_source" use="required" 
type="xs:nonNegativeInteger"/>
     </xs:complexType>
   </xs:element>
   <xs:element name="case_default">

Modified: lmi/trunk/single_cell_document.cpp
===================================================================
--- lmi/trunk/single_cell_document.cpp  2015-03-15 17:45:35 UTC (rev 6129)
+++ lmi/trunk/single_cell_document.cpp  2015-03-16 04:09:17 UTC (rev 6130)
@@ -74,10 +74,11 @@
 ///
 /// version 0: [prior to the lmi epoch]
 /// version 1: 20130428T1828Z
+/// version 2: 20150316T0409Z
 
 int single_cell_document::class_version() const
 {
-    return 1;
+    return 2;
 }
 
 //============================================================================

Modified: lmi/trunk/single_cell_document.rnc
===================================================================
--- lmi/trunk/single_cell_document.rnc  2015-03-15 17:45:35 UTC (rev 6129)
+++ lmi/trunk/single_cell_document.rnc  2015-03-16 04:09:17 UTC (rev 6130)
@@ -24,7 +24,7 @@
 # Use file extension '.ill' for single-life xml documents.
 
 start = element single_cell_document
-    {attribute version {"1"}
+    {attribute version {"2"}
     ,attribute data_source {xsd:nonNegativeInteger}
 
     ,cell_element

Modified: lmi/trunk/single_cell_document.xsd
===================================================================
--- lmi/trunk/single_cell_document.xsd  2015-03-15 17:45:35 UTC (rev 6129)
+++ lmi/trunk/single_cell_document.xsd  2015-03-16 04:09:17 UTC (rev 6130)
@@ -29,21 +29,14 @@
     <xs:complexType>
       <xs:complexContent>
         <xs:extension base="cell_element">
-          <xs:attribute name="version">
-            <xs:annotation>
-              <xs:documentation>Optional for now; to be required in the 
future.</xs:documentation>
-            </xs:annotation>
+          <xs:attribute name="version" use="required">
             <xs:simpleType>
               <xs:restriction base="xs:token">
-                <xs:enumeration value="1"/>
+                <xs:enumeration value="2"/>
               </xs:restriction>
             </xs:simpleType>
           </xs:attribute>
-          <xs:attribute name="data_source" type="xs:nonNegativeInteger">
-            <xs:annotation>
-              <xs:documentation>Optional for now; to be required in the 
future.</xs:documentation>
-            </xs:annotation>
-          </xs:attribute>
+          <xs:attribute name="data_source" use="required" 
type="xs:nonNegativeInteger"/>
         </xs:extension>
       </xs:complexContent>
     </xs:complexType>




reply via email to

[Prev in Thread] Current Thread [Next in Thread]