3 commits - AUTHORS DEVELOPMENT schemas/base.xsd schemas/contact.xsd schemas/event.xsd schemas/incidence.xsd schemas/note.xsd schemas/task.xsd

Jeroen van Meeuwen vanmeeuwen at kolabsys.com
Fri Oct 21 15:35:09 CEST 2011


 AUTHORS               |    4 ++++
 DEVELOPMENT           |   31 +++++++++++++++++++++++++++++++
 schemas/base.xsd      |    4 ++--
 schemas/contact.xsd   |    4 ++--
 schemas/event.xsd     |    4 ++--
 schemas/incidence.xsd |    4 ++--
 schemas/note.xsd      |    6 +++---
 schemas/task.xsd      |    4 ++--
 8 files changed, 48 insertions(+), 13 deletions(-)

New commits:
commit a9475bc23620e8c0e9c4fe19f080f5daaa7c9c56
Author: Jeroen van Meeuwen (Kolab Systems) <vanmeeuwen at kolabsys.com>
Date:   Fri Oct 21 14:19:38 2011 +0100

    Add AUTHORS file

diff --git a/AUTHORS b/AUTHORS
new file mode 100644
index 0000000..31f62ad
--- /dev/null
+++ b/AUTHORS
@@ -0,0 +1,4 @@
+Authors of libkolabxml:
+
+- Christian Mollekopf (Kolab Systems) <mollekopf at kolabsys.com>
+- Jeroen van Meeuwen (Kolab Systems) <vanmeeuwen at kolabsys.com>


commit d45d235cc7abb710cdd4db30cdcb5a336b734010
Author: Jeroen van Meeuwen (Kolab Systems) <vanmeeuwen at kolabsys.com>
Date:   Fri Oct 21 14:34:42 2011 +0100

    Add description of branch layout

diff --git a/DEVELOPMENT b/DEVELOPMENT
new file mode 100644
index 0000000..8ef05f5
--- /dev/null
+++ b/DEVELOPMENT
@@ -0,0 +1,31 @@
+Branch layout:
+
+  master
+
+    The latest and greatest, schema definitions only
+
+  <language>/master
+
+    The latest and greatest language bindings (generated) and wrapper
+    libraries (if appropriate) for <language>. For example, branch
+
+      python/master
+
+    is occassionally, regularly, rebased on top of master. Bindings
+    are then generated, modified where necessary, test-cases
+    executed, and naturally we hope all is well.
+
+  <major>.<minor>
+
+    Schema definitions developed for the <major>.<minor> product
+    series.
+
+    Tracks towards a future <teeny> version release, using the
+    x.y.z versioning schema.
+
+  <language>/<major>.<minor>
+
+    Using the same schema definitions as <major>.<minor> schema
+    definitions branch, generated bindings and modifications (if
+    necessary) and wrapper libraries (if appropriate) for
+    <language> are maintained in this branch.


commit d82765732ff64b41369ff7768c5b5a3be1f7725d
Author: Jeroen van Meeuwen (Kolab Systems) <vanmeeuwen at kolabsys.com>
Date:   Fri Oct 21 14:27:51 2011 +0100

    Namespace identifier is http://kolab.org

diff --git a/schemas/base.xsd b/schemas/base.xsd
index 67f7ee9..9ae9761 100644
--- a/schemas/base.xsd
+++ b/schemas/base.xsd
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"
-    targetNamespace="kolab.org"
-    xmlns="kolab.org"
+    targetNamespace="http://kolab.org"
+    xmlns="http://kolab.org"
     elementFormDefault="qualified">
 
     <xs:complexType name="XMLBase" abstract="true">
diff --git a/schemas/contact.xsd b/schemas/contact.xsd
index 871bb3f..dcfe803 100644
--- a/schemas/contact.xsd
+++ b/schemas/contact.xsd
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"
-    targetNamespace="kolab.org"
-    xmlns="kolab.org"
+    targetNamespace="http://kolab.org"
+    xmlns="http://kolab.org"
     elementFormDefault="qualified">
 
     <xs:include schemaLocation="base.xsd" />
diff --git a/schemas/event.xsd b/schemas/event.xsd
index 5733511..1f1ac1c 100644
--- a/schemas/event.xsd
+++ b/schemas/event.xsd
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"
-    targetNamespace="kolab.org"
-    xmlns="kolab.org"
+    targetNamespace="http://kolab.org"
+    xmlns="http://kolab.org"
     elementFormDefault="qualified">
 
     <xs:include schemaLocation="incidence.xsd" />
diff --git a/schemas/incidence.xsd b/schemas/incidence.xsd
index 69181df..caca888 100644
--- a/schemas/incidence.xsd
+++ b/schemas/incidence.xsd
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"
-	targetNamespace="kolab.org"
-	xmlns="kolab.org"
+	targetNamespace="http://kolab.org"
+	xmlns="http://kolab.org"
 	elementFormDefault="qualified">
 
 	<xs:include schemaLocation="base.xsd" />
diff --git a/schemas/note.xsd b/schemas/note.xsd
index 810bfb8..5cd0ee1 100644
--- a/schemas/note.xsd
+++ b/schemas/note.xsd
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"
-    targetNamespace="http://www.kolab.org/Kolab"
-    xmlns="http://www.kolab.org/Kolab"
+    targetNamespace="http://kolab.org"
+    xmlns="http://kolab.org"
     elementFormDefault="qualified">
 
     <xs:include schemaLocation="base.xsd" />
@@ -30,4 +30,4 @@
             </xs:extension>
         </xs:complexContent>
     </xs:complexType-->
-</xs:schema>
\ No newline at end of file
+</xs:schema>
diff --git a/schemas/task.xsd b/schemas/task.xsd
index 74e7b1d..3e6a0cc 100644
--- a/schemas/task.xsd
+++ b/schemas/task.xsd
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"
-    targetNamespace="kolab.org"
-    xmlns="kolab.org"
+    targetNamespace="http://kolab.org"
+    xmlns="http://kolab.org"
     elementFormDefault="qualified">
 
     <xs:include schemaLocation="incidence.xsd" />





More information about the commits mailing list