tabular formatter: new option 'separateBy' to print horizontal separator on each change of given column
1 <?xml version="1.0" encoding="UTF-8"?>
4 Copyright © 2013 František Kučera (frantovo.cz)
6 This program is free software: you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation, version 3 of the License.
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
15 You should have received a copy of the GNU General Public License
16 along with this program. If not, see <http://www.gnu.org/licenses/>.
19 xmlns:xs="http://www.w3.org/2001/XMLSchema"
20 elementFormDefault="qualified"
21 targetNamespace="tag:globalcode.info,2018:sqldk/configuration"
22 xmlns:c="tag:globalcode.info,2018:sqldk/configuration">
24 <xs:element name="configuration">
27 <xs:element minOccurs="0" maxOccurs="unbounded" ref="c:database"/>
28 <xs:element minOccurs="0" ref="c:defaultFormatter"/>
29 <xs:element minOccurs="0" maxOccurs="unbounded" ref="c:formatter"/>
34 <xs:element name="database">
37 <xs:element ref="c:name"/>
38 <xs:element ref="c:url"/>
39 <xs:element minOccurs="0" ref="c:userName"/>
40 <xs:element minOccurs="0" ref="c:password"/>
41 <xs:element minOccurs="0" ref="c:driver"/>
42 <xs:element minOccurs="0" maxOccurs="unbounded" ref="c:property"/>
43 <xs:element minOccurs="0" ref="c:tunnel"/>
48 <xs:element name="name" type="xs:string"/>
49 <xs:element name="url" type="xs:string"/>
50 <xs:element name="userName" type="xs:string"/>
51 <xs:element name="password" type="xs:string"/>
52 <xs:element name="driver" type="xs:string"/>
54 <xs:element name="property">
55 <xs:complexType mixed="true">
56 <xs:attribute name="name" use="required"/>
60 <xs:element name="tunnel">
63 <xs:element ref="c:command"/>
64 <xs:element minOccurs="0" maxOccurs="unbounded" ref="c:argument"/>
69 <xs:element name="command" type="xs:string"/>
71 <xs:element name="argument">
72 <xs:complexType mixed="true">
73 <xs:attribute name="type">
75 <xs:restriction base="xs:token">
76 <xs:enumeration value="literal"/>
77 <xs:enumeration value="host"/>
78 <xs:enumeration value="port"/>
79 <xs:enumeration value="env"/>
80 <xs:enumeration value="dbProperty"/>
87 <xs:element name="defaultFormatter" type="xs:string"/>
89 <xs:element name="formatter">
92 <xs:element ref="c:name"/>
93 <xs:element ref="c:class"/>
94 <xs:element minOccurs="0" maxOccurs="unbounded" ref="c:property"/>
99 <xs:element name="class" type="xs:string"/>