UNIXworkcode

<?xml version="1.0"?> <!-- Copyright 2018 Olaf Wintermann. All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --> <xs:schema version="1.0" targetNamespace="http://davutils.org/cfg/dav-sync" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:t="http://davutils.org/cfg/dav-sync" elementFormDefault="qualified" > <xs:complexType name="filenameFilter"> <xs:sequence> <xs:element name="include" type="xs:string" minOccurs="0" maxOccurs="unbounded" /> <xs:element name="exclude" type="xs:string" minOccurs="0" maxOccurs="unbounded" /> <xs:element name="tags" type="xs:string" minOccurs="0" maxOccurs="unbounded" /> </xs:sequence> </xs:complexType> <xs:simpleType name="pushStrategyEnum" > <xs:restriction base="xs:string"> <xs:enumeration value="metadata" /> <xs:enumeration value="hash" /> </xs:restriction> </xs:simpleType> <xs:simpleType name="metadataEnum" > <xs:restriction base="xs:string"> <xs:enumeration value="mtime" /> <xs:enumeration value="mode" /> <xs:enumeration value="xattr" /> <xs:enumeration value="all" /> </xs:restriction> </xs:simpleType> <xs:simpleType name="tagStoreFormatEnum" > <xs:restriction base="xs:string"> <xs:enumeration value="csv" /> <xs:enumeration value="text" /> <xs:enumeration value="xml" /> <xs:enumeration value="macos" /> </xs:restriction> </xs:simpleType> <xs:simpleType name="tagStoreEnum" > <xs:restriction base="xs:string"> <xs:enumeration value="xattr" /> </xs:restriction> </xs:simpleType> <xs:simpleType name="tagOnConflictEnum" > <xs:restriction base="xs:string"> <xs:enumeration value="no_conflict" /> <xs:enumeration value="keep_local" /> <xs:enumeration value="keep_remote" /> <xs:enumeration value="merge" /> </xs:restriction> </xs:simpleType> <xs:simpleType name="symlinkEnum" > <xs:restriction base="xs:string"> <xs:enumeration value="ignore" /> <xs:enumeration value="follow" /> <xs:enumeration value="sync" /> </xs:restriction> </xs:simpleType> <xs:complexType name="tagConfig"> <xs:all> <xs:element name="local-store"> <xs:complexType> <xs:simpleContent> <xs:extension base="t:tagStoreEnum"> <xs:attribute name="format" type="t:tagStoreFormatEnum" /> </xs:extension> </xs:simpleContent> </xs:complexType> </xs:element> <xs:element name="detect-changes" minOccurs="0" type="xs:boolean" default="false" /> <xs:element name="xattr-name" minOccurs="0" type="xs:string" /> <xs:element name="on-conflict" minOccurs="0" type="t:tagOnConflictEnum" /> </xs:all> </xs:complexType> <xs:simpleType name="fileSize"> <xs:restriction base="xs:normalizedString"> <xs:pattern value="[1-9][0-9]*(g|k|m|G|K|M)"/> </xs:restriction> </xs:simpleType> <xs:complexType name="splitConfig"> <xs:all> <xs:element name="split" type="t:split" minOccurs="0" /> </xs:all> </xs:complexType> <xs:complexType name="split"> <xs:all> <xs:element name="blocksize" type="t:fileSize" /> <xs:element name="filter" minOccurs="0" type="t:filenameFilter" /> <xs:element name="minsize" minOccurs="0" type="t:fileSize" /> </xs:all> </xs:complexType> <xs:simpleType name="versioningTypeEnum" > <xs:restriction base="xs:string"> <xs:enumeration value="simple" /> <xs:enumeration value="deltav" /> </xs:restriction> </xs:simpleType> <xs:complexType name="versioning"> <xs:all> <xs:element minOccurs="0" name="history" type="xs:string"/> </xs:all> <xs:attribute name="always" type="xs:boolean" default="false" /> <xs:attribute name="type" type="t:versioningTypeEnum" /> </xs:complexType> <xs:complexType name="direntry"> <xs:all> <xs:element name="name" type="xs:string"/> <xs:element name="database" type="xs:string"/> <xs:element name="path" type="xs:string"/> <xs:element name="repository" type="xs:string"/> <xs:element name="collection" minOccurs="0" type="xs:string"/> <xs:element name="trash" minOccurs="0" type="xs:string"/> <xs:element name="hashing" default="false" minOccurs="0" type="xs:boolean" /> <xs:element name="filter" minOccurs="0" type="t:filenameFilter" /> <xs:element name="max-retry" default="0" minOccurs="0" type="xs:unsignedInt"/> <xs:element name="backup-on-pull" default="false" minOccurs="0" type="xs:boolean" /> <xs:element name="lock-pull" default="false" minOccurs="0" type="xs:boolean" /> <xs:element name="lock-push" default="false" minOccurs="0" type="xs:boolean" /> <xs:element name="lock-timeout" default="0" minOccurs="0" type="xs:integer"/> <xs:element name="tagconfig" minOccurs="0" type="t:tagConfig" /> <xs:element name="splitconfig" minOccurs="0" type="t:splitConfig" /> <xs:element name="versioning" minOccurs="0" type="t:versioning" /> <xs:element name="allow-cmd" minOccurs="0" type="xs:string"/> <xs:element name="push-strategy" minOccurs="0" type="t:pushStrategyEnum"/> <xs:element name="metadata" minOccurs="0"> <xs:simpleType> <xs:list itemType="t:metadataEnum"/> </xs:simpleType> </xs:element> <xs:element name="symlink-intern" minOccurs="0" type="t:symlinkEnum"/> <xs:element name="symlink-extern" minOccurs="0" type="t:symlinkEnum"/> </xs:all> </xs:complexType> <xs:element name="configuration"> <xs:complexType> <xs:sequence> <xs:element name="directory" type="t:direntry" minOccurs="0" maxOccurs="unbounded" /> </xs:sequence> </xs:complexType> </xs:element> </xs:schema>