xml/config.rnc
branchv_0
changeset 113 575a8c6b91ad
child 120 940681695aa4
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/xml/config.rnc	Thu Jan 02 19:59:33 2014 +0100
@@ -0,0 +1,27 @@
+default namespace = "https://sql-dk.globalcode.info/xmlns/configuration"
+
+start =
+	element configuration {
+		
+		element database {
+			element name { text },
+			element url { text },
+			element userName { text }?,
+			element password { text }?,
+			element property {
+				attribute name { text },
+				text
+			}*
+		}*,
+		
+		element defaultFormatter { text }?,
+		
+		element formatter {
+			element name { text },
+			element class { text },
+			element property {
+				attribute name { text },
+				text
+			}*
+		}*
+	}