123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477 |
- <?xml version="1.0" encoding="UTF-8"?>
- <xs:schema
- xmlns:xs="http://www.w3.org/2001/XMLSchema"
- xmlns="https://klish.libcode.org/klish3"
- targetNamespace="https://klish.libcode.org/klish3">
- <xs:annotation>
- <xs:appinfo>XML schema for klish configuration files</xs:appinfo>
- <xs:documentation xml:lang="en">
- The klish utility uses XML files for configuration. This schema
- allows to validate klish XML files. To check XML files use the
- following command:
- 'xmllint --schema /path/to/klish.xsd --noout *.xml'
- </xs:documentation>
- <xs:documentation xml:lang="ru">
- Утилита klish использует формат XML для своих конфигурационных
- файлов. Схема позволяет проверить конфигурационные XML файлы
- на корректность. Следующая команда выполнит проверку:
- 'xmllint --schema /path/to/klish.xsd --noout *.xml'
- </xs:documentation>
- </xs:annotation>
- <xs:element name="KLISH" type="klish_t"/>
- <xs:element name="PLUGIN" type="plugin_t"/>
- <xs:element name="HOTKEY" type="hotkey_t"/>
- <xs:element name="ACTION" type="action_t"/>
- <xs:element name="ENTRY" type="entry_t"/>
- <xs:element name="VIEW" type="view_t"/>
- <xs:element name="COMMAND" type="command_t"/>
- <xs:element name="FILTER" type="command_t"/>
- <xs:element name="COND" type="command_t"/>
- <xs:element name="COMPL" type="command_t"/>
- <xs:element name="HELP" type="command_t"/>
- <xs:element name="PROMPT" type="command_t"/>
- <xs:element name="LOG" type="command_t"/>
- <xs:element name="PTYPE" type="ptype_t"/>
- <xs:element name="PARAM" type="param_t"/>
- <xs:element name="SWITCH" type="param_t"/>
- <xs:element name="SEQ" type="param_t"/>
- <xs:group name="klish_group_t">
- <xs:choice>
- <xs:element ref="PLUGIN" minOccurs="0" maxOccurs="unbounded"/>
- <xs:element ref="HOTKEY" minOccurs="0" maxOccurs="unbounded"/>
- <xs:element ref="ENTRY" minOccurs="0" maxOccurs="unbounded"/>
- <xs:element ref="PTYPE" minOccurs="0" maxOccurs="unbounded"/>
- <xs:element ref="VIEW" minOccurs="0" maxOccurs="unbounded"/>
- <xs:element ref="COMMAND" minOccurs="0" maxOccurs="unbounded"/>
- <xs:element ref="FILTER" minOccurs="0" maxOccurs="unbounded"/>
- <xs:element ref="COND" minOccurs="0" maxOccurs="unbounded"/>
- <xs:element ref="COMPL" minOccurs="0" maxOccurs="unbounded"/>
- <xs:element ref="HELP" minOccurs="0" maxOccurs="unbounded"/>
- <xs:element ref="PROMPT" minOccurs="0" maxOccurs="unbounded"/>
- <xs:element ref="LOG" minOccurs="0" maxOccurs="unbounded"/>
- <xs:element ref="PARAM" minOccurs="0" maxOccurs="unbounded"/>
- </xs:choice>
- </xs:group>
- <xs:complexType name="klish_t">
- <xs:annotation>
- <xs:documentation xml:lang="en">
- 'KLISH' is the top level container.
- </xs:documentation>
- <xs:documentation xml:lang="ru">
- Тег 'KLISH' - контейнер верхнего уровня. Все остальные
- теги должны быть вложенными.
- </xs:documentation>
- </xs:annotation>
-
- <xs:sequence>
- <xs:group ref="klish_group_t" minOccurs="0" maxOccurs="unbounded"/>
- </xs:sequence>
- </xs:complexType>
- <xs:complexType name="plugin_t">
- <xs:annotation>
- <xs:documentation xml:lang="en">
- Load plugin with symbols (functions).
- </xs:documentation>
- <xs:documentation xml:lang="ru">
- Загружает плугин для использования определяемых в нем
- символов (функций).
- </xs:documentation>
- </xs:annotation>
- <xs:simpleContent>
- <xs:extension base="xs:string">
- <xs:attribute name="name" type="xs:string" use="required"/>
- <xs:attribute name="id" type="xs:string" use="optional"/>
- <xs:attribute name="file" type="xs:string" use="optional"/>
- </xs:extension>
- </xs:simpleContent>
- </xs:complexType>
- <xs:complexType name="hotkey_t">
- <xs:attribute name="key" type="xs:string" use="required"/>
- <xs:attribute name="cmd" type="xs:string" use="required"/>
- </xs:complexType>
- <xs:simpleType name="action_cond_t">
- <xs:restriction base="xs:string">
- <xs:enumeration value="fail"/>
- <xs:enumeration value="success"/>
- <xs:enumeration value="always"/>
- <xs:enumeration value="never"/>
- </xs:restriction>
- </xs:simpleType>
- <xs:simpleType name="action_io_t">
- <xs:restriction base="xs:string">
- <xs:enumeration value="false"/>
- <xs:enumeration value="true"/>
- <xs:enumeration value="tty"/>
- </xs:restriction>
- </xs:simpleType>
- <xs:complexType name="action_t">
- <xs:simpleContent>
- <xs:extension base="xs:string">
- <xs:attribute name="sym" type="xs:string" use="optional"/>
- <xs:attribute name="lock" type="xs:string" use="optional"/>
- <xs:attribute name="interrupt" type="xs:boolean" use="optional" default="false"/>
- <xs:attribute name="in" type="action_io_t" use="optional" default="false"/>
- <xs:attribute name="out" type="action_io_t" use="optional" default="true"/>
- <xs:attribute name="exec_on" type="action_cond_t" use="optional" default="success"/>
- <xs:attribute name="update_retcode" type="xs:boolean" use="optional" default="true"/>
- <xs:attribute name="permanent" type="xs:boolean" use="optional" default="false"/>
- <xs:attribute name="sync" type="xs:boolean" use="optional" default="false"/>
- </xs:extension>
- </xs:simpleContent>
- </xs:complexType>
- <xs:simpleType name="entry_mode_t">
- <xs:restriction base="xs:string">
- <xs:enumeration value="sequence"/>
- <xs:enumeration value="switch"/>
- <xs:enumeration value="empty"/>
- </xs:restriction>
- </xs:simpleType>
- <xs:simpleType name="entry_purpose_t">
- <xs:restriction base="xs:string">
- <xs:enumeration value="common"/>
- <xs:enumeration value="ptype"/>
- <xs:enumeration value="prompt"/>
- <xs:enumeration value="cond"/>
- <xs:enumeration value="completion"/>
- <xs:enumeration value="help"/>
- </xs:restriction>
- </xs:simpleType>
- <xs:simpleType name="entry_filter_t">
- <xs:restriction base="xs:string">
- <xs:enumeration value="true"/>
- <xs:enumeration value="false"/>
- <xs:enumeration value="dual"/>
- </xs:restriction>
- </xs:simpleType>
- <xs:group name="entry_group_t">
- <xs:choice>
- <xs:element ref="HOTKEY" minOccurs="0" maxOccurs="unbounded"/>
- <xs:element ref="ACTION" minOccurs="0" maxOccurs="unbounded"/>
- <xs:element ref="ENTRY" minOccurs="0" maxOccurs="unbounded"/>
- <xs:element ref="PTYPE" minOccurs="0" maxOccurs="unbounded"/>
- <xs:element ref="VIEW" minOccurs="0" maxOccurs="unbounded"/>
- <xs:element ref="COMMAND" minOccurs="0" maxOccurs="unbounded"/>
- <xs:element ref="FILTER" minOccurs="0" maxOccurs="unbounded"/>
- <xs:element ref="PARAM" minOccurs="0" maxOccurs="unbounded"/>
- <xs:element ref="COND" minOccurs="0" maxOccurs="unbounded"/>
- <xs:element ref="COMPL" minOccurs="0" maxOccurs="unbounded"/>
- <xs:element ref="HELP" minOccurs="0" maxOccurs="unbounded"/>
- <xs:element ref="PROMPT" minOccurs="0" maxOccurs="unbounded"/>
- <xs:element ref="LOG" minOccurs="0" maxOccurs="unbounded"/>
- <xs:element ref="SWITCH" minOccurs="0" maxOccurs="unbounded"/>
- <xs:element ref="SEQ" minOccurs="0" maxOccurs="unbounded"/>
- </xs:choice>
- </xs:group>
- <xs:complexType name="entry_t">
-
- <xs:sequence>
- <xs:group ref="entry_group_t" minOccurs="0" maxOccurs="unbounded"/>
- </xs:sequence>
- <xs:attribute name="name" type="xs:string" use="required"/>
- <xs:attribute name="help" type="xs:string" use="optional"/>
- <xs:attribute name="container" type="xs:boolean" use="optional" default="false"/>
- <xs:attribute name="mode" type="entry_mode_t" use="optional" default="switch"/>
- <xs:attribute name="purpose" type="entry_purpose_t" use="optional" default="common"/>
- <xs:attribute name="min" type="xs:string" use="optional" default="1"/>
- <xs:attribute name="max" type="xs:string" use="optional" default="1"/>
- <xs:attribute name="ref" type="xs:string" use="optional"/>
- <xs:attribute name="value" type="xs:string" use="optional"/>
- <xs:attribute name="restore" type="xs:boolean" use="optional" default="false"/>
- <xs:attribute name="order" type="xs:boolean" use="optional" default="false"/>
- <xs:attribute name="filter" type="entry_filter_t" use="optional" default="false"/>
- </xs:complexType>
- <xs:group name="ptype_group_t">
- <xs:choice>
- <xs:element ref="ACTION" minOccurs="0" maxOccurs="unbounded"/>
- <xs:element ref="ENTRY" minOccurs="0" maxOccurs="unbounded"/>
- <xs:element ref="COND" minOccurs="0" maxOccurs="unbounded"/>
- <xs:element ref="COMPL" minOccurs="0" maxOccurs="unbounded"/>
- <xs:element ref="HELP" minOccurs="0" maxOccurs="unbounded"/>
- </xs:choice>
- </xs:group>
- <xs:complexType name="ptype_t">
- <xs:sequence>
- <xs:group ref="ptype_group_t" minOccurs="0" maxOccurs="unbounded"/>
- </xs:sequence>
- <xs:attribute name="name" type="xs:string" use="optional"/>
- <xs:attribute name="help" type="xs:string" use="optional"/>
- <xs:attribute name="ref" type="xs:string" use="optional"/>
- <xs:attribute name="value" type="xs:string" use="optional"/>
- </xs:complexType>
- <xs:group name="view_group_t">
- <xs:choice>
- <xs:element ref="HOTKEY" minOccurs="0" maxOccurs="unbounded"/>
- <xs:element ref="ENTRY" minOccurs="0" maxOccurs="unbounded"/>
- <xs:element ref="PTYPE" minOccurs="0" maxOccurs="unbounded"/>
- <xs:element ref="VIEW" minOccurs="0" maxOccurs="unbounded"/>
- <xs:element ref="COMMAND" minOccurs="0" maxOccurs="unbounded"/>
- <xs:element ref="FILTER" minOccurs="0" maxOccurs="unbounded"/>
- <xs:element ref="PARAM" minOccurs="0" maxOccurs="unbounded"/>
- <xs:element ref="COND" minOccurs="0" maxOccurs="unbounded"/>
- <xs:element ref="COMPL" minOccurs="0" maxOccurs="unbounded"/>
- <xs:element ref="HELP" minOccurs="0" maxOccurs="unbounded"/>
- <xs:element ref="PROMPT" minOccurs="0" maxOccurs="unbounded"/>
- <xs:element ref="LOG" minOccurs="0" maxOccurs="unbounded"/>
- <xs:element ref="SWITCH" minOccurs="0" maxOccurs="unbounded"/>
- <xs:element ref="SEQ" minOccurs="0" maxOccurs="unbounded"/>
- </xs:choice>
- </xs:group>
- <xs:complexType name="view_t">
- <xs:sequence>
- <xs:group ref="view_group_t" minOccurs="0" maxOccurs="unbounded"/>
- </xs:sequence>
- <xs:attribute name="name" type="xs:string" use="required"/>
- <xs:attribute name="help" type="xs:string" use="optional"/>
- <xs:attribute name="ref" type="xs:string" use="optional"/>
- </xs:complexType>
- <xs:group name="param_group_t">
- <xs:choice>
- <xs:element ref="ACTION" minOccurs="0" maxOccurs="unbounded"/>
- <xs:element ref="ENTRY" minOccurs="0" maxOccurs="unbounded"/>
- <xs:element ref="PTYPE" minOccurs="0" maxOccurs="unbounded"/>
- <xs:element ref="VIEW" minOccurs="0" maxOccurs="unbounded"/>
- <xs:element ref="COMMAND" minOccurs="0" maxOccurs="unbounded"/>
- <xs:element ref="FILTER" minOccurs="0" maxOccurs="unbounded"/>
- <xs:element ref="PARAM" minOccurs="0" maxOccurs="unbounded"/>
- <xs:element ref="COND" minOccurs="0" maxOccurs="unbounded"/>
- <xs:element ref="COMPL" minOccurs="0" maxOccurs="unbounded"/>
- <xs:element ref="HELP" minOccurs="0" maxOccurs="unbounded"/>
- <xs:element ref="LOG" minOccurs="0" maxOccurs="unbounded"/>
- <xs:element ref="SWITCH" minOccurs="0" maxOccurs="unbounded"/>
- <xs:element ref="SEQ" minOccurs="0" maxOccurs="unbounded"/>
- </xs:choice>
- </xs:group>
- <xs:complexType name="param_t">
-
- <xs:sequence>
- <xs:group ref="param_group_t" minOccurs="0" maxOccurs="unbounded"/>
- </xs:sequence>
- <xs:attribute name="name" type="xs:string" use="required"/>
- <xs:attribute name="help" type="xs:string" use="optional"/>
- <xs:attribute name="ptype" type="xs:string" use="optional"/>
- <xs:attribute name="mode" type="entry_mode_t" use="optional" default="sequence"/>
- <xs:attribute name="min" type="xs:string" use="optional" default="1"/>
- <xs:attribute name="max" type="xs:string" use="optional" default="1"/>
- <xs:attribute name="ref" type="xs:string" use="optional"/>
- <xs:attribute name="value" type="xs:string" use="optional"/>
- <xs:attribute name="order" type="xs:boolean" use="optional" default="false"/>
- </xs:complexType>
- <xs:complexType name="command_t">
-
- <xs:sequence>
- <xs:group ref="entry_group_t" minOccurs="0" maxOccurs="unbounded"/>
- </xs:sequence>
- <xs:attribute name="name" type="xs:string" use="optional"/>
- <xs:attribute name="help" type="xs:string" use="optional"/>
- <xs:attribute name="mode" type="entry_mode_t" use="optional" default="sequence"/>
- <xs:attribute name="min" type="xs:string" use="optional" default="1"/>
- <xs:attribute name="max" type="xs:string" use="optional" default="1"/>
- <xs:attribute name="ref" type="xs:string" use="optional"/>
- <xs:attribute name="value" type="xs:string" use="optional"/>
- <xs:attribute name="restore" type="xs:boolean" use="optional" default="false"/>
- <xs:attribute name="filter" type="entry_filter_t" use="optional" default="false"/>
- </xs:complexType>
- </xs:schema>
|