Initialisation depot

This commit is contained in:
Serge NOEL
2026-06-17 14:00:51 +02:00
commit efdf1683af
33190 changed files with 5907629 additions and 0 deletions
@@ -0,0 +1,57 @@
<?xml version="1.0" encoding="utf-8"?>
<?xml-stylesheet href="../schema2xhtml.xsl" type="text/xsl"?>
<!-- This schema is part of JMRI. Copyright 2018. -->
<!-- -->
<!-- JMRI is free software; you can redistribute it and/or modify it under -->
<!-- the terms of version 2 of the GNU General Public License as published -->
<!-- by the Free Software Foundation. See the "COPYING" file for a copy -->
<!-- of this license. -->
<!-- -->
<!-- JMRI is distributed in the hope that it will be useful, but WITHOUT -->
<!-- ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or -->
<!-- FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License -->
<!-- for more details. -->
<!-- This file contains definitions for LogixNG StringActions. -->
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"
xmlns:xsi ="http://www.w3.org/2001/XMLSchema-instance"
xmlns:docbook="http://docbook.org/ns/docbook"
xmlns:jmri="http://jmri.org/xml/schema/JMRIschema"
xsi:schemaLocation="
http://jmri.org/xml/schema/JMRIschema http://jmri.org/xml/schema/JMRIschema.xsd
http://docbook.org/ns/docbook http://jmri.org/xml/schema/docbook/docbook.xsd
"
>
<xs:include schemaLocation="http://jmri.org/xml/schema/logixng/string-actions/action-memory-4.23.1.xsd"/>
<xs:include schemaLocation="http://jmri.org/xml/schema/logixng/string-actions/action-stringio-4.23.1.xsd"/>
<xs:include schemaLocation="http://jmri.org/xml/schema/logixng/string-actions/many-4.23.1.xsd"/>
<xs:include schemaLocation="http://jmri.org/xml/schema/logixng/string-actions/string-action-loconet-opc-peer-4.23.1.xsd"/>
<xs:complexType name="LogixNG_StringActionManagerType">
<xs:annotation>
<xs:documentation>
Define the XML stucture for storing the contents of a StringActionManager implementation.
</xs:documentation>
<xs:appinfo>
<jmri:usingclass configurexml="true">jmri.jmrit.logixng.string.implementation.configurexml.StringAnalogActionManagerXml</jmri:usingclass>
</xs:appinfo>
</xs:annotation>
<xs:sequence>
<!-- Permit any of these tags in any order in any number -->
<xs:choice minOccurs="0" maxOccurs="unbounded">
<xs:element name="StringMany" type="LogixNG_DigitalAction_ManyType" minOccurs="0" maxOccurs="unbounded" />
<xs:element name="StringActionMemory" type="LogixNG_StringAction_MemoryType" minOccurs="0" maxOccurs="unbounded" />
<xs:element name="StringActionStringIO" type="LogixNG_StringAction_StringIOType" minOccurs="0" maxOccurs="unbounded" />
<xs:element name="StringActionLoconetOpcPeer" type="LogixNG_StringAction_LocoNetOPC_PEER_Type" minOccurs="0" maxOccurs="unbounded" />
</xs:choice>
</xs:sequence>
<xs:attribute name="class" type="classType" use="required"/>
</xs:complexType>
</xs:schema>