xml/config.rnc
author František Kučera <franta-hg@frantovo.cz>
Thu, 02 Jan 2014 19:59:33 +0100
branchv_0
changeset 113 575a8c6b91ad
child 120 940681695aa4
permissions -rw-r--r--
Relax NG schema for XML configuration

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
			}*
		}*
	}