xml/config.rnc
author František Kučera <franta-hg@frantovo.cz>
Thu, 02 Jan 2014 21:23:23 +0100
branchv_0
changeset 119 f3e2b95a5f8a
parent 113 575a8c6b91ad
child 120 940681695aa4
permissions -rw-r--r--
XSLT for viewing config files in a web browser (Firefox, rekonq etc.)
     1 default namespace = "https://sql-dk.globalcode.info/xmlns/configuration"
     2 
     3 start =
     4 	element configuration {
     5 		
     6 		element database {
     7 			element name { text },
     8 			element url { text },
     9 			element userName { text }?,
    10 			element password { text }?,
    11 			element property {
    12 				attribute name { text },
    13 				text
    14 			}*
    15 		}*,
    16 		
    17 		element defaultFormatter { text }?,
    18 		
    19 		element formatter {
    20 			element name { text },
    21 			element class { text },
    22 			element property {
    23 				attribute name { text },
    24 				text
    25 			}*
    26 		}*
    27 	}