├── .gitignore ├── Database ├── ConfigDatabase │ ├── scada_6.0.png │ ├── scada_6.0.xml │ ├── scada_6.1.png │ └── scada_6.1.xml └── Storage │ ├── sql │ ├── 01_create_database.bat │ ├── 01_create_database.sh │ ├── 01_create_database.sql │ ├── 02_create_objects.bat │ ├── 02_create_objects.sh │ ├── 02_create_objects.sql │ ├── 03_schema.sql │ ├── 04_app.sql │ ├── 05_app_config.sql │ ├── 06_app_storage.sql │ ├── 07_view_file.sql │ └── inserts.sql │ └── storage_er.png ├── HowToBuild.txt ├── LICENSE.txt ├── LangPack ├── Chinese-Simplified │ ├── ScadaAdmin │ │ └── Lang │ │ │ ├── AddressBook.zh-Hans.xml │ │ │ ├── DrvCnlBasic.zh-Hans.xml │ │ │ ├── DrvCnlMqtt.zh-Hans.xml │ │ │ ├── DrvDbImport.en-GB.xml │ │ │ ├── DrvDbImport.zh-Hans.xml │ │ │ ├── DrvDsMqtt.zh-Hans.xml │ │ │ ├── DrvDsOpcUaServer.zh-Hans.xml │ │ │ ├── DrvDsScadaServer.zh-Hans.xml │ │ │ ├── DrvEmail.zh-Hans.xml │ │ │ ├── DrvHttpNotif.zh-Hans.xml │ │ │ ├── DrvModbus.zh-Hans.xml │ │ │ ├── DrvModbusSlave.zh-Hans.xml │ │ │ ├── DrvMqttClient.zh-Hans.xml │ │ │ ├── DrvMqttPublisher.zh-Hans.xml │ │ │ ├── DrvOpcClassic.zh-Hans.xml │ │ │ ├── DrvOpcUa.zh-Hans.xml │ │ │ ├── DrvSnmp.en-GB.xml │ │ │ ├── DrvSnmp.zh-Hans.xml │ │ │ ├── DrvTelegram.zh-Hans.xml │ │ │ ├── ExtCommConfig.zh-Hans.xml │ │ │ ├── ExtDepAgent.zh-Hans.xml │ │ │ ├── ExtDepPostgreSql.zh-Hans.xml │ │ │ ├── ExtExternalTools.en-GB.xml │ │ │ ├── ExtProjectTools.zh-Hans.xml │ │ │ ├── ExtServerConfig.zh-Hans.xml │ │ │ ├── ExtTableEditor.zh-Hans.xml │ │ │ ├── ExtWebConfig.zh-Hans.xml │ │ │ ├── ExtWirenBoard.zh-Hans.xml │ │ │ ├── ModActiveDirectory.en-GB.xml │ │ │ ├── ModActiveDirectory.zh-Hans.xml │ │ │ ├── ModArcBasic.zh-Hans.xml │ │ │ ├── ModArcInfluxDb.zh-Hans.xml │ │ │ ├── ModArcPostgreSql.zh-Hans.xml │ │ │ ├── ModAutoControl.zh-Hans.xml │ │ │ ├── ModDbExport.en-GB.xml │ │ │ ├── ModDbExport.zh-Hans.xml │ │ │ ├── ModDiffCalculator.en-GB.xml │ │ │ ├── ModDiffCalculator.zh-Hans.xml │ │ │ ├── ModRapidGate.zh-Hans.xml │ │ │ ├── ScadaAdmin.zh-Hans.xml │ │ │ ├── ScadaComm.zh-Hans.xml │ │ │ ├── ScadaCommon.zh-Hans.xml │ │ │ └── ScadaServer.zh-Hans.xml │ ├── ScadaAgent │ │ └── Lang │ │ │ └── ScadaCommon.zh-Hans.xml │ ├── ScadaComm │ │ └── Lang │ │ │ ├── ScadaComm.zh-Hans.xml │ │ │ └── ScadaCommon.zh-Hans.xml │ ├── ScadaSchemeEditor │ │ └── Lang │ │ │ ├── ScadaData.zh-Hans.xml │ │ │ ├── ScadaScheme.zh-Hans.xml │ │ │ └── ScadaSchemeEditor.zh-Hans.xml │ ├── ScadaServer │ │ └── Lang │ │ │ ├── ScadaCommon.zh-Hans.xml │ │ │ └── ScadaServer.zh-Hans.xml │ ├── ScadaWeb │ │ └── lang │ │ │ ├── PlgChart.zh-Hans.xml │ │ │ ├── PlgChartPro.zh-Hans.xml │ │ │ ├── PlgElasticReport.zh-Hans.xml │ │ │ ├── PlgGuard.zh-Hans.xml │ │ │ ├── PlgMain.zh-Hans.xml │ │ │ ├── PlgScheme.zh-Hans.xml │ │ │ ├── PlgWebPage.en-GB.xml │ │ │ ├── PlgWebPage.zh-Hans.xml │ │ │ ├── ScadaCommon.zh-Hans.xml │ │ │ └── ScadaWeb.zh-Hans.xml │ └── info.txt ├── French │ ├── ScadaAdmin │ │ └── Lang │ │ │ ├── AddressBook.fr-FR.xml │ │ │ ├── DrvCnlBasic.fr-FR.xml │ │ │ ├── DrvCnlMqtt.fr-FR.xml │ │ │ ├── DrvDbImport.fr-FR.xml │ │ │ ├── DrvDsMqtt.fr-FR.xml │ │ │ ├── DrvDsOpcUaServer.fr-FR.xml │ │ │ ├── DrvDsScadaServer.fr-FR.xml │ │ │ ├── DrvEmail.fr-FR.xml │ │ │ ├── DrvHttpNotif.fr-FR.xml │ │ │ ├── DrvModbus.fr-FR.xml │ │ │ ├── DrvModbusSlave.fr-FR.xml │ │ │ ├── DrvMqttClient.fr-FR.xml │ │ │ ├── DrvMqttPublisher.fr-FR.xml │ │ │ ├── DrvOpcClassic.fr-FR.xml │ │ │ ├── DrvOpcUa.fr-FR.xml │ │ │ ├── DrvSnmp.fr-FR.xml │ │ │ ├── DrvTelegram.fr-FR.xml │ │ │ ├── ExtCommConfig.fr-FR.xml │ │ │ ├── ExtDepAgent.fr-FR.xml │ │ │ ├── ExtDepPostgreSql.fr-FR.xml │ │ │ ├── ExtProjectTools.fr-FR.xml │ │ │ ├── ExtServerConfig.fr-FR.xml │ │ │ ├── ExtTableEditor.fr-FR.xml │ │ │ ├── ExtWebConfig.fr-FR.xml │ │ │ ├── ExtWirenBoard.fr-FR.xml │ │ │ ├── ModActiveDirectory.fr-FR.xml │ │ │ ├── ModArcBasic.fr-FR.xml │ │ │ ├── ModArcInfluxDb.fr-FR.xml │ │ │ ├── ModArcPostgreSql.fr-FR.xml │ │ │ ├── ModAutoControl.fr-FR.xml │ │ │ ├── ModDbExport.fr-FR.xml │ │ │ ├── ModRapidGate.fr-FR.xml │ │ │ ├── ScadaAdmin.fr-FR.xml │ │ │ ├── ScadaComm.fr-FR.xml │ │ │ ├── ScadaCommon.fr-FR.xml │ │ │ └── ScadaServer.fr-FR.xml │ ├── ScadaAgent │ │ └── Lang │ │ │ └── ScadaCommon.fr-FR.xml │ ├── ScadaComm │ │ └── Lang │ │ │ ├── ScadaComm.fr-FR.xml │ │ │ └── ScadaCommon.fr-FR.xml │ ├── ScadaSchemeEditor │ │ ├── ScadaData.fr-FR.xml │ │ ├── ScadaScheme.fr-FR.xml │ │ └── ScadaSchemeEditor.fr-FR.xml │ ├── ScadaServer │ │ └── Lang │ │ │ ├── ScadaCommon.fr-FR.xml │ │ │ └── ScadaServer.fr-FR.xml │ ├── ScadaWeb │ │ └── lang │ │ │ ├── PlgChart.fr-FR.xml │ │ │ ├── PlgChartPro.fr-FR.xml │ │ │ ├── PlgElasticReport.fr-FR.xml │ │ │ ├── PlgGuard.fr-FR.xml │ │ │ ├── PlgMain.fr-FR.xml │ │ │ ├── PlgScheme.fr-FR.xml │ │ │ ├── PlgStore.fr-FR.xml │ │ │ ├── PlgWebPage.fr-FR.xml │ │ │ ├── ScadaCommon.fr-FR.xml │ │ │ └── ScadaWeb.fr-FR.xml │ └── info.txt ├── German │ ├── ScadaAdmin │ │ └── Lang │ │ │ ├── AddressBook.de-DE.xml │ │ │ ├── DrvCnlBasic.de-DE.xml │ │ │ ├── DrvCnlMqtt.de-DE.xml │ │ │ ├── DrvDbImport.de-DE.xml │ │ │ ├── DrvDsMqtt.de-DE.xml │ │ │ ├── DrvDsOpcUaServer.de-DE.xml │ │ │ ├── DrvDsScadaServer.de-DE.xml │ │ │ ├── DrvEmail.de-DE.xml │ │ │ ├── DrvHttpNotif.de-DE.xml │ │ │ ├── DrvModbus.de-DE.xml │ │ │ ├── DrvModbusSlave.de-DE.xml │ │ │ ├── DrvMqttClient.de-DE.xml │ │ │ ├── DrvMqttPublisher.de-DE.xml │ │ │ ├── DrvOpcClassic.de-DE.xml │ │ │ ├── DrvOpcUa.de-DE.xml │ │ │ ├── DrvSnmp.de-DE.xml │ │ │ ├── DrvTelegram.de-DE.xml │ │ │ ├── ExtCommConfig.de-DE.xml │ │ │ ├── ExtDepAgent.de-DE.xml │ │ │ ├── ExtDepPostgreSql.de-DE.xml │ │ │ ├── ExtProjectTools.de-DE.xml │ │ │ ├── ExtServerConfig.de-DE.xml │ │ │ ├── ExtTableEditor.de-DE.xml │ │ │ ├── ExtWebConfig.de-DE.xml │ │ │ ├── ExtWirenBoard.de-DE.xml │ │ │ ├── ModActiveDirectory.de-DE.xml │ │ │ ├── ModArcBasic.de-DE.xml │ │ │ ├── ModArcInfluxDb.de-DE.xml │ │ │ ├── ModArcPostgreSql.de-DE.xml │ │ │ ├── ModAutoControl.de-DE.xml │ │ │ ├── ModDbExport.de-DE.xml │ │ │ ├── ModRapidGate.de-DE.xml │ │ │ ├── ScadaAdmin.de-DE.xml │ │ │ ├── ScadaComm.de-DE.xml │ │ │ ├── ScadaCommon.de-DE.xml │ │ │ └── ScadaServer.de-DE.xml │ ├── ScadaAgent │ │ └── Lang │ │ │ └── ScadaCommon.de-DE.xml │ ├── ScadaComm │ │ └── Lang │ │ │ ├── ScadaComm.de-DE.xml │ │ │ └── ScadaCommon.de-DE.xml │ ├── ScadaSchemeEditor │ │ ├── ScadaData.de-DE.xml │ │ ├── ScadaScheme.de-DE.xml │ │ └── ScadaSchemeEditor.de-DE.xml │ ├── ScadaServer │ │ └── Lang │ │ │ ├── ScadaCommon.de-DE.xml │ │ │ └── ScadaServer.de-DE.xml │ ├── ScadaWeb │ │ └── lang │ │ │ ├── PlgChart.de-DE.xml │ │ │ ├── PlgChartPro.de-DE.xml │ │ │ ├── PlgElasticReport.de-DE.xml │ │ │ ├── PlgGuard.de-DE.xml │ │ │ ├── PlgMain.de-DE.xml │ │ │ ├── PlgScheme.de-DE.xml │ │ │ ├── PlgStore.de-DE.xml │ │ │ ├── PlgWebPage.de-DE.xml │ │ │ ├── ScadaCommon.de-DE.xml │ │ │ └── ScadaWeb.de-DE.xml │ └── info.txt ├── Indonesian │ ├── ScadaAdmin │ │ └── Lang │ │ │ ├── AddressBook.id-ID.xml │ │ │ ├── DrvCnlBasic.id-ID.xml │ │ │ ├── DrvCnlMqtt.id-ID.xml │ │ │ ├── DrvDsMqtt.id-ID.xml │ │ │ ├── DrvDsOpcUaServer.id-ID.xml │ │ │ ├── DrvDsScadaServer.id-ID.xml │ │ │ ├── DrvEmail.id-ID.xml │ │ │ ├── DrvHttpNotif.id-ID.xml │ │ │ ├── DrvModbus.id-ID.xml │ │ │ ├── DrvModbusSlave.id-ID.xml │ │ │ ├── DrvMqttClient.id-ID.xml │ │ │ ├── DrvMqttPublisher.id-ID.xml │ │ │ ├── DrvOpcClassic.id-ID.xml │ │ │ ├── DrvOpcUa.id-ID.xml │ │ │ ├── DrvTelegram.id-ID.xml │ │ │ ├── ExtCommConfig.id-ID.xml │ │ │ ├── ExtDepAgent.id-ID.xml │ │ │ ├── ExtDepPostgreSql.id-ID.xml │ │ │ ├── ExtProjectTools.id-ID.xml │ │ │ ├── ExtServerConfig.id-ID.xml │ │ │ ├── ExtTableEditor.id-ID.xml │ │ │ ├── ExtWebConfig.id-ID.xml │ │ │ ├── ExtWirenBoard.id-ID.xml │ │ │ ├── ModArcBasic.id-ID.xml │ │ │ ├── ModArcInfluxDb.id-ID.xml │ │ │ ├── ModArcPostgreSql.id-ID.xml │ │ │ ├── ModAutoControl.id-ID.xml │ │ │ ├── ModRapidGate.id-ID.xml │ │ │ ├── ScadaAdmin.id-ID.xml │ │ │ ├── ScadaComm.id-ID.xml │ │ │ ├── ScadaCommon.id-ID.xml │ │ │ └── ScadaServer.id-ID.xml │ ├── ScadaAgent │ │ └── Lang │ │ │ └── ScadaCommon.id-ID.xml │ ├── ScadaComm │ │ └── Lang │ │ │ ├── ScadaComm.id-ID.xml │ │ │ └── ScadaCommon.id-ID.xml │ ├── ScadaSchemeEditor │ │ └── Lang │ │ │ ├── ScadaData.id-ID.xml │ │ │ ├── ScadaScheme.id-ID.xml │ │ │ └── ScadaSchemeEditor.id-ID.xml │ ├── ScadaServer │ │ └── Lang │ │ │ ├── ScadaCommon.id-ID.xml │ │ │ └── ScadaServer.id-ID.xml │ ├── ScadaWeb │ │ └── lang │ │ │ ├── PlgChart.id-ID.xml │ │ │ ├── PlgChartPro.id-ID.xml │ │ │ ├── PlgElasticReport.id-ID.xml │ │ │ ├── PlgGuard.id-ID.xml │ │ │ ├── PlgMain.id-ID.xml │ │ │ ├── PlgScheme.id-ID.xml │ │ │ ├── PlgWebPage.id-ID.xml │ │ │ ├── ScadaCommon.id-ID.xml │ │ │ └── ScadaWeb.id-ID.xml │ └── info.txt ├── Italian │ ├── ScadaAdmin │ │ └── Lang │ │ │ ├── AddressBook.it-IT.xml │ │ │ ├── DrvCnlBasic.it-IT.xml │ │ │ ├── DrvCnlMqtt.it-IT.xml │ │ │ ├── DrvDbImport.it-IT.xml │ │ │ ├── DrvDsMqtt.it-IT.xml │ │ │ ├── DrvDsOpcUaServer.it-IT.xml │ │ │ ├── DrvDsScadaServer.it-IT.xml │ │ │ ├── DrvEmail.it-IT.xml │ │ │ ├── DrvHttpNotif.it-IT.xml │ │ │ ├── DrvModbus.it-IT.xml │ │ │ ├── DrvModbusSlave.it-IT.xml │ │ │ ├── DrvMqttClient.it-IT.xml │ │ │ ├── DrvMqttPublisher.it-IT.xml │ │ │ ├── DrvOpcClassic.it-IT.xml │ │ │ ├── DrvOpcUa.it-IT.xml │ │ │ ├── DrvSnmp.it-IT.xml │ │ │ ├── DrvTelegram.it-IT.xml │ │ │ ├── ExtCommConfig.it-IT.xml │ │ │ ├── ExtDepAgent.it-IT.xml │ │ │ ├── ExtDepPostgreSql.it-IT.xml │ │ │ ├── ExtProjectTools.it-IT.xml │ │ │ ├── ExtServerConfig.it-IT.xml │ │ │ ├── ExtTableEditor.it-IT.xml │ │ │ ├── ExtWebConfig.it-IT.xml │ │ │ ├── ExtWirenBoard.it-IT.xml │ │ │ ├── ModActiveDirectory.it-IT.xml │ │ │ ├── ModArcBasic.it-IT.xml │ │ │ ├── ModArcInfluxDb.it-IT.xml │ │ │ ├── ModArcPostgreSql.it-IT.xml │ │ │ ├── ModAutoControl.it-IT.xml │ │ │ ├── ModDbExport.it-IT.xml │ │ │ ├── ModRapidGate.it-IT.xml │ │ │ ├── ScadaAdmin.it-IT.xml │ │ │ ├── ScadaComm.it-IT.xml │ │ │ ├── ScadaCommon.it-IT.xml │ │ │ └── ScadaServer.it-IT.xml │ ├── ScadaAgent │ │ └── Lang │ │ │ └── ScadaCommon.it-IT.xml │ ├── ScadaComm │ │ └── Lang │ │ │ ├── ScadaComm.it-IT.xml │ │ │ └── ScadaCommon.it-IT.xml │ ├── ScadaSchemeEditor │ │ ├── ScadaData.it-IT.xml │ │ ├── ScadaScheme.it-IT.xml │ │ └── ScadaSchemeEditor.it-IT.xml │ ├── ScadaServer │ │ └── Lang │ │ │ ├── ScadaCommon.it-IT.xml │ │ │ └── ScadaServer.it-IT.xml │ ├── ScadaWeb │ │ └── lang │ │ │ ├── PlgChart.it-IT.xml │ │ │ ├── PlgChartPro.it-IT.xml │ │ │ ├── PlgElasticReport.it-IT.xml │ │ │ ├── PlgGuard.it-IT.xml │ │ │ ├── PlgMain.it-IT.xml │ │ │ ├── PlgScheme.it-IT.xml │ │ │ ├── PlgStore.it-IT.xml │ │ │ ├── PlgWebPage.it-IT.xml │ │ │ ├── ScadaCommon.it-IT.xml │ │ │ └── ScadaWeb.it-IT.xml │ └── info.txt ├── Japanese │ ├── ScadaAdmin │ │ └── Lang │ │ │ ├── AddressBook.ja-JP.xml │ │ │ ├── DrvCnlBasic.ja-JP.xml │ │ │ ├── DrvCnlMqtt.ja-JP.xml │ │ │ ├── DrvDbImport.ja-JP.xml │ │ │ ├── DrvDsMqtt.ja-JP.xml │ │ │ ├── DrvDsOpcUaServer.ja-JP.xml │ │ │ ├── DrvDsScadaServer.ja-JP.xml │ │ │ ├── DrvEmail.ja-JP.xml │ │ │ ├── DrvHttpNotif.ja-JP.xml │ │ │ ├── DrvModbus.ja-JP.xml │ │ │ ├── DrvModbusSlave.ja-JP.xml │ │ │ ├── DrvMqttClient.ja-JP.xml │ │ │ ├── DrvMqttPublisher.ja-JP.xml │ │ │ ├── DrvOpcClassic.ja-JP.xml │ │ │ ├── DrvOpcUa.ja-JP.xml │ │ │ ├── DrvTelegram.ja-JP.xml │ │ │ ├── ExtCommConfig.ja-JP.xml │ │ │ ├── ExtDepAgent.ja-JP.xml │ │ │ ├── ExtDepPostgreSql.ja-JP.xml │ │ │ ├── ExtProjectTools.ja-JP.xml │ │ │ ├── ExtServerConfig.ja-JP.xml │ │ │ ├── ExtWirenBoard.ja-JP.xml │ │ │ ├── ModActiveDirectory.ja-JP.xml │ │ │ ├── ModArcBasic.ja-JP.xml │ │ │ ├── ModArcInfluxDb.ja-JP.xml │ │ │ ├── ModArcPostgreSql.ja-JP.xml │ │ │ ├── ModAutoControl.ja-JP.xml │ │ │ ├── ModDbExport.ja-JP.xml │ │ │ ├── ModRapidGate.ja-JP.xml │ │ │ ├── ScadaAdmin.ja-JP.xml │ │ │ ├── ScadaComm.ja-JP.xml │ │ │ ├── ScadaCommon.ja-JP.xml │ │ │ └── ScadaServer.ja-JP.xml │ ├── ScadaAgent │ │ └── Lang │ │ │ └── ScadaCommon.ja-JP.xml │ ├── ScadaComm │ │ └── Lang │ │ │ ├── ScadaComm.ja-JP.xml │ │ │ └── ScadaCommon.ja-JP.xml │ ├── ScadaSchemeEditor │ │ ├── ScadaData.ja-JP.xml │ │ ├── ScadaScheme.ja-JP.xml │ │ └── ScadaSchemeEditor.ja-JP.xml │ ├── ScadaServer │ │ └── Lang │ │ │ ├── ScadaCommon.ja-JP.xml │ │ │ └── ScadaServer.ja-JP.xml │ ├── ScadaWeb │ │ └── lang │ │ │ ├── PlgChart.ja-JP.xml │ │ │ ├── PlgChartPro.ja-JP.xml │ │ │ ├── PlgElasticReport.ja-JP.xml │ │ │ ├── PlgGuard.ja-JP.xml │ │ │ ├── PlgMain.ja-JP.xml │ │ │ ├── PlgScheme.ja-JP.xml │ │ │ ├── PlgStore.ja-JP.xml │ │ │ ├── PlgWebPage.ja-JP.xml │ │ │ ├── ScadaCommon.ja-JP.xml │ │ │ └── ScadaWeb.ja-JP.xml │ └── info.txt ├── Korean │ ├── ScadaAdmin │ │ └── Lang │ │ │ ├── AddressBook.ko-KR.xml │ │ │ ├── DrvCnlBasic.ko-KR.xml │ │ │ ├── DrvCnlMqtt.ko-KR.xml │ │ │ ├── DrvDbImport.ko-KR.xml │ │ │ ├── DrvDsMqtt.ko-KR.xml │ │ │ ├── DrvDsOpcUaServer.ko-KR.xml │ │ │ ├── DrvDsScadaServer.ko-KR.xml │ │ │ ├── DrvEmail.ko-KR.xml │ │ │ ├── DrvHttpNotif.ko-KR.xml │ │ │ ├── DrvModbus.ko-KR.xml │ │ │ ├── DrvModbusSlave.ko-KR.xml │ │ │ ├── DrvMqttClient.ko-KR.xml │ │ │ ├── DrvMqttPublisher.ko-KR.xml │ │ │ ├── DrvOpcClassic.ko-KR.xml │ │ │ ├── DrvOpcUa.ko-KR.xml │ │ │ ├── DrvSnmp.ko-KR.xml │ │ │ ├── DrvTelegram.ko-KR.xml │ │ │ ├── ExtCommConfig.ko-KR.xml │ │ │ ├── ExtDepAgent.ko-KR.xml │ │ │ ├── ExtDepPostgreSql.ko-KR.xml │ │ │ ├── ExtProjectTools.ko-KR.xml │ │ │ ├── ExtServerConfig.ko-KR.xml │ │ │ ├── ExtTableEditor.ko-KR.xml │ │ │ ├── ExtWebConfig.ko-KR.xml │ │ │ ├── ExtWirenBoard.ko-KR.xml │ │ │ ├── ModActiveDirectory.ko-KR.xml │ │ │ ├── ModArcBasic.ko-KR.xml │ │ │ ├── ModArcInfluxDb.ko-KR.xml │ │ │ ├── ModArcPostgreSql.ko-KR.xml │ │ │ ├── ModAutoControl.ko-KR.xml │ │ │ ├── ModDbExport.ko-KR.xml │ │ │ ├── ModRapidGate.ko-KR.xml │ │ │ ├── ScadaAdmin.ko-KR.xml │ │ │ ├── ScadaComm.ko-KR.xml │ │ │ ├── ScadaCommon.ko-KR.xml │ │ │ └── ScadaServer.ko-KR.xml │ ├── ScadaAgent │ │ └── Lang │ │ │ └── ScadaCommon.ko-KR.xml │ ├── ScadaComm │ │ └── Lang │ │ │ ├── ScadaComm.ko-KR.xml │ │ │ └── ScadaCommon.ko-KR.xml │ ├── ScadaSchemeEditor │ │ ├── ScadaData.ko-KR.xml │ │ ├── ScadaScheme.ko-KR.xml │ │ └── ScadaSchemeEditor.ko-KR.xml │ ├── ScadaServer │ │ └── Lang │ │ │ ├── ScadaCommon.ko-KR.xml │ │ │ └── ScadaServer.ko-KR.xml │ ├── ScadaWeb │ │ └── lang │ │ │ ├── PlgChart.ko-KR.xml │ │ │ ├── PlgChartPro.ko-KR.xml │ │ │ ├── PlgElasticReport.ko-KR.xml │ │ │ ├── PlgGuard.ko-KR.xml │ │ │ ├── PlgMain.ko-KR.xml │ │ │ ├── PlgScheme.ko-KR.xml │ │ │ ├── PlgStore.ko-KR.xml │ │ │ ├── PlgWebPage.ko-KR.xml │ │ │ ├── ScadaCommon.ko-KR.xml │ │ │ └── ScadaWeb.ko-KR.xml │ └── info.txt ├── Norwegian │ ├── ScadaAdmin │ │ └── Lang │ │ │ ├── AddressBook.nb-NO.xml │ │ │ ├── DrvCnlBasic.nb-NO.xml │ │ │ ├── DrvCnlMqtt.nb-NO.xml │ │ │ ├── DrvDbImport.nb-NO.xml │ │ │ ├── DrvDsMqtt.nb-NO.xml │ │ │ ├── DrvDsOpcUaServer.nb-NO.xml │ │ │ ├── DrvDsScadaServer.nb-NO.xml │ │ │ ├── DrvEmail.nb-NO.xml │ │ │ ├── DrvHttpNotif.nb-NO.xml │ │ │ ├── DrvModbus.nb-NO.xml │ │ │ ├── DrvModbusSlave.nb-NO.xml │ │ │ ├── DrvMqttClient.nb-NO.xml │ │ │ ├── DrvMqttPublisher.nb-NO.xml │ │ │ ├── DrvOpcClassic.nb-NO.xml │ │ │ ├── DrvOpcUa.nb-NO.xml │ │ │ ├── DrvSnmp.nb-NO.xml │ │ │ ├── DrvTelegram.nb-NO.xml │ │ │ ├── ExtCommConfig.nb-NO.xml │ │ │ ├── ExtDepAgent.nb-NO.xml │ │ │ ├── ExtDepPostgreSql.nb-NO.xml │ │ │ ├── ExtProjectTools.nb-NO.xml │ │ │ ├── ExtServerConfig.nb-NO.xml │ │ │ ├── ExtTableEditor.nb-NO.xml │ │ │ ├── ExtWirenBoard.nb-NO.xml │ │ │ ├── ModActiveDirectory.nb-NO.xml │ │ │ ├── ModArcBasic.nb-NO.xml │ │ │ ├── ModArcInfluxDb.nb-NO.xml │ │ │ ├── ModArcPostgreSql.nb-NO.xml │ │ │ ├── ModAutoControl.nb-NO.xml │ │ │ ├── ModDbExport.nb-NO.xml │ │ │ ├── ModRapidGate.nb-NO.xml │ │ │ ├── ScadaAdmin.nb-NO.xml │ │ │ ├── ScadaComm.nb-NO.xml │ │ │ ├── ScadaCommon.nb-NO.xml │ │ │ └── ScadaServer.nb-NO.xml │ ├── ScadaAgent │ │ └── Lang │ │ │ └── ScadaCommon.nb-NO.xml │ ├── ScadaComm │ │ └── Lang │ │ │ ├── ScadaComm.nb-NO.xml │ │ │ └── ScadaCommon.nb-NO.xml │ ├── ScadaSchemeEditor │ │ ├── ScadaData.nb-NO.xml │ │ ├── ScadaScheme.nb-NO.xml │ │ └── ScadaSchemeEditor.nb-NO.xml │ ├── ScadaServer │ │ └── Lang │ │ │ ├── ScadaCommon.nb-NO.xml │ │ │ └── ScadaServer.nb-NO.xml │ ├── ScadaWeb │ │ └── lang │ │ │ ├── PlgChart.nb-NO.xml │ │ │ ├── PlgChartPro.nb-NO.xml │ │ │ ├── PlgElasticReport.nb-NO.xml │ │ │ ├── PlgGuard.nb-NO.xml │ │ │ ├── PlgMain.nb-NO.xml │ │ │ ├── PlgScheme.nb-NO.xml │ │ │ ├── PlgStore.nb-NO.xml │ │ │ ├── PlgWebPage.nb-NO.xml │ │ │ ├── ScadaCommon.nb-NO.xml │ │ │ └── ScadaWeb.nb-NO.xml │ └── info.txt ├── Polish │ ├── ScadaAdmin │ │ └── Lang │ │ │ ├── AddressBook.pl-PL.xml │ │ │ ├── DrvCnlBasic.pl-PL.xml │ │ │ ├── DrvCnlMqtt.pl-PL.xml │ │ │ ├── DrvDbImport.pl-PL.xml │ │ │ ├── DrvDsMqtt.pl-PL.xml │ │ │ ├── DrvDsOpcUaServer.pl-PL.xml │ │ │ ├── DrvDsScadaServer.pl-PL.xml │ │ │ ├── DrvEmail.pl-PL.xml │ │ │ ├── DrvHttpNotif.pl-PL.xml │ │ │ ├── DrvModbus.pl-PL.xml │ │ │ ├── DrvModbusSlave.pl-PL.xml │ │ │ ├── DrvMqttClient.pl-PL.xml │ │ │ ├── DrvMqttPublisher.pl-PL.xml │ │ │ ├── DrvOpcClassic.pl-PL.xml │ │ │ ├── DrvOpcUa.pl-PL.xml │ │ │ ├── DrvSnmp.pl-PL.xml │ │ │ ├── DrvTelegram.pl-PL.xml │ │ │ ├── ExtCommConfig.pl-PL.xml │ │ │ ├── ExtDepAgent.pl-PL.xml │ │ │ ├── ExtDepPostgreSql.pl-PL.xml │ │ │ ├── ExtProjectTools.pl-PL.xml │ │ │ ├── ExtServerConfig.pl-PL.xml │ │ │ ├── ExtTableEditor.pl-PL.xml │ │ │ ├── ExtWebConfig.pl-PL.xml │ │ │ ├── ExtWirenBoard.pl-PL.xml │ │ │ ├── ModActiveDirectory.pl-PL.xml │ │ │ ├── ModArcBasic.pl-PL.xml │ │ │ ├── ModArcInfluxDb.pl-PL.xml │ │ │ ├── ModArcPostgreSql.pl-PL.xml │ │ │ ├── ModAutoControl.pl-PL.xml │ │ │ ├── ModDbExport.pl-PL.xml │ │ │ ├── ModRapidGate.pl-PL.xml │ │ │ ├── ScadaAdmin.pl-PL.xml │ │ │ ├── ScadaComm.pl-PL.xml │ │ │ ├── ScadaCommon.pl-PL.xml │ │ │ └── ScadaServer.pl-PL.xml │ ├── ScadaAgent │ │ └── Lang │ │ │ └── ScadaCommon.pl-PL.xml │ ├── ScadaComm │ │ └── Lang │ │ │ ├── ScadaComm.pl-PL.xml │ │ │ └── ScadaCommon.pl-PL.xml │ ├── ScadaSchemeEditor │ │ ├── ScadaData.pl-PL.xml │ │ ├── ScadaScheme.pl-PL.xml │ │ └── ScadaSchemeEditor.pl-PL.xml │ ├── ScadaServer │ │ └── Lang │ │ │ ├── ScadaCommon.pl-PL.xml │ │ │ └── ScadaServer.pl-PL.xml │ ├── ScadaWeb │ │ └── lang │ │ │ ├── PlgChart.pl-PL.xml │ │ │ ├── PlgChartPro.pl-PL.xml │ │ │ ├── PlgElasticReport.pl-PL.xml │ │ │ ├── PlgGuard.pl-PL.xml │ │ │ ├── PlgMain.pl-PL.xml │ │ │ ├── PlgScheme.pl-PL.xml │ │ │ ├── PlgStore.pl-PL.xml │ │ │ ├── PlgWebPage.pl-PL.xml │ │ │ ├── ScadaCommon.pl-PL.xml │ │ │ └── ScadaWeb.pl-PL.xml │ └── info.txt ├── Portuguese │ ├── ScadaAdmin │ │ └── Lang │ │ │ ├── AddressBook.pt-PT.xml │ │ │ ├── DrvCnlBasic.pt-PT.xml │ │ │ ├── DrvCnlMqtt.pt-PT.xml │ │ │ ├── DrvDbImport.pt-PT.xml │ │ │ ├── DrvDsMqtt.pt-PT.xml │ │ │ ├── DrvDsOpcUaServer.pt-PT.xml │ │ │ ├── DrvDsScadaServer.pt-PT.xml │ │ │ ├── DrvEmail.pt-PT.xml │ │ │ ├── DrvHttpNotif.pt-PT.xml │ │ │ ├── DrvModbus.pt-PT.xml │ │ │ ├── DrvModbusSlave.pt-PT.xml │ │ │ ├── DrvMqttClient.pt-PT.xml │ │ │ ├── DrvMqttPublisher.pt-PT.xml │ │ │ ├── DrvOpcClassic.pt-PT.xml │ │ │ ├── DrvOpcUa.pt-PT.xml │ │ │ ├── DrvSnmp.pt-PT.xml │ │ │ ├── DrvTelegram.it-IT.xml │ │ │ ├── DrvTelegram.pt-PT.xml │ │ │ ├── ExtCommConfig.pt-PT.xml │ │ │ ├── ExtDepAgent.pt-PT.xml │ │ │ ├── ExtDepPostgreSql.pt-PT.xml │ │ │ ├── ExtProjectTools.pt-PT.xml │ │ │ ├── ExtServerConfig.pt-PT.xml │ │ │ ├── ExtTableEditor.pt-PT.xml │ │ │ ├── ExtWebConfig.pt-PT.xml │ │ │ ├── ExtWirenBoard.pt-PT.xml │ │ │ ├── ModActiveDirectory.pt-PT.xml │ │ │ ├── ModArcBasic.pt-PT.xml │ │ │ ├── ModArcInfluxDb.pt-PT.xml │ │ │ ├── ModArcPostgreSql.pt-PT.xml │ │ │ ├── ModAutoControl.pt-PT.xml │ │ │ ├── ModDbExport.pt-PT.xml │ │ │ ├── ModRapidGate.pt-PT.xml │ │ │ ├── ScadaAdmin.pt-PT.xml │ │ │ ├── ScadaComm.pt-PT.xml │ │ │ ├── ScadaCommon.pt-PT.xml │ │ │ └── ScadaServer.pt-PT.xml │ ├── ScadaAgent │ │ └── Lang │ │ │ └── ScadaCommon.pt-PT.xml │ ├── ScadaComm │ │ └── Lang │ │ │ ├── ScadaComm.pt-PT.xml │ │ │ └── ScadaCommon.pt-PT.xml │ ├── ScadaSchemeEditor │ │ ├── ScadaData.pt-PT.xml │ │ ├── ScadaScheme.pt-PT.xml │ │ └── ScadaSchemeEditor.pt-PT.xml │ ├── ScadaServer │ │ └── Lang │ │ │ ├── ScadaCommon.pt-PT.xml │ │ │ └── ScadaServer.pt-PT.xml │ ├── ScadaWeb │ │ └── lang │ │ │ ├── PlgChart.pt-PT.xml │ │ │ ├── PlgChartPro.pt-PT.xml │ │ │ ├── PlgGuard.pt-PT.xml │ │ │ ├── PlgMain.pt-PT.xml │ │ │ ├── PlgScheme.pt-PT.xml │ │ │ ├── PlgWebPage.pt-PT.xml │ │ │ ├── ScadaCommon.pt-PT.xml │ │ │ └── ScadaWeb.pt-PT.xml │ └── info.txt ├── Spanish │ ├── ScadaAdmin │ │ └── Lang │ │ │ ├── AddressBook.es-ES.xml │ │ │ ├── DrvCnlBasic.es-ES.xml │ │ │ ├── DrvCnlMqtt.es-ES.xml │ │ │ ├── DrvDbImport.es-ES.xml │ │ │ ├── DrvDsMqtt.es-ES.xml │ │ │ ├── DrvDsOpcUaServer.es-ES.xml │ │ │ ├── DrvDsScadaServer.es-ES.xml │ │ │ ├── DrvEmail.es-ES.xml │ │ │ ├── DrvHttpNotif.es-ES.xml │ │ │ ├── DrvModbus.es-ES.xml │ │ │ ├── DrvModbusSlave.es-ES.xml │ │ │ ├── DrvMqttClient.es-ES.xml │ │ │ ├── DrvMqttPublisher.es-ES.xml │ │ │ ├── DrvOpcClassic.es-ES.xml │ │ │ ├── DrvOpcUa.es-ES.xml │ │ │ ├── DrvSnmp.es-ES.xml │ │ │ ├── DrvTelegram.es-ES.xml │ │ │ ├── ExtCommConfig.es-ES.xml │ │ │ ├── ExtDepAgent.es-ES.xml │ │ │ ├── ExtDepPostgreSql.es-ES.xml │ │ │ ├── ExtProjectTools.es-ES.xml │ │ │ ├── ExtServerConfig.es-ES.xml │ │ │ ├── ExtTableEditor.es-ES.xml │ │ │ ├── ExtWebConfig.es-ES.xml │ │ │ ├── ExtWirenBoard.es-ES.xml │ │ │ ├── ModActiveDirectory.es-ES.xml │ │ │ ├── ModArcBasic.es-ES.xml │ │ │ ├── ModArcInfluxDb.es-ES.xml │ │ │ ├── ModArcPostgreSql.es-ES.xml │ │ │ ├── ModAutoControl.es-ES.xml │ │ │ ├── ModDbExport.es-ES.xml │ │ │ ├── ModRapidGate.es-ES.xml │ │ │ ├── ScadaAdmin.es-ES.xml │ │ │ ├── ScadaComm.es-ES.xml │ │ │ ├── ScadaCommon.es-ES.xml │ │ │ └── ScadaServer.es-ES.xml │ ├── ScadaAgent │ │ └── Lang │ │ │ └── ScadaCommon.es-ES.xml │ ├── ScadaComm │ │ └── Lang │ │ │ ├── ScadaComm.es-ES.xml │ │ │ └── ScadaCommon.es-ES.xml │ ├── ScadaSchemeEditor │ │ ├── ScadaData.es-ES.xml │ │ ├── ScadaScheme.es-ES.xml │ │ └── ScadaSchemeEditor.es-ES.xml │ ├── ScadaServer │ │ └── Lang │ │ │ ├── ScadaCommon.es-ES.xml │ │ │ └── ScadaServer.es-ES.xml │ ├── ScadaWeb │ │ └── lang │ │ │ ├── PlgChart.es-ES.xml │ │ │ ├── PlgChartPro.es-ES.xml │ │ │ ├── PlgElasticReport.es-ES.xml │ │ │ ├── PlgGuard.es-ES.xml │ │ │ ├── PlgMain.es-ES.xml │ │ │ ├── PlgScheme.es-ES.xml │ │ │ ├── PlgWebPage.es-ES.xml │ │ │ ├── ScadaCommon.es-ES.xml │ │ │ └── ScadaWeb.es-ES.xml │ └── info.txt ├── Turkish │ ├── ScadaAdmin │ │ └── Lang │ │ │ ├── AddressBook.tr-TR.xml │ │ │ ├── DrvCnlBasic.tr-TR.xml │ │ │ ├── DrvCnlMqtt.tr-TR.xml │ │ │ ├── DrvDbImport.tr-TR.xml │ │ │ ├── DrvDsMqtt.tr-TR.xml │ │ │ ├── DrvDsOpcUaServer.tr-TR.xml │ │ │ ├── DrvDsScadaServer.tr-TR.xml │ │ │ ├── DrvEmail.tr-TR.xml │ │ │ ├── DrvHttpNotif.tr-TR.xml │ │ │ ├── DrvModbus.tr-TR.xml │ │ │ ├── DrvModbusSlave.tr-TR.xml │ │ │ ├── DrvMqttClient.tr-TR.xml │ │ │ ├── DrvMqttPublisher.tr-TR.xml │ │ │ ├── DrvOpcClassic.tr-TR.xml │ │ │ ├── DrvOpcUa.tr-TR.xml │ │ │ ├── DrvSnmp.tr-TR.xml │ │ │ ├── DrvTelegram.tr-TR.xml │ │ │ ├── ExtCommConfig.tr-TR.xml │ │ │ ├── ExtDepAgent.tr-TR.xml │ │ │ ├── ExtDepPostgreSql.tr-TR.xml │ │ │ ├── ExtProjectTools.tr-TR.xml │ │ │ ├── ExtServerConfig.tr-TR.xml │ │ │ ├── ExtTableEditor.tr-TR.xml │ │ │ ├── ExtWebConfig.tr-TR.xml │ │ │ ├── ExtWirenBoard.tr-TR.xml │ │ │ ├── ModActiveDirectory.tr-TR.xml │ │ │ ├── ModArcBasic.tr-TR.xml │ │ │ ├── ModArcInfluxDb.tr-TR.xml │ │ │ ├── ModArcPostgreSql.tr-TR.xml │ │ │ ├── ModAutoControl.tr-TR.xml │ │ │ ├── ModDbExport.tr-TR.xml │ │ │ ├── ModRapidGate.tr-TR.xml │ │ │ ├── ScadaAdmin.tr-TR.xml │ │ │ ├── ScadaComm.tr-TR.xml │ │ │ ├── ScadaCommon.tr-TR.xml │ │ │ └── ScadaServer.tr-TR.xml │ ├── ScadaAgent │ │ └── Lang │ │ │ └── ScadaCommon.tr-TR.xml │ ├── ScadaComm │ │ └── Lang │ │ │ ├── ScadaComm.tr-TR.xml │ │ │ └── ScadaCommon.tr-TR.xml │ ├── ScadaSchemeEditor │ │ ├── ScadaData.tr-TR.xml │ │ ├── ScadaScheme.tr-TR.xml │ │ └── ScadaSchemeEditor.tr-TR.xml │ ├── ScadaServer │ │ └── Lang │ │ │ ├── ScadaCommon.tr-TR.xml │ │ │ └── ScadaServer.tr-TR.xml │ ├── ScadaWeb │ │ └── lang │ │ │ ├── PlgChart.tr-TR.xml │ │ │ ├── PlgChartPro.tr-TR.xml │ │ │ ├── PlgElasticReport.pt-PT.xml │ │ │ ├── PlgElasticReport.tr-TR.xml │ │ │ ├── PlgGuard.tr-TR.xml │ │ │ ├── PlgMain.tr-TR.xml │ │ │ ├── PlgScheme.tr-TR.xml │ │ │ ├── PlgWebPage.tr-TR.xml │ │ │ ├── ScadaCommon.tr-TR.xml │ │ │ └── ScadaWeb.tr-TR.xml │ └── info.txt └── readme.txt ├── Projects ├── HelloWorld │ ├── BaseXML │ │ ├── Archive.xml │ │ ├── ArchiveKind.xml │ │ ├── Cnl.xml │ │ ├── CnlStatus.xml │ │ ├── CnlType.xml │ │ ├── CommLine.xml │ │ ├── DataType.xml │ │ ├── DevType.xml │ │ ├── Device.xml │ │ ├── Format.xml │ │ ├── Obj.xml │ │ ├── Quantity.xml │ │ ├── Role.xml │ │ ├── Script.xml │ │ ├── Unit.xml │ │ ├── User.xml │ │ ├── View.xml │ │ └── ViewType.xml │ ├── Deployment.xml │ ├── HelloWorld.rsproj │ ├── Instances │ │ └── Default │ │ │ ├── ScadaComm │ │ │ └── Config │ │ │ │ └── ScadaCommConfig.xml │ │ │ ├── ScadaServer │ │ │ └── Config │ │ │ │ └── ScadaServerConfig.xml │ │ │ └── ScadaWeb │ │ │ └── config │ │ │ ├── PlgMimic.xml │ │ │ └── ScadaWebConfig.xml │ └── Views │ │ └── HelloWorld │ │ └── Simulator.tbl └── WirenBoardDemo │ ├── BaseXML │ ├── Archive.xml │ ├── ArchiveKind.xml │ ├── Cnl.xml │ ├── CnlStatus.xml │ ├── CnlType.xml │ ├── CommLine.xml │ ├── DataType.xml │ ├── DevType.xml │ ├── Device.xml │ ├── Format.xml │ ├── Obj.xml │ ├── Quantity.xml │ ├── Role.xml │ ├── Script.xml │ ├── Unit.xml │ ├── User.xml │ ├── View.xml │ └── ViewType.xml │ ├── Deployment.xml │ ├── Instances │ └── Default │ │ ├── ScadaComm │ │ └── Config │ │ │ ├── DrvMqttClient_011.xml │ │ │ ├── DrvMqttClient_012.xml │ │ │ ├── DrvMqttClient_013.xml │ │ │ ├── DrvMqttClient_014.xml │ │ │ ├── DrvMqttClient_015.xml │ │ │ ├── DrvMqttClient_016.xml │ │ │ ├── DrvMqttClient_017.xml │ │ │ ├── DrvMqttClient_018.xml │ │ │ ├── DrvMqttClient_019.xml │ │ │ ├── DrvMqttClient_020.xml │ │ │ ├── DrvTelegram_031.xml │ │ │ ├── DrvTelegram_Reg.xml │ │ │ ├── ScadaCommConfig.xml │ │ │ └── wb_error.js │ │ ├── ScadaServer │ │ └── Config │ │ │ ├── ModAutoControl.xml │ │ │ ├── ModAutoControl_Reg.xml │ │ │ └── ScadaServerConfig.xml │ │ └── ScadaWeb │ │ └── config │ │ └── ScadaWebConfig.xml │ ├── Views │ ├── HelloWorld │ │ └── Simulator.tbl │ └── WirenBoard │ │ ├── WbAll.tbl │ │ ├── WbCalc.tbl │ │ └── WbScheme.sch │ └── WirenBoardDemo.rsproj ├── README.md ├── ScadaAdmin ├── OpenExtensions │ ├── .editorconfig │ ├── ExtCommConfig │ │ ├── Code │ │ │ ├── CommConfigConverter.cs │ │ │ ├── CommNodeTag.cs │ │ │ ├── CommNodeType.cs │ │ │ ├── ExtensionPhrases.cs │ │ │ ├── ExtensionUtils.cs │ │ │ ├── ImageKey.cs │ │ │ ├── RecentSelection.cs │ │ │ └── TreeViewBuilder.cs │ │ ├── Controls │ │ │ ├── CtrlCnlCreate1.Designer.cs │ │ │ ├── CtrlCnlCreate1.cs │ │ │ ├── CtrlCnlCreate1.resx │ │ │ ├── CtrlCnlCreate2.Designer.cs │ │ │ ├── CtrlCnlCreate2.cs │ │ │ ├── CtrlCnlCreate2.resx │ │ │ ├── CtrlCnlCreate3.Designer.cs │ │ │ ├── CtrlCnlCreate3.cs │ │ │ ├── CtrlCnlCreate3.resx │ │ │ ├── CtrlExtensionMenu.Designer.cs │ │ │ ├── CtrlExtensionMenu.cs │ │ │ ├── CtrlExtensionMenu.resx │ │ │ ├── CtrlLineCustom.Designer.cs │ │ │ ├── CtrlLineCustom.cs │ │ │ ├── CtrlLineCustom.resx │ │ │ ├── CtrlLineMain.Designer.cs │ │ │ ├── CtrlLineMain.cs │ │ │ ├── CtrlLineMain.resx │ │ │ ├── CtrlLinePolling.Designer.cs │ │ │ ├── CtrlLinePolling.cs │ │ │ ├── CtrlLinePolling.resx │ │ │ ├── CtrlSync1.Designer.cs │ │ │ ├── CtrlSync1.cs │ │ │ ├── CtrlSync1.resx │ │ │ ├── CtrlSync2.Designer.cs │ │ │ ├── CtrlSync2.cs │ │ │ └── CtrlSync2.resx │ │ ├── ExtCommConfig.csproj │ │ ├── ExtCommConfigLogic.cs │ │ ├── Forms │ │ │ ├── FrmCnlCreate.Designer.cs │ │ │ ├── FrmCnlCreate.cs │ │ │ ├── FrmCnlCreate.resx │ │ │ ├── FrmCnlPreview.Designer.cs │ │ │ ├── FrmCnlPreview.cs │ │ │ ├── FrmCnlPreview.resx │ │ │ ├── FrmCommLogs.cs │ │ │ ├── FrmDataSources.Designer.cs │ │ │ ├── FrmDataSources.cs │ │ │ ├── FrmDataSources.resx │ │ │ ├── FrmDeviceAdd.Designer.cs │ │ │ ├── FrmDeviceAdd.cs │ │ │ ├── FrmDeviceAdd.resx │ │ │ ├── FrmDeviceCommand.Designer.cs │ │ │ ├── FrmDeviceCommand.cs │ │ │ ├── FrmDeviceCommand.resx │ │ │ ├── FrmDeviceData.Designer.cs │ │ │ ├── FrmDeviceData.cs │ │ │ ├── FrmDeviceData.resx │ │ │ ├── FrmDrivers.Designer.cs │ │ │ ├── FrmDrivers.cs │ │ │ ├── FrmDrivers.resx │ │ │ ├── FrmGeneralOptions.Designer.cs │ │ │ ├── FrmGeneralOptions.cs │ │ │ ├── FrmGeneralOptions.resx │ │ │ ├── FrmLineAdd.Designer.cs │ │ │ ├── FrmLineAdd.cs │ │ │ ├── FrmLineAdd.resx │ │ │ ├── FrmLineConfig.Designer.cs │ │ │ ├── FrmLineConfig.cs │ │ │ ├── FrmLineConfig.resx │ │ │ ├── FrmLineStats.Designer.cs │ │ │ ├── FrmLineStats.cs │ │ │ ├── FrmLineStats.resx │ │ │ ├── FrmSync.Designer.cs │ │ │ ├── FrmSync.cs │ │ │ └── FrmSync.resx │ │ ├── Lang │ │ │ ├── ExtCommConfig.en-GB.xml │ │ │ └── ExtCommConfig.ru-RU.xml │ │ ├── Properties │ │ │ ├── Resources.Designer.cs │ │ │ └── Resources.resx │ │ └── Resources │ │ │ ├── add.png │ │ │ ├── add_device.png │ │ │ ├── add_line.png │ │ │ ├── cmd.png │ │ │ ├── create_cnls.png │ │ │ ├── data_source.png │ │ │ ├── delete.png │ │ │ ├── device.png │ │ │ ├── device_inactive.png │ │ │ ├── driver.png │ │ │ ├── error.png │ │ │ ├── general_options.png │ │ │ ├── goto.png │ │ │ ├── info.png │ │ │ ├── line.png │ │ │ ├── line_inactive.png │ │ │ ├── lines.png │ │ │ ├── move_down.png │ │ │ ├── move_up.png │ │ │ ├── options.png │ │ │ ├── poll.png │ │ │ ├── properties.png │ │ │ ├── restart.png │ │ │ ├── start.png │ │ │ ├── stats.png │ │ │ ├── stop.png │ │ │ ├── success.png │ │ │ ├── sync.png │ │ │ └── warning.png │ ├── ExtDepAgent │ │ ├── Downloader.cs │ │ ├── ExtDepAgent.csproj │ │ ├── ExtDepAgentLogic.cs │ │ ├── ExtensionPhrases.cs │ │ ├── Lang │ │ │ ├── ExtDepAgent.en-GB.xml │ │ │ └── ExtDepAgent.ru-RU.xml │ │ ├── ServiceStarter.cs │ │ └── Uploader.cs │ ├── ExtDepPostgreSql │ │ ├── Config │ │ │ ├── ClearBaseMethod.cs │ │ │ ├── ExtDepPostgreSql.xml │ │ │ └── ExtensionConfig.cs │ │ ├── Downloader.cs │ │ ├── ExtDepPostgreSql.csproj │ │ ├── ExtDepPostgreSqlLogic.cs │ │ ├── ExtensionPhrases.cs │ │ ├── Lang │ │ │ ├── ExtDepPostgreSql.en-GB.xml │ │ │ └── ExtDepPostgreSql.ru-RU.xml │ │ └── Uploader.cs │ ├── ExtExternalTools │ │ ├── Config │ │ │ ├── ExtExternalTools.xml │ │ │ ├── ExtensionConfig.cs │ │ │ └── ToolItemConfig.cs │ │ ├── ExtExternalTools.csproj │ │ ├── ExtExternalToolsLogic.cs │ │ ├── ExtensionPhrases.cs │ │ ├── Forms │ │ │ ├── FrmExtensionConfig.Designer.cs │ │ │ ├── FrmExtensionConfig.cs │ │ │ └── FrmExtensionConfig.resx │ │ ├── Lang │ │ │ ├── ExtExternalTools.en-GB.xml │ │ │ └── ExtExternalTools.ru-RU.xml │ │ └── VarName.cs │ ├── ExtMimicLauncher │ │ ├── Config │ │ │ ├── Browser.cs │ │ │ ├── ExtMimicLauncher.xml │ │ │ └── ExtensionConfig.cs │ │ ├── ExtMimicLauncher.csproj │ │ ├── ExtMimicLauncherLogic.cs │ │ ├── ExtensionPhrases.cs │ │ └── Lang │ │ │ ├── ExtMimicLauncher.en-GB.xml │ │ │ └── ExtMimicLauncher.ru-RU.xml │ ├── ExtProjectTools │ │ ├── Code │ │ │ ├── BaseTableFormat.cs │ │ │ ├── BaseTableItem.cs │ │ │ ├── ChannelMap.cs │ │ │ ├── DeviceMap.cs │ │ │ ├── ExtensionPhrases.cs │ │ │ ├── ExtensionUtils.cs │ │ │ ├── IntegrityCheck.cs │ │ │ └── ObjectMap.cs │ │ ├── Controls │ │ │ ├── CtrlMainMenu.Designer.cs │ │ │ ├── CtrlMainMenu.cs │ │ │ └── CtrlMainMenu.resx │ │ ├── ExtProjectTools.csproj │ │ ├── ExtProjectToolsLogic.cs │ │ ├── Forms │ │ │ ├── FrmCnlClone.Designer.cs │ │ │ ├── FrmCnlClone.cs │ │ │ ├── FrmCnlClone.resx │ │ │ ├── FrmFindObject.Designer.cs │ │ │ ├── FrmFindObject.cs │ │ │ ├── FrmFindObject.resx │ │ │ ├── FrmObjectEditor.Designer.cs │ │ │ ├── FrmObjectEditor.cs │ │ │ ├── FrmObjectEditor.resx │ │ │ ├── FrmPasswordEncrypt.Designer.cs │ │ │ ├── FrmPasswordEncrypt.cs │ │ │ ├── FrmPasswordEncrypt.resx │ │ │ ├── FrmRightMatrix.Designer.cs │ │ │ ├── FrmRightMatrix.cs │ │ │ ├── FrmRightMatrix.resx │ │ │ ├── FrmTableExport.Designer.cs │ │ │ ├── FrmTableExport.cs │ │ │ ├── FrmTableExport.resx │ │ │ ├── FrmTableImport.Designer.cs │ │ │ ├── FrmTableImport.cs │ │ │ └── FrmTableImport.resx │ │ ├── Lang │ │ │ ├── ExtProjectTools.en-GB.xml │ │ │ └── ExtProjectTools.ru-RU.xml │ │ ├── Properties │ │ │ ├── Resources.Designer.cs │ │ │ └── Resources.resx │ │ └── Resources │ │ │ ├── add.png │ │ │ ├── collapse_all.png │ │ │ ├── delete.png │ │ │ ├── find.png │ │ │ ├── matrix.png │ │ │ ├── obj.png │ │ │ ├── refresh.png │ │ │ └── table.png │ ├── ExtServerConfig │ │ ├── Code │ │ │ ├── ExtensionPhrases.cs │ │ │ └── ExtensionUtils.cs │ │ ├── ExtServerConfig.csproj │ │ ├── ExtServerConfigLogic.cs │ │ ├── Forms │ │ │ ├── FrmArchiveAdd.Designer.cs │ │ │ ├── FrmArchiveAdd.cs │ │ │ ├── FrmArchiveAdd.resx │ │ │ ├── FrmArchives.Designer.cs │ │ │ ├── FrmArchives.cs │ │ │ ├── FrmArchives.resx │ │ │ ├── FrmGeneralOptions.Designer.cs │ │ │ ├── FrmGeneralOptions.cs │ │ │ ├── FrmGeneralOptions.resx │ │ │ ├── FrmModules.Designer.cs │ │ │ ├── FrmModules.cs │ │ │ ├── FrmModules.resx │ │ │ └── FrmServerLogs.cs │ │ ├── Lang │ │ │ ├── ExtServerConfig.en-GB.xml │ │ │ └── ExtServerConfig.ru-RU.xml │ │ ├── Properties │ │ │ ├── Resources.Designer.cs │ │ │ └── Resources.resx │ │ └── Resources │ │ │ ├── archive.png │ │ │ ├── general_options.png │ │ │ ├── logs.png │ │ │ └── module.png │ ├── ExtTableEditor │ │ ├── ExtTableEditor.csproj │ │ ├── ExtTableEditorLogic.cs │ │ ├── Forms │ │ │ ├── FrmTableEditor.Designer.cs │ │ │ ├── FrmTableEditor.cs │ │ │ ├── FrmTableEditor.resx │ │ │ ├── FrmTableOptions.Designer.cs │ │ │ ├── FrmTableOptions.cs │ │ │ └── FrmTableOptions.resx │ │ ├── Lang │ │ │ ├── ExtTableEditor.en-GB.xml │ │ │ └── ExtTableEditor.ru-RU.xml │ │ ├── Properties │ │ │ ├── Resources.Designer.cs │ │ │ └── Resources.resx │ │ └── Resources │ │ │ ├── add.png │ │ │ ├── add_empty.png │ │ │ ├── cnl.png │ │ │ ├── delete.png │ │ │ ├── device.png │ │ │ ├── empty.png │ │ │ ├── move_down.png │ │ │ ├── move_up.png │ │ │ ├── options.png │ │ │ └── refresh.png │ ├── ExtWebConfig │ │ ├── Code │ │ │ ├── ExtensionPhrases.cs │ │ │ └── ExtensionUtils.cs │ │ ├── Controls │ │ │ ├── CtrlConnectionOptions.Designer.cs │ │ │ ├── CtrlConnectionOptions.cs │ │ │ ├── CtrlConnectionOptions.resx │ │ │ ├── CtrlDisplayOptions.Designer.cs │ │ │ ├── CtrlDisplayOptions.cs │ │ │ ├── CtrlDisplayOptions.resx │ │ │ ├── CtrlGeneralOptions.Designer.cs │ │ │ ├── CtrlGeneralOptions.cs │ │ │ ├── CtrlGeneralOptions.resx │ │ │ ├── CtrlLoginOptions.Designer.cs │ │ │ ├── CtrlLoginOptions.cs │ │ │ ├── CtrlLoginOptions.resx │ │ │ ├── CtrlPluginAssignment.Designer.cs │ │ │ ├── CtrlPluginAssignment.cs │ │ │ └── CtrlPluginAssignment.resx │ │ ├── ExtWebConfig.csproj │ │ ├── ExtWebConfigLogic.cs │ │ ├── Forms │ │ │ ├── FrmApplicationOptions.Designer.cs │ │ │ ├── FrmApplicationOptions.cs │ │ │ ├── FrmApplicationOptions.resx │ │ │ ├── FrmPlugins.Designer.cs │ │ │ ├── FrmPlugins.cs │ │ │ └── FrmPlugins.resx │ │ ├── Lang │ │ │ ├── ExtWebConfig.en-GB.xml │ │ │ └── ExtWebConfig.ru-RU.xml │ │ ├── Properties │ │ │ ├── Resources.Designer.cs │ │ │ └── Resources.resx │ │ └── Resources │ │ │ ├── app_options.png │ │ │ ├── logs.png │ │ │ └── plugin.png │ ├── ExtWirenBoard │ │ ├── Code │ │ │ ├── ConfigBuilder.cs │ │ │ ├── DeviceConfigEntry.cs │ │ │ ├── ExtensionPhrases.cs │ │ │ ├── Meta │ │ │ │ ├── ControlMeta.cs │ │ │ │ ├── DeviceMeta.cs │ │ │ │ └── Title.cs │ │ │ ├── Models │ │ │ │ ├── ControlModel.cs │ │ │ │ ├── DeviceModel.cs │ │ │ │ └── WirenBoardModel.cs │ │ │ ├── ProjectScript.cs │ │ │ ├── RecentSelection.cs │ │ │ └── TopicReader.cs │ │ ├── Controls │ │ │ ├── CtrlDeviceTree.Designer.cs │ │ │ ├── CtrlDeviceTree.cs │ │ │ ├── CtrlDeviceTree.resx │ │ │ ├── CtrlEntityID.Designer.cs │ │ │ ├── CtrlEntityID.cs │ │ │ ├── CtrlEntityID.resx │ │ │ ├── CtrlExtensionMenu.Designer.cs │ │ │ ├── CtrlExtensionMenu.cs │ │ │ ├── CtrlExtensionMenu.resx │ │ │ ├── CtrlLineSelect.Designer.cs │ │ │ ├── CtrlLineSelect.cs │ │ │ ├── CtrlLineSelect.resx │ │ │ ├── CtrlLog.Designer.cs │ │ │ ├── CtrlLog.cs │ │ │ └── CtrlLog.resx │ │ ├── ExtWirenBoard.csproj │ │ ├── ExtWirenBoardLogic.cs │ │ ├── Forms │ │ │ ├── FrmWirenBoardWizard.Designer.cs │ │ │ ├── FrmWirenBoardWizard.cs │ │ │ └── FrmWirenBoardWizard.resx │ │ ├── Lang │ │ │ ├── ExtWirenBoard.en-GB.xml │ │ │ └── ExtWirenBoard.ru-RU.xml │ │ ├── Properties │ │ │ ├── Resources.Designer.cs │ │ │ └── Resources.resx │ │ └── Resources │ │ │ ├── device.png │ │ │ ├── elem.png │ │ │ ├── wb.png │ │ │ └── wb_error.js │ └── OpenExtensions.sln ├── Res │ ├── app │ │ ├── about │ │ │ ├── About.txt │ │ │ ├── about_en.jpg │ │ │ ├── about_en.psd │ │ │ ├── about_ru.jpg │ │ │ └── about_ru.psd │ │ ├── explorer │ │ │ ├── chrome.png │ │ │ ├── comm.png │ │ │ ├── database.png │ │ │ ├── empty.png │ │ │ ├── file.png │ │ │ ├── folder_closed.png │ │ │ ├── folder_open.png │ │ │ ├── instance.png │ │ │ ├── instances.png │ │ │ ├── project.png │ │ │ ├── server.png │ │ │ ├── table.png │ │ │ └── views.png │ │ ├── forms │ │ │ ├── download_32.png │ │ │ ├── error.png │ │ │ ├── error_32.png │ │ │ ├── info.png │ │ │ ├── key.png │ │ │ ├── success.png │ │ │ ├── success_32.png │ │ │ ├── upload_32.png │ │ │ └── warning.png │ │ ├── lamp.ico │ │ ├── menu │ │ │ ├── about.png │ │ │ ├── add.png │ │ │ ├── blank.png │ │ │ ├── clear.png │ │ │ ├── close.png │ │ │ ├── cmd.png │ │ │ ├── copy.png │ │ │ ├── copy_path.png │ │ │ ├── cut.png │ │ │ ├── delete.png │ │ │ ├── deploy_profile.png │ │ │ ├── download.png │ │ │ ├── find.png │ │ │ ├── help.png │ │ │ ├── move_down.png │ │ │ ├── move_up.png │ │ │ ├── new_file.png │ │ │ ├── new_folder.png │ │ │ ├── open.png │ │ │ ├── open_explorer.png │ │ │ ├── open_file.png │ │ │ ├── options.png │ │ │ ├── paste.png │ │ │ ├── properties.png │ │ │ ├── refresh.png │ │ │ ├── remove_from_list.png │ │ │ ├── rename.png │ │ │ ├── save.png │ │ │ ├── save_all.png │ │ │ ├── start_page.png │ │ │ ├── status.png │ │ │ ├── support.png │ │ │ ├── upload.png │ │ │ └── web.png │ │ └── navigator │ │ │ ├── apply_edit.png │ │ │ ├── cancel_edit.png │ │ │ ├── filter.png │ │ │ ├── filter_set.png │ │ │ ├── move_first.png │ │ │ ├── move_last.png │ │ │ ├── move_next.png │ │ │ ├── move_prev.png │ │ │ └── resize.png │ ├── comm_config │ │ ├── explorer │ │ │ ├── data_source.png │ │ │ ├── device.png │ │ │ ├── device_inactive.png │ │ │ ├── driver.png │ │ │ ├── line.png │ │ │ ├── line_inactive.png │ │ │ ├── lines.png │ │ │ ├── options.png │ │ │ └── stats.png │ │ ├── forms │ │ │ ├── error.png │ │ │ ├── info.png │ │ │ ├── success.png │ │ │ └── warning.png │ │ └── menu │ │ │ ├── add.png │ │ │ ├── add_device.png │ │ │ ├── add_line.png │ │ │ ├── cmd.png │ │ │ ├── create_cnls.png │ │ │ ├── delete.png │ │ │ ├── goto.png │ │ │ ├── move_down.png │ │ │ ├── move_up.png │ │ │ ├── poll.png │ │ │ ├── properties.png │ │ │ ├── restart.png │ │ │ ├── start.png │ │ │ ├── stop.png │ │ │ └── sync.png │ ├── project_tools │ │ ├── matrix.png │ │ └── obj.png │ ├── server_config │ │ ├── archive.png │ │ ├── general_options.png │ │ ├── logs.png │ │ └── module.png │ ├── table_editor │ │ ├── add.png │ │ ├── add_empty.png │ │ ├── cnl.png │ │ ├── delete.png │ │ ├── device.png │ │ ├── empty.png │ │ ├── move_down.png │ │ ├── move_up.png │ │ ├── options.png │ │ └── refresh.png │ ├── web_config │ │ ├── app_options.png │ │ ├── logs.png │ │ └── plugin.png │ └── wiren_board │ │ ├── device.png │ │ ├── elem.png │ │ └── wb.png └── ScadaAdmin │ ├── .editorconfig │ ├── ScadaAdmin.sln │ ├── ScadaAdmin │ ├── Code │ │ ├── AppData.cs │ │ ├── AppPhrases.cs │ │ ├── AppState.cs │ │ ├── AppUtils.cs │ │ ├── BaseTableItem.cs │ │ ├── ColumnBuilder.cs │ │ ├── ColumnInfo.cs │ │ ├── ColumnKind.cs │ │ ├── ColumnLength.cs │ │ ├── ColumnOptions.cs │ │ ├── ContextMenus.cs │ │ ├── ExplorerBuilder.cs │ │ ├── ExplorerNodeType.cs │ │ ├── ExtensionHolder.cs │ │ ├── FileCreator.cs │ │ ├── FileItem.cs │ │ ├── IDeploymentForm.cs │ │ ├── KnownFileType.cs │ │ ├── LiveInstance.cs │ │ └── MainFormState.cs │ ├── Controls │ │ └── Deployment │ │ │ ├── CtrlProfileSelector.Designer.cs │ │ │ ├── CtrlProfileSelector.cs │ │ │ ├── CtrlProfileSelector.resx │ │ │ ├── CtrlTransferOptions.Designer.cs │ │ │ ├── CtrlTransferOptions.cs │ │ │ └── CtrlTransferOptions.resx │ ├── Forms │ │ ├── Deployment │ │ │ ├── FrmDownloadConfig.Designer.cs │ │ │ ├── FrmDownloadConfig.cs │ │ │ ├── FrmDownloadConfig.resx │ │ │ ├── FrmInstanceProfile.Designer.cs │ │ │ ├── FrmInstanceProfile.cs │ │ │ ├── FrmInstanceProfile.resx │ │ │ ├── FrmInstanceStatus.Designer.cs │ │ │ ├── FrmInstanceStatus.cs │ │ │ ├── FrmInstanceStatus.resx │ │ │ ├── FrmProfileEdit.Designer.cs │ │ │ ├── FrmProfileEdit.cs │ │ │ ├── FrmProfileEdit.resx │ │ │ ├── FrmTransfer.Designer.cs │ │ │ ├── FrmTransfer.cs │ │ │ ├── FrmTransfer.resx │ │ │ ├── FrmUploadConfig.Designer.cs │ │ │ ├── FrmUploadConfig.cs │ │ │ └── FrmUploadConfig.resx │ │ ├── FrmAbout.cs │ │ ├── FrmAbout.designer.cs │ │ ├── FrmAbout.resx │ │ ├── FrmFileNew.Designer.cs │ │ ├── FrmFileNew.cs │ │ ├── FrmFileNew.resx │ │ ├── FrmInstanceEdit.Designer.cs │ │ ├── FrmInstanceEdit.cs │ │ ├── FrmInstanceEdit.resx │ │ ├── FrmItemName.Designer.cs │ │ ├── FrmItemName.cs │ │ ├── FrmItemName.resx │ │ ├── FrmMain.Designer.cs │ │ ├── FrmMain.cs │ │ ├── FrmMain.resx │ │ ├── FrmProjectNew.Designer.cs │ │ ├── FrmProjectNew.cs │ │ ├── FrmProjectNew.resx │ │ ├── FrmProjectProps.Designer.cs │ │ ├── FrmProjectProps.cs │ │ ├── FrmProjectProps.resx │ │ ├── FrmStartPage.Designer.cs │ │ ├── FrmStartPage.cs │ │ ├── FrmStartPage.resx │ │ ├── FrmTextEditor.Designer.cs │ │ ├── FrmTextEditor.cs │ │ ├── FrmTextEditor.resx │ │ ├── Tables │ │ │ ├── FrmBaseTable.Designer.cs │ │ │ ├── FrmBaseTable.cs │ │ │ ├── FrmBaseTable.resx │ │ │ ├── FrmCnl.Designer.cs │ │ │ ├── FrmCnl.cs │ │ │ ├── FrmCnl.resx │ │ │ ├── FrmColorDialog.cs │ │ │ ├── FrmColorDialog.designer.cs │ │ │ ├── FrmColorDialog.resx │ │ │ ├── FrmFilter.Designer.cs │ │ │ ├── FrmFilter.cs │ │ │ ├── FrmFilter.resx │ │ │ ├── FrmFind.cs │ │ │ ├── FrmFind.designer.cs │ │ │ ├── FrmFind.resx │ │ │ ├── FrmLimCreate.Designer.cs │ │ │ ├── FrmLimCreate.cs │ │ │ ├── FrmLimCreate.resx │ │ │ ├── FrmPassword.Designer.cs │ │ │ ├── FrmPassword.cs │ │ │ ├── FrmPassword.resx │ │ │ ├── FrmTextDialog.cs │ │ │ ├── FrmTextDialog.designer.cs │ │ │ └── FrmTextDialog.resx │ │ └── Tools │ │ │ ├── FrmConfig.Designer.cs │ │ │ ├── FrmConfig.cs │ │ │ ├── FrmConfig.resx │ │ │ ├── FrmCulture.Designer.cs │ │ │ ├── FrmCulture.cs │ │ │ ├── FrmCulture.resx │ │ │ ├── FrmFileAssociation.Designer.cs │ │ │ ├── FrmFileAssociation.cs │ │ │ └── FrmFileAssociation.resx │ ├── Program.cs │ ├── Properties │ │ ├── Resources.Designer.cs │ │ └── Resources.resx │ ├── Resources │ │ ├── about.png │ │ ├── add.png │ │ ├── add_device.png │ │ ├── add_line.png │ │ ├── apply_edit.png │ │ ├── blank.png │ │ ├── cancel_edit.png │ │ ├── chrome.png │ │ ├── clear.png │ │ ├── close.png │ │ ├── cmd.png │ │ ├── comm.png │ │ ├── config.png │ │ ├── copy.png │ │ ├── copy_path.png │ │ ├── create_cnls.png │ │ ├── cut.png │ │ ├── database.png │ │ ├── delete.png │ │ ├── deploy_profile.png │ │ ├── download.png │ │ ├── download_32.png │ │ ├── empty.png │ │ ├── error.png │ │ ├── error_32.png │ │ ├── file.png │ │ ├── filter.png │ │ ├── filter_set.png │ │ ├── find.png │ │ ├── folder_closed.png │ │ ├── folder_open.png │ │ ├── help.png │ │ ├── import.png │ │ ├── info.png │ │ ├── instance.png │ │ ├── instances.png │ │ ├── key.png │ │ ├── move_down.png │ │ ├── move_first.png │ │ ├── move_last.png │ │ ├── move_next.png │ │ ├── move_prev.png │ │ ├── move_up.png │ │ ├── new_file.png │ │ ├── new_folder.png │ │ ├── open.png │ │ ├── open_explorer.png │ │ ├── open_file.png │ │ ├── options.png │ │ ├── paste.png │ │ ├── project.png │ │ ├── properties.png │ │ ├── refresh.png │ │ ├── remove_from_list.png │ │ ├── rename.png │ │ ├── resize.png │ │ ├── restart.png │ │ ├── save.png │ │ ├── save_all.png │ │ ├── server.png │ │ ├── settings.png │ │ ├── start.png │ │ ├── start_page.png │ │ ├── status.png │ │ ├── stop.png │ │ ├── success.png │ │ ├── success_32.png │ │ ├── support.png │ │ ├── sync.png │ │ ├── table.png │ │ ├── upload.png │ │ ├── upload_32.png │ │ ├── views.png │ │ ├── warning.png │ │ └── web.png │ ├── ScadaAdmin.csproj │ ├── Templates │ │ ├── EmptyProject.en-GB │ │ │ ├── BaseXML │ │ │ │ ├── Archive.xml │ │ │ │ ├── ArchiveKind.xml │ │ │ │ ├── CnlStatus.xml │ │ │ │ ├── CnlType.xml │ │ │ │ ├── DataType.xml │ │ │ │ ├── DevType.xml │ │ │ │ ├── Format.xml │ │ │ │ ├── Obj.xml │ │ │ │ ├── Quantity.xml │ │ │ │ ├── Role.xml │ │ │ │ ├── Script.xml │ │ │ │ ├── Unit.xml │ │ │ │ ├── User.xml │ │ │ │ └── ViewType.xml │ │ │ ├── Deployment.xml │ │ │ └── EmptyProject.en-GB.rsproj │ │ └── EmptyProject.ru-RU │ │ │ ├── BaseXML │ │ │ ├── Archive.xml │ │ │ ├── ArchiveKind.xml │ │ │ ├── CnlStatus.xml │ │ │ ├── CnlType.xml │ │ │ ├── DataType.xml │ │ │ ├── DevType.xml │ │ │ ├── Format.xml │ │ │ ├── Quantity.xml │ │ │ ├── Role.xml │ │ │ ├── Unit.xml │ │ │ └── ViewType.xml │ │ │ └── EmptyProject.ru-RU.rsproj │ └── lamp.ico │ ├── ScadaAdminCommon.Subset │ └── ScadaAdminCommon.Subset.csproj │ └── ScadaAdminCommon │ ├── AdminDirs.cs │ ├── AdminMessage.cs │ ├── AdminUtils.cs │ ├── Config │ ├── AdminConfig.cs │ ├── ChannelNumberingOptions.cs │ ├── NumberingOptions.cs │ └── ScadaAdminConfig.xml │ ├── Deployment │ ├── DeploymentConfig.cs │ ├── DeploymentProfile.cs │ ├── DownloadOptions.cs │ ├── ITransferControl.cs │ ├── ProgressTracker.cs │ └── UploadOptions.cs │ ├── Extensions │ ├── ExtensionFactory.cs │ ├── ExtensionLogic.cs │ ├── IAdminContext.cs │ ├── IMainForm.cs │ ├── KnownExtensionMessage.cs │ ├── MessageEventArgs.cs │ └── OpenFileResult.cs │ ├── Forms │ ├── FrmLogs.Designer.cs │ ├── FrmLogs.cs │ ├── FrmLogs.resx │ ├── FrmRegistration.Designer.cs │ ├── FrmRegistration.cs │ └── FrmRegistration.resx │ ├── Lang │ ├── AdminPhrases.cs │ ├── ScadaAdmin.en-GB.xml │ └── ScadaAdmin.ru-RU.xml │ ├── Project │ ├── CommApp.cs │ ├── ConfigDatabase.cs │ ├── ProjectApp.cs │ ├── ProjectInstance.cs │ ├── ProjectVersion.cs │ ├── ProjectViews.cs │ ├── ScadaProject.cs │ ├── ServerApp.cs │ └── WebApp.cs │ └── ScadaAdminCommon.csproj ├── ScadaAgent ├── ScadaAgent │ ├── AgentClient │ │ ├── AgentClient.cs │ │ └── AgentClient.csproj │ ├── ScadaAgent.sln │ ├── ScadaAgentApp │ │ ├── Program.cs │ │ └── ScadaAgentApp.csproj │ ├── ScadaAgentCommon │ │ ├── Config │ │ │ ├── AgentConfig.cs │ │ │ ├── InstanceOptions.cs │ │ │ ├── ReverseConnectionOptions.cs │ │ │ ├── ScadaAgentConfig.xml │ │ │ └── UserCredentials.cs │ │ └── ScadaAgentCommon.csproj │ ├── ScadaAgentEngine │ │ ├── AgentListener.cs │ │ ├── AgentRoleID.cs │ │ ├── ClientTag.cs │ │ ├── CoreLogic.cs │ │ ├── EnginePhrases.cs │ │ ├── EngineUtils.cs │ │ ├── Manager.cs │ │ ├── PathBuilder.cs │ │ ├── ReverseClient.cs │ │ ├── ScadaAgentEngine.csproj │ │ └── ScadaInstance.cs │ └── ScadaAgentWkr │ │ ├── Program.cs │ │ ├── Properties │ │ └── launchSettings.json │ │ ├── ScadaAgentWkr.csproj │ │ ├── Worker.cs │ │ ├── appsettings.Development.json │ │ └── appsettings.json └── Script │ ├── Linux │ ├── scadaagent6.service │ ├── svc_restart.sh │ ├── svc_start.sh │ └── svc_stop.sh │ └── Windows │ ├── svc_install.bat │ ├── svc_restart.bat │ ├── svc_start.bat │ ├── svc_stop.bat │ └── svc_uninstall.bat ├── ScadaComm ├── OpenDrivers │ ├── .editorconfig │ ├── DrvCnlBasic.Logic │ │ ├── DrvCnlBasic.Logic.csproj │ │ ├── DrvCnlBasicLogic.cs │ │ ├── SerialPortChannelLogic.cs │ │ ├── SerialPortConnection.cs │ │ ├── TcpClientChannelLogic.cs │ │ ├── TcpConnection.cs │ │ ├── TcpServerChannelLogic.cs │ │ ├── UdpChannelLogic.cs │ │ └── UdpConnection.cs │ ├── DrvCnlBasic.Shared │ │ ├── ChannelTypeCode.cs │ │ ├── DriverUtils.cs │ │ ├── DrvCnlBasic.Shared.projitems │ │ ├── DrvCnlBasic.Shared.shproj │ │ ├── SerialPortChannelOptions.cs │ │ ├── TcpClientChannelOptions.cs │ │ ├── TcpServerChannelOptions.cs │ │ └── UdpChannelOptions.cs │ ├── DrvCnlBasic.View │ │ ├── BasicChannelView.cs │ │ ├── DriverPhrases.cs │ │ ├── DrvCnlBasic.View.csproj │ │ ├── DrvCnlBasicView.cs │ │ ├── Forms │ │ │ ├── FrmSerialPortChannelOptions.Designer.cs │ │ │ ├── FrmSerialPortChannelOptions.cs │ │ │ ├── FrmSerialPortChannelOptions.resx │ │ │ ├── FrmTcpClientChannelOptions.Designer.cs │ │ │ ├── FrmTcpClientChannelOptions.cs │ │ │ ├── FrmTcpClientChannelOptions.resx │ │ │ ├── FrmTcpServerChannelOptions.Designer.cs │ │ │ ├── FrmTcpServerChannelOptions.cs │ │ │ ├── FrmTcpServerChannelOptions.resx │ │ │ ├── FrmUdpChannelOptions.Designer.cs │ │ │ ├── FrmUdpChannelOptions.cs │ │ │ └── FrmUdpChannelOptions.resx │ │ ├── Lang │ │ │ ├── DrvCnlBasic.en-GB.xml │ │ │ └── DrvCnlBasic.ru-RU.xml │ │ ├── Properties │ │ │ ├── Resources.Designer.cs │ │ │ └── Resources.resx │ │ └── Resources │ │ │ └── info.png │ ├── DrvCnlMqtt.Logic │ │ ├── DrvCnlMqtt.Logic.csproj │ │ ├── DrvCnlMqttLogic.cs │ │ └── MqttClientChannelLogic.cs │ ├── DrvCnlMqtt.View │ │ ├── DrvCnlMqtt.View.csproj │ │ ├── DrvCnlMqttView.cs │ │ ├── Forms │ │ │ ├── FrmMqttClientChannelOptions.Designer.cs │ │ │ ├── FrmMqttClientChannelOptions.cs │ │ │ └── FrmMqttClientChannelOptions.resx │ │ ├── Lang │ │ │ ├── DrvCnlMqtt.en-GB.xml │ │ │ └── DrvCnlMqtt.ru-RU.xml │ │ └── MqttClientChannelView.cs │ ├── DrvDbImport.Logic │ │ ├── DevDbImportLogic.cs │ │ ├── DrvDbImport.Logic.csproj │ │ └── DrvDbImportLogic.cs │ ├── DrvDbImport.Shared │ │ ├── Config │ │ │ ├── CommandConfig.cs │ │ │ ├── DbDeviceConfig.cs │ │ │ ├── DbLineConfig.cs │ │ │ ├── DrvDbImport_001.xml │ │ │ ├── DrvDbImport_line001.xml │ │ │ └── QueryConfig.cs │ │ ├── DriverUtils.cs │ │ ├── DrvDbImport.Shared.projitems │ │ └── DrvDbImport.Shared.shproj │ ├── DrvDbImport.View │ │ ├── Controls │ │ │ ├── CtrlCommand.Designer.cs │ │ │ ├── CtrlCommand.cs │ │ │ ├── CtrlCommand.resx │ │ │ ├── CtrlQuery.Designer.cs │ │ │ ├── CtrlQuery.cs │ │ │ └── CtrlQuery.resx │ │ ├── DevDbImportView.cs │ │ ├── DriverPhrases.cs │ │ ├── DrvDbImport.View.csproj │ │ ├── DrvDbImportView.cs │ │ ├── Forms │ │ │ ├── FrmDeviceConfig.Designer.cs │ │ │ ├── FrmDeviceConfig.cs │ │ │ └── FrmDeviceConfig.resx │ │ ├── Lang │ │ │ ├── DrvDbImport.en-GB.xml │ │ │ └── DrvDbImport.ru-RU.xml │ │ ├── Properties │ │ │ ├── Resource.Designer.cs │ │ │ └── Resource.resx │ │ └── Resources │ │ │ ├── cmd.png │ │ │ ├── cmds.png │ │ │ ├── collapse_all.png │ │ │ ├── connect.png │ │ │ ├── copy.png │ │ │ ├── delete.png │ │ │ ├── info.png │ │ │ ├── move_down.png │ │ │ ├── move_up.png │ │ │ ├── query.png │ │ │ ├── query_cur.png │ │ │ ├── query_cur_inactive.png │ │ │ └── warning.png │ ├── DrvDsMqtt.Logic │ │ ├── DeviceTopics.cs │ │ ├── DrvDsMqtt.Logic.csproj │ │ ├── DrvDsMqttLogic.cs │ │ ├── MqttDSL.cs │ │ └── ReceivedCommand.cs │ ├── DrvDsMqtt.Shared │ │ ├── DriverUtils.cs │ │ ├── DrvDsMqtt.Shared.projitems │ │ ├── DrvDsMqtt.Shared.shproj │ │ ├── MqttDSO.cs │ │ └── PublishOptions.cs │ ├── DrvDsMqtt.View │ │ ├── DrvDsMqtt.View.csproj │ │ ├── DrvDsMqttView.cs │ │ ├── Forms │ │ │ ├── FrmMqttDSO.Designer.cs │ │ │ ├── FrmMqttDSO.cs │ │ │ └── FrmMqttDSO.resx │ │ ├── Lang │ │ │ ├── DrvDsMqtt.en-GB.xml │ │ │ └── DrvDsMqtt.ru-RU.xml │ │ ├── MqttDSV.cs │ │ ├── Properties │ │ │ ├── Resources.Designer.cs │ │ │ └── Resources.resx │ │ └── Resources │ │ │ └── find.png │ ├── DrvDsOpcUaServer.Common │ │ ├── Config │ │ │ ├── DrvDsOpcUaServer.Linux.xml │ │ │ ├── DrvDsOpcUaServer.Win.xml │ │ │ └── OpcUaServerDSO.cs │ │ ├── DriverUtils.cs │ │ └── DrvDsOpcUaServer.Common.csproj │ ├── DrvDsOpcUaServer.Logic │ │ ├── CustomServer.cs │ │ ├── DrvDsOpcUaServer.Logic.csproj │ │ ├── DrvDsOpcUaServerLogic.cs │ │ ├── NodeManager.cs │ │ └── OpcUaServerDSL.cs │ ├── DrvDsOpcUaServer.View │ │ ├── DriverPhrases.cs │ │ ├── DrvDsOpcUaServer.View.csproj │ │ ├── DrvDsOpcUaServerView.cs │ │ ├── Forms │ │ │ ├── FrmOpcUaServerDSO.Designer.cs │ │ │ ├── FrmOpcUaServerDSO.cs │ │ │ └── FrmOpcUaServerDSO.resx │ │ ├── Lang │ │ │ ├── DrvDsOpcUaServer.en-GB.xml │ │ │ └── DrvDsOpcUaServer.ru-RU.xml │ │ ├── OpcUaServerDSV.cs │ │ ├── Properties │ │ │ ├── Resources.Designer.cs │ │ │ └── Resources.resx │ │ └── Resources │ │ │ ├── find.png │ │ │ ├── linux.png │ │ │ ├── open.png │ │ │ └── windows.png │ ├── DrvDsScadaServer.Logic │ │ ├── DrvDsScadaServer.Logic.csproj │ │ ├── DrvDsScadaServerLogic.cs │ │ └── ScadaServerDSL.cs │ ├── DrvDsScadaServer.Shared │ │ ├── Config │ │ │ ├── DriverConfig.cs │ │ │ ├── DrvDsScadaServer.xml │ │ │ └── ScadaServerDSO.cs │ │ ├── DriverUtils.cs │ │ ├── DrvDsScadaServer.Shared.projitems │ │ └── DrvDsScadaServer.Shared.shproj │ ├── DrvDsScadaServer.View │ │ ├── DrvDsScadaServer.View.csproj │ │ ├── DrvDsScadaServerView.cs │ │ ├── Forms │ │ │ ├── FrmConnManager.Designer.cs │ │ │ ├── FrmConnManager.cs │ │ │ ├── FrmConnManager.resx │ │ │ ├── FrmScadaServerDSO.Designer.cs │ │ │ ├── FrmScadaServerDSO.cs │ │ │ └── FrmScadaServerDSO.resx │ │ ├── Lang │ │ │ ├── DrvDsScadaServer.en-GB.xml │ │ │ └── DrvDsScadaServer.ru-RU.xml │ │ └── ScadaServerDSV.cs │ ├── DrvEnronModbus.Logic │ │ ├── DevEnronModbusLogic.cs │ │ ├── DrvEnronModbus.Logic.csproj │ │ ├── DrvEnronModbusLogic.cs │ │ └── Protocol │ │ │ ├── EnronCmd.cs │ │ │ ├── EnronDeviceModel.cs │ │ │ ├── EnronElem.cs │ │ │ └── EnronElemGroup.cs │ ├── DrvEnronModbus.Shared │ │ ├── Config │ │ │ ├── EnronCmdConfig.cs │ │ │ ├── EnronDeviceTemplate.cs │ │ │ ├── EnronElemConfig.cs │ │ │ └── EnronElemGroupConfig.cs │ │ ├── DrvEnronModbus.Shared.projitems │ │ └── DrvEnronModbus.Shared.shproj │ ├── DrvEnronModbus.View │ │ ├── DrvEnronModbus.View.csproj │ │ ├── DrvEnronModbusView.cs │ │ └── EnronUi.cs │ ├── DrvModbus.Common │ │ ├── Config │ │ │ ├── CmdConfig.cs │ │ │ ├── DataUnitConfig.cs │ │ │ ├── DeviceTemplate.cs │ │ │ ├── DeviceTemplateOptions.cs │ │ │ ├── ElemConfig.cs │ │ │ └── ElemGroupConfig.cs │ │ ├── DrvModbus.Common.csproj │ │ ├── ModbusPhrases.cs │ │ ├── Protocol │ │ │ ├── DataBlock.cs │ │ │ ├── DataUnit.cs │ │ │ ├── DeviceModel.cs │ │ │ ├── Elem.cs │ │ │ ├── ElemGroup.cs │ │ │ ├── ElemType.cs │ │ │ ├── ExceptionCode.cs │ │ │ ├── FunctionCode.cs │ │ │ ├── ModbusCmd.cs │ │ │ ├── ModbusUtils.cs │ │ │ └── TransMode.cs │ │ └── Templates │ │ │ ├── DrvModbus_Adam6015.xml │ │ │ ├── DrvModbus_Bolid_S2000-T.xml │ │ │ ├── DrvModbus_OWEN_MDDV.xml │ │ │ ├── DrvModbus_OWEN_MU110-16R.xml │ │ │ ├── DrvModbus_OWEN_MV110-16D.xml │ │ │ ├── DrvModbus_OWEN_MV110-16D_DI.xml │ │ │ ├── DrvModbus_OWEN_MV110-8A.xml │ │ │ ├── DrvModbus_OWEN_MV110-8AS.xml │ │ │ └── DrvModbus_OWEN_MV110-8DF.xml │ ├── DrvModbus.Logic │ │ ├── DevModbusLogic.cs │ │ ├── DrvModbus.Logic.csproj │ │ ├── DrvModbusLogic.cs │ │ └── ModbusPoll.cs │ ├── DrvModbus.View │ │ ├── Controls │ │ │ ├── CtrlCmd.Designer.cs │ │ │ ├── CtrlCmd.cs │ │ │ ├── CtrlCmd.resx │ │ │ ├── CtrlElem.Designer.cs │ │ │ ├── CtrlElem.cs │ │ │ ├── CtrlElem.resx │ │ │ ├── CtrlElemGroup.Designer.cs │ │ │ ├── CtrlElemGroup.cs │ │ │ └── CtrlElemGroup.resx │ │ ├── CustomUi.cs │ │ ├── DevModbusView.cs │ │ ├── DriverPhrases.cs │ │ ├── DrvModbus.View.csproj │ │ ├── DrvModbusView.cs │ │ ├── ElemTag.cs │ │ ├── Forms │ │ │ ├── FrmDeviceProps.Designer.cs │ │ │ ├── FrmDeviceProps.cs │ │ │ ├── FrmDeviceProps.resx │ │ │ ├── FrmDeviceTemplate.Designer.cs │ │ │ ├── FrmDeviceTemplate.cs │ │ │ ├── FrmDeviceTemplate.resx │ │ │ ├── FrmTemplateOptions.Designer.cs │ │ │ ├── FrmTemplateOptions.cs │ │ │ └── FrmTemplateOptions.resx │ │ ├── Lang │ │ │ ├── DrvModbus.en-GB.xml │ │ │ └── DrvModbus.ru-RU.xml │ │ ├── Properties │ │ │ ├── Resources.Designer.cs │ │ │ └── Resources.resx │ │ └── Resources │ │ │ ├── blank.png │ │ │ ├── clone.png │ │ │ ├── cmd.png │ │ │ ├── cmds.png │ │ │ ├── collapse_all.png │ │ │ ├── delete.png │ │ │ ├── edit.png │ │ │ ├── elem.png │ │ │ ├── group.png │ │ │ ├── group_inactive.png │ │ │ ├── move_down.png │ │ │ ├── move_up.png │ │ │ ├── open.png │ │ │ ├── options.png │ │ │ ├── options_extended.png │ │ │ ├── save.png │ │ │ ├── save_as.png │ │ │ ├── validate.png │ │ │ └── warning.png │ ├── DrvMqtt.Common │ │ ├── DrvMqtt.Common.csproj │ │ ├── IMqttClientChannel.cs │ │ ├── ISubscriber.cs │ │ ├── MessageVar.cs │ │ ├── MqttClientHelper.cs │ │ ├── MqttConnectionOptions.cs │ │ ├── MqttUtils.cs │ │ ├── ReceivedMessage.cs │ │ └── SubscriptionRecord.cs │ ├── DrvMqttClient.Common │ │ ├── Config │ │ │ ├── BaseItemConfig.cs │ │ │ ├── CommandConfig.cs │ │ │ ├── CommandList.cs │ │ │ ├── DeviceOptions.cs │ │ │ ├── DrvMqttClient_001.xml │ │ │ ├── MqttClientDeviceConfig.cs │ │ │ ├── MyParam2.js │ │ │ ├── SubscriptionConfig.cs │ │ │ └── SubscriptionList.cs │ │ ├── DriverUtils.cs │ │ └── DrvMqttClient.Common.csproj │ ├── DrvMqttClient.Logic │ │ ├── DevMqttClientLogic.cs │ │ ├── DrvMqttClient.Logic.csproj │ │ └── DrvMqttClientLogic.cs │ ├── DrvMqttClient.View │ │ ├── DevMqttClientView.cs │ │ ├── DriverPhrases.cs │ │ ├── DrvMqttClient.View.csproj │ │ ├── DrvMqttClientView.cs │ │ ├── Lang │ │ │ ├── DrvMqttClient.en-GB.xml │ │ │ └── DrvMqttClient.ru-RU.xml │ │ ├── MqttClientConfigProvider.cs │ │ ├── Properties │ │ │ ├── Resources.Designer.cs │ │ │ └── Resources.resx │ │ └── Resources │ │ │ ├── cmd.png │ │ │ ├── elem.png │ │ │ ├── folder_closed.png │ │ │ ├── folder_open.png │ │ │ └── options.png │ ├── DrvMqttPublisher.Logic │ │ ├── DevMqttPublisherLogic.cs │ │ ├── DrvMqttPublisher.Logic.csproj │ │ └── DrvMqttPublisherLogic.cs │ ├── DrvMqttPublisher.Shared │ │ ├── Config │ │ │ ├── DeviceOptions.cs │ │ │ ├── DrvMqttPublisher_002.xml │ │ │ ├── ItemConfig.cs │ │ │ ├── ItemList.cs │ │ │ └── MqttPublisherDeviceConfig.cs │ │ ├── DriverUtils.cs │ │ ├── DrvMqttPublisher.Shared.projitems │ │ └── DrvMqttPublisher.Shared.shproj │ ├── DrvMqttPublisher.View │ │ ├── DevMqttPublisherView.cs │ │ ├── DriverPhrases.cs │ │ ├── DrvMqttPublisher.View.csproj │ │ ├── DrvMqttPublisherView.cs │ │ ├── Lang │ │ │ ├── DrvMqttPublisher.en-GB.xml │ │ │ └── DrvMqttPublisher.ru-RU.xml │ │ ├── MqttPublisherConfigProvider.cs │ │ ├── Properties │ │ │ ├── Resources.Designer.cs │ │ │ └── Resources.resx │ │ └── Resources │ │ │ ├── elem.png │ │ │ ├── folder_closed.png │ │ │ ├── folder_open.png │ │ │ └── options.png │ ├── DrvOpcUa.Common │ │ ├── Config │ │ │ ├── AuthenticationMode.cs │ │ │ ├── CommandConfig.cs │ │ │ ├── DrvOpcUa.Linux.xml │ │ │ ├── DrvOpcUa.Win.xml │ │ │ ├── DrvOpcUa_001.xml │ │ │ ├── DrvOpcUa_line001.xml │ │ │ ├── ItemConfig.cs │ │ │ ├── LineSubscriptionOptions.cs │ │ │ ├── OpcConnectionOptions.cs │ │ │ ├── OpcDeviceConfig.cs │ │ │ ├── OpcLineConfig.cs │ │ │ ├── SecurityPolicy.cs │ │ │ ├── SubscriptionConfig.cs │ │ │ ├── SubscriptionCreationMode.cs │ │ │ └── TagNamingMode.cs │ │ ├── DriverUtils.cs │ │ ├── DrvOpcUa.Common.csproj │ │ ├── KnownTypes.cs │ │ └── OpcClientHelperBase.cs │ ├── DrvOpcUa.Logic │ │ ├── DevOpcUaLogic.cs │ │ ├── DrvOpcUa.Logic.csproj │ │ ├── DrvOpcUaLogic.cs │ │ ├── ItemTag.cs │ │ ├── OpcClientHelper.cs │ │ └── SubscriptionTag.cs │ ├── DrvOpcUa.View │ │ ├── Controls │ │ │ ├── CtrlCommand.Designer.cs │ │ │ ├── CtrlCommand.cs │ │ │ ├── CtrlCommand.resx │ │ │ ├── CtrlEmptyItem.Designer.cs │ │ │ ├── CtrlEmptyItem.cs │ │ │ ├── CtrlEmptyItem.resx │ │ │ ├── CtrlItem.Designer.cs │ │ │ ├── CtrlItem.cs │ │ │ ├── CtrlItem.resx │ │ │ ├── CtrlSubscription.Designer.cs │ │ │ ├── CtrlSubscription.cs │ │ │ └── CtrlSubscription.resx │ │ ├── DevOpcUaView.cs │ │ ├── DriverPhrases.cs │ │ ├── DrvOpcUa.View.csproj │ │ ├── DrvOpcUaView.cs │ │ ├── Forms │ │ │ ├── FrmDeviceConfig.Designer.cs │ │ │ ├── FrmDeviceConfig.cs │ │ │ ├── FrmDeviceConfig.resx │ │ │ ├── FrmNodeAttr.Designer.cs │ │ │ ├── FrmNodeAttr.cs │ │ │ ├── FrmNodeAttr.resx │ │ │ ├── FrmSecurityOptions.Designer.cs │ │ │ ├── FrmSecurityOptions.cs │ │ │ └── FrmSecurityOptions.resx │ │ ├── ItemConfigTag.cs │ │ ├── Lang │ │ │ ├── DrvOpcUa.en-GB.xml │ │ │ └── DrvOpcUa.ru-RU.xml │ │ ├── OpcClientHelperView.cs │ │ ├── Properties │ │ │ ├── Resources.Designer.cs │ │ │ └── Resources.resx │ │ ├── Resources │ │ │ ├── add.png │ │ │ ├── attributes.png │ │ │ ├── cmd.png │ │ │ ├── connect.png │ │ │ ├── delete.png │ │ │ ├── disconnect.png │ │ │ ├── empty.png │ │ │ ├── folder_add.png │ │ │ ├── folder_closed.png │ │ │ ├── folder_open.png │ │ │ ├── info.png │ │ │ ├── lock.png │ │ │ ├── method.png │ │ │ ├── move_down.png │ │ │ ├── move_up.png │ │ │ ├── obj.png │ │ │ ├── variable.png │ │ │ └── warning.png │ │ └── ServerNodeTag.cs │ ├── DrvSimulator.Logic │ │ ├── DevSimulatorLogic.cs │ │ ├── DrvSimulator.Logic.csproj │ │ └── DrvSimulatorLogic.cs │ ├── DrvSimulator.Shared │ │ ├── CnlPrototypeFactory.cs │ │ ├── DrvSimulator.Shared.projitems │ │ ├── DrvSimulator.Shared.shproj │ │ └── TagCode.cs │ ├── DrvSimulator.View │ │ ├── DevSimulatorView.cs │ │ ├── DrvSimulator.View.csproj │ │ └── DrvSimulatorView.cs │ ├── DrvTester.Logic │ │ ├── DevTesterLogic.cs │ │ ├── DrvTester.Logic.csproj │ │ └── DrvTesterLogic.cs │ ├── DrvTester.Shared │ │ ├── DrvTester.Shared.projitems │ │ ├── DrvTester.Shared.shproj │ │ ├── ReadMode.cs │ │ └── TesterOptions.cs │ ├── DrvTester.View │ │ ├── DevTesterView.cs │ │ ├── DrvTester.View.csproj │ │ └── DrvTesterView.cs │ └── OpenDrivers.sln ├── OpenDrivers2 │ ├── .editorconfig │ ├── AddressBook.Forms │ │ ├── AddressBook.Forms.csproj │ │ ├── FrmAddressBook.cs │ │ ├── FrmAddressBook.designer.cs │ │ ├── FrmAddressBook.resx │ │ ├── Lang │ │ │ ├── AddressBook.en-GB.xml │ │ │ ├── AddressBook.ru-RU.xml │ │ │ └── AddressBookPhrases.cs │ │ ├── Properties │ │ │ ├── Resources.Designer.cs │ │ │ └── Resources.resx │ │ └── Resources │ │ │ ├── book.png │ │ │ ├── contact.png │ │ │ ├── delete.png │ │ │ ├── edit.png │ │ │ ├── email.png │ │ │ ├── folder_add.png │ │ │ ├── folder_closed.png │ │ │ ├── folder_open.png │ │ │ └── phone.png │ ├── AddressBook │ │ ├── AddressBook.cs │ │ ├── AddressBook.csproj │ │ ├── AddressBookItem.cs │ │ ├── AddressBookUtils.cs │ │ ├── Contact.cs │ │ ├── ContactGroup.cs │ │ ├── Email.cs │ │ └── PhoneNumber.cs │ ├── DrvCsvReader.Logic │ │ ├── DevCsvReaderLogic.cs │ │ ├── DrvCsvReader.Logic.csproj │ │ ├── DrvCsvReaderLogic.cs │ │ └── Storage │ │ │ └── DrvCsvReader_001.csv │ ├── DrvCsvReader.Shared │ │ ├── CsvReaderOptions.cs │ │ ├── DemoPeriod.cs │ │ ├── DriverUtils.cs │ │ ├── DrvCsvReader.Shared.projitems │ │ ├── DrvCsvReader.Shared.shproj │ │ ├── ReadMode.cs │ │ └── TagCode.cs │ ├── DrvCsvReader.View │ │ ├── DevCsvReaderView.cs │ │ ├── DrvCsvReader.View.csproj │ │ └── DrvCsvReaderView.cs │ ├── DrvEmail.Logic │ │ ├── DevEmailLogic.cs │ │ ├── DrvEmail.Logic.csproj │ │ └── DrvEmailLogic.cs │ ├── DrvEmail.Shared │ │ ├── DriverUtils.cs │ │ ├── DrvEmail.Shared.projitems │ │ ├── DrvEmail.Shared.shproj │ │ ├── EmailDeviceConfig.cs │ │ ├── TagCode.cs │ │ └── TagName.cs │ ├── DrvEmail.View │ │ ├── DevEmailView.cs │ │ ├── DrvEmail.View.csproj │ │ ├── DrvEmailView.cs │ │ ├── Forms │ │ │ ├── FrmConfig.Designer.cs │ │ │ ├── FrmConfig.cs │ │ │ └── FrmConfig.resx │ │ └── Lang │ │ │ ├── DrvEmail.en-GB.xml │ │ │ └── DrvEmail.ru-RU.xml │ ├── DrvHttpNotif.Logic │ │ ├── DevHttpNotifLogic.cs │ │ ├── DrvHttpNotif.Logic.csproj │ │ ├── DrvHttpNotifLogic.cs │ │ └── ParamString.cs │ ├── DrvHttpNotif.Shared │ │ ├── CnlPrototypeFactory.cs │ │ ├── Config │ │ │ ├── DrvHttpNotif_001.xml │ │ │ ├── EscapingMethod.cs │ │ │ ├── Header.cs │ │ │ ├── NotifDeviceConfig.cs │ │ │ └── RequestMethod.cs │ │ ├── DriverUtils.cs │ │ ├── DrvHttpNotif.Shared.projitems │ │ ├── DrvHttpNotif.Shared.shproj │ │ └── TagCode.cs │ ├── DrvHttpNotif.View │ │ ├── DevHttpNotifView.cs │ │ ├── DrvHttpNotif.View.csproj │ │ ├── DrvHttpNotifView.cs │ │ ├── Forms │ │ │ ├── FrmConfig.Designer.cs │ │ │ ├── FrmConfig.cs │ │ │ └── FrmConfig.resx │ │ └── Lang │ │ │ ├── DrvHttpNotif.en-GB.xml │ │ │ └── DrvHttpNotif.ru-RU.xml │ ├── DrvSms.Logic │ │ ├── DevSmsLogic.cs │ │ ├── DrvSms.Logic.csproj │ │ ├── DrvSmsLogic.cs │ │ └── Protocol │ │ │ ├── Message.cs │ │ │ ├── Pdu.cs │ │ │ └── PduConverter.cs │ ├── DrvSms.Shared │ │ ├── CnlPrototypeFactory.cs │ │ ├── DriverUtils.cs │ │ ├── DrvSms.Shared.projitems │ │ ├── DrvSms.Shared.shproj │ │ └── TagCode.cs │ ├── DrvSms.Tests │ │ ├── DrvSms.Tests.csproj │ │ ├── PduConverterTests.cs │ │ └── Usings.cs │ ├── DrvSms.View │ │ ├── DevSmsView.cs │ │ ├── DrvSms.View.csproj │ │ └── DrvSmsView.cs │ ├── DrvSnmp.Logic │ │ ├── DevSnmpLogic.cs │ │ ├── DrvSnmp.Logic.csproj │ │ └── DrvSnmpLogic.cs │ ├── DrvSnmp.Shared │ │ ├── Config │ │ │ ├── DeviceOptions.cs │ │ │ ├── DrvSnmp_001.xml │ │ │ ├── SnmpDeviceConfig.cs │ │ │ ├── VarGroupConfig.cs │ │ │ ├── VarGroupList.cs │ │ │ └── VariableConfig.cs │ │ ├── DriverUtils.cs │ │ ├── DrvSnmp.Shared.projitems │ │ └── DrvSnmp.Shared.shproj │ ├── DrvSnmp.View │ │ ├── DevSnmpView.cs │ │ ├── DriverPhrases.cs │ │ ├── DrvSnmp.View.csproj │ │ ├── DrvSnmpView.cs │ │ ├── Lang │ │ │ ├── DrvSnmp.en-GB.xml │ │ │ └── DrvSnmp.ru-RU.xml │ │ ├── Properties │ │ │ ├── Resources.Designer.cs │ │ │ └── Resources.resx │ │ ├── Resources │ │ │ ├── cmd.png │ │ │ ├── elem.png │ │ │ ├── folder_closed.png │ │ │ ├── folder_closed_inactive.png │ │ │ ├── folder_open.png │ │ │ ├── folder_open_inactive.png │ │ │ └── options.png │ │ └── SnmpConfigProvider.cs │ └── OpenDrivers2.sln ├── Res │ ├── address_book │ │ ├── book.png │ │ ├── contact.png │ │ ├── email.png │ │ └── phone.png │ ├── common │ │ ├── add.png │ │ ├── collapse_all.png │ │ ├── delete.png │ │ ├── edit.png │ │ ├── find.png │ │ ├── folder_add.png │ │ ├── folder_closed.png │ │ ├── folder_closed_inactive.png │ │ ├── folder_open.png │ │ ├── folder_open_inactive.png │ │ ├── info.png │ │ ├── move_down.png │ │ ├── move_up.png │ │ ├── open.png │ │ ├── options.png │ │ └── warning.png │ ├── drv_ds_opc_ua_server │ │ ├── linux.png │ │ └── windows.png │ ├── drv_modbus │ │ ├── blank.png │ │ ├── clone.png │ │ ├── cmd.png │ │ ├── cmds.png │ │ ├── elem.png │ │ ├── group.png │ │ ├── group_inactive.png │ │ ├── options_extended.png │ │ ├── save.png │ │ ├── save_as.png │ │ └── validate.png │ ├── drv_mqtt │ │ ├── cmd.png │ │ └── elem.png │ └── drv_opc_ua │ │ ├── attributes.png │ │ ├── cmd.png │ │ ├── connect.png │ │ ├── disconnect.png │ │ ├── empty.png │ │ ├── lock.png │ │ ├── method.png │ │ ├── obj.png │ │ └── variable.png ├── ScadaComm │ ├── ScadaComm.sln │ ├── ScadaCommApp │ │ ├── Program.cs │ │ └── ScadaCommApp.csproj │ ├── ScadaCommCommon │ │ ├── Channels │ │ │ ├── BinStopCondition.cs │ │ │ ├── ChannelBehavior.cs │ │ │ ├── ChannelLogic.cs │ │ │ ├── ChannelTypeName.cs │ │ │ ├── ChannelView.cs │ │ │ ├── Connection.cs │ │ │ ├── ConnectionMode.cs │ │ │ ├── ConnectionStub.cs │ │ │ ├── DeviceDictionary.cs │ │ │ ├── DeviceMapping.cs │ │ │ ├── ProtocolFormat.cs │ │ │ └── TextStopCondition.cs │ │ ├── CommCmdCode.cs │ │ ├── CommDirs.cs │ │ ├── CommUtils.cs │ │ ├── Config │ │ │ ├── ChannelConfig.cs │ │ │ ├── CommConfig.cs │ │ │ ├── DataSourceConfig.cs │ │ │ ├── DeviceConfig.cs │ │ │ ├── GeneralOptions.cs │ │ │ ├── LineConfig.cs │ │ │ ├── LineOptions.cs │ │ │ ├── PollingOptions.cs │ │ │ └── ScadaCommConfig.xml │ │ ├── ConfigDatabase.cs │ │ ├── DataSources │ │ │ ├── DataSourceLogic.cs │ │ │ └── DataSourceView.cs │ │ ├── Devices │ │ │ ├── CnlPrototype.cs │ │ │ ├── CnlPrototypeGroup.cs │ │ │ ├── DeviceConfigBase.cs │ │ │ ├── DeviceData.cs │ │ │ ├── DeviceDataView.cs │ │ │ ├── DeviceEvent.cs │ │ │ ├── DeviceLogic.cs │ │ │ ├── DeviceSlice.cs │ │ │ ├── DeviceStats.cs │ │ │ ├── DeviceStatus.cs │ │ │ ├── DeviceTag.cs │ │ │ ├── DeviceTags.cs │ │ │ ├── DeviceView.cs │ │ │ ├── IncomingRequestArgs.cs │ │ │ ├── TagDataType.cs │ │ │ ├── TagFormat.cs │ │ │ ├── TagFormatType.cs │ │ │ └── TagGroup.cs │ │ ├── Drivers │ │ │ ├── DriverFactory.cs │ │ │ ├── DriverLogic.cs │ │ │ ├── DriverView.cs │ │ │ ├── ICommContext.cs │ │ │ └── ILineContext.cs │ │ ├── Lang │ │ │ ├── CommPhrases.cs │ │ │ ├── ScadaComm.en-GB.xml │ │ │ └── ScadaComm.ru-RU.xml │ │ └── ScadaCommCommon.csproj │ ├── ScadaCommEngine │ │ ├── ChannelLogicStub.cs │ │ ├── ChannelWrapper.cs │ │ ├── CommLine.cs │ │ ├── CommLineFactory.cs │ │ ├── CommandReader.cs │ │ ├── CoreLogic.cs │ │ ├── DataSourceHolder.cs │ │ ├── DeviceWrapper.cs │ │ ├── DriverHolder.cs │ │ ├── DriverWrapper.cs │ │ ├── EngineUtils.cs │ │ ├── Manager.cs │ │ └── ScadaCommEngine.csproj │ └── ScadaCommWkr │ │ ├── Program.cs │ │ ├── Properties │ │ └── launchSettings.json │ │ ├── ScadaCommWkr.csproj │ │ ├── Worker.cs │ │ ├── appsettings.Development.json │ │ └── appsettings.json └── Script │ ├── Linux │ ├── scadacomm6.service │ ├── svc_restart.sh │ ├── svc_start.sh │ └── svc_stop.sh │ └── Windows │ ├── svc_install.bat │ ├── svc_restart.bat │ ├── svc_start.bat │ ├── svc_stop.bat │ └── svc_uninstall.bat ├── ScadaCommon ├── .editorconfig ├── FileStorage │ ├── FileStorage.csproj │ └── FileStorageLogic.cs ├── PostgreSqlStorage │ ├── PostgreSqlStorage.csproj │ ├── PostgreSqlStorageLogic.cs │ └── PostgreSqlStorageShared.cs ├── ScadaCommon.Forms │ ├── .editorconfig │ ├── BitItem.cs │ ├── BitItemCollection.cs │ ├── ComponentModel │ │ ├── ArchiveBitEditor.cs │ │ ├── ArchiveMaskEditor.cs │ │ ├── CnlNumEditor.cs │ │ ├── EntityIdEditor.cs │ │ └── RangeEditor.cs │ ├── ConfigAction.cs │ ├── ConfigProvider.cs │ ├── Controls │ │ ├── CtrlBitmask.Designer.cs │ │ ├── CtrlBitmask.cs │ │ ├── CtrlBitmask.resx │ │ ├── CtrlClientConnection.Designer.cs │ │ ├── CtrlClientConnection.cs │ │ ├── CtrlClientConnection.resx │ │ ├── CtrlDbConnection.Designer.cs │ │ ├── CtrlDbConnection.cs │ │ ├── CtrlDbConnection.resx │ │ ├── CtrlRegistration.Designer.cs │ │ ├── CtrlRegistration.cs │ │ └── CtrlRegistration.resx │ ├── FormTranslator.cs │ ├── FormTranslatorOptions.cs │ ├── Forms │ │ ├── FrmBitSelect.Designer.cs │ │ ├── FrmBitSelect.cs │ │ ├── FrmBitSelect.resx │ │ ├── FrmBitmask.Designer.cs │ │ ├── FrmBitmask.cs │ │ ├── FrmBitmask.resx │ │ ├── FrmCnlSelect.Designer.cs │ │ ├── FrmCnlSelect.cs │ │ ├── FrmCnlSelect.resx │ │ ├── FrmEntitySelect.Designer.cs │ │ ├── FrmEntitySelect.cs │ │ ├── FrmEntitySelect.resx │ │ ├── FrmModuleConfig.Designer.cs │ │ ├── FrmModuleConfig.cs │ │ ├── FrmModuleConfig.resx │ │ ├── FrmOptions.Designer.cs │ │ ├── FrmOptions.cs │ │ ├── FrmOptions.resx │ │ ├── FrmRangeEdit.Designer.cs │ │ ├── FrmRangeEdit.cs │ │ └── FrmRangeEdit.resx │ ├── ListViewExtensions.cs │ ├── LogBox.cs │ ├── ObjectChangedEventArgs.cs │ ├── Properties │ │ ├── Resources.Designer.cs │ │ └── Resources.resx │ ├── RemoteLogBox.cs │ ├── Resources │ │ ├── add.png │ │ ├── collapse_all.png │ │ ├── delete.png │ │ ├── info.png │ │ ├── move_down.png │ │ └── move_up.png │ ├── RichTextBoxHelper.cs │ ├── ScadaCommon.Forms.csproj │ ├── ScadaUiUtils.cs │ ├── TreeNodeBehavior.cs │ ├── TreeNodeTag.cs │ ├── TreeUpdateTypes.cs │ └── TreeViewExtensions.cs ├── ScadaCommon.Log │ ├── ILog.cs │ ├── LogFile.cs │ ├── LogFormat.cs │ ├── LogMessageType.cs │ ├── LogStub.cs │ └── ScadaCommon.Log.csproj ├── ScadaCommon.MultiDb │ ├── DataSource.cs │ ├── DataSourceFactory.cs │ ├── MySqlDataSource.cs │ ├── NpgsqlDataSource.cs │ ├── OracleDataSource.cs │ ├── ScadaCommon.MultiDb.csproj │ └── SqlDataSource.cs ├── ScadaCommon.sln └── ScadaCommon │ ├── Agent │ ├── AgentConst.cs │ ├── IAgentClient.cs │ ├── ServiceCommand.cs │ └── TransferOptions.cs │ ├── AppDirs.cs │ ├── AssemblyResolver.cs │ ├── BinaryConverter.cs │ ├── Client │ ├── ClientBase.cs │ ├── ClientState.cs │ ├── ConnectionOptions.cs │ ├── ProgressEventArgs.cs │ ├── ScadaClient.cs │ ├── ScadaClientMode.cs │ └── ScadaClientPool.cs │ ├── CnlDataConverter.cs │ ├── CnlDataFormatter.cs │ ├── ComponentModel │ ├── AttrTranslator.cs │ ├── BooleanConverter.cs │ ├── CategoryAttribute.cs │ ├── CollectionConverter.cs │ ├── DescriptionAttribute.cs │ ├── DisplayNameAttribute.cs │ ├── EnumConverter.cs │ └── IConfigDatasetAccessor.cs │ ├── Config │ ├── ConfigBase.cs │ ├── IConfig.cs │ ├── InstanceConfig.cs │ ├── OptionList.cs │ └── ScadaInstanceConfig.xml │ ├── Data │ ├── Adapters │ │ ├── Adapter.cs │ │ ├── BaseTableAdapter.cs │ │ ├── EventTableAdapter.cs │ │ ├── SliceTableAdapter.cs │ │ └── TrendTableAdapter.cs │ ├── Const │ │ ├── ArchiveBit.cs │ │ ├── ArchiveKindID.cs │ │ ├── CnlStatusID.cs │ │ ├── CnlTypeID.cs │ │ ├── DataTypeID.cs │ │ ├── EventBit.cs │ │ ├── FormatCode.cs │ │ ├── KnownSeverity.cs │ │ ├── QuantityCode.cs │ │ ├── RoleID.cs │ │ ├── Severity.cs │ │ └── UnitCode.cs │ ├── Entities │ │ ├── Archive.cs │ │ ├── ArchiveKind.cs │ │ ├── Cnl.cs │ │ ├── CnlStatus.cs │ │ ├── CnlType.cs │ │ ├── CommLine.cs │ │ ├── DataType.cs │ │ ├── DevType.cs │ │ ├── Device.cs │ │ ├── EntityExtensions.cs │ │ ├── Format.cs │ │ ├── Lim.cs │ │ ├── Obj.cs │ │ ├── ObjRight.cs │ │ ├── Quantity.cs │ │ ├── Role.cs │ │ ├── RoleRef.cs │ │ ├── Script.cs │ │ ├── Unit.cs │ │ ├── User.cs │ │ ├── View.cs │ │ └── ViewType.cs │ ├── Models │ │ ├── ArchiveMask.cs │ │ ├── CnlData.cs │ │ ├── CnlDataFormatted.cs │ │ ├── CnlDataPoint.cs │ │ ├── CommandResult.cs │ │ ├── ConfigDataset.cs │ │ ├── CurDataPoint.cs │ │ ├── EnumDict.cs │ │ ├── EnumFormat.cs │ │ ├── Event.cs │ │ ├── EventAck.cs │ │ ├── EventFormatted.cs │ │ ├── EventMask.cs │ │ ├── EventTextFormat.cs │ │ ├── Right.cs │ │ ├── RightMatrix.cs │ │ ├── SeverityRange.cs │ │ ├── Slice.cs │ │ ├── TeleCommand.cs │ │ ├── TimeRange.cs │ │ ├── Trend.cs │ │ ├── TrendBundle.cs │ │ ├── TrendPoint.cs │ │ ├── UserValidationResult.cs │ │ ├── ViewBase.cs │ │ └── ViewResource.cs │ ├── Queues │ │ ├── DataQueue.cs │ │ ├── IDataQueue.cs │ │ ├── QueueItem.cs │ │ └── QueueStats.cs │ └── Tables │ │ ├── BaseTable.cs │ │ ├── BaseTableFactory.cs │ │ ├── CnlNumList.cs │ │ ├── ColumnDataType.cs │ │ ├── DataFilter.cs │ │ ├── EventTable.cs │ │ ├── FilterCondition.cs │ │ ├── FilterOperator.cs │ │ ├── IBaseTable.cs │ │ ├── ITableIndex.cs │ │ ├── PositionKind.cs │ │ ├── TableConverter.cs │ │ ├── TableFilter.cs │ │ ├── TableIndex.cs │ │ ├── TableRelation.cs │ │ ├── TableType.cs │ │ ├── TrendTable.cs │ │ ├── TrendTableMeta.cs │ │ └── TrendTablePage.cs │ ├── Dbms │ ├── ConnectionStringBuilder.cs │ ├── DbConnectionOptions.cs │ ├── DbExtensions.cs │ └── KnownDBMS.cs │ ├── ITreeNode.cs │ ├── Lang │ ├── CommonPhrases.cs │ ├── ControlPhrases.cs │ ├── Locale.cs │ ├── LocaleDict.cs │ ├── ScadaCommon.en-GB.xml │ └── ScadaCommon.ru-RU.xml │ ├── LibraryInfo.cs │ ├── LibraryView.cs │ ├── MemoryCache.cs │ ├── Protocol │ ├── AppFolder.cs │ ├── DataPacket.cs │ ├── ErrorCode.cs │ ├── FileReadingResult.cs │ ├── FileUploadState.cs │ ├── FunctionID.cs │ ├── ProtocolException.cs │ ├── ProtocolUtils.cs │ ├── RelativePath.cs │ ├── ResponsePacket.cs │ ├── TopFolder.cs │ ├── WriteCommandFlags.cs │ └── WriteDataFlags.cs │ ├── RegistrationInfo.cs │ ├── ScadaCommon.csproj │ ├── ScadaException.cs │ ├── ScadaUtils.Collections.cs │ ├── ScadaUtils.Converter.cs │ ├── ScadaUtils.Crypto.cs │ ├── ScadaUtils.Xml.cs │ ├── ScadaUtils.cs │ ├── Security │ ├── BlockedChangedEventArgs.cs │ └── BruteForceProtector.cs │ ├── SerializationBinder.cs │ ├── Server │ ├── ConnectedClient.cs │ ├── ListenerBase.cs │ └── ListenerOptions.cs │ ├── ServiceApp.cs │ ├── ServiceStatus.cs │ ├── ShortFileInfo.cs │ ├── SimpleResult.cs │ ├── Storages │ ├── DataCategory.cs │ ├── IStorage.cs │ ├── StorageContext.cs │ ├── StorageFactory.cs │ ├── StorageLogic.cs │ └── StorageWrapper.cs │ └── TrendHelper.cs ├── ScadaDoc ├── .editorconfig ├── ScadaDoc.sln └── ScadaDoc │ ├── Code │ ├── DocUtils.cs │ ├── KnownLang.cs │ ├── KnownVersion.cs │ ├── MenuItem.cs │ ├── PageMeta.cs │ ├── Toc.cs │ ├── TocManager.cs │ ├── TocRenderer.cs │ ├── VersionItem.cs │ └── VersionMenu.cs │ ├── Pages │ ├── En │ │ ├── Version58 │ │ │ ├── AdditionalApplications │ │ │ │ └── AppAutoReport.cshtml │ │ │ ├── Index.cshtml │ │ │ ├── InstallationAndRun │ │ │ │ ├── ManualInstallation.cshtml │ │ │ │ ├── MigrateConfiguration.cshtml │ │ │ │ ├── ModuleInstallation.cshtml │ │ │ │ ├── RunApplications.cshtml │ │ │ │ ├── SafetyRecommendations.cshtml │ │ │ │ ├── SoftwareInstallation.cshtml │ │ │ │ ├── SoftwareUpdate.cshtml │ │ │ │ └── SystemRequirements.cshtml │ │ │ ├── Modules │ │ │ │ ├── KpDbImport.cshtml │ │ │ │ ├── KpModbusSlave.cshtml │ │ │ │ ├── KpTelegram.cshtml │ │ │ │ ├── ModAutoControl.cshtml │ │ │ │ ├── ModDbExport.cshtml │ │ │ │ ├── ModRapidGate.cshtml │ │ │ │ ├── PlgChartPro.cshtml │ │ │ │ ├── PlgDashboard.cshtml │ │ │ │ ├── PlgElasticReport.cshtml │ │ │ │ ├── PlgMap.cshtml │ │ │ │ └── PlgNotification.cshtml │ │ │ ├── SoftwareConfiguration │ │ │ │ ├── CommunicationWithDevices.cshtml │ │ │ │ ├── ConfigurationBasics.cshtml │ │ │ │ ├── CreatingViews.cshtml │ │ │ │ ├── TuneDatabase.cshtml │ │ │ │ ├── UserAuthentication.cshtml │ │ │ │ └── UsingFormulas.cshtml │ │ │ ├── SoftwareOverview │ │ │ │ ├── Applications.cshtml │ │ │ │ ├── SoftwareArchitecture.cshtml │ │ │ │ └── SoftwarePurpose.cshtml │ │ │ ├── UseCases │ │ │ │ ├── ModbusProtocol.cshtml │ │ │ │ └── OpcStandard.cshtml │ │ │ └── VersionHistory │ │ │ │ ├── AdministratorHistory.cshtml │ │ │ │ ├── AgentHistory.cshtml │ │ │ │ ├── CommunicatorDriversHistory.cshtml │ │ │ │ ├── CommunicatorHistory.cshtml │ │ │ │ ├── ScadaHistory.cshtml │ │ │ │ ├── SchemeEditorHistory.cshtml │ │ │ │ ├── ServerHistory.cshtml │ │ │ │ ├── ServerModulesHistory.cshtml │ │ │ │ ├── TableEditorHistory.cshtml │ │ │ │ ├── WebstationHistory.cshtml │ │ │ │ └── WebstationPluginsHistory.cshtml │ │ ├── Version61 │ │ │ ├── Developers │ │ │ │ └── Store.cshtml │ │ │ ├── Index.cshtml │ │ │ ├── Installation │ │ │ │ ├── InstallLinux.cshtml │ │ │ │ ├── InstallModules.cshtml │ │ │ │ ├── InstallWindows.cshtml │ │ │ │ ├── InstallWindowsManual.cshtml │ │ │ │ ├── Safety.cshtml │ │ │ │ └── SystemRequirements.cshtml │ │ │ ├── Modules │ │ │ │ ├── PlgChartPro.cshtml │ │ │ │ ├── PlgDashboard.cshtml │ │ │ │ └── PlgElasticReport.cshtml │ │ │ ├── SoftwareOverview │ │ │ │ └── Introduction.cshtml │ │ │ └── VersionHistory │ │ │ │ ├── AdministratorHistory.cshtml │ │ │ │ ├── AgentHistory.cshtml │ │ │ │ ├── ApplicationsHistory.cshtml │ │ │ │ ├── CommunicatorHistory.cshtml │ │ │ │ ├── ScadaHistory.cshtml │ │ │ │ ├── ServerHistory.cshtml │ │ │ │ └── WebstationHistory.cshtml │ │ └── Version64 │ │ │ ├── AdditionalApplications │ │ │ ├── AppAutoReport.cshtml │ │ │ └── Index.cshtml │ │ │ ├── Configuration │ │ │ ├── Channels.cshtml │ │ │ ├── ConfigurationBasics.cshtml │ │ │ ├── Database.cshtml │ │ │ ├── DevicePolling.cshtml │ │ │ ├── Index.cshtml │ │ │ ├── Scripts.cshtml │ │ │ ├── TableViews.cshtml │ │ │ ├── UserManagement.cshtml │ │ │ └── Views.cshtml │ │ │ ├── Developers │ │ │ ├── DevelopmentBasics.cshtml │ │ │ ├── DriverDevelopment.cshtml │ │ │ ├── Index.cshtml │ │ │ ├── ModuleDevelopment.cshtml │ │ │ ├── PluginDevelopment.cshtml │ │ │ └── Store.cshtml │ │ │ ├── EnterpriseEdition │ │ │ ├── Index.cshtml │ │ │ ├── Overview.cshtml │ │ │ ├── PlgAudit.cshtml │ │ │ └── PlgGuard.cshtml │ │ │ ├── Index.cshtml │ │ │ ├── Installation │ │ │ ├── Index.cshtml │ │ │ ├── InstallLinux.cshtml │ │ │ ├── InstallModules.cshtml │ │ │ ├── InstallWindows.cshtml │ │ │ ├── InstallWindowsManual.cshtml │ │ │ ├── Safety.cshtml │ │ │ ├── Services.cshtml │ │ │ ├── SystemRequirements.cshtml │ │ │ └── Transfer.cshtml │ │ │ ├── Modules │ │ │ ├── DrvDbImport.cshtml │ │ │ ├── DrvModbusSlave.cshtml │ │ │ ├── DrvTelegram.cshtml │ │ │ ├── Index.cshtml │ │ │ ├── ModAutoControl.cshtml │ │ │ ├── ModDbExport.cshtml │ │ │ ├── ModRapidGate.cshtml │ │ │ ├── PlgChartPro.cshtml │ │ │ ├── PlgDashboard.cshtml │ │ │ ├── PlgElasticReport.cshtml │ │ │ ├── PlgMap.cshtml │ │ │ └── PlgNotification.cshtml │ │ │ ├── SoftwareOverview │ │ │ ├── Applications.cshtml │ │ │ ├── Architecture.cshtml │ │ │ ├── Index.cshtml │ │ │ └── Introduction.cshtml │ │ │ └── VersionHistory │ │ │ ├── AdministratorHistory.cshtml │ │ │ ├── AgentHistory.cshtml │ │ │ ├── ApplicationsHistory.cshtml │ │ │ ├── CommunicatorHistory.cshtml │ │ │ ├── Index.cshtml │ │ │ ├── ScadaHistory.cshtml │ │ │ ├── ServerHistory.cshtml │ │ │ └── WebstationHistory.cshtml │ ├── Es │ │ └── Version58 │ │ │ ├── AdditionalApplications │ │ │ └── AppAutoReport.cshtml │ │ │ ├── Index.cshtml │ │ │ ├── InstallationAndRun │ │ │ ├── ManualInstallation.cshtml │ │ │ ├── MigrateConfiguration.cshtml │ │ │ ├── ModuleInstallation.cshtml │ │ │ ├── RunApplications.cshtml │ │ │ ├── SafetyRecommendations.cshtml │ │ │ ├── SoftwareInstallation.cshtml │ │ │ ├── SoftwareUpdate.cshtml │ │ │ └── SystemRequirements.cshtml │ │ │ ├── Modules │ │ │ ├── KpModbusSlave.cshtml │ │ │ ├── KpTelegram.cshtml │ │ │ ├── ModAutoControl.cshtml │ │ │ ├── ModDbExport.cshtml │ │ │ ├── ModRapidGate.cshtml │ │ │ ├── PlgChartPro.cshtml │ │ │ ├── PlgDashboard.cshtml │ │ │ ├── PlgElasticReport.cshtml │ │ │ ├── PlgMap.cshtml │ │ │ └── PlgNotification.cshtml │ │ │ ├── SoftwareConfiguration │ │ │ ├── CommunicationWithDevices.cshtml │ │ │ ├── ConfigurationBasics.cshtml │ │ │ ├── CreatingViews.cshtml │ │ │ ├── TuneDatabase.cshtml │ │ │ ├── UserAuthentication.cshtml │ │ │ └── UsingFormulas.cshtml │ │ │ ├── SoftwareOverview │ │ │ ├── Applications.cshtml │ │ │ ├── SoftwareArchitecture.cshtml │ │ │ └── SoftwarePurpose.cshtml │ │ │ └── UseCases │ │ │ ├── ModbusProtocol.cshtml │ │ │ └── OpcStandard.cshtml │ ├── Fr │ │ ├── Version61 │ │ │ ├── Index.cshtml │ │ │ ├── Installation │ │ │ │ ├── InstallLinux.cshtml │ │ │ │ ├── InstallModules.cshtml │ │ │ │ ├── InstallWindows.cshtml │ │ │ │ ├── InstallWindowsManual.cshtml │ │ │ │ ├── Safety.cshtml │ │ │ │ └── SystemRequirements.cshtml │ │ │ └── SoftwareOverview │ │ │ │ └── Introduction.cshtml │ │ └── Version64 │ │ │ ├── Configuration │ │ │ ├── Channels.cshtml │ │ │ ├── ConfigurationBasics.cshtml │ │ │ ├── Database.cshtml │ │ │ ├── DevicePolling.cshtml │ │ │ ├── Index.cshtml │ │ │ ├── Scripts.cshtml │ │ │ ├── TableViews.cshtml │ │ │ ├── UserManagement.cshtml │ │ │ └── Views.cshtml │ │ │ ├── Index.cshtml │ │ │ ├── Installation │ │ │ ├── Index.cshtml │ │ │ ├── InstallLinux.cshtml │ │ │ ├── InstallModules.cshtml │ │ │ ├── InstallWindows.cshtml │ │ │ ├── InstallWindowsManual.cshtml │ │ │ ├── Safety.cshtml │ │ │ ├── Services.cshtml │ │ │ ├── SystemRequirements.cshtml │ │ │ └── Transfer.cshtml │ │ │ └── SoftwareOverview │ │ │ ├── Applications.cshtml │ │ │ ├── Architecture.cshtml │ │ │ ├── Index.cshtml │ │ │ └── Introduction.cshtml │ ├── Index.cshtml │ ├── Ru │ │ ├── Version58 │ │ │ ├── AdditionalApplications │ │ │ │ └── AppAutoReport.cshtml │ │ │ ├── Index.cshtml │ │ │ ├── InstallationAndRun │ │ │ │ ├── ManualInstallation.cshtml │ │ │ │ ├── MigrateConfiguration.cshtml │ │ │ │ ├── ModuleInstallation.cshtml │ │ │ │ ├── RunApplications.cshtml │ │ │ │ ├── SafetyRecommendations.cshtml │ │ │ │ ├── SoftwareInstallation.cshtml │ │ │ │ ├── SoftwareUpdate.cshtml │ │ │ │ └── SystemRequirements.cshtml │ │ │ ├── Modules │ │ │ │ ├── KpDbImport.cshtml │ │ │ │ ├── KpModbusSlave.cshtml │ │ │ │ ├── KpTelegram.cshtml │ │ │ │ ├── ModAutoControl.cshtml │ │ │ │ ├── ModDbExport.cshtml │ │ │ │ ├── ModRapidGate.cshtml │ │ │ │ ├── PlgChartPro.cshtml │ │ │ │ ├── PlgDashboard.cshtml │ │ │ │ ├── PlgElasticReport.cshtml │ │ │ │ ├── PlgMap.cshtml │ │ │ │ └── PlgNotification.cshtml │ │ │ ├── SoftwareConfiguration │ │ │ │ ├── CommunicationWithDevices.cshtml │ │ │ │ ├── ConfigurationBasics.cshtml │ │ │ │ ├── CreatingViews.cshtml │ │ │ │ ├── TuneDatabase.cshtml │ │ │ │ ├── UserAuthentication.cshtml │ │ │ │ └── UsingFormulas.cshtml │ │ │ ├── SoftwareOverview │ │ │ │ ├── Applications.cshtml │ │ │ │ ├── SoftwareArchitecture.cshtml │ │ │ │ └── SoftwarePurpose.cshtml │ │ │ ├── UseCases │ │ │ │ ├── ModbusProtocol.cshtml │ │ │ │ └── OpcStandard.cshtml │ │ │ └── VersionHistory │ │ │ │ ├── AdministratorHistory.cshtml │ │ │ │ ├── AgentHistory.cshtml │ │ │ │ ├── CommunicatorDriversHistory.cshtml │ │ │ │ ├── CommunicatorHistory.cshtml │ │ │ │ ├── ScadaHistory.cshtml │ │ │ │ ├── SchemeEditorHistory.cshtml │ │ │ │ ├── ServerHistory.cshtml │ │ │ │ ├── ServerModulesHistory.cshtml │ │ │ │ ├── TableEditorHistory.cshtml │ │ │ │ ├── WebstationHistory.cshtml │ │ │ │ └── WebstationPluginsHistory.cshtml │ │ ├── Version61 │ │ │ ├── Developers │ │ │ │ └── Store.cshtml │ │ │ ├── Index.cshtml │ │ │ ├── Installation │ │ │ │ ├── InstallLinux.cshtml │ │ │ │ ├── InstallModules.cshtml │ │ │ │ ├── InstallWindows.cshtml │ │ │ │ ├── InstallWindowsManual.cshtml │ │ │ │ ├── Safety.cshtml │ │ │ │ └── SystemRequirements.cshtml │ │ │ ├── Modules │ │ │ │ ├── PlgChartPro.cshtml │ │ │ │ ├── PlgDashboard.cshtml │ │ │ │ └── PlgElasticReport.cshtml │ │ │ ├── SoftwareOverview │ │ │ │ └── Introduction.cshtml │ │ │ └── VersionHistory │ │ │ │ ├── AdministratorHistory.cshtml │ │ │ │ ├── AgentHistory.cshtml │ │ │ │ ├── ApplicationsHistory.cshtml │ │ │ │ ├── CommunicatorHistory.cshtml │ │ │ │ ├── ScadaHistory.cshtml │ │ │ │ ├── ServerHistory.cshtml │ │ │ │ └── WebstationHistory.cshtml │ │ └── Version64 │ │ │ ├── AdditionalApplications │ │ │ ├── AppAutoReport.cshtml │ │ │ └── Index.cshtml │ │ │ ├── Configuration │ │ │ ├── Channels.cshtml │ │ │ ├── ConfigurationBasics.cshtml │ │ │ ├── Database.cshtml │ │ │ ├── DevicePolling.cshtml │ │ │ ├── Index.cshtml │ │ │ ├── Scripts.cshtml │ │ │ ├── TableViews.cshtml │ │ │ ├── UserManagement.cshtml │ │ │ └── Views.cshtml │ │ │ ├── Developers │ │ │ ├── DevelopmentBasics.cshtml │ │ │ ├── DriverDevelopment.cshtml │ │ │ ├── Index.cshtml │ │ │ ├── ModuleDevelopment.cshtml │ │ │ ├── PluginDevelopment.cshtml │ │ │ └── Store.cshtml │ │ │ ├── EnterpriseEdition │ │ │ ├── Index.cshtml │ │ │ ├── Overview.cshtml │ │ │ ├── PlgAudit.cshtml │ │ │ └── PlgGuard.cshtml │ │ │ ├── Index.cshtml │ │ │ ├── Installation │ │ │ ├── Index.cshtml │ │ │ ├── InstallLinux.cshtml │ │ │ ├── InstallModules.cshtml │ │ │ ├── InstallWindows.cshtml │ │ │ ├── InstallWindowsManual.cshtml │ │ │ ├── Safety.cshtml │ │ │ ├── Services.cshtml │ │ │ ├── SystemRequirements.cshtml │ │ │ └── Transfer.cshtml │ │ │ ├── Modules │ │ │ ├── DrvDbImport.cshtml │ │ │ ├── DrvModbusSlave.cshtml │ │ │ ├── DrvTelegram.cshtml │ │ │ ├── Index.cshtml │ │ │ ├── ModAutoControl.cshtml │ │ │ ├── ModDbExport.cshtml │ │ │ ├── ModRapidGate.cshtml │ │ │ ├── PlgChartPro.cshtml │ │ │ ├── PlgDashboard.cshtml │ │ │ ├── PlgElasticReport.cshtml │ │ │ ├── PlgMap.cshtml │ │ │ └── PlgNotification.cshtml │ │ │ ├── SoftwareOverview │ │ │ ├── Applications.cshtml │ │ │ ├── Architecture.cshtml │ │ │ ├── Index.cshtml │ │ │ └── Introduction.cshtml │ │ │ └── VersionHistory │ │ │ ├── AdministratorHistory.cshtml │ │ │ ├── AgentHistory.cshtml │ │ │ ├── ApplicationsHistory.cshtml │ │ │ ├── CommunicatorHistory.cshtml │ │ │ ├── Index.cshtml │ │ │ ├── ScadaHistory.cshtml │ │ │ ├── ServerHistory.cshtml │ │ │ └── WebstationHistory.cshtml │ ├── Shared │ │ ├── _ArticleLayout.cshtml │ │ └── _BasicLayout.cshtml │ ├── Sitemap.cshtml │ ├── Zh │ │ └── Version60 │ │ │ ├── Index.cshtml │ │ │ ├── Installation │ │ │ ├── InstallLinux.cshtml │ │ │ ├── InstallWindows.cshtml │ │ │ ├── InstallWindowsManual.cshtml │ │ │ └── SystemRequirements.cshtml │ │ │ ├── SoftwareOverview │ │ │ └── Introduction.cshtml │ │ │ └── VersionHistory │ │ │ ├── AdministratorHistory.cshtml │ │ │ ├── AgentHistory.cshtml │ │ │ ├── CommunicatorHistory.cshtml │ │ │ ├── ScadaHistory.cshtml │ │ │ ├── ServerHistory.cshtml │ │ │ └── WebstationHistory.cshtml │ ├── _Counter.cshtml │ ├── _ItemList.cshtml │ ├── _Search.cshtml │ └── _ViewImports.cshtml │ ├── Program.cs │ ├── Properties │ └── launchSettings.json │ ├── ScadaDoc.csproj │ ├── Script │ └── scadadoc.service │ ├── appsettings.Development.json │ ├── appsettings.json │ ├── compilerconfig.json │ ├── compilerconfig.json.defaults │ └── wwwroot │ ├── contents │ ├── ContentsEn58.xml │ ├── ContentsEn61.xml │ ├── ContentsEn64.xml │ ├── ContentsEs58.xml │ ├── ContentsFr61.xml │ ├── ContentsFr64.xml │ ├── ContentsRu58.xml │ ├── ContentsRu61.xml │ ├── ContentsRu64.xml │ └── ContentsZh60.xml │ ├── css │ ├── _variables.scss │ ├── article.css │ ├── article.min.css │ ├── article.scss │ ├── history.css │ ├── history.min.css │ └── history.scss │ ├── en │ ├── 5.8 │ │ ├── additional-applications │ │ │ └── app-auto-report-files │ │ │ │ ├── auto_report_cmd_en.png │ │ │ │ ├── auto_report_devices_en.png │ │ │ │ ├── auto_report_email_en.png │ │ │ │ ├── auto_report_general_en.png │ │ │ │ ├── auto_report_lines_en.png │ │ │ │ ├── auto_report_module_en.png │ │ │ │ ├── auto_report_out_cnls_en.png │ │ │ │ ├── auto_report_tasks_en.png │ │ │ │ └── auto_report_users_en.png │ │ ├── common-images │ │ │ ├── add_device.png │ │ │ ├── add_line.png │ │ │ ├── apply.png │ │ │ ├── backup.gif │ │ │ ├── blank.png │ │ │ ├── create_cnls.png │ │ │ ├── edit.png │ │ │ ├── import.png │ │ │ ├── open.png │ │ │ ├── pass.gif │ │ │ ├── plus.png │ │ │ ├── props.png │ │ │ ├── refresh.png │ │ │ ├── reset.png │ │ │ ├── restart.png │ │ │ ├── restart_blue.gif │ │ │ ├── restart_yellow.gif │ │ │ ├── settings.png │ │ │ ├── start.png │ │ │ ├── status.png │ │ │ └── upload.png │ │ ├── installation-and-run │ │ │ ├── run-applications-files │ │ │ │ ├── instance_status_en.png │ │ │ │ ├── scada_web_login_en.png │ │ │ │ └── service_props_en.png │ │ │ └── software-installation-files │ │ │ │ ├── install_dir_en.png │ │ │ │ ├── scada_setup_en.png │ │ │ │ ├── web_params_en.png │ │ │ │ ├── win10_features_dotnet_en.png │ │ │ │ ├── win10_features_iis_en.png │ │ │ │ ├── win7_features_dotnet_en.png │ │ │ │ └── win7_features_iis_en.png │ │ ├── modules │ │ │ ├── kp-db-import-files │ │ │ │ ├── db_import_cmd_en.png │ │ │ │ ├── db_import_conn_en.png │ │ │ │ └── db_import_query_en.png │ │ │ ├── kp-modbus-slave-files │ │ │ │ ├── device_props_en.png │ │ │ │ ├── serial_port_en.png │ │ │ │ ├── tcp_server_en.png │ │ │ │ └── template_editor_en.png │ │ │ ├── kp-telegram-files │ │ │ │ ├── bot_father.png │ │ │ │ ├── group_chat_en.png │ │ │ │ ├── kp_telegram_config_en.png │ │ │ │ ├── kp_telegram_reg_en.png │ │ │ │ ├── new_group.png │ │ │ │ └── send_cmd_en.png │ │ │ ├── mod-auto-control-files │ │ │ │ └── mod_auto_control_en.png │ │ │ ├── mod-db-export-files │ │ │ │ ├── db_export_conn_en.png │ │ │ │ ├── db_export_cur_en.png │ │ │ │ ├── db_export_manual_en.png │ │ │ │ ├── export.png │ │ │ │ └── plus.png │ │ │ ├── plg-chart-pro-files │ │ │ │ └── chart_parts.svg │ │ │ ├── plg-dashboard-files │ │ │ │ ├── dashboard_itf_file_en.png │ │ │ │ └── dashboard_itf_tbl_en.png │ │ │ ├── plg-elastic-report-files │ │ │ │ ├── report_itf_file_en.png │ │ │ │ └── report_itf_tbl_en.png │ │ │ └── plg-map-files │ │ │ │ ├── map_example_en.png │ │ │ │ ├── map_itf_file_en.png │ │ │ │ └── map_itf_tbl_en.png │ │ ├── software-configuration │ │ │ ├── communication-with-devices-files │ │ │ │ ├── comm_import_en.png │ │ │ │ ├── comm_line_params_en.png │ │ │ │ ├── comm_line_req_en.png │ │ │ │ └── comm_sync_en.png │ │ │ ├── configuration-basics-files │ │ │ │ ├── admin_new_proj_en.png │ │ │ │ ├── admin_start_page_en.png │ │ │ │ └── proj_struct_en.png │ │ │ ├── creating-views-files │ │ │ │ ├── interface_menu_en.png │ │ │ │ ├── interface_new_file_en.png │ │ │ │ ├── interface_table_en.png │ │ │ │ └── scheme_template_table_en.png │ │ │ └── tune-database-files │ │ │ │ ├── admin_clone_cnls_en.png │ │ │ │ ├── admin_export_table_en.png │ │ │ │ ├── admin_import_table_en.png │ │ │ │ ├── in_cnl_props_en.png │ │ │ │ ├── out_cnl_props_en.png │ │ │ │ ├── scada_admin_clone_cnls_en.png │ │ │ │ ├── scada_admin_cnl_props_en.png │ │ │ │ ├── scada_admin_create_cnls_en.png │ │ │ │ └── scada_admin_import_en.png │ │ ├── software-overview │ │ │ ├── applications-files │ │ │ │ ├── scada_admin_en.png │ │ │ │ ├── scada_comm_shell_en.png │ │ │ │ ├── scada_scheme_editor_en.png │ │ │ │ ├── scada_server_shell_en.png │ │ │ │ ├── scada_table_editor_en.png │ │ │ │ ├── scada_web_scheme_en.png │ │ │ │ └── scada_web_table_en.png │ │ │ └── software-architecture-files │ │ │ │ └── scada_arc_en.png │ │ └── use-cases │ │ │ ├── modbus-protocol-files │ │ │ ├── modbus_add_device_en.png │ │ │ ├── modbus_add_line_en.png │ │ │ ├── modbus_add_obj_en.png │ │ │ ├── modbus_create_cnls1_en.png │ │ │ ├── modbus_create_cnls2_en.png │ │ │ ├── modbus_create_cnls3_en.png │ │ │ ├── modbus_data_bound_en.png │ │ │ ├── modbus_data_en.png │ │ │ ├── modbus_device_props_en.png │ │ │ ├── modbus_interface_file_en.png │ │ │ ├── modbus_interface_menu_en.png │ │ │ ├── modbus_interface_table_en.png │ │ │ ├── modbus_line_main_en.png │ │ │ ├── modbus_line_req_en.png │ │ │ ├── modbus_new_proj_en.png │ │ │ ├── modbus_table_editor_en.png │ │ │ ├── modbus_template_en.png │ │ │ ├── modbus_template_settings_en.png │ │ │ ├── modbus_web1_en.png │ │ │ └── modbus_web2_en.png │ │ │ └── opc-standard-files │ │ │ ├── comm_svc_logon_en.png │ │ │ ├── dcom_config_en.png │ │ │ ├── opc_config_en.png │ │ │ └── opc_vals_en.png │ ├── 6.1 │ │ ├── installation │ │ │ └── install-windows-files │ │ │ │ ├── dotnet-download.png │ │ │ │ ├── iis-modules-en.png │ │ │ │ ├── installer-apps-en.png │ │ │ │ ├── installer-dir-en.png │ │ │ │ ├── installer-en.png │ │ │ │ ├── installer-web-en.png │ │ │ │ └── win10-features-iis-en.png │ │ └── modules │ │ │ ├── plg-chart-pro-files │ │ │ ├── chart-parts.svg │ │ │ ├── chart-pro-assign-en.png │ │ │ ├── chart-pro-en.png │ │ │ ├── chart-pro-files-en.png │ │ │ └── chart-pro-view-en.png │ │ │ ├── plg-dashboard-files │ │ │ ├── dashboard-en.png │ │ │ ├── dashboard-view-file-en.png │ │ │ └── dashboard-view-table-en.png │ │ │ └── plg-elastic-report │ │ │ ├── install-font-en.png │ │ │ └── report-file-en.png │ └── latest │ │ ├── additional-applications │ │ └── app-auto-report-files │ │ │ ├── command-channel-en.png │ │ │ ├── connection-options-en.png │ │ │ ├── devices-table-en.png │ │ │ ├── elastic-report-type-en.png │ │ │ ├── general-options-en.png │ │ │ ├── key.png │ │ │ ├── mail-channel-en.png │ │ │ ├── mail-options-en.png │ │ │ ├── report-config-en.png │ │ │ ├── report.png │ │ │ ├── restart.png │ │ │ ├── schedule-options-en.png │ │ │ ├── start.png │ │ │ ├── stop.png │ │ │ ├── task-options-en.png │ │ │ ├── task.png │ │ │ └── users-table-en.png │ │ ├── common-images │ │ ├── add-device.png │ │ ├── add-line.png │ │ ├── add.png │ │ ├── create-cnls.png │ │ ├── filter.png │ │ ├── find.png │ │ ├── matrix.png │ │ ├── options.png │ │ ├── properties.png │ │ ├── refresh.png │ │ ├── status.png │ │ └── upload.png │ │ ├── configuration │ │ ├── channels-files │ │ │ ├── channel-archives-en.png │ │ │ ├── channel-display-en.png │ │ │ ├── channel-events-en.png │ │ │ ├── channel-general-en.png │ │ │ ├── channel-limits-en.png │ │ │ ├── clone-channels-en.png │ │ │ ├── create-channels-step1-en.png │ │ │ ├── create-channels-step2-en.png │ │ │ ├── create-channels-step3-en.png │ │ │ ├── export-table-en.png │ │ │ └── import-table-en.png │ │ ├── configuration-basics-files │ │ │ ├── new-project-en.png │ │ │ ├── project-structure-en.png │ │ │ └── start-page-en.png │ │ ├── device-polling-files │ │ │ ├── device-options-en.png │ │ │ ├── line-device-sync-en.png │ │ │ └── line-options-en.png │ │ ├── table-views-files │ │ │ ├── add-empty.png │ │ │ ├── new-table-en.png │ │ │ ├── rocket.png │ │ │ ├── table-editor-en.png │ │ │ ├── table-options-en.png │ │ │ └── table-view-en.png │ │ ├── user-management-files │ │ │ ├── object-rights-table-en.png │ │ │ ├── object-tree-en.png │ │ │ ├── objects-table-en.png │ │ │ ├── right-matrix-en.png │ │ │ ├── role-inheritance-table-en.png │ │ │ ├── roles-table-en.png │ │ │ └── users-table-en.png │ │ └── views-files │ │ │ ├── explorer-en.png │ │ │ ├── new-file-en.png │ │ │ ├── view-menu-en.png │ │ │ └── view-table-en.png │ │ ├── developers │ │ └── plugin-development-files │ │ │ ├── plg-abc-view.png │ │ │ └── plg-abc.png │ │ ├── enterprise-edition │ │ ├── plg-audit-files │ │ │ └── audit-report-en.png │ │ └── plg-guard-files │ │ │ ├── guard-general-en.png │ │ │ └── guard-users-en.png │ │ ├── installation │ │ ├── install-windows-files │ │ │ ├── dotnet8-download.png │ │ │ ├── iis-modules-en.png │ │ │ ├── installer-apps-en.png │ │ │ ├── installer-dir-en.png │ │ │ ├── installer-en.png │ │ │ ├── installer-web-en.png │ │ │ └── win10-features-iis-en.png │ │ └── services-files │ │ │ ├── instance-status-en.png │ │ │ └── services-en.png │ │ ├── modules │ │ ├── drv-db-import-files │ │ │ ├── command-params-en.png │ │ │ ├── connection-options-en.png │ │ │ ├── device-data-en.png │ │ │ ├── line-node-en.png │ │ │ ├── query1-params-en.png │ │ │ └── query2-params-en.png │ │ ├── drv-modbus-slave-files │ │ │ ├── channel-gateway-en.png │ │ │ ├── channel-gateway-options-en.png │ │ │ ├── custom-line-options-en.png │ │ │ ├── device-gateway-en.png │ │ │ ├── independent-device-en.png │ │ │ ├── modbus-template-en.png │ │ │ ├── slave-line-node-en.png │ │ │ └── tcp-server-channel-en.png │ │ ├── drv-telegram-files │ │ │ ├── config-subscriptions-en.png │ │ │ ├── config-token-en.png │ │ │ ├── line-log-en.png │ │ │ ├── send-message-en.png │ │ │ ├── telegram-bot-father.png │ │ │ ├── telegram-chat-en.png │ │ │ └── telegram-new-bot.png │ │ ├── mod-auto-control-files │ │ │ ├── auto-control-en.png │ │ │ ├── cnl-data-change-trigger-en.png │ │ │ ├── cnl-data-trigger-en.png │ │ │ ├── command-config-en.png │ │ │ ├── command-trigger-en.png │ │ │ ├── event-config-en.png │ │ │ ├── event-trigger-en.png │ │ │ ├── multi-cnl-data-trigger-en.png │ │ │ └── time-trigger-en.png │ │ ├── mod-db-export-files │ │ │ ├── add-db.png │ │ │ ├── arc-replication-en.png │ │ │ ├── connection-options-en.png │ │ │ ├── cur-data-export-en.png │ │ │ ├── db-export-en.png │ │ │ ├── general-options-en.png │ │ │ ├── hist-data-export-en.png │ │ │ ├── parameters.png │ │ │ └── query-options-en.png │ │ ├── mod-rapid-gate-files │ │ │ ├── arc-replication-en.png │ │ │ ├── connection-options-en.png │ │ │ ├── cur-data-transfer-en.png │ │ │ ├── event-transfer-en.png │ │ │ ├── general-options-en.png │ │ │ ├── hist-data-transfer-en.png │ │ │ ├── in-cmd-transfer-en.png │ │ │ ├── mapping-options-en.png │ │ │ ├── out-cmd-transfer-en.png │ │ │ └── rapid-gate-en.png │ │ ├── plg-chart-pro-files │ │ │ ├── chart-parts.svg │ │ │ ├── chart-pro-assign-en.png │ │ │ ├── chart-pro-en.png │ │ │ ├── chart-pro-files-en.png │ │ │ └── chart-pro-view-en.png │ │ ├── plg-dashboard-files │ │ │ ├── dashboard-en.png │ │ │ ├── dashboard-view-file-en.png │ │ │ └── dashboard-view-table-en.png │ │ ├── plg-elastic-report │ │ │ ├── install-font-en.png │ │ │ └── report-file-en.png │ │ ├── plg-map-files │ │ │ ├── map-example-en.png │ │ │ ├── map-view-file-en.png │ │ │ ├── map-view-table-en.png │ │ │ └── new-map-file-en.png │ │ └── plg-notification-files │ │ │ └── notification-panel-en.png │ │ └── software-overview │ │ ├── applications-files │ │ ├── scada-admin-en.png │ │ ├── scada-comm-en.png │ │ ├── scada-server-en.png │ │ ├── scada-web-scheme-en.png │ │ └── scada-web-table-en.png │ │ └── architecture-files │ │ ├── scada-arc-complex-en.png │ │ └── scada-arc-simple-en.png │ ├── es │ └── 5.8 │ │ ├── additional-applications │ │ └── app-auto-report-files │ │ │ ├── auto_report_cmd_en.png │ │ │ ├── auto_report_devices_en.png │ │ │ ├── auto_report_email_en.png │ │ │ ├── auto_report_general_en.png │ │ │ ├── auto_report_lines_en.png │ │ │ ├── auto_report_module_en.png │ │ │ ├── auto_report_out_cnls_en.png │ │ │ ├── auto_report_tasks_en.png │ │ │ └── auto_report_users_en.png │ │ ├── common-images │ │ ├── add_device.png │ │ ├── add_line.png │ │ ├── apply.png │ │ ├── backup.gif │ │ ├── blank.png │ │ ├── create_cnls.png │ │ ├── edit.png │ │ ├── import.png │ │ ├── open.png │ │ ├── pass.gif │ │ ├── plus.png │ │ ├── props.png │ │ ├── refresh.png │ │ ├── reset.png │ │ ├── restart.png │ │ ├── restart_blue.gif │ │ ├── restart_yellow.gif │ │ ├── settings.png │ │ ├── start.png │ │ ├── status.png │ │ └── upload.png │ │ ├── installation-and-run │ │ ├── run-applications-files │ │ │ ├── instance_status_en.png │ │ │ ├── scada_web_login_en.png │ │ │ └── service_props_en.png │ │ └── software-installation-files │ │ │ ├── install_dir_en.png │ │ │ ├── scada_setup_en.png │ │ │ ├── web_params_en.png │ │ │ ├── win10_features_dotnet_en.png │ │ │ ├── win10_features_iis_en.png │ │ │ ├── win7_features_dotnet_en.png │ │ │ └── win7_features_iis_en.png │ │ ├── modules │ │ ├── kp-db-import-files │ │ │ ├── db_import_cmd_en.png │ │ │ ├── db_import_conn_en.png │ │ │ └── db_import_query_en.png │ │ ├── kp-modbus-slave-files │ │ │ ├── device_props_en.png │ │ │ ├── serial_port_en.png │ │ │ ├── tcp_server_en.png │ │ │ └── template_editor_en.png │ │ ├── kp-telegram-files │ │ │ ├── bot_father.png │ │ │ ├── group_chat_en.png │ │ │ ├── kp_telegram_config_en.png │ │ │ ├── kp_telegram_reg_en.png │ │ │ ├── new_group.png │ │ │ └── send_cmd_en.png │ │ ├── mod-auto-control-files │ │ │ └── mod_auto_control_en.png │ │ ├── mod-db-export-files │ │ │ ├── db_export_conn_en.png │ │ │ ├── db_export_cur_en.png │ │ │ ├── db_export_manual_en.png │ │ │ ├── export.png │ │ │ └── plus.png │ │ ├── plg-chart-pro-files │ │ │ └── chart_parts.svg │ │ ├── plg-dashboard-files │ │ │ ├── dashboard_itf_file_en.png │ │ │ └── dashboard_itf_tbl_en.png │ │ ├── plg-elastic-report-files │ │ │ ├── report_itf_file_en.png │ │ │ └── report_itf_tbl_en.png │ │ └── plg-map-files │ │ │ ├── map_example_en.png │ │ │ ├── map_itf_file_en.png │ │ │ └── map_itf_tbl_en.png │ │ ├── software-configuration │ │ ├── communication-with-devices-files │ │ │ ├── comm_import_en.png │ │ │ ├── comm_line_params_en.png │ │ │ ├── comm_line_req_en.png │ │ │ └── comm_sync_en.png │ │ ├── configuration-basics-files │ │ │ ├── admin_new_proj_en.png │ │ │ ├── admin_start_page_en.png │ │ │ └── proj_struct_en.png │ │ ├── creating-views-files │ │ │ ├── interface_menu_en.png │ │ │ ├── interface_new_file_en.png │ │ │ ├── interface_table_en.png │ │ │ └── scheme_template_table_en.png │ │ └── tune-database-files │ │ │ ├── admin_clone_cnls_en.png │ │ │ ├── admin_export_table_en.png │ │ │ ├── admin_import_table_en.png │ │ │ ├── in_cnl_props_en.png │ │ │ ├── out_cnl_props_en.png │ │ │ ├── scada_admin_clone_cnls_en.png │ │ │ ├── scada_admin_cnl_props_en.png │ │ │ ├── scada_admin_create_cnls_en.png │ │ │ └── scada_admin_import_en.png │ │ ├── software-overview │ │ ├── applications-files │ │ │ ├── scada_admin_en.png │ │ │ ├── scada_comm_shell_en.png │ │ │ ├── scada_scheme_editor_en.png │ │ │ ├── scada_server_shell_en.png │ │ │ ├── scada_table_editor_en.png │ │ │ ├── scada_web_scheme_en.png │ │ │ └── scada_web_table_en.png │ │ └── software-architecture-files │ │ │ └── scada_arc_en.png │ │ └── use-cases │ │ ├── modbus-protocol-files │ │ ├── modbus_add_device_en.png │ │ ├── modbus_add_line_en.png │ │ ├── modbus_add_obj_en.png │ │ ├── modbus_create_cnls1_en.png │ │ ├── modbus_create_cnls2_en.png │ │ ├── modbus_create_cnls3_en.png │ │ ├── modbus_data_bound_en.png │ │ ├── modbus_data_en.png │ │ ├── modbus_device_props_en.png │ │ ├── modbus_interface_file_en.png │ │ ├── modbus_interface_menu_en.png │ │ ├── modbus_interface_table_en.png │ │ ├── modbus_line_main_en.png │ │ ├── modbus_line_req_en.png │ │ ├── modbus_new_proj_en.png │ │ ├── modbus_table_editor_en.png │ │ ├── modbus_template_en.png │ │ ├── modbus_template_settings_en.png │ │ ├── modbus_web1_en.png │ │ └── modbus_web2_en.png │ │ └── opc-standard-files │ │ ├── comm_svc_logon_en.png │ │ ├── dcom_config_en.png │ │ ├── opc_config_en.png │ │ └── opc_vals_en.png │ ├── favicon.ico │ ├── fr │ ├── 6.1 │ │ └── installation │ │ │ └── install-windows-files │ │ │ ├── dotnet-download.png │ │ │ ├── iis-modules-en.png │ │ │ ├── installer-apps-en.png │ │ │ ├── installer-dir-en.png │ │ │ ├── installer-en.png │ │ │ ├── installer-web-en.png │ │ │ └── win10-features-iis-en.png │ └── latest │ │ ├── common-images │ │ ├── add-device.png │ │ ├── add-line.png │ │ ├── add.png │ │ ├── create-cnls.png │ │ ├── filter.png │ │ ├── find.png │ │ ├── matrix.png │ │ ├── options.png │ │ ├── properties.png │ │ ├── refresh.png │ │ ├── status.png │ │ └── upload.png │ │ ├── configuration │ │ ├── channels-files │ │ │ ├── channel-archives-en.png │ │ │ ├── channel-display-en.png │ │ │ ├── channel-events-en.png │ │ │ ├── channel-general-en.png │ │ │ ├── channel-limits-en.png │ │ │ ├── clone-channels-en.png │ │ │ ├── create-channels-step1-en.png │ │ │ ├── create-channels-step2-en.png │ │ │ ├── create-channels-step3-en.png │ │ │ ├── export-table-en.png │ │ │ └── import-table-en.png │ │ ├── configuration-basics-files │ │ │ ├── new-project-en.png │ │ │ ├── project-structure-en.png │ │ │ └── start-page-en.png │ │ ├── device-polling-files │ │ │ ├── device-options-en.png │ │ │ ├── line-device-sync-en.png │ │ │ └── line-options-en.png │ │ ├── table-views-files │ │ │ ├── add-empty.png │ │ │ ├── new-table-en.png │ │ │ ├── rocket.png │ │ │ ├── table-editor-en.png │ │ │ ├── table-options-en.png │ │ │ └── table-view-en.png │ │ ├── user-management-files │ │ │ ├── object-rights-table-en.png │ │ │ ├── object-tree-en.png │ │ │ ├── objects-table-en.png │ │ │ ├── right-matrix-en.png │ │ │ ├── role-inheritance-table-en.png │ │ │ ├── roles-table-en.png │ │ │ └── users-table-en.png │ │ └── views-files │ │ │ ├── explorer-en.png │ │ │ ├── new-file-en.png │ │ │ ├── view-menu-en.png │ │ │ └── view-table-en.png │ │ ├── installation │ │ ├── install-windows-files │ │ │ ├── dotnet8-download.png │ │ │ ├── iis-modules-en.png │ │ │ ├── installer-apps-en.png │ │ │ ├── installer-dir-en.png │ │ │ ├── installer-en.png │ │ │ ├── installer-web-en.png │ │ │ └── win10-features-iis-en.png │ │ └── services-files │ │ │ ├── instance-status-en.png │ │ │ └── services-en.png │ │ └── software-overview │ │ ├── applications-files │ │ ├── scada-admin-en.png │ │ ├── scada-comm-en.png │ │ ├── scada-server-en.png │ │ ├── scada-web-scheme-en.png │ │ └── scada-web-table-en.png │ │ └── architecture-files │ │ ├── scada-arc-complex-en.png │ │ └── scada-arc-simple-en.png │ ├── js │ └── article.js │ ├── lib │ └── prismjs │ │ ├── prism.css │ │ └── prism.js │ ├── ru │ ├── 5.8 │ │ ├── additional-applications │ │ │ └── app-auto-report-files │ │ │ │ ├── auto_report_cmd_ru.png │ │ │ │ ├── auto_report_devices_ru.png │ │ │ │ ├── auto_report_email_ru.png │ │ │ │ ├── auto_report_general_ru.png │ │ │ │ ├── auto_report_lines_ru.png │ │ │ │ ├── auto_report_module_ru.png │ │ │ │ ├── auto_report_out_cnls_ru.png │ │ │ │ ├── auto_report_tasks_ru.png │ │ │ │ └── auto_report_users_ru.png │ │ ├── common-images │ │ │ ├── add_device.png │ │ │ ├── add_line.png │ │ │ ├── apply.png │ │ │ ├── backup.gif │ │ │ ├── blank.png │ │ │ ├── create_cnls.png │ │ │ ├── edit.png │ │ │ ├── import.png │ │ │ ├── open.png │ │ │ ├── pass.gif │ │ │ ├── plus.png │ │ │ ├── props.png │ │ │ ├── refresh.png │ │ │ ├── reset.png │ │ │ ├── restart.png │ │ │ ├── restart_blue.gif │ │ │ ├── restart_yellow.gif │ │ │ ├── settings.png │ │ │ ├── start.png │ │ │ ├── status.png │ │ │ └── upload.png │ │ ├── installation-and-run │ │ │ ├── run-applications-files │ │ │ │ ├── instance_status_ru.png │ │ │ │ ├── scada_web_login_ru.png │ │ │ │ └── service_props_ru.png │ │ │ └── software-installation-files │ │ │ │ ├── install_dir_ru.png │ │ │ │ ├── scada_setup_ru.png │ │ │ │ ├── web_params_ru.png │ │ │ │ ├── win10_features_dotnet_ru.png │ │ │ │ ├── win10_features_iis_ru.png │ │ │ │ ├── win7_features_dotnet_ru.png │ │ │ │ └── win7_features_iis_ru.png │ │ ├── modules │ │ │ ├── kp-db-import-files │ │ │ │ ├── db_import_cmd_ru.png │ │ │ │ ├── db_import_conn_ru.png │ │ │ │ └── db_import_query_ru.png │ │ │ ├── kp-modbus-slave-files │ │ │ │ ├── device_props_ru.png │ │ │ │ ├── serial_port_ru.png │ │ │ │ ├── tcp_server_ru.png │ │ │ │ └── template_editor_ru.png │ │ │ ├── kp-telegram-files │ │ │ │ ├── bot_father.png │ │ │ │ ├── group_chat_ru.png │ │ │ │ ├── kp_telegram_config_ru.png │ │ │ │ ├── kp_telegram_reg_ru.png │ │ │ │ ├── new_group.png │ │ │ │ └── send_cmd_ru.png │ │ │ ├── mod-auto-control-files │ │ │ │ └── mod_auto_control_ru.png │ │ │ ├── mod-db-export-files │ │ │ │ ├── db_export_conn_ru.png │ │ │ │ ├── db_export_cur_ru.png │ │ │ │ ├── db_export_manual_ru.png │ │ │ │ ├── export.png │ │ │ │ └── plus.png │ │ │ ├── plg-chart-pro-files │ │ │ │ └── chart_parts.svg │ │ │ ├── plg-dashboard-files │ │ │ │ ├── dashboard_itf_file_ru.png │ │ │ │ └── dashboard_itf_tbl_ru.png │ │ │ ├── plg-elastic-report-files │ │ │ │ ├── report_itf_file_ru.png │ │ │ │ └── report_itf_tbl_ru.png │ │ │ └── plg-map-files │ │ │ │ ├── map_example_ru.png │ │ │ │ ├── map_itf_file_ru.png │ │ │ │ └── map_itf_tbl_ru.png │ │ ├── software-configuration │ │ │ ├── communication-with-devices-files │ │ │ │ ├── comm_import_ru.png │ │ │ │ ├── comm_line_params_ru.png │ │ │ │ ├── comm_line_req_ru.png │ │ │ │ └── comm_sync_ru.png │ │ │ ├── configuration-basics-files │ │ │ │ ├── admin_new_proj_ru.png │ │ │ │ ├── admin_start_page_ru.png │ │ │ │ └── proj_struct_ru.png │ │ │ ├── creating-views-files │ │ │ │ ├── interface_menu_ru.png │ │ │ │ ├── interface_new_file_ru.png │ │ │ │ ├── interface_table_ru.png │ │ │ │ └── scheme_template_table_ru.png │ │ │ └── tune-database-files │ │ │ │ ├── admin_clone_cnls_ru.png │ │ │ │ ├── admin_export_table_ru.png │ │ │ │ ├── admin_import_table_ru.png │ │ │ │ ├── in_cnl_props_ru.png │ │ │ │ └── out_cnl_props_ru.png │ │ ├── software-overview │ │ │ ├── applications-files │ │ │ │ ├── scada_admin_ru.png │ │ │ │ ├── scada_comm_shell_ru.png │ │ │ │ ├── scada_scheme_editor_ru.png │ │ │ │ ├── scada_server_shell_ru.png │ │ │ │ ├── scada_table_editor_ru.png │ │ │ │ ├── scada_web_scheme_ru.png │ │ │ │ └── scada_web_table_en.png │ │ │ └── software-architecture-files │ │ │ │ └── scada_arc_ru.png │ │ └── use-cases │ │ │ ├── modbus-protocol-files │ │ │ ├── modbus_add_device_ru.png │ │ │ ├── modbus_add_line_ru.png │ │ │ ├── modbus_add_obj_ru.png │ │ │ ├── modbus_create_cnls1_ru.png │ │ │ ├── modbus_create_cnls2_ru.png │ │ │ ├── modbus_create_cnls3_ru.png │ │ │ ├── modbus_data_bound_ru.png │ │ │ ├── modbus_data_ru.png │ │ │ ├── modbus_device_props_ru.png │ │ │ ├── modbus_interface_file_ru.png │ │ │ ├── modbus_interface_menu_ru.png │ │ │ ├── modbus_interface_table_ru.png │ │ │ ├── modbus_line_main_ru.png │ │ │ ├── modbus_line_req_ru.png │ │ │ ├── modbus_new_proj_ru.png │ │ │ ├── modbus_table_editor_ru.png │ │ │ ├── modbus_template_ru.png │ │ │ ├── modbus_template_settings_ru.png │ │ │ ├── modbus_web1_ru.png │ │ │ └── modbus_web2_ru.png │ │ │ └── opc-standard-files │ │ │ ├── comm_svc_logon_ru.png │ │ │ ├── dcom_config_ru.png │ │ │ ├── opc_config_ru.png │ │ │ └── opc_vals_ru.png │ ├── 6.1 │ │ ├── installation │ │ │ └── install-windows-files │ │ │ │ ├── dotnet-download.png │ │ │ │ ├── iis-modules-ru.png │ │ │ │ ├── installer-apps-ru.png │ │ │ │ ├── installer-dir-ru.png │ │ │ │ ├── installer-ru.png │ │ │ │ ├── installer-web-ru.png │ │ │ │ └── win11-features-iis-ru.png │ │ └── modules │ │ │ ├── plg-chart-pro-files │ │ │ ├── chart-parts.svg │ │ │ ├── chart-pro-assign-ru.png │ │ │ ├── chart-pro-files-ru.png │ │ │ ├── chart-pro-ru.png │ │ │ └── chart-pro-view-ru.png │ │ │ ├── plg-dashboard-files │ │ │ ├── dashboard-ru.png │ │ │ ├── dashboard-view-file-ru.png │ │ │ └── dashboard-view-table-ru.png │ │ │ └── plg-elastic-report │ │ │ ├── install-font-ru.png │ │ │ └── report-file-ru.png │ └── latest │ │ ├── additional-applications │ │ └── app-auto-report-files │ │ │ ├── command-channel-ru.png │ │ │ ├── connection-options-ru.png │ │ │ ├── devices-table-ru.png │ │ │ ├── elastic-report-type-ru.png │ │ │ ├── general-options-ru.png │ │ │ ├── key.png │ │ │ ├── mail-channel-ru.png │ │ │ ├── mail-options-ru.png │ │ │ ├── report-config-ru.png │ │ │ ├── report.png │ │ │ ├── restart.png │ │ │ ├── schedule-options-ru.png │ │ │ ├── start.png │ │ │ ├── stop.png │ │ │ ├── task-options-ru.png │ │ │ ├── task.png │ │ │ └── users-table-ru.png │ │ ├── common-images │ │ ├── add-device.png │ │ ├── add-line.png │ │ ├── add.png │ │ ├── create-cnls.png │ │ ├── filter.png │ │ ├── find.png │ │ ├── matrix.png │ │ ├── options.png │ │ ├── properties.png │ │ ├── refresh.png │ │ ├── status.png │ │ └── upload.png │ │ ├── configuration │ │ ├── channels-files │ │ │ ├── channel-archives-ru.png │ │ │ ├── channel-display-ru.png │ │ │ ├── channel-events-ru.png │ │ │ ├── channel-general-ru.png │ │ │ ├── channel-limits-ru.png │ │ │ ├── clone-channels-ru.png │ │ │ ├── create-channels-step1-ru.png │ │ │ ├── create-channels-step2-ru.png │ │ │ ├── create-channels-step3-ru.png │ │ │ ├── export-table-ru.png │ │ │ └── import-table-ru.png │ │ ├── configuration-basics-files │ │ │ ├── new-project-ru.png │ │ │ ├── project-structure-ru.png │ │ │ └── start-page-ru.png │ │ ├── device-polling-files │ │ │ ├── device-options-ru.png │ │ │ ├── line-device-sync-ru.png │ │ │ └── line-options-ru.png │ │ ├── table-views-files │ │ │ ├── add-empty.png │ │ │ ├── new-table-ru.png │ │ │ ├── rocket.png │ │ │ ├── table-editor-ru.png │ │ │ ├── table-options-ru.png │ │ │ └── table-view-ru.png │ │ ├── user-management-files │ │ │ ├── object-rights-table-ru.png │ │ │ ├── object-tree-ru.png │ │ │ ├── objects-table-ru.png │ │ │ ├── right-matrix-ru.png │ │ │ ├── role-inheritance-table-ru.png │ │ │ ├── roles-table-ru.png │ │ │ └── users-table-ru.png │ │ └── views-files │ │ │ ├── explorer-ru.png │ │ │ ├── new-file-ru.png │ │ │ ├── view-menu-ru.png │ │ │ └── view-table-ru.png │ │ ├── developers │ │ └── plugin-development-files │ │ │ ├── plg-abc-view.png │ │ │ └── plg-abc.png │ │ ├── enterprise-edition │ │ ├── plg-audit-files │ │ │ └── audit-report-ru.png │ │ └── plg-guard-files │ │ │ ├── guard-general-ru.png │ │ │ └── guard-users-ru.png │ │ ├── installation │ │ ├── install-windows-files │ │ │ ├── dotnet8-download.png │ │ │ ├── iis-modules-ru.png │ │ │ ├── installer-apps-ru.png │ │ │ ├── installer-dir-ru.png │ │ │ ├── installer-ru.png │ │ │ ├── installer-web-ru.png │ │ │ └── win11-features-iis-ru.png │ │ └── services-files │ │ │ ├── instance-status-ru.png │ │ │ └── services-ru.png │ │ ├── modules │ │ ├── drv-db-import-files │ │ │ ├── command-params-ru.png │ │ │ ├── connection-options-ru.png │ │ │ ├── device-data-ru.png │ │ │ ├── line-node-ru.png │ │ │ ├── query1-params-ru.png │ │ │ └── query2-params-ru.png │ │ ├── drv-modbus-slave-files │ │ │ ├── channel-gateway-options-ru.png │ │ │ ├── channel-gateway-ru.png │ │ │ ├── custom-line-options-ru.png │ │ │ ├── device-gateway-ru.png │ │ │ ├── independent-device-ru.png │ │ │ ├── modbus-template-ru.png │ │ │ ├── slave-line-node-ru.png │ │ │ └── tcp-server-channel-ru.png │ │ ├── drv-telegram-files │ │ │ ├── config-subscriptions-ru.png │ │ │ ├── config-token-ru.png │ │ │ ├── line-log-ru.png │ │ │ ├── send-message-ru.png │ │ │ ├── telegram-bot-father.png │ │ │ ├── telegram-chat-ru.png │ │ │ └── telegram-new-bot.png │ │ ├── mod-auto-control-files │ │ │ ├── auto-control-ru.png │ │ │ ├── cnl-data-change-trigger-ru.png │ │ │ ├── cnl-data-trigger-ru.png │ │ │ ├── command-config-ru.png │ │ │ ├── command-trigger-ru.png │ │ │ ├── event-config-ru.png │ │ │ ├── event-trigger-ru.png │ │ │ ├── multi-cnl-data-trigger-ru.png │ │ │ └── time-trigger-ru.png │ │ ├── mod-db-export-files │ │ │ ├── add-db.png │ │ │ ├── arc-replication-ru.png │ │ │ ├── connection-options-ru.png │ │ │ ├── cur-data-export-ru.png │ │ │ ├── db-export-ru.png │ │ │ ├── general-options-ru.png │ │ │ ├── hist-data-export-ru.png │ │ │ ├── parameters.png │ │ │ └── query-options-ru.png │ │ ├── mod-rapid-gate-files │ │ │ ├── arc-replication-ru.png │ │ │ ├── connection-options-ru.png │ │ │ ├── cur-data-transfer-ru.png │ │ │ ├── event-transfer-ru.png │ │ │ ├── general-options-ru.png │ │ │ ├── hist-data-transfer-ru.png │ │ │ ├── in-cmd-transfer-ru.png │ │ │ ├── mapping-options-ru.png │ │ │ ├── out-cmd-transfer-ru.png │ │ │ └── rapid-gate-ru.png │ │ ├── plg-chart-pro-files │ │ │ ├── chart-parts.svg │ │ │ ├── chart-pro-assign-ru.png │ │ │ ├── chart-pro-files-ru.png │ │ │ ├── chart-pro-ru.png │ │ │ └── chart-pro-view-ru.png │ │ ├── plg-dashboard-files │ │ │ ├── dashboard-ru.png │ │ │ ├── dashboard-view-file-ru.png │ │ │ └── dashboard-view-table-ru.png │ │ ├── plg-elastic-report │ │ │ ├── install-font-ru.png │ │ │ └── report-file-ru.png │ │ ├── plg-map-files │ │ │ ├── map-example-ru.png │ │ │ ├── map-view-file-ru.png │ │ │ ├── map-view-table-ru.png │ │ │ └── new-map-file-ru.png │ │ └── plg-notification-files │ │ │ └── notification-panel-ru.png │ │ └── software-overview │ │ ├── applications-files │ │ ├── scada-admin-ru.png │ │ ├── scada-comm-ru.png │ │ ├── scada-server-ru.png │ │ ├── scada-web-scheme-en.png │ │ └── scada-web-table-en.png │ │ └── architecture-files │ │ ├── scada-arc-complex-ru.png │ │ └── scada-arc-simple-ru.png │ └── zh │ └── 6.0 │ └── installation │ └── install-windows-files │ ├── dotnet-download-zh.png │ ├── iis-modules-zh.png │ ├── installer-apps-en.png │ ├── installer-dir-en.png │ ├── installer-en.png │ ├── installer-web-en.png │ └── win10-features-iis-zh.png ├── ScadaReport ├── ScadaReport.sln └── ScadaReport │ ├── IReportContext.cs │ ├── OutputFormat.cs │ ├── PeriodControl.cs │ ├── PeriodUnit.cs │ ├── ReportArgs.cs │ ├── ReportBuilder.cs │ ├── ReportContext.cs │ ├── ReportUtils.cs │ ├── ScadaReport.csproj │ └── Xml2003 │ ├── DirectiveEventArgs.cs │ ├── Excel │ ├── Cell.cs │ ├── Column.cs │ ├── ExcelDirectiveEventArgs.cs │ ├── ExcelUtils.cs │ ├── Row.cs │ ├── Style.cs │ ├── Table.cs │ ├── Workbook.cs │ ├── WorkbookRenderer.cs │ ├── Worksheet.cs │ └── XmlNamespaces.cs │ ├── ProcessingStage.cs │ ├── ReportDirectives.cs │ ├── Word │ ├── DocumentRenderer.cs │ └── WordUtils.cs │ └── Xml2003Renderer.cs ├── ScadaServer ├── OpenModules │ ├── .editorconfig │ ├── ModActiveDirectory.Logic │ │ ├── ModActiveDirectory.Logic.csproj │ │ ├── ModActiveDirectoryLogic.cs │ │ └── SqlScript.cs │ ├── ModActiveDirectory.Shared │ │ ├── Config │ │ │ ├── ModActiveDirectory.xml │ │ │ └── ModuleConfig.cs │ │ ├── ModActiveDirectory.Shared.projitems │ │ ├── ModActiveDirectory.Shared.shproj │ │ └── ModuleUtils.cs │ ├── ModActiveDirectory.View │ │ ├── Lang │ │ │ ├── ModActiveDirectory.en-GB.xml │ │ │ └── ModActiveDirectory.ru-RU.xml │ │ ├── ModActiveDirectory.View.csproj │ │ └── ModActiveDirectoryView.cs │ ├── ModArcBasic.Logic │ │ ├── BasicCAL.cs │ │ ├── BasicEAL.cs │ │ ├── BasicHAL.cs │ │ ├── ModArcBasic.Logic.csproj │ │ ├── ModArcBasicLogic.cs │ │ └── ModuleConst.cs │ ├── ModArcBasic.Shared │ │ ├── Config │ │ │ ├── BasicCAO.cs │ │ │ ├── BasicEAO.cs │ │ │ ├── BasicHAO.cs │ │ │ ├── ModArcBasic.xml │ │ │ └── ModuleConfig.cs │ │ ├── ModArcBasic.Shared.projitems │ │ ├── ModArcBasic.Shared.shproj │ │ └── ModuleUtils.cs │ ├── ModArcBasic.View │ │ ├── BasicArchiveView.cs │ │ ├── Forms │ │ │ ├── FrmArcDir.Designer.cs │ │ │ ├── FrmArcDir.cs │ │ │ ├── FrmArcDir.resx │ │ │ ├── FrmBasicCAO.Designer.cs │ │ │ ├── FrmBasicCAO.cs │ │ │ ├── FrmBasicCAO.resx │ │ │ ├── FrmBasicEAO.Designer.cs │ │ │ ├── FrmBasicEAO.cs │ │ │ ├── FrmBasicEAO.resx │ │ │ ├── FrmBasicHAO.Designer.cs │ │ │ ├── FrmBasicHAO.cs │ │ │ └── FrmBasicHAO.resx │ │ ├── Lang │ │ │ ├── ModArcBasic.en-GB.xml │ │ │ └── ModArcBasic.ru-RU.xml │ │ ├── ModArcBasic.View.csproj │ │ └── ModArcBasicView.cs │ ├── ModArcInfluxDb.Logic │ │ ├── InfluxHAL.cs │ │ ├── ModArcInfluxDb.Logic.csproj │ │ └── ModArcInfluxDbLogic.cs │ ├── ModArcInfluxDb.Shared │ │ ├── Config │ │ │ ├── ConnectionOptions.cs │ │ │ ├── InfluxHAO.cs │ │ │ ├── ModArcInfluxDb.xml │ │ │ └── ModuleConfig.cs │ │ ├── ModArcInfluxDb.Shared.projitems │ │ ├── ModArcInfluxDb.Shared.shproj │ │ └── ModuleUtils.cs │ ├── ModArcInfluxDb.View │ │ ├── Forms │ │ │ ├── FrmConnManager.Designer.cs │ │ │ ├── FrmConnManager.cs │ │ │ ├── FrmConnManager.resx │ │ │ ├── FrmInfluxHAO.Designer.cs │ │ │ ├── FrmInfluxHAO.cs │ │ │ └── FrmInfluxHAO.resx │ │ ├── InfluxArchiveView.cs │ │ ├── Lang │ │ │ ├── ModArcInfluxDb.en-GB.xml │ │ │ └── ModArcInfluxDb.ru-RU.xml │ │ ├── ModArcInfluxDb.View.csproj │ │ └── ModArcInfluxDbView.cs │ ├── ModArcPostgreSql.Logic │ │ ├── DbUtils.cs │ │ ├── EventQueue.cs │ │ ├── ModArcPostgreSql.Logic.csproj │ │ ├── ModArcPostgreSqlLogic.cs │ │ ├── PointQueue.cs │ │ ├── PostgreCAL.cs │ │ ├── PostgreEAL.cs │ │ ├── PostgreHAL.cs │ │ ├── QueryBuilder.cs │ │ └── QueueBase.cs │ ├── ModArcPostgreSql.Shared │ │ ├── Config │ │ │ ├── IDatabaseOptions.cs │ │ │ ├── ModArcPostgreSql.xml │ │ │ ├── ModuleConfig.cs │ │ │ ├── PartitionSize.cs │ │ │ ├── PostgreCAO.cs │ │ │ ├── PostgreEAO.cs │ │ │ └── PostgreHAO.cs │ │ ├── ModArcPostgreSql.Shared.projitems │ │ ├── ModArcPostgreSql.Shared.shproj │ │ ├── ModulePhrases.cs │ │ └── ModuleUtils.cs │ ├── ModArcPostgreSql.View │ │ ├── Controls │ │ │ ├── CtrlDatabaseOptions.Designer.cs │ │ │ ├── CtrlDatabaseOptions.cs │ │ │ └── CtrlDatabaseOptions.resx │ │ ├── Forms │ │ │ ├── FrmConnManager.Designer.cs │ │ │ ├── FrmConnManager.cs │ │ │ ├── FrmConnManager.resx │ │ │ ├── FrmPostgreCAO.Designer.cs │ │ │ ├── FrmPostgreCAO.cs │ │ │ ├── FrmPostgreCAO.resx │ │ │ ├── FrmPostgreEAO.Designer.cs │ │ │ ├── FrmPostgreEAO.cs │ │ │ ├── FrmPostgreEAO.resx │ │ │ ├── FrmPostgreHAO.Designer.cs │ │ │ ├── FrmPostgreHAO.cs │ │ │ └── FrmPostgreHAO.resx │ │ ├── Lang │ │ │ ├── ModArcPostgreSql.en-GB.xml │ │ │ └── ModArcPostgreSql.ru-RU.xml │ │ ├── ModArcPostgreSql.View.csproj │ │ ├── ModArcPostgreSqlView.cs │ │ ├── PostgreArchiveView.cs │ │ └── UiUtils.cs │ ├── ModDbExport.Logic │ │ ├── ConnectionStatus.cs │ │ ├── Exporter.cs │ │ ├── ExporterCommand.cs │ │ ├── IExporterContext.cs │ │ ├── LogicUtils.cs │ │ ├── ModDbExport.Logic.csproj │ │ ├── ModDbExportLogic.cs │ │ ├── Queries │ │ │ ├── ClassifiedQueries.cs │ │ │ ├── CmdQuery.cs │ │ │ ├── CombinedFilter.cs │ │ │ ├── DataQuery.cs │ │ │ ├── EventAckQuery.cs │ │ │ ├── EventQuery.cs │ │ │ ├── Query.cs │ │ │ └── RuntimeFilter.cs │ │ ├── Replication │ │ │ ├── ArcExportTask.cs │ │ │ ├── ArcReplicationState.cs │ │ │ ├── ArcReplicator.cs │ │ │ └── CnlNumGroup.cs │ │ ├── Scripts │ │ │ ├── export_mssql.sql │ │ │ ├── export_mysql.sql │ │ │ ├── export_oracle.sql │ │ │ └── export_postgresql.sql │ │ └── SliceItem.cs │ ├── ModDbExport.Shared │ │ ├── Config │ │ │ ├── ArcReplicationOptions.cs │ │ │ ├── CurDataExportOptions.cs │ │ │ ├── DataKind.cs │ │ │ ├── ExportOptions.cs │ │ │ ├── ExportTargetConfig.cs │ │ │ ├── ExportTrigger.cs │ │ │ ├── GeneralOptions.cs │ │ │ ├── HistDataExportOptions.cs │ │ │ ├── ModDbExport.xml │ │ │ ├── ModuleConfig.cs │ │ │ ├── QueryFilter.cs │ │ │ ├── QueryOptionList.cs │ │ │ └── QueryOptions.cs │ │ ├── ModDbExport.Shared.projitems │ │ ├── ModDbExport.Shared.shproj │ │ └── ModuleUtils.cs │ ├── ModDbExport.View │ │ ├── Controls │ │ │ ├── CtrlArcReplication.Designer.cs │ │ │ ├── CtrlArcReplication.cs │ │ │ ├── CtrlArcReplication.resx │ │ │ ├── CtrlCurDataExport.Designer.cs │ │ │ ├── CtrlCurDataExport.cs │ │ │ ├── CtrlCurDataExport.resx │ │ │ ├── CtrlGeneral.Designer.cs │ │ │ ├── CtrlGeneral.cs │ │ │ ├── CtrlGeneral.resx │ │ │ ├── CtrlHistDataExport.Designer.cs │ │ │ ├── CtrlHistDataExport.cs │ │ │ ├── CtrlHistDataExport.resx │ │ │ ├── CtrlQuery.Designer.cs │ │ │ ├── CtrlQuery.cs │ │ │ └── CtrlQuery.resx │ │ ├── Forms │ │ │ ├── FrmModuleConfig.Designer.cs │ │ │ ├── FrmModuleConfig.cs │ │ │ ├── FrmModuleConfig.resx │ │ │ ├── FrmQueryParametrs.Designer.cs │ │ │ ├── FrmQueryParametrs.cs │ │ │ └── FrmQueryParametrs.resx │ │ ├── Lang │ │ │ ├── ModDbExport.en-GB.xml │ │ │ └── ModDbExport.ru-RU.xml │ │ ├── ModDbExport.View.csproj │ │ ├── ModDbExportView.cs │ │ ├── ModulePhrases.cs │ │ ├── Properties │ │ │ ├── Resources.Designer.cs │ │ │ └── Resources.resx │ │ ├── QueryInfo.cs │ │ ├── QueryParam.cs │ │ └── Resources │ │ │ ├── add_db.png │ │ │ ├── collapse_all.png │ │ │ ├── connect.png │ │ │ ├── copy.png │ │ │ ├── cut.png │ │ │ ├── db_mssql.png │ │ │ ├── db_mssql_inactive.png │ │ │ ├── db_mysql.png │ │ │ ├── db_mysql_inactive.png │ │ │ ├── db_oledb.png │ │ │ ├── db_oledb_inactive.png │ │ │ ├── db_oracle.png │ │ │ ├── db_oracle_inactive.png │ │ │ ├── db_postgresql.png │ │ │ ├── db_postgresql_inactive.png │ │ │ ├── delete.png │ │ │ ├── edit.png │ │ │ ├── export_options.png │ │ │ ├── find.png │ │ │ ├── move_down.png │ │ │ ├── move_up.png │ │ │ ├── options.png │ │ │ ├── parameters.png │ │ │ ├── paste.png │ │ │ ├── query.png │ │ │ ├── query_ack.png │ │ │ ├── query_ack_inactive.png │ │ │ ├── query_cmd.png │ │ │ ├── query_cmd_inactive.png │ │ │ ├── query_cur.png │ │ │ ├── query_cur_inactive.png │ │ │ ├── query_event.png │ │ │ ├── query_event_inactive.png │ │ │ ├── query_hist.png │ │ │ └── query_hist_inactive.png │ ├── ModDiffCalculator.Logic │ │ ├── CalculationTask.cs │ │ ├── ChannelGroup.cs │ │ ├── ModDiffCalculator.Logic.csproj │ │ └── ModDiffCalculatorLogic.cs │ ├── ModDiffCalculator.Shared │ │ ├── Config │ │ │ ├── GeneralOptions.cs │ │ │ ├── GroupConfig.cs │ │ │ ├── GroupConfigList.cs │ │ │ ├── ItemConfig.cs │ │ │ ├── ModDiffCalculator.xml │ │ │ ├── ModuleConfig.cs │ │ │ └── PeriodType.cs │ │ ├── ModDiffCalculator.Shared.projitems │ │ ├── ModDiffCalculator.Shared.shproj │ │ └── ModuleUtils.cs │ ├── ModDiffCalculator.View │ │ ├── Lang │ │ │ ├── ModDiffCalculator.en-GB.xml │ │ │ └── ModDiffCalculator.ru-RU.xml │ │ ├── ModDiffCalculator.View.csproj │ │ ├── ModDiffCalculatorView.cs │ │ ├── ModuleConfigProvider.cs │ │ ├── ModulePhrases.cs │ │ ├── Properties │ │ │ ├── Resources.Designer.cs │ │ │ └── Resources.resx │ │ └── Resources │ │ │ ├── elem.png │ │ │ ├── folder_closed.png │ │ │ ├── folder_open.png │ │ │ └── options.png │ └── OpenModules.sln ├── Res │ └── mod_db_export │ │ ├── add_db.png │ │ ├── collapse_all.png │ │ ├── connect.png │ │ ├── db_mssql.png │ │ ├── db_mssql_inactive.png │ │ ├── db_mysql.png │ │ ├── db_mysql_inactive.png │ │ ├── db_oledb.png │ │ ├── db_oledb_inactive.png │ │ ├── db_oracle.png │ │ ├── db_oracle_inactive.png │ │ ├── db_postgresql.png │ │ ├── db_postgresql_inactive.png │ │ ├── export_options.png │ │ ├── options.png │ │ ├── parameters.png │ │ ├── query.png │ │ ├── query_ack.png │ │ ├── query_ack_inactive.png │ │ ├── query_cmd.png │ │ ├── query_cmd_inactive.png │ │ ├── query_cur.png │ │ ├── query_cur_inactive.png │ │ ├── query_event.png │ │ ├── query_event_inactive.png │ │ ├── query_hist.png │ │ └── query_hist_inactive.png ├── ScadaServer │ ├── ScadaServer.sln │ ├── ScadaServerApp │ │ ├── Program.cs │ │ └── ScadaServerApp.csproj │ ├── ScadaServerCommon.Forms │ │ ├── .editorconfig │ │ ├── Controls │ │ │ ├── CtrlCurrentArchiveOptions.Designer.cs │ │ │ ├── CtrlCurrentArchiveOptions.cs │ │ │ ├── CtrlCurrentArchiveOptions.resx │ │ │ ├── CtrlEventArchiveOptions.Designer.cs │ │ │ ├── CtrlEventArchiveOptions.cs │ │ │ ├── CtrlEventArchiveOptions.resx │ │ │ ├── CtrlHistoricalArchiveOptions.Designer.cs │ │ │ ├── CtrlHistoricalArchiveOptions.cs │ │ │ └── CtrlHistoricalArchiveOptions.resx │ │ └── ScadaServerCommon.Forms.csproj │ ├── ScadaServerCommon │ │ ├── Archives │ │ │ ├── ArchiveKind.cs │ │ │ ├── ArchiveLogic.cs │ │ │ ├── ArchiveOptions.cs │ │ │ ├── ArchiveUtils.cs │ │ │ ├── ArchiveView.cs │ │ │ ├── CurrentArchiveLogic.cs │ │ │ ├── CurrentArchiveOptions.cs │ │ │ ├── CurrentDataKind.cs │ │ │ ├── DeadbandUnit.cs │ │ │ ├── EventArchiveLogic.cs │ │ │ ├── EventArchiveOptions.cs │ │ │ ├── HistoricalArchiveLogic.cs │ │ │ ├── HistoricalArchiveOptions.cs │ │ │ ├── IArchiveContext.cs │ │ │ ├── ICurrentData.cs │ │ │ ├── TimeUnit.cs │ │ │ └── UpdateContext.cs │ │ ├── Config │ │ │ ├── ArchiveConfig.cs │ │ │ ├── GeneralOptions.cs │ │ │ ├── ScadaServerConfig.xml │ │ │ └── ServerConfig.cs │ │ ├── ConfigDatabase.cs │ │ ├── Lang │ │ │ ├── ScadaServer.en-GB.xml │ │ │ ├── ScadaServer.ru-RU.xml │ │ │ └── ServerPhrases.cs │ │ ├── Modules │ │ │ ├── ClassifiedChannels.cs │ │ │ ├── IServerContext.cs │ │ │ ├── ModuleConfigBase.cs │ │ │ ├── ModuleFactory.cs │ │ │ ├── ModuleLogic.cs │ │ │ ├── ModulePurposes.cs │ │ │ └── ModuleView.cs │ │ ├── ScadaServerCommon.csproj │ │ ├── ServerCmdCode.cs │ │ ├── ServerDirs.cs │ │ └── ServerUtils.cs │ ├── ScadaServerEngine │ │ ├── ArchiveCalcContext.cs │ │ ├── ArchiveContext.cs │ │ ├── ArchiveHolder.cs │ │ ├── CalcEngine.cs │ │ ├── Calculator.cs │ │ ├── ClientTag.cs │ │ ├── CnlListItem.cs │ │ ├── CnlTag.cs │ │ ├── CoreLogic.cs │ │ ├── CurrentData.cs │ │ ├── EngineUtils.cs │ │ ├── ICalcContext.cs │ │ ├── LimCnlIndex.cs │ │ ├── Manager.cs │ │ ├── ModuleHolder.cs │ │ ├── OutCnlTag.cs │ │ ├── ScadaServerEngine.csproj │ │ ├── ServerCache.cs │ │ ├── ServerContext.cs │ │ ├── ServerListener.cs │ │ └── ServerRightMatrix.cs │ └── ScadaServerWkr │ │ ├── Program.cs │ │ ├── Properties │ │ └── launchSettings.json │ │ ├── ScadaServerWkr.csproj │ │ ├── Worker.cs │ │ ├── appsettings.Development.json │ │ └── appsettings.json └── Script │ ├── Linux │ ├── scadaserver6.service │ ├── svc_restart.sh │ ├── svc_start.sh │ └── svc_stop.sh │ └── Windows │ ├── svc_install.bat │ ├── svc_restart.bat │ ├── svc_start.bat │ ├── svc_stop.bat │ └── svc_uninstall.bat └── ScadaWeb ├── Mimics ├── .editorconfig ├── Mimics.sln ├── PlgMimBasicComp.Shared │ ├── PlgMimBasicComp.Shared.projitems │ ├── PlgMimBasicComp.Shared.shproj │ └── PluginInfo.cs ├── PlgMimBasicComp.View │ ├── PlgMimBasicComp.View.csproj │ └── PlgMimBasicCompView.cs ├── PlgMimBasicComp │ ├── Code │ │ ├── BasicComponentGroup.cs │ │ ├── BasicComponentSpec.cs │ │ ├── BasicSubtypeGroup.cs │ │ ├── PluginConst.cs │ │ └── PluginPhrases.cs │ ├── PlgMimBasicComp.csproj │ ├── PlgMimBasicCompLogic.cs │ ├── bundleconfig.json │ ├── compilerconfig.json │ ├── compilerconfig.json.defaults │ ├── lang │ │ ├── PlgMimBasicComp.en-GB.xml │ │ └── PlgMimBasicComp.ru-RU.xml │ └── wwwroot │ │ └── plugins │ │ └── MimBasicComp │ │ ├── css │ │ ├── basic.css │ │ ├── basic.min.css │ │ └── basic.scss │ │ ├── images │ │ ├── button-icon.png │ │ ├── led-icon.png │ │ └── toggle-icon.png │ │ └── js │ │ ├── basic-bundle.js │ │ ├── basic-bundle.min.js │ │ ├── basic-descr.js │ │ ├── basic-factory.js │ │ ├── basic-render.js │ │ └── basic-subtypes.js ├── PlgMimic.Common │ ├── Components │ │ ├── ComponentGroup.cs │ │ ├── ComponentItem.cs │ │ ├── IComponentPlugin.cs │ │ ├── IComponentSpec.cs │ │ ├── StandardComponentGroup.cs │ │ ├── StandardSubtypeGroup.cs │ │ └── SubtypeGroup.cs │ ├── Config │ │ ├── EditorOptions.cs │ │ ├── FontOptions.cs │ │ ├── MimicPluginConfig.cs │ │ ├── PlgMimic.xml │ │ ├── RuntimeOptions.cs │ │ └── ScaleType.cs │ ├── Controllers │ │ └── IMimicApiController.cs │ ├── MimicConst.cs │ ├── MimicModel │ │ ├── CnlProps.cs │ │ ├── Component.cs │ │ ├── ComponentBindings.cs │ │ ├── ExpandoExtensions.cs │ │ ├── Faceplate.cs │ │ ├── FaceplateMeta.cs │ │ ├── IContainer.cs │ │ ├── Image.cs │ │ ├── KnownProperty.cs │ │ ├── LoadContext.cs │ │ ├── Mimic.cs │ │ ├── MimicBase.cs │ │ ├── PropertyBinding.cs │ │ └── RootElement.cs │ ├── MimicPhrases.cs │ ├── MimicPluginInfo.cs │ ├── Models │ │ ├── ComponentPacket.cs │ │ ├── FaceplatePacket.cs │ │ ├── ImagePacket.cs │ │ ├── MimicPacket.cs │ │ └── PacketBase.cs │ ├── PageReferences.cs │ └── PlgMimic.Common.csproj ├── PlgMimic.View │ ├── PlgMimic.View.csproj │ └── PlgMimicView.cs ├── PlgMimic │ ├── Areas │ │ └── Mimic │ │ │ └── Pages │ │ │ ├── MimicView.cshtml │ │ │ ├── MimicView.cshtml.cs │ │ │ └── _ViewImports.cshtml │ ├── Code │ │ ├── MimicView.cs │ │ ├── MimicViewArgs.cs │ │ ├── MimicViewSpec.cs │ │ └── PluginContext.cs │ ├── Controllers │ │ └── MimicApiController.cs │ ├── PlgMimic.csproj │ ├── PlgMimicLogic.cs │ ├── bundleconfig.json │ ├── compilerconfig.json │ ├── compilerconfig.json.defaults │ ├── examples │ │ ├── FaceplateExample.fp │ │ └── MimicExample.mim │ ├── lang │ │ ├── PlgMimic.en-GB.xml │ │ └── PlgMimic.ru-RU.xml │ └── wwwroot │ │ └── plugins │ │ └── Mimic │ │ ├── css │ │ ├── mimic-custom.css │ │ ├── mimic-view.css │ │ ├── mimic-view.min.css │ │ ├── mimic-view.scss │ │ ├── mimic.css │ │ ├── mimic.min.css │ │ └── mimic.scss │ │ ├── images │ │ ├── mimic-icon.png │ │ ├── panel-icon.png │ │ ├── picture-blank.svg │ │ ├── picture-icon.png │ │ └── text-icon.png │ │ └── js │ │ ├── mimic-bundle.js │ │ ├── mimic-bundle.min.js │ │ ├── mimic-common.js │ │ ├── mimic-descr.js │ │ ├── mimic-factory.js │ │ ├── mimic-model-subtypes.js │ │ ├── mimic-model.js │ │ ├── mimic-render.js │ │ └── mimic-view.js ├── PlgMimicEditor.Shared │ ├── EditorPluginInfo.cs │ ├── PlgMimicEditor.Shared.projitems │ └── PlgMimicEditor.Shared.shproj ├── PlgMimicEditor.View │ ├── PlgMimicEditor.View.csproj │ └── PlgMimicEditorView.cs └── PlgMimicEditor │ ├── Areas │ └── MimicEditor │ │ └── Pages │ │ ├── MimicEdit.cshtml │ │ ├── MimicEdit.cshtml.cs │ │ ├── MimicEditLang.cshtml │ │ ├── MimicList.cshtml │ │ ├── MimicList.cshtml.cs │ │ ├── MimicOpen.cshtml │ │ ├── MimicOpen.cshtml.cs │ │ ├── _ComponentList.cshtml │ │ ├── _FaceplateModal.cshtml │ │ ├── _FontModal.cshtml │ │ ├── _ImageModal.cshtml │ │ ├── _TextEditor.cshtml │ │ ├── _ToolbarContents.cshtml │ │ └── _ViewImports.cshtml │ ├── Code │ ├── EditorManager.cs │ ├── EditorPhrases.cs │ ├── EditorUtils.cs │ ├── MimicGroup.cs │ ├── MimicInstance.cs │ ├── MimicLockFilter.cs │ ├── MimicUpdater.cs │ ├── ModelMeta.cs │ ├── ModelTranslation.cs │ └── OpenResult.cs │ ├── Controllers │ ├── LoaderApiController.cs │ └── UpdaterApiController.cs │ ├── Models │ ├── Change.cs │ ├── ChangeType.cs │ └── UpdateDto.cs │ ├── PlgMimicEditor.csproj │ ├── PlgMimicEditorLogic.cs │ ├── bundleconfig.json │ ├── compilerconfig.json │ ├── compilerconfig.json.defaults │ ├── lang │ ├── PlgMimicEditor.en-GB.xml │ └── PlgMimicEditor.ru-RU.xml │ └── wwwroot │ ├── css │ └── components │ │ └── _splitter.scss │ └── plugins │ └── MimicEditor │ ├── css │ ├── _modals.scss │ ├── mimic-edit.css │ ├── mimic-edit.min.css │ └── mimic-edit.scss │ ├── images │ └── faceplate-icon.png │ ├── js │ ├── editor-bundle.js │ ├── editor-bundle.min.js │ ├── editor-common.js │ ├── mimic-edit.js │ ├── modals.js │ ├── prop-grid.js │ └── struct-tree.js │ └── lib │ ├── codeflask │ └── codeflask.min.js │ └── tweakpane │ ├── tweakpane-4.0.5.js │ ├── tweakpane-4.0.5.min.js │ ├── tweakpane-plugin-essentials-0.2.1.js │ └── tweakpane-plugin-essentials-0.2.1.min.js ├── OpenPlugins ├── .editorconfig ├── OpenPlugins.sln ├── PlgChart.Common │ ├── ChartDataBuilder.cs │ ├── ChartDataBuilderOptions.cs │ ├── ChartPluginInfo.cs │ ├── ChartUtils.cs │ ├── PlgChart.Common.csproj │ ├── TimePoint.cs │ └── TrendPoint.cs ├── PlgChart.View │ ├── PlgChart.View.csproj │ └── PlgChartView.cs ├── PlgChart │ ├── Areas │ │ └── Chart │ │ │ └── Pages │ │ │ ├── Chart.cshtml │ │ │ └── Chart.cshtml.cs │ ├── Code │ │ └── PluginOptions.cs │ ├── PlgChart.csproj │ ├── PlgChartLogic.cs │ ├── compilerconfig.json │ ├── compilerconfig.json.defaults │ ├── lang │ │ ├── PlgChart.en-GB.xml │ │ └── PlgChart.ru-RU.xml │ └── wwwroot │ │ ├── plugins │ │ └── Chart │ │ │ ├── css │ │ │ ├── chart-form.css │ │ │ ├── chart-form.min.css │ │ │ ├── chart-form.scss │ │ │ ├── chart.css │ │ │ ├── chart.min.css │ │ │ └── chart.scss │ │ │ └── js │ │ │ ├── chart-feature.js │ │ │ ├── chart-form.js │ │ │ ├── chart-prereq.js │ │ │ └── chart.js │ │ └── test │ │ └── ChartTest.html ├── PlgMain.Common │ ├── PlgMain.Common.csproj │ ├── PluginInfo.cs │ ├── TableItem.cs │ ├── TableOptions.cs │ └── TableView.cs ├── PlgMain.Report │ ├── EventReportArgs.cs │ ├── EventReportBuilder.cs │ ├── HistDataReportArgs.cs │ ├── HistDataReportBuilder.cs │ ├── PlgMain.Report.csproj │ ├── TableViewReportArgs.cs │ └── TableViewReportBuilder.cs ├── PlgMain.View │ ├── PlgMain.View.csproj │ └── PlgMainView.cs ├── PlgMain │ ├── Areas │ │ └── Main │ │ │ └── Pages │ │ │ ├── Command.cshtml │ │ │ ├── Command.cshtml.cs │ │ │ ├── EventAck.cshtml │ │ │ ├── EventAck.cshtml.cs │ │ │ ├── EventReport.cshtml │ │ │ ├── EventReport.cshtml.cs │ │ │ ├── Events.cshtml │ │ │ ├── Events.cshtml.cs │ │ │ ├── HistDataReport.cshtml │ │ │ ├── HistDataReport.cshtml.cs │ │ │ ├── TableView.cshtml │ │ │ ├── TableView.cshtml.cs │ │ │ └── _ViewImports.cshtml │ ├── Code │ │ ├── EventFilter.cs │ │ ├── EventWindowSpec.cs │ │ ├── PluginContext.cs │ │ ├── PluginOptions.cs │ │ ├── PluginPhrases.cs │ │ ├── PluginUtils.cs │ │ └── TableViewSpec.cs │ ├── Controllers │ │ ├── AuthApiController.cs │ │ ├── MainApiController.cs │ │ └── PrintController.cs │ ├── Models │ │ ├── CommandDTO.cs │ │ ├── CredentialsDTO.cs │ │ ├── CurData.cs │ │ ├── CurDataRecord.cs │ │ ├── EventPacket.cs │ │ ├── EventRecord.cs │ │ ├── HistData.cs │ │ ├── HistDataRecord.cs │ │ └── TimeRecord.cs │ ├── PlgMain.csproj │ ├── PlgMainLogic.cs │ ├── compilerconfig.json │ ├── compilerconfig.json.defaults │ ├── examples │ │ └── TableExample.tbl │ ├── lang │ │ ├── PlgMain.en-GB.xml │ │ └── PlgMain.ru-RU.xml │ └── wwwroot │ │ ├── css │ │ └── _variables.scss │ │ ├── custom │ │ ├── CmdApiExample.html │ │ ├── MainApiExample.html │ │ └── readme.txt │ │ ├── lib │ │ └── bootstrap │ │ │ └── scss │ │ │ ├── _functions.scss │ │ │ └── _variables.scss │ │ └── plugins │ │ └── Main │ │ ├── css │ │ ├── _event-common.scss │ │ ├── _table-common.scss │ │ ├── command.css │ │ ├── command.min.css │ │ ├── command.scss │ │ ├── event-ack.css │ │ ├── event-ack.min.css │ │ ├── event-ack.scss │ │ ├── events.css │ │ ├── events.min.css │ │ ├── events.scss │ │ ├── table-view.css │ │ ├── table-view.min.css │ │ └── table-view.scss │ │ ├── images │ │ ├── quantity │ │ │ ├── a_.png │ │ │ ├── c.png │ │ │ ├── conn.png │ │ │ ├── drop.png │ │ │ ├── e.png │ │ │ ├── f_.png │ │ │ ├── fire.png │ │ │ ├── i.png │ │ │ ├── item.png │ │ │ ├── key.png │ │ │ ├── l_.png │ │ │ ├── lamp.png │ │ │ ├── m_.png │ │ │ ├── p.png │ │ │ ├── p_.png │ │ │ ├── phi.png │ │ │ ├── q.png │ │ │ ├── rho.png │ │ │ ├── rot.png │ │ │ ├── s.png │ │ │ ├── switch.png │ │ │ ├── temp.png │ │ │ ├── time.png │ │ │ ├── u.png │ │ │ ├── v.png │ │ │ └── v_.png │ │ └── table-icon.png │ │ ├── js │ │ ├── command-feature.js │ │ ├── command.js │ │ ├── event-ack-feature.js │ │ ├── event-ack.js │ │ ├── event-report.js │ │ ├── events.js │ │ ├── hist-data-report.js │ │ ├── main-api.js │ │ ├── table-common.js │ │ └── table-view.js │ │ ├── sounds │ │ └── event-beep.mp3 │ │ └── templates │ │ ├── EventTemplate.xml │ │ ├── HistDataTemplate.xml │ │ └── TableViewTemplate.xml ├── PlgSchBasicComp.Shared │ ├── PlgSchBasicComp.Shared.projitems │ ├── PlgSchBasicComp.Shared.shproj │ └── PluginInfo.cs ├── PlgSchBasicComp.View │ ├── PlgSchBasicComp.View.csproj │ └── PlgSchBasicCompView.cs ├── PlgSchBasicComp │ ├── Code │ │ ├── BasicCompFactory.cs │ │ ├── BasicCompLibSpec.cs │ │ ├── BoundProperties.cs │ │ ├── Button.cs │ │ ├── ColorCondition.cs │ │ ├── Led.cs │ │ ├── Link.cs │ │ ├── LinkTarget.cs │ │ ├── PopupSize.cs │ │ ├── PopupSizeConverter.cs │ │ ├── PopupWidth.cs │ │ └── Toggle.cs │ ├── PlgSchBasicComp.csproj │ ├── PlgSchBasicCompLogic.cs │ ├── compilerconfig.json │ ├── compilerconfig.json.defaults │ └── wwwroot │ │ └── plugins │ │ └── SchBasicComp │ │ ├── css │ │ ├── basiccomp.css │ │ ├── basiccomp.min.css │ │ └── basiccomp.scss │ │ └── js │ │ └── basiccomp-render.js ├── PlgScheme.Common │ ├── CompFactory.cs │ ├── CompItem.cs │ ├── CompLibSpec.cs │ ├── CompManager.cs │ ├── ISchemeComp.cs │ ├── Model │ │ ├── ComponentBase.cs │ │ ├── DataTypes │ │ │ ├── Actions.cs │ │ │ ├── CompareOperators.cs │ │ │ ├── Condition.cs │ │ │ ├── Font.cs │ │ │ ├── HorizontalAlignments.cs │ │ │ ├── ImageCondition.cs │ │ │ ├── ImageStretches.cs │ │ │ ├── LogicalOperators.cs │ │ │ ├── Point.cs │ │ │ ├── ShowValueKinds.cs │ │ │ ├── Size.cs │ │ │ └── VerticalAlignments.cs │ │ ├── DynamicPicture.cs │ │ ├── DynamicText.cs │ │ ├── IDynamicComponent.cs │ │ ├── IObservableItem.cs │ │ ├── ISchemeViewAvailable.cs │ │ ├── IUniqueItem.cs │ │ ├── Image.cs │ │ ├── ItemChangedEventHandler.cs │ │ ├── PropertyGrid │ │ │ ├── AttrTranslator.cs │ │ │ └── Categories.cs │ │ ├── SchemeChangeTypes.cs │ │ ├── SchemeDocument.cs │ │ ├── StaticPicture.cs │ │ ├── StaticText.cs │ │ └── UnknownComponent.cs │ ├── PlgScheme.Common.csproj │ ├── SchemePhrases.cs │ ├── SchemePluginInfo.cs │ ├── SchemeUtils.cs │ ├── SchemeView.cs │ └── Template │ │ ├── ComponentBinding.cs │ │ ├── TemplateArgs.cs │ │ └── TemplateBindings.cs ├── PlgScheme.Editor │ ├── Code │ │ ├── AppPhrases.cs │ │ ├── FormAction.cs │ │ ├── PasteSpecialParams.cs │ │ ├── PointerMode.cs │ │ └── SelectAction.cs │ ├── Config │ │ ├── AppConfig.cs │ │ ├── Browser.cs │ │ └── ScadaSchemeEditorConfig.xml │ ├── Lang │ │ ├── ScadaSchemeEditor.en-GB.xml │ │ └── ScadaSchemeEditor.ru-RU.xml │ ├── PlgScheme.Editor.csproj │ ├── Program.cs │ └── paintbrush.ico ├── PlgScheme.EditorWeb │ ├── Code │ │ ├── EditorConfig.cs │ │ ├── EditorContext.cs │ │ ├── EditorInstance.cs │ │ ├── EditorManager.cs │ │ ├── EditorUtils.cs │ │ └── OpenResult.cs │ ├── Pages │ │ ├── Index.cshtml │ │ ├── Index.cshtml.cs │ │ ├── SchemeEditor.cshtml │ │ ├── SchemeEditor.cshtml.cs │ │ ├── SchemeOpen.cshtml │ │ ├── SchemeOpen.cshtml.cs │ │ ├── Shared │ │ │ └── _BasicLayout.cshtml │ │ ├── _ViewImports.cshtml │ │ └── _ViewStart.cshtml │ ├── PlgScheme.EditorWeb.csproj │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── appsettings.Development.json │ ├── appsettings.json │ ├── config │ │ └── ScadaSchemeEditorConfig.xml │ ├── lang │ │ ├── ScadaSchemeEditor.en-GB.xml │ │ └── ScadaSchemeEditor.ru-RU.xml │ ├── libman.json │ └── wwwroot │ │ ├── favicon.ico │ │ └── lib │ │ ├── bootstrap-icons │ │ └── font │ │ │ ├── bootstrap-icons.min.css │ │ │ └── fonts │ │ │ ├── bootstrap-icons.woff │ │ │ └── bootstrap-icons.woff2 │ │ ├── bootstrap │ │ ├── css │ │ │ ├── bootstrap.min.css │ │ │ └── bootstrap.min.css.map │ │ └── js │ │ │ ├── bootstrap.bundle.min.js │ │ │ └── bootstrap.bundle.min.js.map │ │ ├── font-awesome │ │ ├── css │ │ │ └── all.min.css │ │ └── webfonts │ │ │ ├── fa-brands-400.ttf │ │ │ ├── fa-brands-400.woff2 │ │ │ ├── fa-regular-400.ttf │ │ │ ├── fa-regular-400.woff2 │ │ │ ├── fa-solid-900.ttf │ │ │ ├── fa-solid-900.woff2 │ │ │ ├── fa-v4compatibility.ttf │ │ │ └── fa-v4compatibility.woff2 │ │ └── jquery │ │ └── jquery.min.js ├── PlgScheme.View │ ├── PlgScheme.View.csproj │ └── PlgSchemeView.cs ├── PlgScheme │ ├── Areas │ │ └── Scheme │ │ │ └── Pages │ │ │ ├── SchemeView.cshtml │ │ │ ├── SchemeView.cshtml.cs │ │ │ └── _ViewImports.cshtml │ ├── Code │ │ ├── PluginContext.cs │ │ ├── PluginPhrases.cs │ │ ├── ScaleType.cs │ │ ├── SchemeOptions.cs │ │ └── SchemeViewSpec.cs │ ├── Controllers │ │ └── SchemeApiController.cs │ ├── Models │ │ ├── CnlProps.cs │ │ ├── ComponentPacket.cs │ │ ├── DocumentPacket.cs │ │ ├── ImagePacket.cs │ │ ├── ImageRecord.cs │ │ └── SchemePacket.cs │ ├── PlgScheme.csproj │ ├── PlgSchemeLogic.cs │ ├── compilerconfig.json │ ├── compilerconfig.json.defaults │ ├── lang │ │ ├── PlgScheme.en-GB.xml │ │ └── PlgScheme.ru-RU.xml │ └── wwwroot │ │ ├── css │ │ └── _variables.scss │ │ ├── lib │ │ └── bootstrap │ │ │ └── scss │ │ │ ├── _functions.scss │ │ │ └── _variables.scss │ │ └── plugins │ │ └── Scheme │ │ ├── css │ │ ├── _scheme.scss │ │ ├── scheme-view.css │ │ ├── scheme-view.min.css │ │ └── scheme-view.scss │ │ ├── images │ │ ├── loading.gif │ │ └── scheme-icon.png │ │ └── js │ │ ├── scheme-common.js │ │ ├── scheme-model.js │ │ ├── scheme-render.js │ │ └── scheme-view.js ├── PlgWebPage.Shared │ ├── PlgWebPage.Shared.projitems │ ├── PlgWebPage.Shared.shproj │ └── PluginInfo.cs ├── PlgWebPage.View │ ├── PlgWebPage.View.csproj │ └── PlgWebPageView.cs └── PlgWebPage │ ├── Areas │ └── WebPage │ │ └── Pages │ │ ├── Landing.cshtml │ │ └── Landing.cshtml.cs │ ├── Code │ ├── WebPageView.cs │ └── WebPageViewSpec.cs │ ├── PlgWebPage.csproj │ ├── PlgWebPageLogic.cs │ ├── lang │ ├── PlgWebPage.en-GB.xml │ └── PlgWebPage.ru-RU.xml │ └── wwwroot │ └── plugins │ └── WebPage │ └── images │ └── webpage-icon.png ├── Res ├── plg_main │ └── quantityicons.psd └── plg_scheme │ └── editor │ ├── about.png │ ├── blank.png │ ├── close.png │ ├── component.png │ ├── copy.png │ ├── cut.png │ ├── delete.png │ ├── edit_redo.png │ ├── edit_undo.png │ ├── folder_open.png │ ├── open.png │ ├── paintbrush.ico │ ├── paste.png │ ├── pointer.png │ ├── save.png │ ├── save_as.png │ ├── settings.png │ └── web.png ├── ScadaWeb ├── .editorconfig ├── ScadaWeb.sln ├── ScadaWeb │ ├── Code │ │ ├── AppUtils.cs │ │ ├── AuditLog.cs │ │ ├── Captcha.cs │ │ ├── ClientAccessor.cs │ │ ├── CookieAuthEvents.cs │ │ ├── LoginService.cs │ │ ├── ReadyResourceFilter.cs │ │ ├── Stats.cs │ │ ├── UserContext.cs │ │ ├── UserContextFactory.cs │ │ ├── ViewLoader.cs │ │ ├── WebContext.cs │ │ ├── XmlEncryptor.cs │ │ └── XmlRepository.cs │ ├── Pages │ │ ├── About.cshtml │ │ ├── About.cshtml.cs │ │ ├── AccessDenied.cshtml │ │ ├── AccessDenied.cshtml.cs │ │ ├── CnlSelect.cshtml │ │ ├── CnlSelect.cshtml.cs │ │ ├── ConfigReload.cshtml │ │ ├── ConfigReload.cshtml.cs │ │ ├── Error.cshtml │ │ ├── Error.cshtml.cs │ │ ├── Index.cshtml │ │ ├── Index.cshtml.cs │ │ ├── Login.cshtml │ │ ├── Login.cshtml.cs │ │ ├── Logout.cshtml │ │ ├── Logout.cshtml.cs │ │ ├── Reports.cshtml │ │ ├── Reports.cshtml.cs │ │ ├── Shared │ │ │ ├── _BasicLayout.cshtml │ │ │ └── _MainLayout.cshtml │ │ ├── UserProfile.cshtml │ │ ├── UserProfile.cshtml.cs │ │ ├── View.cshtml │ │ ├── View.cshtml.cs │ │ ├── ViewFrame.cshtml │ │ ├── ViewFrame.cshtml.cs │ │ ├── _ViewImports.cshtml │ │ └── _ViewStart.cshtml │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── ScadaWeb.csproj │ ├── appsettings.Development.json │ ├── appsettings.json │ ├── compilerconfig.json │ ├── compilerconfig.json.defaults │ ├── libman.json │ └── wwwroot │ │ ├── css │ │ ├── _mixins.scss │ │ ├── _variables.scss │ │ ├── components │ │ │ ├── _modal.scss │ │ │ ├── _notif-panel.scss │ │ │ ├── _splitter.scss │ │ │ └── _tree-view.scss │ │ ├── layouts │ │ │ ├── basic-layout.css │ │ │ ├── basic-layout.min.css │ │ │ ├── basic-layout.scss │ │ │ ├── main-layout.css │ │ │ ├── main-layout.min.css │ │ │ └── main-layout.scss │ │ └── pages │ │ │ ├── about.css │ │ │ ├── about.min.css │ │ │ ├── about.scss │ │ │ ├── login.css │ │ │ ├── login.min.css │ │ │ ├── login.scss │ │ │ ├── reports.css │ │ │ ├── reports.min.css │ │ │ ├── reports.scss │ │ │ ├── user-profile.css │ │ │ ├── user-profile.min.css │ │ │ ├── user-profile.scss │ │ │ ├── view.css │ │ │ ├── view.min.css │ │ │ └── view.scss │ │ ├── favicon.ico │ │ ├── images │ │ ├── gear.png │ │ └── treeview │ │ │ ├── document.png │ │ │ └── folder.png │ │ ├── js │ │ ├── components │ │ │ ├── client-pager.js │ │ │ ├── modal.js │ │ │ ├── notif-panel.js │ │ │ ├── pager.js │ │ │ ├── splitter.js │ │ │ └── tree-view.js │ │ ├── dialogs.js │ │ ├── layouts │ │ │ └── main-layout.js │ │ ├── pages │ │ │ ├── cnl-select.js │ │ │ └── view.js │ │ ├── scada-common.js │ │ └── view-hub.js │ │ ├── lib │ │ ├── bootstrap │ │ │ ├── LICENSE │ │ │ ├── dist │ │ │ │ ├── css │ │ │ │ │ ├── bootstrap-grid.css │ │ │ │ │ ├── bootstrap-grid.css.map │ │ │ │ │ ├── bootstrap-grid.min.css │ │ │ │ │ ├── bootstrap-grid.min.css.map │ │ │ │ │ ├── bootstrap-grid.rtl.css │ │ │ │ │ ├── bootstrap-grid.rtl.css.map │ │ │ │ │ ├── bootstrap-grid.rtl.min.css │ │ │ │ │ ├── bootstrap-grid.rtl.min.css.map │ │ │ │ │ ├── bootstrap-reboot.css │ │ │ │ │ ├── bootstrap-reboot.css.map │ │ │ │ │ ├── bootstrap-reboot.min.css │ │ │ │ │ ├── bootstrap-reboot.min.css.map │ │ │ │ │ ├── bootstrap-reboot.rtl.css │ │ │ │ │ ├── bootstrap-reboot.rtl.css.map │ │ │ │ │ ├── bootstrap-reboot.rtl.min.css │ │ │ │ │ ├── bootstrap-reboot.rtl.min.css.map │ │ │ │ │ ├── bootstrap-utilities.css │ │ │ │ │ ├── bootstrap-utilities.css.map │ │ │ │ │ ├── bootstrap-utilities.min.css │ │ │ │ │ ├── bootstrap-utilities.min.css.map │ │ │ │ │ ├── bootstrap-utilities.rtl.css │ │ │ │ │ ├── bootstrap-utilities.rtl.css.map │ │ │ │ │ ├── bootstrap-utilities.rtl.min.css │ │ │ │ │ ├── bootstrap-utilities.rtl.min.css.map │ │ │ │ │ ├── bootstrap.css │ │ │ │ │ ├── bootstrap.css.map │ │ │ │ │ ├── bootstrap.min.css │ │ │ │ │ ├── bootstrap.min.css.map │ │ │ │ │ ├── bootstrap.rtl.css │ │ │ │ │ ├── bootstrap.rtl.css.map │ │ │ │ │ ├── bootstrap.rtl.min.css │ │ │ │ │ └── bootstrap.rtl.min.css.map │ │ │ │ └── js │ │ │ │ │ ├── bootstrap.bundle.js │ │ │ │ │ ├── bootstrap.bundle.js.map │ │ │ │ │ ├── bootstrap.bundle.min.js │ │ │ │ │ ├── bootstrap.bundle.min.js.map │ │ │ │ │ ├── bootstrap.esm.js │ │ │ │ │ ├── bootstrap.esm.js.map │ │ │ │ │ ├── bootstrap.esm.min.js │ │ │ │ │ ├── bootstrap.esm.min.js.map │ │ │ │ │ ├── bootstrap.js │ │ │ │ │ ├── bootstrap.js.map │ │ │ │ │ ├── bootstrap.min.js │ │ │ │ │ └── bootstrap.min.js.map │ │ │ └── scss │ │ │ │ ├── _functions.scss │ │ │ │ ├── _variables-dark.scss │ │ │ │ └── _variables.scss │ │ ├── filesaverjs │ │ │ ├── FileSaver.js │ │ │ ├── FileSaver.min.js │ │ │ └── FileSaver.min.js.map │ │ ├── font-awesome │ │ │ ├── css │ │ │ │ ├── all.css │ │ │ │ └── all.min.css │ │ │ └── webfonts │ │ │ │ ├── fa-brands-400.ttf │ │ │ │ ├── fa-brands-400.woff2 │ │ │ │ ├── fa-regular-400.ttf │ │ │ │ ├── fa-regular-400.woff2 │ │ │ │ ├── fa-solid-900.ttf │ │ │ │ ├── fa-solid-900.woff2 │ │ │ │ ├── fa-v4compatibility.ttf │ │ │ │ └── fa-v4compatibility.woff2 │ │ ├── hammerjs │ │ │ ├── hammer.js │ │ │ ├── hammer.min.js │ │ │ └── hammer.min.js.map │ │ ├── jquery │ │ │ ├── LICENSE.txt │ │ │ └── dist │ │ │ │ ├── jquery.js │ │ │ │ ├── jquery.min.js │ │ │ │ └── jquery.min.map │ │ ├── open-sans │ │ │ ├── css │ │ │ │ └── open-sans.css │ │ │ └── fonts │ │ │ │ ├── open-sans-v18-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-300.eot │ │ │ │ ├── open-sans-v18-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-300.svg │ │ │ │ ├── open-sans-v18-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-300.ttf │ │ │ │ ├── open-sans-v18-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-300.woff │ │ │ │ ├── open-sans-v18-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-300.woff2 │ │ │ │ ├── open-sans-v18-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-300italic.eot │ │ │ │ ├── open-sans-v18-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-300italic.svg │ │ │ │ ├── open-sans-v18-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-300italic.ttf │ │ │ │ ├── open-sans-v18-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-300italic.woff │ │ │ │ ├── open-sans-v18-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-300italic.woff2 │ │ │ │ ├── open-sans-v18-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-600.eot │ │ │ │ ├── open-sans-v18-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-600.svg │ │ │ │ ├── open-sans-v18-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-600.ttf │ │ │ │ ├── open-sans-v18-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-600.woff │ │ │ │ ├── open-sans-v18-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-600.woff2 │ │ │ │ ├── open-sans-v18-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-600italic.eot │ │ │ │ ├── open-sans-v18-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-600italic.svg │ │ │ │ ├── open-sans-v18-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-600italic.ttf │ │ │ │ ├── open-sans-v18-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-600italic.woff │ │ │ │ ├── open-sans-v18-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-600italic.woff2 │ │ │ │ ├── open-sans-v18-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-700.eot │ │ │ │ ├── open-sans-v18-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-700.svg │ │ │ │ ├── open-sans-v18-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-700.ttf │ │ │ │ ├── open-sans-v18-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-700.woff │ │ │ │ ├── open-sans-v18-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-700.woff2 │ │ │ │ ├── open-sans-v18-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-700italic.eot │ │ │ │ ├── open-sans-v18-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-700italic.svg │ │ │ │ ├── open-sans-v18-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-700italic.ttf │ │ │ │ ├── open-sans-v18-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-700italic.woff │ │ │ │ ├── open-sans-v18-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-700italic.woff2 │ │ │ │ ├── open-sans-v18-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-800.eot │ │ │ │ ├── open-sans-v18-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-800.svg │ │ │ │ ├── open-sans-v18-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-800.ttf │ │ │ │ ├── open-sans-v18-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-800.woff │ │ │ │ ├── open-sans-v18-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-800.woff2 │ │ │ │ ├── open-sans-v18-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-800italic.eot │ │ │ │ ├── open-sans-v18-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-800italic.svg │ │ │ │ ├── open-sans-v18-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-800italic.ttf │ │ │ │ ├── open-sans-v18-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-800italic.woff │ │ │ │ ├── open-sans-v18-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-800italic.woff2 │ │ │ │ ├── open-sans-v18-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-italic.eot │ │ │ │ ├── open-sans-v18-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-italic.svg │ │ │ │ ├── open-sans-v18-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-italic.ttf │ │ │ │ ├── open-sans-v18-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-italic.woff │ │ │ │ ├── open-sans-v18-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-italic.woff2 │ │ │ │ ├── open-sans-v18-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-regular.eot │ │ │ │ ├── open-sans-v18-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-regular.svg │ │ │ │ ├── open-sans-v18-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-regular.ttf │ │ │ │ ├── open-sans-v18-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-regular.woff │ │ │ │ └── open-sans-v18-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-regular.woff2 │ │ └── pdfmake │ │ │ ├── LICENSE │ │ │ └── build │ │ │ ├── pdfmake.js │ │ │ ├── pdfmake.js.map │ │ │ ├── pdfmake.min.js │ │ │ ├── pdfmake.min.js.map │ │ │ └── vfs_fonts.js │ │ └── sounds │ │ ├── notif-error.mp3 │ │ ├── notif-info.mp3 │ │ └── notif-warning.mp3 ├── ScadaWebCommon.Subset │ └── ScadaWebCommon.Subset.csproj └── ScadaWebCommon │ ├── Api │ ├── ApiException.cs │ ├── CamelCaseJsonFormatterAttribute.cs │ ├── Dto.cs │ ├── DtoOfT.cs │ └── IntRange.cs │ ├── Audit │ ├── AuditActionArgs.cs │ ├── AuditActionResult.cs │ ├── AuditActionType.cs │ ├── AuditLogEntry.cs │ └── IAuditPlugin.cs │ ├── Authorization │ ├── AccessDeniedException.cs │ ├── ObjRightHandler.cs │ ├── ObjRightRequirement.cs │ ├── PolicyName.cs │ ├── ViewAllHandler.cs │ └── ViewAllRequirement.cs │ ├── Components │ ├── ModalButton.cs │ ├── ModalPostbackArgs.cs │ └── PaginatedList.cs │ ├── Config │ ├── DisplayOptions.cs │ ├── GeneralOptions.cs │ ├── LoginOptions.cs │ ├── PluginAssignment.cs │ ├── ScadaWebConfig.xml │ └── WebConfig.cs │ ├── ConfigDatabase.cs │ ├── Lang │ ├── ScadaWeb.en-GB.xml │ ├── ScadaWeb.ru-RU.xml │ └── WebPhrases.cs │ ├── Plugins │ ├── DataWindowSpec.cs │ ├── FeaturedPlugins.cs │ ├── PluginFactory.cs │ ├── PluginFeatures.cs │ ├── PluginHolder.cs │ ├── PluginLogic.cs │ ├── PluginView.cs │ ├── PluginViewFactory.cs │ ├── UserLoginArgs.cs │ └── ViewSpec.cs │ ├── Properties │ └── launchSettings.json │ ├── ScadaWebCommon.csproj │ ├── Services │ ├── IAuditLog.cs │ ├── IClientAccessor.cs │ ├── ILoginService.cs │ ├── IUserContext.cs │ ├── IViewLoader.cs │ ├── IWebContext.cs │ └── UserContextExtensions.cs │ ├── TagHelpers │ └── PagerTagHelper.cs │ ├── TreeView │ ├── IWebTreeNode.cs │ ├── KnownMenuItem.cs │ ├── MenuItem.cs │ ├── MenuItemSortOrder.cs │ ├── TreeViewExample.cs │ ├── TreeViewRenderer.cs │ └── ViewNode.cs │ ├── Users │ ├── ObjectItem.cs │ ├── UserConfig.cs │ ├── UserMenu.cs │ ├── UserObjects.cs │ ├── UserReports.cs │ ├── UserRights.cs │ └── UserViews.cs │ ├── WebDirs.cs │ ├── WebPath.cs │ ├── WebUtils.Cache.cs │ └── WebUtils.cs └── Script ├── Linux ├── scadaweb6.service ├── svc_restart.sh ├── svc_start.sh └── svc_stop.sh ├── Nginx └── default └── Windows ├── svc_restart.bat ├── svc_start.bat └── svc_stop.bat /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/.gitignore -------------------------------------------------------------------------------- /Database/ConfigDatabase/scada_6.0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/Database/ConfigDatabase/scada_6.0.png -------------------------------------------------------------------------------- /Database/ConfigDatabase/scada_6.0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/Database/ConfigDatabase/scada_6.0.xml -------------------------------------------------------------------------------- /Database/ConfigDatabase/scada_6.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/Database/ConfigDatabase/scada_6.1.png -------------------------------------------------------------------------------- /Database/ConfigDatabase/scada_6.1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/Database/ConfigDatabase/scada_6.1.xml -------------------------------------------------------------------------------- /Database/Storage/sql/01_create_database.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/Database/Storage/sql/01_create_database.bat -------------------------------------------------------------------------------- /Database/Storage/sql/01_create_database.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/Database/Storage/sql/01_create_database.sh -------------------------------------------------------------------------------- /Database/Storage/sql/01_create_database.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/Database/Storage/sql/01_create_database.sql -------------------------------------------------------------------------------- /Database/Storage/sql/02_create_objects.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/Database/Storage/sql/02_create_objects.bat -------------------------------------------------------------------------------- /Database/Storage/sql/02_create_objects.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/Database/Storage/sql/02_create_objects.sh -------------------------------------------------------------------------------- /Database/Storage/sql/02_create_objects.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/Database/Storage/sql/02_create_objects.sql -------------------------------------------------------------------------------- /Database/Storage/sql/03_schema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/Database/Storage/sql/03_schema.sql -------------------------------------------------------------------------------- /Database/Storage/sql/04_app.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/Database/Storage/sql/04_app.sql -------------------------------------------------------------------------------- /Database/Storage/sql/05_app_config.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/Database/Storage/sql/05_app_config.sql -------------------------------------------------------------------------------- /Database/Storage/sql/06_app_storage.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/Database/Storage/sql/06_app_storage.sql -------------------------------------------------------------------------------- /Database/Storage/sql/07_view_file.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/Database/Storage/sql/07_view_file.sql -------------------------------------------------------------------------------- /Database/Storage/sql/inserts.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/Database/Storage/sql/inserts.sql -------------------------------------------------------------------------------- /Database/Storage/storage_er.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/Database/Storage/storage_er.png -------------------------------------------------------------------------------- /HowToBuild.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/HowToBuild.txt -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /LangPack/Chinese-Simplified/info.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/LangPack/Chinese-Simplified/info.txt -------------------------------------------------------------------------------- /LangPack/French/ScadaAdmin/Lang/DrvDsMqtt.fr-FR.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/LangPack/French/ScadaAdmin/Lang/DrvDsMqtt.fr-FR.xml -------------------------------------------------------------------------------- /LangPack/French/ScadaAdmin/Lang/DrvEmail.fr-FR.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/LangPack/French/ScadaAdmin/Lang/DrvEmail.fr-FR.xml -------------------------------------------------------------------------------- /LangPack/French/ScadaAdmin/Lang/DrvModbus.fr-FR.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/LangPack/French/ScadaAdmin/Lang/DrvModbus.fr-FR.xml -------------------------------------------------------------------------------- /LangPack/French/ScadaAdmin/Lang/DrvOpcUa.fr-FR.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/LangPack/French/ScadaAdmin/Lang/DrvOpcUa.fr-FR.xml -------------------------------------------------------------------------------- /LangPack/French/ScadaAdmin/Lang/DrvSnmp.fr-FR.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/LangPack/French/ScadaAdmin/Lang/DrvSnmp.fr-FR.xml -------------------------------------------------------------------------------- /LangPack/French/ScadaAdmin/Lang/ScadaComm.fr-FR.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/LangPack/French/ScadaAdmin/Lang/ScadaComm.fr-FR.xml -------------------------------------------------------------------------------- /LangPack/French/ScadaComm/Lang/ScadaComm.fr-FR.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/LangPack/French/ScadaComm/Lang/ScadaComm.fr-FR.xml -------------------------------------------------------------------------------- /LangPack/French/ScadaWeb/lang/PlgChart.fr-FR.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/LangPack/French/ScadaWeb/lang/PlgChart.fr-FR.xml -------------------------------------------------------------------------------- /LangPack/French/ScadaWeb/lang/PlgChartPro.fr-FR.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/LangPack/French/ScadaWeb/lang/PlgChartPro.fr-FR.xml -------------------------------------------------------------------------------- /LangPack/French/ScadaWeb/lang/PlgGuard.fr-FR.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/LangPack/French/ScadaWeb/lang/PlgGuard.fr-FR.xml -------------------------------------------------------------------------------- /LangPack/French/ScadaWeb/lang/PlgMain.fr-FR.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/LangPack/French/ScadaWeb/lang/PlgMain.fr-FR.xml -------------------------------------------------------------------------------- /LangPack/French/ScadaWeb/lang/PlgScheme.fr-FR.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/LangPack/French/ScadaWeb/lang/PlgScheme.fr-FR.xml -------------------------------------------------------------------------------- /LangPack/French/ScadaWeb/lang/PlgStore.fr-FR.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/LangPack/French/ScadaWeb/lang/PlgStore.fr-FR.xml -------------------------------------------------------------------------------- /LangPack/French/ScadaWeb/lang/PlgWebPage.fr-FR.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/LangPack/French/ScadaWeb/lang/PlgWebPage.fr-FR.xml -------------------------------------------------------------------------------- /LangPack/French/ScadaWeb/lang/ScadaCommon.fr-FR.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/LangPack/French/ScadaWeb/lang/ScadaCommon.fr-FR.xml -------------------------------------------------------------------------------- /LangPack/French/ScadaWeb/lang/ScadaWeb.fr-FR.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/LangPack/French/ScadaWeb/lang/ScadaWeb.fr-FR.xml -------------------------------------------------------------------------------- /LangPack/French/info.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/LangPack/French/info.txt -------------------------------------------------------------------------------- /LangPack/German/ScadaAdmin/Lang/DrvDsMqtt.de-DE.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/LangPack/German/ScadaAdmin/Lang/DrvDsMqtt.de-DE.xml -------------------------------------------------------------------------------- /LangPack/German/ScadaAdmin/Lang/DrvEmail.de-DE.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/LangPack/German/ScadaAdmin/Lang/DrvEmail.de-DE.xml -------------------------------------------------------------------------------- /LangPack/German/ScadaAdmin/Lang/DrvModbus.de-DE.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/LangPack/German/ScadaAdmin/Lang/DrvModbus.de-DE.xml -------------------------------------------------------------------------------- /LangPack/German/ScadaAdmin/Lang/DrvOpcUa.de-DE.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/LangPack/German/ScadaAdmin/Lang/DrvOpcUa.de-DE.xml -------------------------------------------------------------------------------- /LangPack/German/ScadaAdmin/Lang/DrvSnmp.de-DE.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/LangPack/German/ScadaAdmin/Lang/DrvSnmp.de-DE.xml -------------------------------------------------------------------------------- /LangPack/German/ScadaAdmin/Lang/ScadaComm.de-DE.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/LangPack/German/ScadaAdmin/Lang/ScadaComm.de-DE.xml -------------------------------------------------------------------------------- /LangPack/German/ScadaComm/Lang/ScadaComm.de-DE.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/LangPack/German/ScadaComm/Lang/ScadaComm.de-DE.xml -------------------------------------------------------------------------------- /LangPack/German/ScadaWeb/lang/PlgChart.de-DE.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/LangPack/German/ScadaWeb/lang/PlgChart.de-DE.xml -------------------------------------------------------------------------------- /LangPack/German/ScadaWeb/lang/PlgChartPro.de-DE.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/LangPack/German/ScadaWeb/lang/PlgChartPro.de-DE.xml -------------------------------------------------------------------------------- /LangPack/German/ScadaWeb/lang/PlgGuard.de-DE.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/LangPack/German/ScadaWeb/lang/PlgGuard.de-DE.xml -------------------------------------------------------------------------------- /LangPack/German/ScadaWeb/lang/PlgMain.de-DE.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/LangPack/German/ScadaWeb/lang/PlgMain.de-DE.xml -------------------------------------------------------------------------------- /LangPack/German/ScadaWeb/lang/PlgScheme.de-DE.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/LangPack/German/ScadaWeb/lang/PlgScheme.de-DE.xml -------------------------------------------------------------------------------- /LangPack/German/ScadaWeb/lang/PlgStore.de-DE.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/LangPack/German/ScadaWeb/lang/PlgStore.de-DE.xml -------------------------------------------------------------------------------- /LangPack/German/ScadaWeb/lang/PlgWebPage.de-DE.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/LangPack/German/ScadaWeb/lang/PlgWebPage.de-DE.xml -------------------------------------------------------------------------------- /LangPack/German/ScadaWeb/lang/ScadaCommon.de-DE.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/LangPack/German/ScadaWeb/lang/ScadaCommon.de-DE.xml -------------------------------------------------------------------------------- /LangPack/German/ScadaWeb/lang/ScadaWeb.de-DE.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/LangPack/German/ScadaWeb/lang/ScadaWeb.de-DE.xml -------------------------------------------------------------------------------- /LangPack/German/info.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/LangPack/German/info.txt -------------------------------------------------------------------------------- /LangPack/Indonesian/ScadaWeb/lang/PlgMain.id-ID.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/LangPack/Indonesian/ScadaWeb/lang/PlgMain.id-ID.xml -------------------------------------------------------------------------------- /LangPack/Indonesian/info.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/LangPack/Indonesian/info.txt -------------------------------------------------------------------------------- /LangPack/Italian/ScadaAdmin/Lang/DrvEmail.it-IT.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/LangPack/Italian/ScadaAdmin/Lang/DrvEmail.it-IT.xml -------------------------------------------------------------------------------- /LangPack/Italian/ScadaAdmin/Lang/DrvOpcUa.it-IT.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/LangPack/Italian/ScadaAdmin/Lang/DrvOpcUa.it-IT.xml -------------------------------------------------------------------------------- /LangPack/Italian/ScadaAdmin/Lang/DrvSnmp.it-IT.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/LangPack/Italian/ScadaAdmin/Lang/DrvSnmp.it-IT.xml -------------------------------------------------------------------------------- /LangPack/Italian/ScadaComm/Lang/ScadaComm.it-IT.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/LangPack/Italian/ScadaComm/Lang/ScadaComm.it-IT.xml -------------------------------------------------------------------------------- /LangPack/Italian/ScadaWeb/lang/PlgChart.it-IT.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/LangPack/Italian/ScadaWeb/lang/PlgChart.it-IT.xml -------------------------------------------------------------------------------- /LangPack/Italian/ScadaWeb/lang/PlgGuard.it-IT.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/LangPack/Italian/ScadaWeb/lang/PlgGuard.it-IT.xml -------------------------------------------------------------------------------- /LangPack/Italian/ScadaWeb/lang/PlgMain.it-IT.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/LangPack/Italian/ScadaWeb/lang/PlgMain.it-IT.xml -------------------------------------------------------------------------------- /LangPack/Italian/ScadaWeb/lang/PlgScheme.it-IT.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/LangPack/Italian/ScadaWeb/lang/PlgScheme.it-IT.xml -------------------------------------------------------------------------------- /LangPack/Italian/ScadaWeb/lang/PlgStore.it-IT.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/LangPack/Italian/ScadaWeb/lang/PlgStore.it-IT.xml -------------------------------------------------------------------------------- /LangPack/Italian/ScadaWeb/lang/PlgWebPage.it-IT.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/LangPack/Italian/ScadaWeb/lang/PlgWebPage.it-IT.xml -------------------------------------------------------------------------------- /LangPack/Italian/ScadaWeb/lang/ScadaWeb.it-IT.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/LangPack/Italian/ScadaWeb/lang/ScadaWeb.it-IT.xml -------------------------------------------------------------------------------- /LangPack/Italian/info.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/LangPack/Italian/info.txt -------------------------------------------------------------------------------- /LangPack/Japanese/ScadaWeb/lang/PlgChart.ja-JP.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/LangPack/Japanese/ScadaWeb/lang/PlgChart.ja-JP.xml -------------------------------------------------------------------------------- /LangPack/Japanese/ScadaWeb/lang/PlgGuard.ja-JP.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/LangPack/Japanese/ScadaWeb/lang/PlgGuard.ja-JP.xml -------------------------------------------------------------------------------- /LangPack/Japanese/ScadaWeb/lang/PlgMain.ja-JP.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/LangPack/Japanese/ScadaWeb/lang/PlgMain.ja-JP.xml -------------------------------------------------------------------------------- /LangPack/Japanese/ScadaWeb/lang/PlgScheme.ja-JP.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/LangPack/Japanese/ScadaWeb/lang/PlgScheme.ja-JP.xml -------------------------------------------------------------------------------- /LangPack/Japanese/ScadaWeb/lang/PlgStore.ja-JP.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/LangPack/Japanese/ScadaWeb/lang/PlgStore.ja-JP.xml -------------------------------------------------------------------------------- /LangPack/Japanese/ScadaWeb/lang/ScadaWeb.ja-JP.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/LangPack/Japanese/ScadaWeb/lang/ScadaWeb.ja-JP.xml -------------------------------------------------------------------------------- /LangPack/Japanese/info.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/LangPack/Japanese/info.txt -------------------------------------------------------------------------------- /LangPack/Korean/ScadaAdmin/Lang/DrvDsMqtt.ko-KR.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/LangPack/Korean/ScadaAdmin/Lang/DrvDsMqtt.ko-KR.xml -------------------------------------------------------------------------------- /LangPack/Korean/ScadaAdmin/Lang/DrvEmail.ko-KR.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/LangPack/Korean/ScadaAdmin/Lang/DrvEmail.ko-KR.xml -------------------------------------------------------------------------------- /LangPack/Korean/ScadaAdmin/Lang/DrvModbus.ko-KR.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/LangPack/Korean/ScadaAdmin/Lang/DrvModbus.ko-KR.xml -------------------------------------------------------------------------------- /LangPack/Korean/ScadaAdmin/Lang/DrvOpcUa.ko-KR.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/LangPack/Korean/ScadaAdmin/Lang/DrvOpcUa.ko-KR.xml -------------------------------------------------------------------------------- /LangPack/Korean/ScadaAdmin/Lang/DrvSnmp.ko-KR.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/LangPack/Korean/ScadaAdmin/Lang/DrvSnmp.ko-KR.xml -------------------------------------------------------------------------------- /LangPack/Korean/ScadaAdmin/Lang/ScadaComm.ko-KR.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/LangPack/Korean/ScadaAdmin/Lang/ScadaComm.ko-KR.xml -------------------------------------------------------------------------------- /LangPack/Korean/ScadaComm/Lang/ScadaComm.ko-KR.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/LangPack/Korean/ScadaComm/Lang/ScadaComm.ko-KR.xml -------------------------------------------------------------------------------- /LangPack/Korean/ScadaWeb/lang/PlgChart.ko-KR.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/LangPack/Korean/ScadaWeb/lang/PlgChart.ko-KR.xml -------------------------------------------------------------------------------- /LangPack/Korean/ScadaWeb/lang/PlgChartPro.ko-KR.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/LangPack/Korean/ScadaWeb/lang/PlgChartPro.ko-KR.xml -------------------------------------------------------------------------------- /LangPack/Korean/ScadaWeb/lang/PlgGuard.ko-KR.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/LangPack/Korean/ScadaWeb/lang/PlgGuard.ko-KR.xml -------------------------------------------------------------------------------- /LangPack/Korean/ScadaWeb/lang/PlgMain.ko-KR.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/LangPack/Korean/ScadaWeb/lang/PlgMain.ko-KR.xml -------------------------------------------------------------------------------- /LangPack/Korean/ScadaWeb/lang/PlgScheme.ko-KR.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/LangPack/Korean/ScadaWeb/lang/PlgScheme.ko-KR.xml -------------------------------------------------------------------------------- /LangPack/Korean/ScadaWeb/lang/PlgStore.ko-KR.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/LangPack/Korean/ScadaWeb/lang/PlgStore.ko-KR.xml -------------------------------------------------------------------------------- /LangPack/Korean/ScadaWeb/lang/PlgWebPage.ko-KR.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/LangPack/Korean/ScadaWeb/lang/PlgWebPage.ko-KR.xml -------------------------------------------------------------------------------- /LangPack/Korean/ScadaWeb/lang/ScadaCommon.ko-KR.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/LangPack/Korean/ScadaWeb/lang/ScadaCommon.ko-KR.xml -------------------------------------------------------------------------------- /LangPack/Korean/ScadaWeb/lang/ScadaWeb.ko-KR.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/LangPack/Korean/ScadaWeb/lang/ScadaWeb.ko-KR.xml -------------------------------------------------------------------------------- /LangPack/Korean/info.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/LangPack/Korean/info.txt -------------------------------------------------------------------------------- /LangPack/Norwegian/ScadaWeb/lang/PlgChart.nb-NO.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/LangPack/Norwegian/ScadaWeb/lang/PlgChart.nb-NO.xml -------------------------------------------------------------------------------- /LangPack/Norwegian/ScadaWeb/lang/PlgGuard.nb-NO.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/LangPack/Norwegian/ScadaWeb/lang/PlgGuard.nb-NO.xml -------------------------------------------------------------------------------- /LangPack/Norwegian/ScadaWeb/lang/PlgMain.nb-NO.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/LangPack/Norwegian/ScadaWeb/lang/PlgMain.nb-NO.xml -------------------------------------------------------------------------------- /LangPack/Norwegian/ScadaWeb/lang/PlgStore.nb-NO.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/LangPack/Norwegian/ScadaWeb/lang/PlgStore.nb-NO.xml -------------------------------------------------------------------------------- /LangPack/Norwegian/ScadaWeb/lang/ScadaWeb.nb-NO.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/LangPack/Norwegian/ScadaWeb/lang/ScadaWeb.nb-NO.xml -------------------------------------------------------------------------------- /LangPack/Norwegian/info.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/LangPack/Norwegian/info.txt -------------------------------------------------------------------------------- /LangPack/Polish/ScadaAdmin/Lang/DrvDsMqtt.pl-PL.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/LangPack/Polish/ScadaAdmin/Lang/DrvDsMqtt.pl-PL.xml -------------------------------------------------------------------------------- /LangPack/Polish/ScadaAdmin/Lang/DrvEmail.pl-PL.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/LangPack/Polish/ScadaAdmin/Lang/DrvEmail.pl-PL.xml -------------------------------------------------------------------------------- /LangPack/Polish/ScadaAdmin/Lang/DrvModbus.pl-PL.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/LangPack/Polish/ScadaAdmin/Lang/DrvModbus.pl-PL.xml -------------------------------------------------------------------------------- /LangPack/Polish/ScadaAdmin/Lang/DrvOpcUa.pl-PL.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/LangPack/Polish/ScadaAdmin/Lang/DrvOpcUa.pl-PL.xml -------------------------------------------------------------------------------- /LangPack/Polish/ScadaAdmin/Lang/DrvSnmp.pl-PL.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/LangPack/Polish/ScadaAdmin/Lang/DrvSnmp.pl-PL.xml -------------------------------------------------------------------------------- /LangPack/Polish/ScadaAdmin/Lang/ScadaComm.pl-PL.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/LangPack/Polish/ScadaAdmin/Lang/ScadaComm.pl-PL.xml -------------------------------------------------------------------------------- /LangPack/Polish/ScadaComm/Lang/ScadaComm.pl-PL.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/LangPack/Polish/ScadaComm/Lang/ScadaComm.pl-PL.xml -------------------------------------------------------------------------------- /LangPack/Polish/ScadaWeb/lang/PlgChart.pl-PL.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/LangPack/Polish/ScadaWeb/lang/PlgChart.pl-PL.xml -------------------------------------------------------------------------------- /LangPack/Polish/ScadaWeb/lang/PlgChartPro.pl-PL.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/LangPack/Polish/ScadaWeb/lang/PlgChartPro.pl-PL.xml -------------------------------------------------------------------------------- /LangPack/Polish/ScadaWeb/lang/PlgGuard.pl-PL.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/LangPack/Polish/ScadaWeb/lang/PlgGuard.pl-PL.xml -------------------------------------------------------------------------------- /LangPack/Polish/ScadaWeb/lang/PlgMain.pl-PL.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/LangPack/Polish/ScadaWeb/lang/PlgMain.pl-PL.xml -------------------------------------------------------------------------------- /LangPack/Polish/ScadaWeb/lang/PlgScheme.pl-PL.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/LangPack/Polish/ScadaWeb/lang/PlgScheme.pl-PL.xml -------------------------------------------------------------------------------- /LangPack/Polish/ScadaWeb/lang/PlgStore.pl-PL.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/LangPack/Polish/ScadaWeb/lang/PlgStore.pl-PL.xml -------------------------------------------------------------------------------- /LangPack/Polish/ScadaWeb/lang/PlgWebPage.pl-PL.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/LangPack/Polish/ScadaWeb/lang/PlgWebPage.pl-PL.xml -------------------------------------------------------------------------------- /LangPack/Polish/ScadaWeb/lang/ScadaCommon.pl-PL.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/LangPack/Polish/ScadaWeb/lang/ScadaCommon.pl-PL.xml -------------------------------------------------------------------------------- /LangPack/Polish/ScadaWeb/lang/ScadaWeb.pl-PL.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/LangPack/Polish/ScadaWeb/lang/ScadaWeb.pl-PL.xml -------------------------------------------------------------------------------- /LangPack/Polish/info.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/LangPack/Polish/info.txt -------------------------------------------------------------------------------- /LangPack/Portuguese/ScadaWeb/lang/PlgMain.pt-PT.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/LangPack/Portuguese/ScadaWeb/lang/PlgMain.pt-PT.xml -------------------------------------------------------------------------------- /LangPack/Portuguese/info.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/LangPack/Portuguese/info.txt -------------------------------------------------------------------------------- /LangPack/Spanish/ScadaAdmin/Lang/DrvEmail.es-ES.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/LangPack/Spanish/ScadaAdmin/Lang/DrvEmail.es-ES.xml -------------------------------------------------------------------------------- /LangPack/Spanish/ScadaAdmin/Lang/DrvOpcUa.es-ES.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/LangPack/Spanish/ScadaAdmin/Lang/DrvOpcUa.es-ES.xml -------------------------------------------------------------------------------- /LangPack/Spanish/ScadaAdmin/Lang/DrvSnmp.es-ES.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/LangPack/Spanish/ScadaAdmin/Lang/DrvSnmp.es-ES.xml -------------------------------------------------------------------------------- /LangPack/Spanish/ScadaComm/Lang/ScadaComm.es-ES.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/LangPack/Spanish/ScadaComm/Lang/ScadaComm.es-ES.xml -------------------------------------------------------------------------------- /LangPack/Spanish/ScadaWeb/lang/PlgChart.es-ES.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/LangPack/Spanish/ScadaWeb/lang/PlgChart.es-ES.xml -------------------------------------------------------------------------------- /LangPack/Spanish/ScadaWeb/lang/PlgGuard.es-ES.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/LangPack/Spanish/ScadaWeb/lang/PlgGuard.es-ES.xml -------------------------------------------------------------------------------- /LangPack/Spanish/ScadaWeb/lang/PlgMain.es-ES.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/LangPack/Spanish/ScadaWeb/lang/PlgMain.es-ES.xml -------------------------------------------------------------------------------- /LangPack/Spanish/ScadaWeb/lang/PlgScheme.es-ES.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/LangPack/Spanish/ScadaWeb/lang/PlgScheme.es-ES.xml -------------------------------------------------------------------------------- /LangPack/Spanish/ScadaWeb/lang/PlgWebPage.es-ES.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/LangPack/Spanish/ScadaWeb/lang/PlgWebPage.es-ES.xml -------------------------------------------------------------------------------- /LangPack/Spanish/ScadaWeb/lang/ScadaWeb.es-ES.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/LangPack/Spanish/ScadaWeb/lang/ScadaWeb.es-ES.xml -------------------------------------------------------------------------------- /LangPack/Spanish/info.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/LangPack/Spanish/info.txt -------------------------------------------------------------------------------- /LangPack/Turkish/ScadaAdmin/Lang/DrvEmail.tr-TR.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/LangPack/Turkish/ScadaAdmin/Lang/DrvEmail.tr-TR.xml -------------------------------------------------------------------------------- /LangPack/Turkish/ScadaAdmin/Lang/DrvOpcUa.tr-TR.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/LangPack/Turkish/ScadaAdmin/Lang/DrvOpcUa.tr-TR.xml -------------------------------------------------------------------------------- /LangPack/Turkish/ScadaAdmin/Lang/DrvSnmp.tr-TR.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/LangPack/Turkish/ScadaAdmin/Lang/DrvSnmp.tr-TR.xml -------------------------------------------------------------------------------- /LangPack/Turkish/ScadaComm/Lang/ScadaComm.tr-TR.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/LangPack/Turkish/ScadaComm/Lang/ScadaComm.tr-TR.xml -------------------------------------------------------------------------------- /LangPack/Turkish/ScadaWeb/lang/PlgChart.tr-TR.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/LangPack/Turkish/ScadaWeb/lang/PlgChart.tr-TR.xml -------------------------------------------------------------------------------- /LangPack/Turkish/ScadaWeb/lang/PlgGuard.tr-TR.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/LangPack/Turkish/ScadaWeb/lang/PlgGuard.tr-TR.xml -------------------------------------------------------------------------------- /LangPack/Turkish/ScadaWeb/lang/PlgMain.tr-TR.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/LangPack/Turkish/ScadaWeb/lang/PlgMain.tr-TR.xml -------------------------------------------------------------------------------- /LangPack/Turkish/ScadaWeb/lang/PlgScheme.tr-TR.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/LangPack/Turkish/ScadaWeb/lang/PlgScheme.tr-TR.xml -------------------------------------------------------------------------------- /LangPack/Turkish/ScadaWeb/lang/PlgWebPage.tr-TR.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/LangPack/Turkish/ScadaWeb/lang/PlgWebPage.tr-TR.xml -------------------------------------------------------------------------------- /LangPack/Turkish/ScadaWeb/lang/ScadaWeb.tr-TR.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/LangPack/Turkish/ScadaWeb/lang/ScadaWeb.tr-TR.xml -------------------------------------------------------------------------------- /LangPack/Turkish/info.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/LangPack/Turkish/info.txt -------------------------------------------------------------------------------- /LangPack/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/LangPack/readme.txt -------------------------------------------------------------------------------- /Projects/HelloWorld/BaseXML/Archive.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/Projects/HelloWorld/BaseXML/Archive.xml -------------------------------------------------------------------------------- /Projects/HelloWorld/BaseXML/ArchiveKind.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/Projects/HelloWorld/BaseXML/ArchiveKind.xml -------------------------------------------------------------------------------- /Projects/HelloWorld/BaseXML/Cnl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/Projects/HelloWorld/BaseXML/Cnl.xml -------------------------------------------------------------------------------- /Projects/HelloWorld/BaseXML/CnlStatus.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/Projects/HelloWorld/BaseXML/CnlStatus.xml -------------------------------------------------------------------------------- /Projects/HelloWorld/BaseXML/CnlType.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/Projects/HelloWorld/BaseXML/CnlType.xml -------------------------------------------------------------------------------- /Projects/HelloWorld/BaseXML/CommLine.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/Projects/HelloWorld/BaseXML/CommLine.xml -------------------------------------------------------------------------------- /Projects/HelloWorld/BaseXML/DataType.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/Projects/HelloWorld/BaseXML/DataType.xml -------------------------------------------------------------------------------- /Projects/HelloWorld/BaseXML/DevType.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/Projects/HelloWorld/BaseXML/DevType.xml -------------------------------------------------------------------------------- /Projects/HelloWorld/BaseXML/Device.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/Projects/HelloWorld/BaseXML/Device.xml -------------------------------------------------------------------------------- /Projects/HelloWorld/BaseXML/Format.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/Projects/HelloWorld/BaseXML/Format.xml -------------------------------------------------------------------------------- /Projects/HelloWorld/BaseXML/Obj.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/Projects/HelloWorld/BaseXML/Obj.xml -------------------------------------------------------------------------------- /Projects/HelloWorld/BaseXML/Quantity.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/Projects/HelloWorld/BaseXML/Quantity.xml -------------------------------------------------------------------------------- /Projects/HelloWorld/BaseXML/Role.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/Projects/HelloWorld/BaseXML/Role.xml -------------------------------------------------------------------------------- /Projects/HelloWorld/BaseXML/Script.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/Projects/HelloWorld/BaseXML/Script.xml -------------------------------------------------------------------------------- /Projects/HelloWorld/BaseXML/Unit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/Projects/HelloWorld/BaseXML/Unit.xml -------------------------------------------------------------------------------- /Projects/HelloWorld/BaseXML/User.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/Projects/HelloWorld/BaseXML/User.xml -------------------------------------------------------------------------------- /Projects/HelloWorld/BaseXML/View.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/Projects/HelloWorld/BaseXML/View.xml -------------------------------------------------------------------------------- /Projects/HelloWorld/BaseXML/ViewType.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/Projects/HelloWorld/BaseXML/ViewType.xml -------------------------------------------------------------------------------- /Projects/HelloWorld/Deployment.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/Projects/HelloWorld/Deployment.xml -------------------------------------------------------------------------------- /Projects/HelloWorld/HelloWorld.rsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/Projects/HelloWorld/HelloWorld.rsproj -------------------------------------------------------------------------------- /Projects/HelloWorld/Views/HelloWorld/Simulator.tbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/Projects/HelloWorld/Views/HelloWorld/Simulator.tbl -------------------------------------------------------------------------------- /Projects/WirenBoardDemo/BaseXML/Archive.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/Projects/WirenBoardDemo/BaseXML/Archive.xml -------------------------------------------------------------------------------- /Projects/WirenBoardDemo/BaseXML/ArchiveKind.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/Projects/WirenBoardDemo/BaseXML/ArchiveKind.xml -------------------------------------------------------------------------------- /Projects/WirenBoardDemo/BaseXML/Cnl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/Projects/WirenBoardDemo/BaseXML/Cnl.xml -------------------------------------------------------------------------------- /Projects/WirenBoardDemo/BaseXML/CnlStatus.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/Projects/WirenBoardDemo/BaseXML/CnlStatus.xml -------------------------------------------------------------------------------- /Projects/WirenBoardDemo/BaseXML/CnlType.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/Projects/WirenBoardDemo/BaseXML/CnlType.xml -------------------------------------------------------------------------------- /Projects/WirenBoardDemo/BaseXML/CommLine.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/Projects/WirenBoardDemo/BaseXML/CommLine.xml -------------------------------------------------------------------------------- /Projects/WirenBoardDemo/BaseXML/DataType.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/Projects/WirenBoardDemo/BaseXML/DataType.xml -------------------------------------------------------------------------------- /Projects/WirenBoardDemo/BaseXML/DevType.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/Projects/WirenBoardDemo/BaseXML/DevType.xml -------------------------------------------------------------------------------- /Projects/WirenBoardDemo/BaseXML/Device.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/Projects/WirenBoardDemo/BaseXML/Device.xml -------------------------------------------------------------------------------- /Projects/WirenBoardDemo/BaseXML/Format.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/Projects/WirenBoardDemo/BaseXML/Format.xml -------------------------------------------------------------------------------- /Projects/WirenBoardDemo/BaseXML/Obj.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/Projects/WirenBoardDemo/BaseXML/Obj.xml -------------------------------------------------------------------------------- /Projects/WirenBoardDemo/BaseXML/Quantity.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/Projects/WirenBoardDemo/BaseXML/Quantity.xml -------------------------------------------------------------------------------- /Projects/WirenBoardDemo/BaseXML/Role.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/Projects/WirenBoardDemo/BaseXML/Role.xml -------------------------------------------------------------------------------- /Projects/WirenBoardDemo/BaseXML/Script.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/Projects/WirenBoardDemo/BaseXML/Script.xml -------------------------------------------------------------------------------- /Projects/WirenBoardDemo/BaseXML/Unit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/Projects/WirenBoardDemo/BaseXML/Unit.xml -------------------------------------------------------------------------------- /Projects/WirenBoardDemo/BaseXML/User.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/Projects/WirenBoardDemo/BaseXML/User.xml -------------------------------------------------------------------------------- /Projects/WirenBoardDemo/BaseXML/View.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/Projects/WirenBoardDemo/BaseXML/View.xml -------------------------------------------------------------------------------- /Projects/WirenBoardDemo/BaseXML/ViewType.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/Projects/WirenBoardDemo/BaseXML/ViewType.xml -------------------------------------------------------------------------------- /Projects/WirenBoardDemo/Deployment.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/Projects/WirenBoardDemo/Deployment.xml -------------------------------------------------------------------------------- /Projects/WirenBoardDemo/Views/WirenBoard/WbAll.tbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/Projects/WirenBoardDemo/Views/WirenBoard/WbAll.tbl -------------------------------------------------------------------------------- /Projects/WirenBoardDemo/Views/WirenBoard/WbCalc.tbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/Projects/WirenBoardDemo/Views/WirenBoard/WbCalc.tbl -------------------------------------------------------------------------------- /Projects/WirenBoardDemo/WirenBoardDemo.rsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/Projects/WirenBoardDemo/WirenBoardDemo.rsproj -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/README.md -------------------------------------------------------------------------------- /ScadaAdmin/OpenExtensions/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaAdmin/OpenExtensions/.editorconfig -------------------------------------------------------------------------------- /ScadaAdmin/OpenExtensions/ExtDepAgent/Downloader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaAdmin/OpenExtensions/ExtDepAgent/Downloader.cs -------------------------------------------------------------------------------- /ScadaAdmin/OpenExtensions/ExtDepAgent/Uploader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaAdmin/OpenExtensions/ExtDepAgent/Uploader.cs -------------------------------------------------------------------------------- /ScadaAdmin/OpenExtensions/OpenExtensions.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaAdmin/OpenExtensions/OpenExtensions.sln -------------------------------------------------------------------------------- /ScadaAdmin/Res/app/about/About.txt: -------------------------------------------------------------------------------- 1 | https://rapidscada.org 2 | 232 174 95 23 -------------------------------------------------------------------------------- /ScadaAdmin/Res/app/about/about_en.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaAdmin/Res/app/about/about_en.jpg -------------------------------------------------------------------------------- /ScadaAdmin/Res/app/about/about_en.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaAdmin/Res/app/about/about_en.psd -------------------------------------------------------------------------------- /ScadaAdmin/Res/app/about/about_ru.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaAdmin/Res/app/about/about_ru.jpg -------------------------------------------------------------------------------- /ScadaAdmin/Res/app/about/about_ru.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaAdmin/Res/app/about/about_ru.psd -------------------------------------------------------------------------------- /ScadaAdmin/Res/app/explorer/chrome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaAdmin/Res/app/explorer/chrome.png -------------------------------------------------------------------------------- /ScadaAdmin/Res/app/explorer/comm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaAdmin/Res/app/explorer/comm.png -------------------------------------------------------------------------------- /ScadaAdmin/Res/app/explorer/database.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaAdmin/Res/app/explorer/database.png -------------------------------------------------------------------------------- /ScadaAdmin/Res/app/explorer/empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaAdmin/Res/app/explorer/empty.png -------------------------------------------------------------------------------- /ScadaAdmin/Res/app/explorer/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaAdmin/Res/app/explorer/file.png -------------------------------------------------------------------------------- /ScadaAdmin/Res/app/explorer/folder_closed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaAdmin/Res/app/explorer/folder_closed.png -------------------------------------------------------------------------------- /ScadaAdmin/Res/app/explorer/folder_open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaAdmin/Res/app/explorer/folder_open.png -------------------------------------------------------------------------------- /ScadaAdmin/Res/app/explorer/instance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaAdmin/Res/app/explorer/instance.png -------------------------------------------------------------------------------- /ScadaAdmin/Res/app/explorer/instances.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaAdmin/Res/app/explorer/instances.png -------------------------------------------------------------------------------- /ScadaAdmin/Res/app/explorer/project.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaAdmin/Res/app/explorer/project.png -------------------------------------------------------------------------------- /ScadaAdmin/Res/app/explorer/server.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaAdmin/Res/app/explorer/server.png -------------------------------------------------------------------------------- /ScadaAdmin/Res/app/explorer/table.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaAdmin/Res/app/explorer/table.png -------------------------------------------------------------------------------- /ScadaAdmin/Res/app/explorer/views.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaAdmin/Res/app/explorer/views.png -------------------------------------------------------------------------------- /ScadaAdmin/Res/app/forms/download_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaAdmin/Res/app/forms/download_32.png -------------------------------------------------------------------------------- /ScadaAdmin/Res/app/forms/error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaAdmin/Res/app/forms/error.png -------------------------------------------------------------------------------- /ScadaAdmin/Res/app/forms/error_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaAdmin/Res/app/forms/error_32.png -------------------------------------------------------------------------------- /ScadaAdmin/Res/app/forms/info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaAdmin/Res/app/forms/info.png -------------------------------------------------------------------------------- /ScadaAdmin/Res/app/forms/key.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaAdmin/Res/app/forms/key.png -------------------------------------------------------------------------------- /ScadaAdmin/Res/app/forms/success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaAdmin/Res/app/forms/success.png -------------------------------------------------------------------------------- /ScadaAdmin/Res/app/forms/success_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaAdmin/Res/app/forms/success_32.png -------------------------------------------------------------------------------- /ScadaAdmin/Res/app/forms/upload_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaAdmin/Res/app/forms/upload_32.png -------------------------------------------------------------------------------- /ScadaAdmin/Res/app/forms/warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaAdmin/Res/app/forms/warning.png -------------------------------------------------------------------------------- /ScadaAdmin/Res/app/lamp.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaAdmin/Res/app/lamp.ico -------------------------------------------------------------------------------- /ScadaAdmin/Res/app/menu/about.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaAdmin/Res/app/menu/about.png -------------------------------------------------------------------------------- /ScadaAdmin/Res/app/menu/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaAdmin/Res/app/menu/add.png -------------------------------------------------------------------------------- /ScadaAdmin/Res/app/menu/blank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaAdmin/Res/app/menu/blank.png -------------------------------------------------------------------------------- /ScadaAdmin/Res/app/menu/clear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaAdmin/Res/app/menu/clear.png -------------------------------------------------------------------------------- /ScadaAdmin/Res/app/menu/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaAdmin/Res/app/menu/close.png -------------------------------------------------------------------------------- /ScadaAdmin/Res/app/menu/cmd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaAdmin/Res/app/menu/cmd.png -------------------------------------------------------------------------------- /ScadaAdmin/Res/app/menu/copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaAdmin/Res/app/menu/copy.png -------------------------------------------------------------------------------- /ScadaAdmin/Res/app/menu/copy_path.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaAdmin/Res/app/menu/copy_path.png -------------------------------------------------------------------------------- /ScadaAdmin/Res/app/menu/cut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaAdmin/Res/app/menu/cut.png -------------------------------------------------------------------------------- /ScadaAdmin/Res/app/menu/delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaAdmin/Res/app/menu/delete.png -------------------------------------------------------------------------------- /ScadaAdmin/Res/app/menu/deploy_profile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaAdmin/Res/app/menu/deploy_profile.png -------------------------------------------------------------------------------- /ScadaAdmin/Res/app/menu/download.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaAdmin/Res/app/menu/download.png -------------------------------------------------------------------------------- /ScadaAdmin/Res/app/menu/find.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaAdmin/Res/app/menu/find.png -------------------------------------------------------------------------------- /ScadaAdmin/Res/app/menu/help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaAdmin/Res/app/menu/help.png -------------------------------------------------------------------------------- /ScadaAdmin/Res/app/menu/move_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaAdmin/Res/app/menu/move_down.png -------------------------------------------------------------------------------- /ScadaAdmin/Res/app/menu/move_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaAdmin/Res/app/menu/move_up.png -------------------------------------------------------------------------------- /ScadaAdmin/Res/app/menu/new_file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaAdmin/Res/app/menu/new_file.png -------------------------------------------------------------------------------- /ScadaAdmin/Res/app/menu/new_folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaAdmin/Res/app/menu/new_folder.png -------------------------------------------------------------------------------- /ScadaAdmin/Res/app/menu/open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaAdmin/Res/app/menu/open.png -------------------------------------------------------------------------------- /ScadaAdmin/Res/app/menu/open_explorer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaAdmin/Res/app/menu/open_explorer.png -------------------------------------------------------------------------------- /ScadaAdmin/Res/app/menu/open_file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaAdmin/Res/app/menu/open_file.png -------------------------------------------------------------------------------- /ScadaAdmin/Res/app/menu/options.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaAdmin/Res/app/menu/options.png -------------------------------------------------------------------------------- /ScadaAdmin/Res/app/menu/paste.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaAdmin/Res/app/menu/paste.png -------------------------------------------------------------------------------- /ScadaAdmin/Res/app/menu/properties.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaAdmin/Res/app/menu/properties.png -------------------------------------------------------------------------------- /ScadaAdmin/Res/app/menu/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaAdmin/Res/app/menu/refresh.png -------------------------------------------------------------------------------- /ScadaAdmin/Res/app/menu/remove_from_list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaAdmin/Res/app/menu/remove_from_list.png -------------------------------------------------------------------------------- /ScadaAdmin/Res/app/menu/rename.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaAdmin/Res/app/menu/rename.png -------------------------------------------------------------------------------- /ScadaAdmin/Res/app/menu/save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaAdmin/Res/app/menu/save.png -------------------------------------------------------------------------------- /ScadaAdmin/Res/app/menu/save_all.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaAdmin/Res/app/menu/save_all.png -------------------------------------------------------------------------------- /ScadaAdmin/Res/app/menu/start_page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaAdmin/Res/app/menu/start_page.png -------------------------------------------------------------------------------- /ScadaAdmin/Res/app/menu/status.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaAdmin/Res/app/menu/status.png -------------------------------------------------------------------------------- /ScadaAdmin/Res/app/menu/support.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaAdmin/Res/app/menu/support.png -------------------------------------------------------------------------------- /ScadaAdmin/Res/app/menu/upload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaAdmin/Res/app/menu/upload.png -------------------------------------------------------------------------------- /ScadaAdmin/Res/app/menu/web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaAdmin/Res/app/menu/web.png -------------------------------------------------------------------------------- /ScadaAdmin/Res/app/navigator/apply_edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaAdmin/Res/app/navigator/apply_edit.png -------------------------------------------------------------------------------- /ScadaAdmin/Res/app/navigator/cancel_edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaAdmin/Res/app/navigator/cancel_edit.png -------------------------------------------------------------------------------- /ScadaAdmin/Res/app/navigator/filter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaAdmin/Res/app/navigator/filter.png -------------------------------------------------------------------------------- /ScadaAdmin/Res/app/navigator/filter_set.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaAdmin/Res/app/navigator/filter_set.png -------------------------------------------------------------------------------- /ScadaAdmin/Res/app/navigator/move_first.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaAdmin/Res/app/navigator/move_first.png -------------------------------------------------------------------------------- /ScadaAdmin/Res/app/navigator/move_last.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaAdmin/Res/app/navigator/move_last.png -------------------------------------------------------------------------------- /ScadaAdmin/Res/app/navigator/move_next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaAdmin/Res/app/navigator/move_next.png -------------------------------------------------------------------------------- /ScadaAdmin/Res/app/navigator/move_prev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaAdmin/Res/app/navigator/move_prev.png -------------------------------------------------------------------------------- /ScadaAdmin/Res/app/navigator/resize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaAdmin/Res/app/navigator/resize.png -------------------------------------------------------------------------------- /ScadaAdmin/Res/comm_config/explorer/data_source.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaAdmin/Res/comm_config/explorer/data_source.png -------------------------------------------------------------------------------- /ScadaAdmin/Res/comm_config/explorer/device.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaAdmin/Res/comm_config/explorer/device.png -------------------------------------------------------------------------------- /ScadaAdmin/Res/comm_config/explorer/driver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaAdmin/Res/comm_config/explorer/driver.png -------------------------------------------------------------------------------- /ScadaAdmin/Res/comm_config/explorer/line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaAdmin/Res/comm_config/explorer/line.png -------------------------------------------------------------------------------- /ScadaAdmin/Res/comm_config/explorer/lines.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaAdmin/Res/comm_config/explorer/lines.png -------------------------------------------------------------------------------- /ScadaAdmin/Res/comm_config/explorer/options.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaAdmin/Res/comm_config/explorer/options.png -------------------------------------------------------------------------------- /ScadaAdmin/Res/comm_config/explorer/stats.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaAdmin/Res/comm_config/explorer/stats.png -------------------------------------------------------------------------------- /ScadaAdmin/Res/comm_config/forms/error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaAdmin/Res/comm_config/forms/error.png -------------------------------------------------------------------------------- /ScadaAdmin/Res/comm_config/forms/info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaAdmin/Res/comm_config/forms/info.png -------------------------------------------------------------------------------- /ScadaAdmin/Res/comm_config/forms/success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaAdmin/Res/comm_config/forms/success.png -------------------------------------------------------------------------------- /ScadaAdmin/Res/comm_config/forms/warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaAdmin/Res/comm_config/forms/warning.png -------------------------------------------------------------------------------- /ScadaAdmin/Res/comm_config/menu/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaAdmin/Res/comm_config/menu/add.png -------------------------------------------------------------------------------- /ScadaAdmin/Res/comm_config/menu/add_device.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaAdmin/Res/comm_config/menu/add_device.png -------------------------------------------------------------------------------- /ScadaAdmin/Res/comm_config/menu/add_line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaAdmin/Res/comm_config/menu/add_line.png -------------------------------------------------------------------------------- /ScadaAdmin/Res/comm_config/menu/cmd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaAdmin/Res/comm_config/menu/cmd.png -------------------------------------------------------------------------------- /ScadaAdmin/Res/comm_config/menu/create_cnls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaAdmin/Res/comm_config/menu/create_cnls.png -------------------------------------------------------------------------------- /ScadaAdmin/Res/comm_config/menu/delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaAdmin/Res/comm_config/menu/delete.png -------------------------------------------------------------------------------- /ScadaAdmin/Res/comm_config/menu/goto.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaAdmin/Res/comm_config/menu/goto.png -------------------------------------------------------------------------------- /ScadaAdmin/Res/comm_config/menu/move_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaAdmin/Res/comm_config/menu/move_down.png -------------------------------------------------------------------------------- /ScadaAdmin/Res/comm_config/menu/move_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaAdmin/Res/comm_config/menu/move_up.png -------------------------------------------------------------------------------- /ScadaAdmin/Res/comm_config/menu/poll.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaAdmin/Res/comm_config/menu/poll.png -------------------------------------------------------------------------------- /ScadaAdmin/Res/comm_config/menu/properties.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaAdmin/Res/comm_config/menu/properties.png -------------------------------------------------------------------------------- /ScadaAdmin/Res/comm_config/menu/restart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaAdmin/Res/comm_config/menu/restart.png -------------------------------------------------------------------------------- /ScadaAdmin/Res/comm_config/menu/start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaAdmin/Res/comm_config/menu/start.png -------------------------------------------------------------------------------- /ScadaAdmin/Res/comm_config/menu/stop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaAdmin/Res/comm_config/menu/stop.png -------------------------------------------------------------------------------- /ScadaAdmin/Res/comm_config/menu/sync.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaAdmin/Res/comm_config/menu/sync.png -------------------------------------------------------------------------------- /ScadaAdmin/Res/project_tools/matrix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaAdmin/Res/project_tools/matrix.png -------------------------------------------------------------------------------- /ScadaAdmin/Res/project_tools/obj.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaAdmin/Res/project_tools/obj.png -------------------------------------------------------------------------------- /ScadaAdmin/Res/server_config/archive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaAdmin/Res/server_config/archive.png -------------------------------------------------------------------------------- /ScadaAdmin/Res/server_config/general_options.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaAdmin/Res/server_config/general_options.png -------------------------------------------------------------------------------- /ScadaAdmin/Res/server_config/logs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaAdmin/Res/server_config/logs.png -------------------------------------------------------------------------------- /ScadaAdmin/Res/server_config/module.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaAdmin/Res/server_config/module.png -------------------------------------------------------------------------------- /ScadaAdmin/Res/table_editor/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaAdmin/Res/table_editor/add.png -------------------------------------------------------------------------------- /ScadaAdmin/Res/table_editor/add_empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaAdmin/Res/table_editor/add_empty.png -------------------------------------------------------------------------------- /ScadaAdmin/Res/table_editor/cnl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaAdmin/Res/table_editor/cnl.png -------------------------------------------------------------------------------- /ScadaAdmin/Res/table_editor/delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaAdmin/Res/table_editor/delete.png -------------------------------------------------------------------------------- /ScadaAdmin/Res/table_editor/device.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaAdmin/Res/table_editor/device.png -------------------------------------------------------------------------------- /ScadaAdmin/Res/table_editor/empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaAdmin/Res/table_editor/empty.png -------------------------------------------------------------------------------- /ScadaAdmin/Res/table_editor/move_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaAdmin/Res/table_editor/move_down.png -------------------------------------------------------------------------------- /ScadaAdmin/Res/table_editor/move_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaAdmin/Res/table_editor/move_up.png -------------------------------------------------------------------------------- /ScadaAdmin/Res/table_editor/options.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaAdmin/Res/table_editor/options.png -------------------------------------------------------------------------------- /ScadaAdmin/Res/table_editor/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaAdmin/Res/table_editor/refresh.png -------------------------------------------------------------------------------- /ScadaAdmin/Res/web_config/app_options.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaAdmin/Res/web_config/app_options.png -------------------------------------------------------------------------------- /ScadaAdmin/Res/web_config/logs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaAdmin/Res/web_config/logs.png -------------------------------------------------------------------------------- /ScadaAdmin/Res/web_config/plugin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaAdmin/Res/web_config/plugin.png -------------------------------------------------------------------------------- /ScadaAdmin/Res/wiren_board/device.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaAdmin/Res/wiren_board/device.png -------------------------------------------------------------------------------- /ScadaAdmin/Res/wiren_board/elem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaAdmin/Res/wiren_board/elem.png -------------------------------------------------------------------------------- /ScadaAdmin/Res/wiren_board/wb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaAdmin/Res/wiren_board/wb.png -------------------------------------------------------------------------------- /ScadaAdmin/ScadaAdmin/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaAdmin/ScadaAdmin/.editorconfig -------------------------------------------------------------------------------- /ScadaAdmin/ScadaAdmin/ScadaAdmin.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaAdmin/ScadaAdmin/ScadaAdmin.sln -------------------------------------------------------------------------------- /ScadaAdmin/ScadaAdmin/ScadaAdmin/Code/AppData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaAdmin/ScadaAdmin/ScadaAdmin/Code/AppData.cs -------------------------------------------------------------------------------- /ScadaAdmin/ScadaAdmin/ScadaAdmin/Code/AppPhrases.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaAdmin/ScadaAdmin/ScadaAdmin/Code/AppPhrases.cs -------------------------------------------------------------------------------- /ScadaAdmin/ScadaAdmin/ScadaAdmin/Code/AppState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaAdmin/ScadaAdmin/ScadaAdmin/Code/AppState.cs -------------------------------------------------------------------------------- /ScadaAdmin/ScadaAdmin/ScadaAdmin/Code/AppUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaAdmin/ScadaAdmin/ScadaAdmin/Code/AppUtils.cs -------------------------------------------------------------------------------- /ScadaAdmin/ScadaAdmin/ScadaAdmin/Code/ColumnInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaAdmin/ScadaAdmin/ScadaAdmin/Code/ColumnInfo.cs -------------------------------------------------------------------------------- /ScadaAdmin/ScadaAdmin/ScadaAdmin/Code/ColumnKind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaAdmin/ScadaAdmin/ScadaAdmin/Code/ColumnKind.cs -------------------------------------------------------------------------------- /ScadaAdmin/ScadaAdmin/ScadaAdmin/Code/FileItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaAdmin/ScadaAdmin/ScadaAdmin/Code/FileItem.cs -------------------------------------------------------------------------------- /ScadaAdmin/ScadaAdmin/ScadaAdmin/Forms/FrmAbout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaAdmin/ScadaAdmin/ScadaAdmin/Forms/FrmAbout.cs -------------------------------------------------------------------------------- /ScadaAdmin/ScadaAdmin/ScadaAdmin/Forms/FrmMain.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaAdmin/ScadaAdmin/ScadaAdmin/Forms/FrmMain.cs -------------------------------------------------------------------------------- /ScadaAdmin/ScadaAdmin/ScadaAdmin/Forms/FrmMain.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaAdmin/ScadaAdmin/ScadaAdmin/Forms/FrmMain.resx -------------------------------------------------------------------------------- /ScadaAdmin/ScadaAdmin/ScadaAdmin/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaAdmin/ScadaAdmin/ScadaAdmin/Program.cs -------------------------------------------------------------------------------- /ScadaAdmin/ScadaAdmin/ScadaAdmin/Resources/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaAdmin/ScadaAdmin/ScadaAdmin/Resources/add.png -------------------------------------------------------------------------------- /ScadaAdmin/ScadaAdmin/ScadaAdmin/Resources/cmd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaAdmin/ScadaAdmin/ScadaAdmin/Resources/cmd.png -------------------------------------------------------------------------------- /ScadaAdmin/ScadaAdmin/ScadaAdmin/Resources/comm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaAdmin/ScadaAdmin/ScadaAdmin/Resources/comm.png -------------------------------------------------------------------------------- /ScadaAdmin/ScadaAdmin/ScadaAdmin/Resources/copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaAdmin/ScadaAdmin/ScadaAdmin/Resources/copy.png -------------------------------------------------------------------------------- /ScadaAdmin/ScadaAdmin/ScadaAdmin/Resources/cut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaAdmin/ScadaAdmin/ScadaAdmin/Resources/cut.png -------------------------------------------------------------------------------- /ScadaAdmin/ScadaAdmin/ScadaAdmin/Resources/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaAdmin/ScadaAdmin/ScadaAdmin/Resources/file.png -------------------------------------------------------------------------------- /ScadaAdmin/ScadaAdmin/ScadaAdmin/Resources/find.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaAdmin/ScadaAdmin/ScadaAdmin/Resources/find.png -------------------------------------------------------------------------------- /ScadaAdmin/ScadaAdmin/ScadaAdmin/Resources/help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaAdmin/ScadaAdmin/ScadaAdmin/Resources/help.png -------------------------------------------------------------------------------- /ScadaAdmin/ScadaAdmin/ScadaAdmin/Resources/info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaAdmin/ScadaAdmin/ScadaAdmin/Resources/info.png -------------------------------------------------------------------------------- /ScadaAdmin/ScadaAdmin/ScadaAdmin/lamp.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaAdmin/ScadaAdmin/ScadaAdmin/lamp.ico -------------------------------------------------------------------------------- /ScadaAgent/ScadaAgent/AgentClient/AgentClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaAgent/ScadaAgent/AgentClient/AgentClient.cs -------------------------------------------------------------------------------- /ScadaAgent/ScadaAgent/ScadaAgent.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaAgent/ScadaAgent/ScadaAgent.sln -------------------------------------------------------------------------------- /ScadaAgent/ScadaAgent/ScadaAgentApp/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaAgent/ScadaAgent/ScadaAgentApp/Program.cs -------------------------------------------------------------------------------- /ScadaAgent/ScadaAgent/ScadaAgentEngine/Manager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaAgent/ScadaAgent/ScadaAgentEngine/Manager.cs -------------------------------------------------------------------------------- /ScadaAgent/ScadaAgent/ScadaAgentWkr/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaAgent/ScadaAgent/ScadaAgentWkr/Program.cs -------------------------------------------------------------------------------- /ScadaAgent/ScadaAgent/ScadaAgentWkr/Worker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaAgent/ScadaAgent/ScadaAgentWkr/Worker.cs -------------------------------------------------------------------------------- /ScadaAgent/Script/Linux/scadaagent6.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaAgent/Script/Linux/scadaagent6.service -------------------------------------------------------------------------------- /ScadaAgent/Script/Linux/svc_restart.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | systemctl restart scadaagent6 3 | -------------------------------------------------------------------------------- /ScadaAgent/Script/Linux/svc_start.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | systemctl start scadaagent6 3 | -------------------------------------------------------------------------------- /ScadaAgent/Script/Linux/svc_stop.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | systemctl stop scadaagent6 3 | -------------------------------------------------------------------------------- /ScadaAgent/Script/Windows/svc_install.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaAgent/Script/Windows/svc_install.bat -------------------------------------------------------------------------------- /ScadaAgent/Script/Windows/svc_restart.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaAgent/Script/Windows/svc_restart.bat -------------------------------------------------------------------------------- /ScadaAgent/Script/Windows/svc_start.bat: -------------------------------------------------------------------------------- 1 | net start ScadaAgent6 2 | -------------------------------------------------------------------------------- /ScadaAgent/Script/Windows/svc_stop.bat: -------------------------------------------------------------------------------- 1 | net stop ScadaAgent6 2 | -------------------------------------------------------------------------------- /ScadaAgent/Script/Windows/svc_uninstall.bat: -------------------------------------------------------------------------------- 1 | sc delete ScadaAgent6 2 | -------------------------------------------------------------------------------- /ScadaComm/OpenDrivers/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaComm/OpenDrivers/.editorconfig -------------------------------------------------------------------------------- /ScadaComm/OpenDrivers/DrvDsMqtt.Logic/MqttDSL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaComm/OpenDrivers/DrvDsMqtt.Logic/MqttDSL.cs -------------------------------------------------------------------------------- /ScadaComm/OpenDrivers/DrvDsMqtt.Shared/MqttDSO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaComm/OpenDrivers/DrvDsMqtt.Shared/MqttDSO.cs -------------------------------------------------------------------------------- /ScadaComm/OpenDrivers/DrvDsMqtt.View/MqttDSV.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaComm/OpenDrivers/DrvDsMqtt.View/MqttDSV.cs -------------------------------------------------------------------------------- /ScadaComm/OpenDrivers/DrvModbus.View/CustomUi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaComm/OpenDrivers/DrvModbus.View/CustomUi.cs -------------------------------------------------------------------------------- /ScadaComm/OpenDrivers/DrvModbus.View/ElemTag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaComm/OpenDrivers/DrvModbus.View/ElemTag.cs -------------------------------------------------------------------------------- /ScadaComm/OpenDrivers/DrvMqtt.Common/MqttUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaComm/OpenDrivers/DrvMqtt.Common/MqttUtils.cs -------------------------------------------------------------------------------- /ScadaComm/OpenDrivers/DrvOpcUa.Logic/ItemTag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaComm/OpenDrivers/DrvOpcUa.Logic/ItemTag.cs -------------------------------------------------------------------------------- /ScadaComm/OpenDrivers/OpenDrivers.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaComm/OpenDrivers/OpenDrivers.sln -------------------------------------------------------------------------------- /ScadaComm/OpenDrivers2/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaComm/OpenDrivers2/.editorconfig -------------------------------------------------------------------------------- /ScadaComm/OpenDrivers2/AddressBook/AddressBook.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaComm/OpenDrivers2/AddressBook/AddressBook.cs -------------------------------------------------------------------------------- /ScadaComm/OpenDrivers2/AddressBook/Contact.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaComm/OpenDrivers2/AddressBook/Contact.cs -------------------------------------------------------------------------------- /ScadaComm/OpenDrivers2/AddressBook/Email.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaComm/OpenDrivers2/AddressBook/Email.cs -------------------------------------------------------------------------------- /ScadaComm/OpenDrivers2/AddressBook/PhoneNumber.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaComm/OpenDrivers2/AddressBook/PhoneNumber.cs -------------------------------------------------------------------------------- /ScadaComm/OpenDrivers2/DrvEmail.Shared/TagCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaComm/OpenDrivers2/DrvEmail.Shared/TagCode.cs -------------------------------------------------------------------------------- /ScadaComm/OpenDrivers2/DrvEmail.Shared/TagName.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaComm/OpenDrivers2/DrvEmail.Shared/TagName.cs -------------------------------------------------------------------------------- /ScadaComm/OpenDrivers2/DrvSms.Shared/TagCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaComm/OpenDrivers2/DrvSms.Shared/TagCode.cs -------------------------------------------------------------------------------- /ScadaComm/OpenDrivers2/DrvSms.Tests/Usings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaComm/OpenDrivers2/DrvSms.Tests/Usings.cs -------------------------------------------------------------------------------- /ScadaComm/OpenDrivers2/DrvSms.View/DevSmsView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaComm/OpenDrivers2/DrvSms.View/DevSmsView.cs -------------------------------------------------------------------------------- /ScadaComm/OpenDrivers2/DrvSms.View/DrvSmsView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaComm/OpenDrivers2/DrvSms.View/DrvSmsView.cs -------------------------------------------------------------------------------- /ScadaComm/OpenDrivers2/OpenDrivers2.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaComm/OpenDrivers2/OpenDrivers2.sln -------------------------------------------------------------------------------- /ScadaComm/Res/address_book/book.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaComm/Res/address_book/book.png -------------------------------------------------------------------------------- /ScadaComm/Res/address_book/contact.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaComm/Res/address_book/contact.png -------------------------------------------------------------------------------- /ScadaComm/Res/address_book/email.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaComm/Res/address_book/email.png -------------------------------------------------------------------------------- /ScadaComm/Res/address_book/phone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaComm/Res/address_book/phone.png -------------------------------------------------------------------------------- /ScadaComm/Res/common/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaComm/Res/common/add.png -------------------------------------------------------------------------------- /ScadaComm/Res/common/collapse_all.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaComm/Res/common/collapse_all.png -------------------------------------------------------------------------------- /ScadaComm/Res/common/delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaComm/Res/common/delete.png -------------------------------------------------------------------------------- /ScadaComm/Res/common/edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaComm/Res/common/edit.png -------------------------------------------------------------------------------- /ScadaComm/Res/common/find.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaComm/Res/common/find.png -------------------------------------------------------------------------------- /ScadaComm/Res/common/folder_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaComm/Res/common/folder_add.png -------------------------------------------------------------------------------- /ScadaComm/Res/common/folder_closed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaComm/Res/common/folder_closed.png -------------------------------------------------------------------------------- /ScadaComm/Res/common/folder_closed_inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaComm/Res/common/folder_closed_inactive.png -------------------------------------------------------------------------------- /ScadaComm/Res/common/folder_open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaComm/Res/common/folder_open.png -------------------------------------------------------------------------------- /ScadaComm/Res/common/folder_open_inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaComm/Res/common/folder_open_inactive.png -------------------------------------------------------------------------------- /ScadaComm/Res/common/info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaComm/Res/common/info.png -------------------------------------------------------------------------------- /ScadaComm/Res/common/move_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaComm/Res/common/move_down.png -------------------------------------------------------------------------------- /ScadaComm/Res/common/move_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaComm/Res/common/move_up.png -------------------------------------------------------------------------------- /ScadaComm/Res/common/open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaComm/Res/common/open.png -------------------------------------------------------------------------------- /ScadaComm/Res/common/options.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaComm/Res/common/options.png -------------------------------------------------------------------------------- /ScadaComm/Res/common/warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaComm/Res/common/warning.png -------------------------------------------------------------------------------- /ScadaComm/Res/drv_ds_opc_ua_server/linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaComm/Res/drv_ds_opc_ua_server/linux.png -------------------------------------------------------------------------------- /ScadaComm/Res/drv_ds_opc_ua_server/windows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaComm/Res/drv_ds_opc_ua_server/windows.png -------------------------------------------------------------------------------- /ScadaComm/Res/drv_modbus/blank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaComm/Res/drv_modbus/blank.png -------------------------------------------------------------------------------- /ScadaComm/Res/drv_modbus/clone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaComm/Res/drv_modbus/clone.png -------------------------------------------------------------------------------- /ScadaComm/Res/drv_modbus/cmd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaComm/Res/drv_modbus/cmd.png -------------------------------------------------------------------------------- /ScadaComm/Res/drv_modbus/cmds.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaComm/Res/drv_modbus/cmds.png -------------------------------------------------------------------------------- /ScadaComm/Res/drv_modbus/elem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaComm/Res/drv_modbus/elem.png -------------------------------------------------------------------------------- /ScadaComm/Res/drv_modbus/group.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaComm/Res/drv_modbus/group.png -------------------------------------------------------------------------------- /ScadaComm/Res/drv_modbus/group_inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaComm/Res/drv_modbus/group_inactive.png -------------------------------------------------------------------------------- /ScadaComm/Res/drv_modbus/options_extended.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaComm/Res/drv_modbus/options_extended.png -------------------------------------------------------------------------------- /ScadaComm/Res/drv_modbus/save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaComm/Res/drv_modbus/save.png -------------------------------------------------------------------------------- /ScadaComm/Res/drv_modbus/save_as.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaComm/Res/drv_modbus/save_as.png -------------------------------------------------------------------------------- /ScadaComm/Res/drv_modbus/validate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaComm/Res/drv_modbus/validate.png -------------------------------------------------------------------------------- /ScadaComm/Res/drv_mqtt/cmd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaComm/Res/drv_mqtt/cmd.png -------------------------------------------------------------------------------- /ScadaComm/Res/drv_mqtt/elem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaComm/Res/drv_mqtt/elem.png -------------------------------------------------------------------------------- /ScadaComm/Res/drv_opc_ua/attributes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaComm/Res/drv_opc_ua/attributes.png -------------------------------------------------------------------------------- /ScadaComm/Res/drv_opc_ua/cmd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaComm/Res/drv_opc_ua/cmd.png -------------------------------------------------------------------------------- /ScadaComm/Res/drv_opc_ua/connect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaComm/Res/drv_opc_ua/connect.png -------------------------------------------------------------------------------- /ScadaComm/Res/drv_opc_ua/disconnect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaComm/Res/drv_opc_ua/disconnect.png -------------------------------------------------------------------------------- /ScadaComm/Res/drv_opc_ua/empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaComm/Res/drv_opc_ua/empty.png -------------------------------------------------------------------------------- /ScadaComm/Res/drv_opc_ua/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaComm/Res/drv_opc_ua/lock.png -------------------------------------------------------------------------------- /ScadaComm/Res/drv_opc_ua/method.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaComm/Res/drv_opc_ua/method.png -------------------------------------------------------------------------------- /ScadaComm/Res/drv_opc_ua/obj.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaComm/Res/drv_opc_ua/obj.png -------------------------------------------------------------------------------- /ScadaComm/Res/drv_opc_ua/variable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaComm/Res/drv_opc_ua/variable.png -------------------------------------------------------------------------------- /ScadaComm/ScadaComm/ScadaComm.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaComm/ScadaComm/ScadaComm.sln -------------------------------------------------------------------------------- /ScadaComm/ScadaComm/ScadaCommApp/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaComm/ScadaComm/ScadaCommApp/Program.cs -------------------------------------------------------------------------------- /ScadaComm/ScadaComm/ScadaCommCommon/CommDirs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaComm/ScadaComm/ScadaCommCommon/CommDirs.cs -------------------------------------------------------------------------------- /ScadaComm/ScadaComm/ScadaCommCommon/CommUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaComm/ScadaComm/ScadaCommCommon/CommUtils.cs -------------------------------------------------------------------------------- /ScadaComm/ScadaComm/ScadaCommEngine/CommLine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaComm/ScadaComm/ScadaCommEngine/CommLine.cs -------------------------------------------------------------------------------- /ScadaComm/ScadaComm/ScadaCommEngine/CoreLogic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaComm/ScadaComm/ScadaCommEngine/CoreLogic.cs -------------------------------------------------------------------------------- /ScadaComm/ScadaComm/ScadaCommEngine/Manager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaComm/ScadaComm/ScadaCommEngine/Manager.cs -------------------------------------------------------------------------------- /ScadaComm/ScadaComm/ScadaCommWkr/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaComm/ScadaComm/ScadaCommWkr/Program.cs -------------------------------------------------------------------------------- /ScadaComm/ScadaComm/ScadaCommWkr/Worker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaComm/ScadaComm/ScadaCommWkr/Worker.cs -------------------------------------------------------------------------------- /ScadaComm/ScadaComm/ScadaCommWkr/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaComm/ScadaComm/ScadaCommWkr/appsettings.json -------------------------------------------------------------------------------- /ScadaComm/Script/Linux/scadacomm6.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaComm/Script/Linux/scadacomm6.service -------------------------------------------------------------------------------- /ScadaComm/Script/Linux/svc_restart.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | systemctl restart scadacomm6 3 | -------------------------------------------------------------------------------- /ScadaComm/Script/Linux/svc_start.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | systemctl start scadacomm6 3 | -------------------------------------------------------------------------------- /ScadaComm/Script/Linux/svc_stop.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | systemctl stop scadacomm6 3 | -------------------------------------------------------------------------------- /ScadaComm/Script/Windows/svc_install.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaComm/Script/Windows/svc_install.bat -------------------------------------------------------------------------------- /ScadaComm/Script/Windows/svc_restart.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaComm/Script/Windows/svc_restart.bat -------------------------------------------------------------------------------- /ScadaComm/Script/Windows/svc_start.bat: -------------------------------------------------------------------------------- 1 | net start ScadaComm6 2 | -------------------------------------------------------------------------------- /ScadaComm/Script/Windows/svc_stop.bat: -------------------------------------------------------------------------------- 1 | net stop ScadaComm6 2 | if ERRORLEVEL 1 exit 0 3 | -------------------------------------------------------------------------------- /ScadaComm/Script/Windows/svc_uninstall.bat: -------------------------------------------------------------------------------- 1 | sc delete ScadaComm6 2 | -------------------------------------------------------------------------------- /ScadaCommon/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaCommon/.editorconfig -------------------------------------------------------------------------------- /ScadaCommon/FileStorage/FileStorage.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaCommon/FileStorage/FileStorage.csproj -------------------------------------------------------------------------------- /ScadaCommon/FileStorage/FileStorageLogic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaCommon/FileStorage/FileStorageLogic.cs -------------------------------------------------------------------------------- /ScadaCommon/ScadaCommon.Forms/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaCommon/ScadaCommon.Forms/.editorconfig -------------------------------------------------------------------------------- /ScadaCommon/ScadaCommon.Forms/BitItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaCommon/ScadaCommon.Forms/BitItem.cs -------------------------------------------------------------------------------- /ScadaCommon/ScadaCommon.Forms/ConfigAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaCommon/ScadaCommon.Forms/ConfigAction.cs -------------------------------------------------------------------------------- /ScadaCommon/ScadaCommon.Forms/ConfigProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaCommon/ScadaCommon.Forms/ConfigProvider.cs -------------------------------------------------------------------------------- /ScadaCommon/ScadaCommon.Forms/FormTranslator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaCommon/ScadaCommon.Forms/FormTranslator.cs -------------------------------------------------------------------------------- /ScadaCommon/ScadaCommon.Forms/Forms/FrmBitmask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaCommon/ScadaCommon.Forms/Forms/FrmBitmask.cs -------------------------------------------------------------------------------- /ScadaCommon/ScadaCommon.Forms/Forms/FrmOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaCommon/ScadaCommon.Forms/Forms/FrmOptions.cs -------------------------------------------------------------------------------- /ScadaCommon/ScadaCommon.Forms/LogBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaCommon/ScadaCommon.Forms/LogBox.cs -------------------------------------------------------------------------------- /ScadaCommon/ScadaCommon.Forms/RemoteLogBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaCommon/ScadaCommon.Forms/RemoteLogBox.cs -------------------------------------------------------------------------------- /ScadaCommon/ScadaCommon.Forms/Resources/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaCommon/ScadaCommon.Forms/Resources/add.png -------------------------------------------------------------------------------- /ScadaCommon/ScadaCommon.Forms/Resources/info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaCommon/ScadaCommon.Forms/Resources/info.png -------------------------------------------------------------------------------- /ScadaCommon/ScadaCommon.Forms/ScadaUiUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaCommon/ScadaCommon.Forms/ScadaUiUtils.cs -------------------------------------------------------------------------------- /ScadaCommon/ScadaCommon.Forms/TreeNodeBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaCommon/ScadaCommon.Forms/TreeNodeBehavior.cs -------------------------------------------------------------------------------- /ScadaCommon/ScadaCommon.Forms/TreeNodeTag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaCommon/ScadaCommon.Forms/TreeNodeTag.cs -------------------------------------------------------------------------------- /ScadaCommon/ScadaCommon.Forms/TreeUpdateTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaCommon/ScadaCommon.Forms/TreeUpdateTypes.cs -------------------------------------------------------------------------------- /ScadaCommon/ScadaCommon.Log/ILog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaCommon/ScadaCommon.Log/ILog.cs -------------------------------------------------------------------------------- /ScadaCommon/ScadaCommon.Log/LogFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaCommon/ScadaCommon.Log/LogFile.cs -------------------------------------------------------------------------------- /ScadaCommon/ScadaCommon.Log/LogFormat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaCommon/ScadaCommon.Log/LogFormat.cs -------------------------------------------------------------------------------- /ScadaCommon/ScadaCommon.Log/LogMessageType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaCommon/ScadaCommon.Log/LogMessageType.cs -------------------------------------------------------------------------------- /ScadaCommon/ScadaCommon.Log/LogStub.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaCommon/ScadaCommon.Log/LogStub.cs -------------------------------------------------------------------------------- /ScadaCommon/ScadaCommon.MultiDb/DataSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaCommon/ScadaCommon.MultiDb/DataSource.cs -------------------------------------------------------------------------------- /ScadaCommon/ScadaCommon.MultiDb/SqlDataSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaCommon/ScadaCommon.MultiDb/SqlDataSource.cs -------------------------------------------------------------------------------- /ScadaCommon/ScadaCommon.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaCommon/ScadaCommon.sln -------------------------------------------------------------------------------- /ScadaCommon/ScadaCommon/Agent/AgentConst.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaCommon/ScadaCommon/Agent/AgentConst.cs -------------------------------------------------------------------------------- /ScadaCommon/ScadaCommon/Agent/IAgentClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaCommon/ScadaCommon/Agent/IAgentClient.cs -------------------------------------------------------------------------------- /ScadaCommon/ScadaCommon/Agent/ServiceCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaCommon/ScadaCommon/Agent/ServiceCommand.cs -------------------------------------------------------------------------------- /ScadaCommon/ScadaCommon/Agent/TransferOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaCommon/ScadaCommon/Agent/TransferOptions.cs -------------------------------------------------------------------------------- /ScadaCommon/ScadaCommon/AppDirs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaCommon/ScadaCommon/AppDirs.cs -------------------------------------------------------------------------------- /ScadaCommon/ScadaCommon/AssemblyResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaCommon/ScadaCommon/AssemblyResolver.cs -------------------------------------------------------------------------------- /ScadaCommon/ScadaCommon/BinaryConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaCommon/ScadaCommon/BinaryConverter.cs -------------------------------------------------------------------------------- /ScadaCommon/ScadaCommon/Client/ClientBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaCommon/ScadaCommon/Client/ClientBase.cs -------------------------------------------------------------------------------- /ScadaCommon/ScadaCommon/Client/ClientState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaCommon/ScadaCommon/Client/ClientState.cs -------------------------------------------------------------------------------- /ScadaCommon/ScadaCommon/Client/ScadaClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaCommon/ScadaCommon/Client/ScadaClient.cs -------------------------------------------------------------------------------- /ScadaCommon/ScadaCommon/Client/ScadaClientMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaCommon/ScadaCommon/Client/ScadaClientMode.cs -------------------------------------------------------------------------------- /ScadaCommon/ScadaCommon/Client/ScadaClientPool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaCommon/ScadaCommon/Client/ScadaClientPool.cs -------------------------------------------------------------------------------- /ScadaCommon/ScadaCommon/CnlDataConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaCommon/ScadaCommon/CnlDataConverter.cs -------------------------------------------------------------------------------- /ScadaCommon/ScadaCommon/CnlDataFormatter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaCommon/ScadaCommon/CnlDataFormatter.cs -------------------------------------------------------------------------------- /ScadaCommon/ScadaCommon/Config/ConfigBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaCommon/ScadaCommon/Config/ConfigBase.cs -------------------------------------------------------------------------------- /ScadaCommon/ScadaCommon/Config/IConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaCommon/ScadaCommon/Config/IConfig.cs -------------------------------------------------------------------------------- /ScadaCommon/ScadaCommon/Config/InstanceConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaCommon/ScadaCommon/Config/InstanceConfig.cs -------------------------------------------------------------------------------- /ScadaCommon/ScadaCommon/Config/OptionList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaCommon/ScadaCommon/Config/OptionList.cs -------------------------------------------------------------------------------- /ScadaCommon/ScadaCommon/Data/Adapters/Adapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaCommon/ScadaCommon/Data/Adapters/Adapter.cs -------------------------------------------------------------------------------- /ScadaCommon/ScadaCommon/Data/Const/ArchiveBit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaCommon/ScadaCommon/Data/Const/ArchiveBit.cs -------------------------------------------------------------------------------- /ScadaCommon/ScadaCommon/Data/Const/CnlStatusID.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaCommon/ScadaCommon/Data/Const/CnlStatusID.cs -------------------------------------------------------------------------------- /ScadaCommon/ScadaCommon/Data/Const/CnlTypeID.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaCommon/ScadaCommon/Data/Const/CnlTypeID.cs -------------------------------------------------------------------------------- /ScadaCommon/ScadaCommon/Data/Const/DataTypeID.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaCommon/ScadaCommon/Data/Const/DataTypeID.cs -------------------------------------------------------------------------------- /ScadaCommon/ScadaCommon/Data/Const/EventBit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaCommon/ScadaCommon/Data/Const/EventBit.cs -------------------------------------------------------------------------------- /ScadaCommon/ScadaCommon/Data/Const/FormatCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaCommon/ScadaCommon/Data/Const/FormatCode.cs -------------------------------------------------------------------------------- /ScadaCommon/ScadaCommon/Data/Const/RoleID.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaCommon/ScadaCommon/Data/Const/RoleID.cs -------------------------------------------------------------------------------- /ScadaCommon/ScadaCommon/Data/Const/Severity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaCommon/ScadaCommon/Data/Const/Severity.cs -------------------------------------------------------------------------------- /ScadaCommon/ScadaCommon/Data/Const/UnitCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaCommon/ScadaCommon/Data/Const/UnitCode.cs -------------------------------------------------------------------------------- /ScadaCommon/ScadaCommon/Data/Entities/Archive.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaCommon/ScadaCommon/Data/Entities/Archive.cs -------------------------------------------------------------------------------- /ScadaCommon/ScadaCommon/Data/Entities/Cnl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaCommon/ScadaCommon/Data/Entities/Cnl.cs -------------------------------------------------------------------------------- /ScadaCommon/ScadaCommon/Data/Entities/CnlType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaCommon/ScadaCommon/Data/Entities/CnlType.cs -------------------------------------------------------------------------------- /ScadaCommon/ScadaCommon/Data/Entities/CommLine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaCommon/ScadaCommon/Data/Entities/CommLine.cs -------------------------------------------------------------------------------- /ScadaCommon/ScadaCommon/Data/Entities/DataType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaCommon/ScadaCommon/Data/Entities/DataType.cs -------------------------------------------------------------------------------- /ScadaCommon/ScadaCommon/Data/Entities/DevType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaCommon/ScadaCommon/Data/Entities/DevType.cs -------------------------------------------------------------------------------- /ScadaCommon/ScadaCommon/Data/Entities/Device.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaCommon/ScadaCommon/Data/Entities/Device.cs -------------------------------------------------------------------------------- /ScadaCommon/ScadaCommon/Data/Entities/Format.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaCommon/ScadaCommon/Data/Entities/Format.cs -------------------------------------------------------------------------------- /ScadaCommon/ScadaCommon/Data/Entities/Lim.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaCommon/ScadaCommon/Data/Entities/Lim.cs -------------------------------------------------------------------------------- /ScadaCommon/ScadaCommon/Data/Entities/Obj.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaCommon/ScadaCommon/Data/Entities/Obj.cs -------------------------------------------------------------------------------- /ScadaCommon/ScadaCommon/Data/Entities/ObjRight.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaCommon/ScadaCommon/Data/Entities/ObjRight.cs -------------------------------------------------------------------------------- /ScadaCommon/ScadaCommon/Data/Entities/Quantity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaCommon/ScadaCommon/Data/Entities/Quantity.cs -------------------------------------------------------------------------------- /ScadaCommon/ScadaCommon/Data/Entities/Role.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaCommon/ScadaCommon/Data/Entities/Role.cs -------------------------------------------------------------------------------- /ScadaCommon/ScadaCommon/Data/Entities/RoleRef.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaCommon/ScadaCommon/Data/Entities/RoleRef.cs -------------------------------------------------------------------------------- /ScadaCommon/ScadaCommon/Data/Entities/Script.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaCommon/ScadaCommon/Data/Entities/Script.cs -------------------------------------------------------------------------------- /ScadaCommon/ScadaCommon/Data/Entities/Unit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaCommon/ScadaCommon/Data/Entities/Unit.cs -------------------------------------------------------------------------------- /ScadaCommon/ScadaCommon/Data/Entities/User.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaCommon/ScadaCommon/Data/Entities/User.cs -------------------------------------------------------------------------------- /ScadaCommon/ScadaCommon/Data/Entities/View.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaCommon/ScadaCommon/Data/Entities/View.cs -------------------------------------------------------------------------------- /ScadaCommon/ScadaCommon/Data/Entities/ViewType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaCommon/ScadaCommon/Data/Entities/ViewType.cs -------------------------------------------------------------------------------- /ScadaCommon/ScadaCommon/Data/Models/CnlData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaCommon/ScadaCommon/Data/Models/CnlData.cs -------------------------------------------------------------------------------- /ScadaCommon/ScadaCommon/Data/Models/EnumDict.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaCommon/ScadaCommon/Data/Models/EnumDict.cs -------------------------------------------------------------------------------- /ScadaCommon/ScadaCommon/Data/Models/EnumFormat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaCommon/ScadaCommon/Data/Models/EnumFormat.cs -------------------------------------------------------------------------------- /ScadaCommon/ScadaCommon/Data/Models/Event.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaCommon/ScadaCommon/Data/Models/Event.cs -------------------------------------------------------------------------------- /ScadaCommon/ScadaCommon/Data/Models/EventAck.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaCommon/ScadaCommon/Data/Models/EventAck.cs -------------------------------------------------------------------------------- /ScadaCommon/ScadaCommon/Data/Models/EventMask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaCommon/ScadaCommon/Data/Models/EventMask.cs -------------------------------------------------------------------------------- /ScadaCommon/ScadaCommon/Data/Models/Right.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaCommon/ScadaCommon/Data/Models/Right.cs -------------------------------------------------------------------------------- /ScadaCommon/ScadaCommon/Data/Models/Slice.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaCommon/ScadaCommon/Data/Models/Slice.cs -------------------------------------------------------------------------------- /ScadaCommon/ScadaCommon/Data/Models/TimeRange.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaCommon/ScadaCommon/Data/Models/TimeRange.cs -------------------------------------------------------------------------------- /ScadaCommon/ScadaCommon/Data/Models/Trend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaCommon/ScadaCommon/Data/Models/Trend.cs -------------------------------------------------------------------------------- /ScadaCommon/ScadaCommon/Data/Models/TrendPoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaCommon/ScadaCommon/Data/Models/TrendPoint.cs -------------------------------------------------------------------------------- /ScadaCommon/ScadaCommon/Data/Models/ViewBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaCommon/ScadaCommon/Data/Models/ViewBase.cs -------------------------------------------------------------------------------- /ScadaCommon/ScadaCommon/Data/Queues/DataQueue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaCommon/ScadaCommon/Data/Queues/DataQueue.cs -------------------------------------------------------------------------------- /ScadaCommon/ScadaCommon/Data/Queues/IDataQueue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaCommon/ScadaCommon/Data/Queues/IDataQueue.cs -------------------------------------------------------------------------------- /ScadaCommon/ScadaCommon/Data/Queues/QueueItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaCommon/ScadaCommon/Data/Queues/QueueItem.cs -------------------------------------------------------------------------------- /ScadaCommon/ScadaCommon/Data/Queues/QueueStats.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaCommon/ScadaCommon/Data/Queues/QueueStats.cs -------------------------------------------------------------------------------- /ScadaCommon/ScadaCommon/Data/Tables/BaseTable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaCommon/ScadaCommon/Data/Tables/BaseTable.cs -------------------------------------------------------------------------------- /ScadaCommon/ScadaCommon/Data/Tables/CnlNumList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaCommon/ScadaCommon/Data/Tables/CnlNumList.cs -------------------------------------------------------------------------------- /ScadaCommon/ScadaCommon/Data/Tables/DataFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaCommon/ScadaCommon/Data/Tables/DataFilter.cs -------------------------------------------------------------------------------- /ScadaCommon/ScadaCommon/Data/Tables/EventTable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaCommon/ScadaCommon/Data/Tables/EventTable.cs -------------------------------------------------------------------------------- /ScadaCommon/ScadaCommon/Data/Tables/IBaseTable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaCommon/ScadaCommon/Data/Tables/IBaseTable.cs -------------------------------------------------------------------------------- /ScadaCommon/ScadaCommon/Data/Tables/TableIndex.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaCommon/ScadaCommon/Data/Tables/TableIndex.cs -------------------------------------------------------------------------------- /ScadaCommon/ScadaCommon/Data/Tables/TableType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaCommon/ScadaCommon/Data/Tables/TableType.cs -------------------------------------------------------------------------------- /ScadaCommon/ScadaCommon/Data/Tables/TrendTable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaCommon/ScadaCommon/Data/Tables/TrendTable.cs -------------------------------------------------------------------------------- /ScadaCommon/ScadaCommon/Dbms/DbExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaCommon/ScadaCommon/Dbms/DbExtensions.cs -------------------------------------------------------------------------------- /ScadaCommon/ScadaCommon/Dbms/KnownDBMS.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaCommon/ScadaCommon/Dbms/KnownDBMS.cs -------------------------------------------------------------------------------- /ScadaCommon/ScadaCommon/ITreeNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaCommon/ScadaCommon/ITreeNode.cs -------------------------------------------------------------------------------- /ScadaCommon/ScadaCommon/Lang/CommonPhrases.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaCommon/ScadaCommon/Lang/CommonPhrases.cs -------------------------------------------------------------------------------- /ScadaCommon/ScadaCommon/Lang/ControlPhrases.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaCommon/ScadaCommon/Lang/ControlPhrases.cs -------------------------------------------------------------------------------- /ScadaCommon/ScadaCommon/Lang/Locale.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaCommon/ScadaCommon/Lang/Locale.cs -------------------------------------------------------------------------------- /ScadaCommon/ScadaCommon/Lang/LocaleDict.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaCommon/ScadaCommon/Lang/LocaleDict.cs -------------------------------------------------------------------------------- /ScadaCommon/ScadaCommon/LibraryInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaCommon/ScadaCommon/LibraryInfo.cs -------------------------------------------------------------------------------- /ScadaCommon/ScadaCommon/LibraryView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaCommon/ScadaCommon/LibraryView.cs -------------------------------------------------------------------------------- /ScadaCommon/ScadaCommon/MemoryCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaCommon/ScadaCommon/MemoryCache.cs -------------------------------------------------------------------------------- /ScadaCommon/ScadaCommon/Protocol/AppFolder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaCommon/ScadaCommon/Protocol/AppFolder.cs -------------------------------------------------------------------------------- /ScadaCommon/ScadaCommon/Protocol/DataPacket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaCommon/ScadaCommon/Protocol/DataPacket.cs -------------------------------------------------------------------------------- /ScadaCommon/ScadaCommon/Protocol/ErrorCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaCommon/ScadaCommon/Protocol/ErrorCode.cs -------------------------------------------------------------------------------- /ScadaCommon/ScadaCommon/Protocol/FunctionID.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaCommon/ScadaCommon/Protocol/FunctionID.cs -------------------------------------------------------------------------------- /ScadaCommon/ScadaCommon/Protocol/ProtocolUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaCommon/ScadaCommon/Protocol/ProtocolUtils.cs -------------------------------------------------------------------------------- /ScadaCommon/ScadaCommon/Protocol/RelativePath.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaCommon/ScadaCommon/Protocol/RelativePath.cs -------------------------------------------------------------------------------- /ScadaCommon/ScadaCommon/Protocol/TopFolder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaCommon/ScadaCommon/Protocol/TopFolder.cs -------------------------------------------------------------------------------- /ScadaCommon/ScadaCommon/RegistrationInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaCommon/ScadaCommon/RegistrationInfo.cs -------------------------------------------------------------------------------- /ScadaCommon/ScadaCommon/ScadaCommon.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaCommon/ScadaCommon/ScadaCommon.csproj -------------------------------------------------------------------------------- /ScadaCommon/ScadaCommon/ScadaException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaCommon/ScadaCommon/ScadaException.cs -------------------------------------------------------------------------------- /ScadaCommon/ScadaCommon/ScadaUtils.Collections.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaCommon/ScadaCommon/ScadaUtils.Collections.cs -------------------------------------------------------------------------------- /ScadaCommon/ScadaCommon/ScadaUtils.Converter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaCommon/ScadaCommon/ScadaUtils.Converter.cs -------------------------------------------------------------------------------- /ScadaCommon/ScadaCommon/ScadaUtils.Crypto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaCommon/ScadaCommon/ScadaUtils.Crypto.cs -------------------------------------------------------------------------------- /ScadaCommon/ScadaCommon/ScadaUtils.Xml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaCommon/ScadaCommon/ScadaUtils.Xml.cs -------------------------------------------------------------------------------- /ScadaCommon/ScadaCommon/ScadaUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaCommon/ScadaCommon/ScadaUtils.cs -------------------------------------------------------------------------------- /ScadaCommon/ScadaCommon/SerializationBinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaCommon/ScadaCommon/SerializationBinder.cs -------------------------------------------------------------------------------- /ScadaCommon/ScadaCommon/Server/ConnectedClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaCommon/ScadaCommon/Server/ConnectedClient.cs -------------------------------------------------------------------------------- /ScadaCommon/ScadaCommon/Server/ListenerBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaCommon/ScadaCommon/Server/ListenerBase.cs -------------------------------------------------------------------------------- /ScadaCommon/ScadaCommon/Server/ListenerOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaCommon/ScadaCommon/Server/ListenerOptions.cs -------------------------------------------------------------------------------- /ScadaCommon/ScadaCommon/ServiceApp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaCommon/ScadaCommon/ServiceApp.cs -------------------------------------------------------------------------------- /ScadaCommon/ScadaCommon/ServiceStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaCommon/ScadaCommon/ServiceStatus.cs -------------------------------------------------------------------------------- /ScadaCommon/ScadaCommon/ShortFileInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaCommon/ScadaCommon/ShortFileInfo.cs -------------------------------------------------------------------------------- /ScadaCommon/ScadaCommon/SimpleResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaCommon/ScadaCommon/SimpleResult.cs -------------------------------------------------------------------------------- /ScadaCommon/ScadaCommon/Storages/DataCategory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaCommon/ScadaCommon/Storages/DataCategory.cs -------------------------------------------------------------------------------- /ScadaCommon/ScadaCommon/Storages/IStorage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaCommon/ScadaCommon/Storages/IStorage.cs -------------------------------------------------------------------------------- /ScadaCommon/ScadaCommon/Storages/StorageLogic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaCommon/ScadaCommon/Storages/StorageLogic.cs -------------------------------------------------------------------------------- /ScadaCommon/ScadaCommon/TrendHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaCommon/ScadaCommon/TrendHelper.cs -------------------------------------------------------------------------------- /ScadaDoc/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaDoc/.editorconfig -------------------------------------------------------------------------------- /ScadaDoc/ScadaDoc.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaDoc/ScadaDoc.sln -------------------------------------------------------------------------------- /ScadaDoc/ScadaDoc/Code/DocUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaDoc/ScadaDoc/Code/DocUtils.cs -------------------------------------------------------------------------------- /ScadaDoc/ScadaDoc/Code/KnownLang.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaDoc/ScadaDoc/Code/KnownLang.cs -------------------------------------------------------------------------------- /ScadaDoc/ScadaDoc/Code/KnownVersion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaDoc/ScadaDoc/Code/KnownVersion.cs -------------------------------------------------------------------------------- /ScadaDoc/ScadaDoc/Code/MenuItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaDoc/ScadaDoc/Code/MenuItem.cs -------------------------------------------------------------------------------- /ScadaDoc/ScadaDoc/Code/PageMeta.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaDoc/ScadaDoc/Code/PageMeta.cs -------------------------------------------------------------------------------- /ScadaDoc/ScadaDoc/Code/Toc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaDoc/ScadaDoc/Code/Toc.cs -------------------------------------------------------------------------------- /ScadaDoc/ScadaDoc/Code/TocManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaDoc/ScadaDoc/Code/TocManager.cs -------------------------------------------------------------------------------- /ScadaDoc/ScadaDoc/Code/TocRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaDoc/ScadaDoc/Code/TocRenderer.cs -------------------------------------------------------------------------------- /ScadaDoc/ScadaDoc/Code/VersionItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaDoc/ScadaDoc/Code/VersionItem.cs -------------------------------------------------------------------------------- /ScadaDoc/ScadaDoc/Code/VersionMenu.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaDoc/ScadaDoc/Code/VersionMenu.cs -------------------------------------------------------------------------------- /ScadaDoc/ScadaDoc/Pages/En/Version58/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaDoc/ScadaDoc/Pages/En/Version58/Index.cshtml -------------------------------------------------------------------------------- /ScadaDoc/ScadaDoc/Pages/En/Version61/Index.cshtml: -------------------------------------------------------------------------------- 1 | @page "/en/6.1/" 2 | @{ 3 | Response.Redirect("software-overview/introduction"); 4 | } 5 | -------------------------------------------------------------------------------- /ScadaDoc/ScadaDoc/Pages/En/Version64/AdditionalApplications/Index.cshtml: -------------------------------------------------------------------------------- 1 | @page "/en/latest/additional-applications/" 2 | 3 | -------------------------------------------------------------------------------- /ScadaDoc/ScadaDoc/Pages/En/Version64/Configuration/Index.cshtml: -------------------------------------------------------------------------------- 1 | @page "/en/latest/configuration/" 2 | 3 | -------------------------------------------------------------------------------- /ScadaDoc/ScadaDoc/Pages/En/Version64/Developers/Index.cshtml: -------------------------------------------------------------------------------- 1 | @page "/en/latest/developers/" 2 | 3 | -------------------------------------------------------------------------------- /ScadaDoc/ScadaDoc/Pages/En/Version64/EnterpriseEdition/Index.cshtml: -------------------------------------------------------------------------------- 1 | @page "/en/latest/enterprise-edition/" 2 | 3 | -------------------------------------------------------------------------------- /ScadaDoc/ScadaDoc/Pages/En/Version64/Index.cshtml: -------------------------------------------------------------------------------- 1 | @page "/en/latest/" 2 | @{ 3 | Response.Redirect("software-overview/introduction"); 4 | } 5 | -------------------------------------------------------------------------------- /ScadaDoc/ScadaDoc/Pages/En/Version64/Installation/Index.cshtml: -------------------------------------------------------------------------------- 1 | @page "/en/latest/installation/" 2 | 3 | -------------------------------------------------------------------------------- /ScadaDoc/ScadaDoc/Pages/En/Version64/Modules/Index.cshtml: -------------------------------------------------------------------------------- 1 | @page "/en/latest/modules/" 2 | 3 | -------------------------------------------------------------------------------- /ScadaDoc/ScadaDoc/Pages/En/Version64/SoftwareOverview/Index.cshtml: -------------------------------------------------------------------------------- 1 | @page "/en/latest/software-overview/" 2 | 3 | -------------------------------------------------------------------------------- /ScadaDoc/ScadaDoc/Pages/En/Version64/VersionHistory/Index.cshtml: -------------------------------------------------------------------------------- 1 | @page "/en/latest/version-history/" 2 | 3 | -------------------------------------------------------------------------------- /ScadaDoc/ScadaDoc/Pages/Es/Version58/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaDoc/ScadaDoc/Pages/Es/Version58/Index.cshtml -------------------------------------------------------------------------------- /ScadaDoc/ScadaDoc/Pages/Fr/Version61/Index.cshtml: -------------------------------------------------------------------------------- 1 | @page "/fr/6.1/" 2 | @{ 3 | Response.Redirect("software-overview/introduction"); 4 | } 5 | -------------------------------------------------------------------------------- /ScadaDoc/ScadaDoc/Pages/Fr/Version64/Configuration/Index.cshtml: -------------------------------------------------------------------------------- 1 | @page "/fr/latest/configuration/" 2 | 3 | -------------------------------------------------------------------------------- /ScadaDoc/ScadaDoc/Pages/Fr/Version64/Index.cshtml: -------------------------------------------------------------------------------- 1 | @page "/fr/latest/" 2 | @{ 3 | Response.Redirect("software-overview/introduction"); 4 | } 5 | -------------------------------------------------------------------------------- /ScadaDoc/ScadaDoc/Pages/Fr/Version64/Installation/Index.cshtml: -------------------------------------------------------------------------------- 1 | @page "/fr/latest/installation/" 2 | 3 | -------------------------------------------------------------------------------- /ScadaDoc/ScadaDoc/Pages/Fr/Version64/SoftwareOverview/Index.cshtml: -------------------------------------------------------------------------------- 1 | @page "/fr/latest/software-overview/" 2 | 3 | -------------------------------------------------------------------------------- /ScadaDoc/ScadaDoc/Pages/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaDoc/ScadaDoc/Pages/Index.cshtml -------------------------------------------------------------------------------- /ScadaDoc/ScadaDoc/Pages/Ru/Version58/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaDoc/ScadaDoc/Pages/Ru/Version58/Index.cshtml -------------------------------------------------------------------------------- /ScadaDoc/ScadaDoc/Pages/Ru/Version61/Index.cshtml: -------------------------------------------------------------------------------- 1 | @page "/ru/6.1/" 2 | @{ 3 | Response.Redirect("software-overview/introduction"); 4 | } 5 | -------------------------------------------------------------------------------- /ScadaDoc/ScadaDoc/Pages/Ru/Version64/AdditionalApplications/Index.cshtml: -------------------------------------------------------------------------------- 1 | @page "/ru/latest/additional-applications/" 2 | 3 | -------------------------------------------------------------------------------- /ScadaDoc/ScadaDoc/Pages/Ru/Version64/Configuration/Index.cshtml: -------------------------------------------------------------------------------- 1 | @page "/ru/latest/configuration/" 2 | 3 | -------------------------------------------------------------------------------- /ScadaDoc/ScadaDoc/Pages/Ru/Version64/Developers/Index.cshtml: -------------------------------------------------------------------------------- 1 | @page "/ru/latest/developers/" 2 | 3 | -------------------------------------------------------------------------------- /ScadaDoc/ScadaDoc/Pages/Ru/Version64/EnterpriseEdition/Index.cshtml: -------------------------------------------------------------------------------- 1 | @page "/ru/latest/enterprise-edition/" 2 | 3 | -------------------------------------------------------------------------------- /ScadaDoc/ScadaDoc/Pages/Ru/Version64/Index.cshtml: -------------------------------------------------------------------------------- 1 | @page "/ru/latest/" 2 | @{ 3 | Response.Redirect("software-overview/introduction"); 4 | } 5 | -------------------------------------------------------------------------------- /ScadaDoc/ScadaDoc/Pages/Ru/Version64/Installation/Index.cshtml: -------------------------------------------------------------------------------- 1 | @page "/ru/latest/installation/" 2 | 3 | -------------------------------------------------------------------------------- /ScadaDoc/ScadaDoc/Pages/Ru/Version64/Modules/Index.cshtml: -------------------------------------------------------------------------------- 1 | @page "/ru/latest/modules/" 2 | 3 | -------------------------------------------------------------------------------- /ScadaDoc/ScadaDoc/Pages/Ru/Version64/SoftwareOverview/Index.cshtml: -------------------------------------------------------------------------------- 1 | @page "/ru/latest/software-overview/" 2 | 3 | -------------------------------------------------------------------------------- /ScadaDoc/ScadaDoc/Pages/Ru/Version64/VersionHistory/Index.cshtml: -------------------------------------------------------------------------------- 1 | @page "/ru/latest/version-history/" 2 | 3 | -------------------------------------------------------------------------------- /ScadaDoc/ScadaDoc/Pages/Sitemap.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaDoc/ScadaDoc/Pages/Sitemap.cshtml -------------------------------------------------------------------------------- /ScadaDoc/ScadaDoc/Pages/Zh/Version60/Index.cshtml: -------------------------------------------------------------------------------- 1 | @page "/zh/6.0/" 2 | @{ 3 | Response.Redirect("software-overview/introduction"); 4 | } 5 | -------------------------------------------------------------------------------- /ScadaDoc/ScadaDoc/Pages/_Counter.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaDoc/ScadaDoc/Pages/_Counter.cshtml -------------------------------------------------------------------------------- /ScadaDoc/ScadaDoc/Pages/_ItemList.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaDoc/ScadaDoc/Pages/_ItemList.cshtml -------------------------------------------------------------------------------- /ScadaDoc/ScadaDoc/Pages/_Search.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaDoc/ScadaDoc/Pages/_Search.cshtml -------------------------------------------------------------------------------- /ScadaDoc/ScadaDoc/Pages/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaDoc/ScadaDoc/Pages/_ViewImports.cshtml -------------------------------------------------------------------------------- /ScadaDoc/ScadaDoc/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaDoc/ScadaDoc/Program.cs -------------------------------------------------------------------------------- /ScadaDoc/ScadaDoc/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaDoc/ScadaDoc/Properties/launchSettings.json -------------------------------------------------------------------------------- /ScadaDoc/ScadaDoc/ScadaDoc.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaDoc/ScadaDoc/ScadaDoc.csproj -------------------------------------------------------------------------------- /ScadaDoc/ScadaDoc/Script/scadadoc.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaDoc/ScadaDoc/Script/scadadoc.service -------------------------------------------------------------------------------- /ScadaDoc/ScadaDoc/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaDoc/ScadaDoc/appsettings.Development.json -------------------------------------------------------------------------------- /ScadaDoc/ScadaDoc/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaDoc/ScadaDoc/appsettings.json -------------------------------------------------------------------------------- /ScadaDoc/ScadaDoc/compilerconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaDoc/ScadaDoc/compilerconfig.json -------------------------------------------------------------------------------- /ScadaDoc/ScadaDoc/compilerconfig.json.defaults: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaDoc/ScadaDoc/compilerconfig.json.defaults -------------------------------------------------------------------------------- /ScadaDoc/ScadaDoc/wwwroot/css/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaDoc/ScadaDoc/wwwroot/css/_variables.scss -------------------------------------------------------------------------------- /ScadaDoc/ScadaDoc/wwwroot/css/article.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaDoc/ScadaDoc/wwwroot/css/article.css -------------------------------------------------------------------------------- /ScadaDoc/ScadaDoc/wwwroot/css/article.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaDoc/ScadaDoc/wwwroot/css/article.min.css -------------------------------------------------------------------------------- /ScadaDoc/ScadaDoc/wwwroot/css/article.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaDoc/ScadaDoc/wwwroot/css/article.scss -------------------------------------------------------------------------------- /ScadaDoc/ScadaDoc/wwwroot/css/history.css: -------------------------------------------------------------------------------- 1 | pre { 2 | white-space: pre-wrap; 3 | } 4 | -------------------------------------------------------------------------------- /ScadaDoc/ScadaDoc/wwwroot/css/history.min.css: -------------------------------------------------------------------------------- 1 | pre{white-space:pre-wrap;} -------------------------------------------------------------------------------- /ScadaDoc/ScadaDoc/wwwroot/css/history.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaDoc/ScadaDoc/wwwroot/css/history.scss -------------------------------------------------------------------------------- /ScadaDoc/ScadaDoc/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaDoc/ScadaDoc/wwwroot/favicon.ico -------------------------------------------------------------------------------- /ScadaDoc/ScadaDoc/wwwroot/js/article.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaDoc/ScadaDoc/wwwroot/js/article.js -------------------------------------------------------------------------------- /ScadaDoc/ScadaDoc/wwwroot/lib/prismjs/prism.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaDoc/ScadaDoc/wwwroot/lib/prismjs/prism.css -------------------------------------------------------------------------------- /ScadaDoc/ScadaDoc/wwwroot/lib/prismjs/prism.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaDoc/ScadaDoc/wwwroot/lib/prismjs/prism.js -------------------------------------------------------------------------------- /ScadaReport/ScadaReport.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaReport/ScadaReport.sln -------------------------------------------------------------------------------- /ScadaReport/ScadaReport/IReportContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaReport/ScadaReport/IReportContext.cs -------------------------------------------------------------------------------- /ScadaReport/ScadaReport/OutputFormat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaReport/ScadaReport/OutputFormat.cs -------------------------------------------------------------------------------- /ScadaReport/ScadaReport/PeriodControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaReport/ScadaReport/PeriodControl.cs -------------------------------------------------------------------------------- /ScadaReport/ScadaReport/PeriodUnit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaReport/ScadaReport/PeriodUnit.cs -------------------------------------------------------------------------------- /ScadaReport/ScadaReport/ReportArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaReport/ScadaReport/ReportArgs.cs -------------------------------------------------------------------------------- /ScadaReport/ScadaReport/ReportBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaReport/ScadaReport/ReportBuilder.cs -------------------------------------------------------------------------------- /ScadaReport/ScadaReport/ReportContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaReport/ScadaReport/ReportContext.cs -------------------------------------------------------------------------------- /ScadaReport/ScadaReport/ReportUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaReport/ScadaReport/ReportUtils.cs -------------------------------------------------------------------------------- /ScadaReport/ScadaReport/ScadaReport.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaReport/ScadaReport/ScadaReport.csproj -------------------------------------------------------------------------------- /ScadaReport/ScadaReport/Xml2003/Excel/Cell.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaReport/ScadaReport/Xml2003/Excel/Cell.cs -------------------------------------------------------------------------------- /ScadaReport/ScadaReport/Xml2003/Excel/Column.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaReport/ScadaReport/Xml2003/Excel/Column.cs -------------------------------------------------------------------------------- /ScadaReport/ScadaReport/Xml2003/Excel/Row.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaReport/ScadaReport/Xml2003/Excel/Row.cs -------------------------------------------------------------------------------- /ScadaReport/ScadaReport/Xml2003/Excel/Style.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaReport/ScadaReport/Xml2003/Excel/Style.cs -------------------------------------------------------------------------------- /ScadaReport/ScadaReport/Xml2003/Excel/Table.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaReport/ScadaReport/Xml2003/Excel/Table.cs -------------------------------------------------------------------------------- /ScadaReport/ScadaReport/Xml2003/Excel/Workbook.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaReport/ScadaReport/Xml2003/Excel/Workbook.cs -------------------------------------------------------------------------------- /ScadaReport/ScadaReport/Xml2003/Word/WordUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaReport/ScadaReport/Xml2003/Word/WordUtils.cs -------------------------------------------------------------------------------- /ScadaServer/OpenModules/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaServer/OpenModules/.editorconfig -------------------------------------------------------------------------------- /ScadaServer/OpenModules/OpenModules.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaServer/OpenModules/OpenModules.sln -------------------------------------------------------------------------------- /ScadaServer/Res/mod_db_export/add_db.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaServer/Res/mod_db_export/add_db.png -------------------------------------------------------------------------------- /ScadaServer/Res/mod_db_export/collapse_all.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaServer/Res/mod_db_export/collapse_all.png -------------------------------------------------------------------------------- /ScadaServer/Res/mod_db_export/connect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaServer/Res/mod_db_export/connect.png -------------------------------------------------------------------------------- /ScadaServer/Res/mod_db_export/db_mssql.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaServer/Res/mod_db_export/db_mssql.png -------------------------------------------------------------------------------- /ScadaServer/Res/mod_db_export/db_mysql.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaServer/Res/mod_db_export/db_mysql.png -------------------------------------------------------------------------------- /ScadaServer/Res/mod_db_export/db_oledb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaServer/Res/mod_db_export/db_oledb.png -------------------------------------------------------------------------------- /ScadaServer/Res/mod_db_export/db_oracle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaServer/Res/mod_db_export/db_oracle.png -------------------------------------------------------------------------------- /ScadaServer/Res/mod_db_export/db_postgresql.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaServer/Res/mod_db_export/db_postgresql.png -------------------------------------------------------------------------------- /ScadaServer/Res/mod_db_export/export_options.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaServer/Res/mod_db_export/export_options.png -------------------------------------------------------------------------------- /ScadaServer/Res/mod_db_export/options.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaServer/Res/mod_db_export/options.png -------------------------------------------------------------------------------- /ScadaServer/Res/mod_db_export/parameters.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaServer/Res/mod_db_export/parameters.png -------------------------------------------------------------------------------- /ScadaServer/Res/mod_db_export/query.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaServer/Res/mod_db_export/query.png -------------------------------------------------------------------------------- /ScadaServer/Res/mod_db_export/query_ack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaServer/Res/mod_db_export/query_ack.png -------------------------------------------------------------------------------- /ScadaServer/Res/mod_db_export/query_cmd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaServer/Res/mod_db_export/query_cmd.png -------------------------------------------------------------------------------- /ScadaServer/Res/mod_db_export/query_cur.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaServer/Res/mod_db_export/query_cur.png -------------------------------------------------------------------------------- /ScadaServer/Res/mod_db_export/query_event.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaServer/Res/mod_db_export/query_event.png -------------------------------------------------------------------------------- /ScadaServer/Res/mod_db_export/query_hist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaServer/Res/mod_db_export/query_hist.png -------------------------------------------------------------------------------- /ScadaServer/ScadaServer/ScadaServer.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaServer/ScadaServer/ScadaServer.sln -------------------------------------------------------------------------------- /ScadaServer/ScadaServer/ScadaServerApp/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaServer/ScadaServer/ScadaServerApp/Program.cs -------------------------------------------------------------------------------- /ScadaServer/ScadaServer/ScadaServerWkr/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaServer/ScadaServer/ScadaServerWkr/Program.cs -------------------------------------------------------------------------------- /ScadaServer/ScadaServer/ScadaServerWkr/Worker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaServer/ScadaServer/ScadaServerWkr/Worker.cs -------------------------------------------------------------------------------- /ScadaServer/Script/Linux/scadaserver6.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaServer/Script/Linux/scadaserver6.service -------------------------------------------------------------------------------- /ScadaServer/Script/Linux/svc_restart.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | systemctl restart scadaserver6 3 | -------------------------------------------------------------------------------- /ScadaServer/Script/Linux/svc_start.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | systemctl start scadaserver6 3 | -------------------------------------------------------------------------------- /ScadaServer/Script/Linux/svc_stop.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | systemctl stop scadaserver6 3 | -------------------------------------------------------------------------------- /ScadaServer/Script/Windows/svc_install.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaServer/Script/Windows/svc_install.bat -------------------------------------------------------------------------------- /ScadaServer/Script/Windows/svc_restart.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaServer/Script/Windows/svc_restart.bat -------------------------------------------------------------------------------- /ScadaServer/Script/Windows/svc_start.bat: -------------------------------------------------------------------------------- 1 | net start ScadaServer6 2 | -------------------------------------------------------------------------------- /ScadaServer/Script/Windows/svc_stop.bat: -------------------------------------------------------------------------------- 1 | net stop ScadaServer6 2 | -------------------------------------------------------------------------------- /ScadaServer/Script/Windows/svc_uninstall.bat: -------------------------------------------------------------------------------- 1 | sc delete ScadaServer6 2 | -------------------------------------------------------------------------------- /ScadaWeb/Mimics/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaWeb/Mimics/.editorconfig -------------------------------------------------------------------------------- /ScadaWeb/Mimics/Mimics.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaWeb/Mimics/Mimics.sln -------------------------------------------------------------------------------- /ScadaWeb/Mimics/PlgMimBasicComp/bundleconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaWeb/Mimics/PlgMimBasicComp/bundleconfig.json -------------------------------------------------------------------------------- /ScadaWeb/Mimics/PlgMimic.Common/MimicConst.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaWeb/Mimics/PlgMimic.Common/MimicConst.cs -------------------------------------------------------------------------------- /ScadaWeb/Mimics/PlgMimic.Common/MimicPhrases.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaWeb/Mimics/PlgMimic.Common/MimicPhrases.cs -------------------------------------------------------------------------------- /ScadaWeb/Mimics/PlgMimic.Common/PageReferences.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaWeb/Mimics/PlgMimic.Common/PageReferences.cs -------------------------------------------------------------------------------- /ScadaWeb/Mimics/PlgMimic.View/PlgMimicView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaWeb/Mimics/PlgMimic.View/PlgMimicView.cs -------------------------------------------------------------------------------- /ScadaWeb/Mimics/PlgMimic/Code/MimicView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaWeb/Mimics/PlgMimic/Code/MimicView.cs -------------------------------------------------------------------------------- /ScadaWeb/Mimics/PlgMimic/Code/MimicViewArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaWeb/Mimics/PlgMimic/Code/MimicViewArgs.cs -------------------------------------------------------------------------------- /ScadaWeb/Mimics/PlgMimic/Code/MimicViewSpec.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaWeb/Mimics/PlgMimic/Code/MimicViewSpec.cs -------------------------------------------------------------------------------- /ScadaWeb/Mimics/PlgMimic/Code/PluginContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaWeb/Mimics/PlgMimic/Code/PluginContext.cs -------------------------------------------------------------------------------- /ScadaWeb/Mimics/PlgMimic/PlgMimic.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaWeb/Mimics/PlgMimic/PlgMimic.csproj -------------------------------------------------------------------------------- /ScadaWeb/Mimics/PlgMimic/PlgMimicLogic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaWeb/Mimics/PlgMimic/PlgMimicLogic.cs -------------------------------------------------------------------------------- /ScadaWeb/Mimics/PlgMimic/bundleconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaWeb/Mimics/PlgMimic/bundleconfig.json -------------------------------------------------------------------------------- /ScadaWeb/Mimics/PlgMimic/compilerconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaWeb/Mimics/PlgMimic/compilerconfig.json -------------------------------------------------------------------------------- /ScadaWeb/Mimics/PlgMimic/lang/PlgMimic.en-GB.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaWeb/Mimics/PlgMimic/lang/PlgMimic.en-GB.xml -------------------------------------------------------------------------------- /ScadaWeb/Mimics/PlgMimic/lang/PlgMimic.ru-RU.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaWeb/Mimics/PlgMimic/lang/PlgMimic.ru-RU.xml -------------------------------------------------------------------------------- /ScadaWeb/Mimics/PlgMimicEditor/Code/MimicGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaWeb/Mimics/PlgMimicEditor/Code/MimicGroup.cs -------------------------------------------------------------------------------- /ScadaWeb/Mimics/PlgMimicEditor/Code/ModelMeta.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaWeb/Mimics/PlgMimicEditor/Code/ModelMeta.cs -------------------------------------------------------------------------------- /ScadaWeb/Mimics/PlgMimicEditor/Code/OpenResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaWeb/Mimics/PlgMimicEditor/Code/OpenResult.cs -------------------------------------------------------------------------------- /ScadaWeb/Mimics/PlgMimicEditor/Models/Change.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaWeb/Mimics/PlgMimicEditor/Models/Change.cs -------------------------------------------------------------------------------- /ScadaWeb/Mimics/PlgMimicEditor/bundleconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaWeb/Mimics/PlgMimicEditor/bundleconfig.json -------------------------------------------------------------------------------- /ScadaWeb/OpenPlugins/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaWeb/OpenPlugins/.editorconfig -------------------------------------------------------------------------------- /ScadaWeb/OpenPlugins/OpenPlugins.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaWeb/OpenPlugins/OpenPlugins.sln -------------------------------------------------------------------------------- /ScadaWeb/OpenPlugins/PlgChart.Common/TimePoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaWeb/OpenPlugins/PlgChart.Common/TimePoint.cs -------------------------------------------------------------------------------- /ScadaWeb/OpenPlugins/PlgChart/PlgChart.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaWeb/OpenPlugins/PlgChart/PlgChart.csproj -------------------------------------------------------------------------------- /ScadaWeb/OpenPlugins/PlgChart/PlgChartLogic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaWeb/OpenPlugins/PlgChart/PlgChartLogic.cs -------------------------------------------------------------------------------- /ScadaWeb/OpenPlugins/PlgChart/compilerconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaWeb/OpenPlugins/PlgChart/compilerconfig.json -------------------------------------------------------------------------------- /ScadaWeb/OpenPlugins/PlgChart/wwwroot/plugins/Chart/css/chart-form.scss: -------------------------------------------------------------------------------- 1 | @import 'chart.scss'; 2 | -------------------------------------------------------------------------------- /ScadaWeb/OpenPlugins/PlgMain.Common/PluginInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaWeb/OpenPlugins/PlgMain.Common/PluginInfo.cs -------------------------------------------------------------------------------- /ScadaWeb/OpenPlugins/PlgMain.Common/TableItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaWeb/OpenPlugins/PlgMain.Common/TableItem.cs -------------------------------------------------------------------------------- /ScadaWeb/OpenPlugins/PlgMain.Common/TableView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaWeb/OpenPlugins/PlgMain.Common/TableView.cs -------------------------------------------------------------------------------- /ScadaWeb/OpenPlugins/PlgMain.View/PlgMainView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaWeb/OpenPlugins/PlgMain.View/PlgMainView.cs -------------------------------------------------------------------------------- /ScadaWeb/OpenPlugins/PlgMain/Code/EventFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaWeb/OpenPlugins/PlgMain/Code/EventFilter.cs -------------------------------------------------------------------------------- /ScadaWeb/OpenPlugins/PlgMain/Code/PluginUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaWeb/OpenPlugins/PlgMain/Code/PluginUtils.cs -------------------------------------------------------------------------------- /ScadaWeb/OpenPlugins/PlgMain/Models/CommandDTO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaWeb/OpenPlugins/PlgMain/Models/CommandDTO.cs -------------------------------------------------------------------------------- /ScadaWeb/OpenPlugins/PlgMain/Models/CurData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaWeb/OpenPlugins/PlgMain/Models/CurData.cs -------------------------------------------------------------------------------- /ScadaWeb/OpenPlugins/PlgMain/Models/HistData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaWeb/OpenPlugins/PlgMain/Models/HistData.cs -------------------------------------------------------------------------------- /ScadaWeb/OpenPlugins/PlgMain/Models/TimeRecord.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaWeb/OpenPlugins/PlgMain/Models/TimeRecord.cs -------------------------------------------------------------------------------- /ScadaWeb/OpenPlugins/PlgMain/PlgMain.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaWeb/OpenPlugins/PlgMain/PlgMain.csproj -------------------------------------------------------------------------------- /ScadaWeb/OpenPlugins/PlgMain/PlgMainLogic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaWeb/OpenPlugins/PlgMain/PlgMainLogic.cs -------------------------------------------------------------------------------- /ScadaWeb/OpenPlugins/PlgMain/compilerconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaWeb/OpenPlugins/PlgMain/compilerconfig.json -------------------------------------------------------------------------------- /ScadaWeb/OpenPlugins/PlgSchBasicComp/Code/Led.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaWeb/OpenPlugins/PlgSchBasicComp/Code/Led.cs -------------------------------------------------------------------------------- /ScadaWeb/OpenPlugins/PlgSchBasicComp/Code/Link.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaWeb/OpenPlugins/PlgSchBasicComp/Code/Link.cs -------------------------------------------------------------------------------- /ScadaWeb/OpenPlugins/PlgScheme.Common/CompItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaWeb/OpenPlugins/PlgScheme.Common/CompItem.cs -------------------------------------------------------------------------------- /ScadaWeb/OpenPlugins/PlgScheme.Editor/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaWeb/OpenPlugins/PlgScheme.Editor/Program.cs -------------------------------------------------------------------------------- /ScadaWeb/OpenPlugins/PlgScheme/Code/ScaleType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaWeb/OpenPlugins/PlgScheme/Code/ScaleType.cs -------------------------------------------------------------------------------- /ScadaWeb/OpenPlugins/PlgScheme/Models/CnlProps.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaWeb/OpenPlugins/PlgScheme/Models/CnlProps.cs -------------------------------------------------------------------------------- /ScadaWeb/OpenPlugins/PlgScheme/PlgScheme.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaWeb/OpenPlugins/PlgScheme/PlgScheme.csproj -------------------------------------------------------------------------------- /ScadaWeb/OpenPlugins/PlgScheme/PlgSchemeLogic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaWeb/OpenPlugins/PlgScheme/PlgSchemeLogic.cs -------------------------------------------------------------------------------- /ScadaWeb/OpenPlugins/PlgWebPage/PlgWebPage.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaWeb/OpenPlugins/PlgWebPage/PlgWebPage.csproj -------------------------------------------------------------------------------- /ScadaWeb/Res/plg_main/quantityicons.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaWeb/Res/plg_main/quantityicons.psd -------------------------------------------------------------------------------- /ScadaWeb/Res/plg_scheme/editor/about.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaWeb/Res/plg_scheme/editor/about.png -------------------------------------------------------------------------------- /ScadaWeb/Res/plg_scheme/editor/blank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaWeb/Res/plg_scheme/editor/blank.png -------------------------------------------------------------------------------- /ScadaWeb/Res/plg_scheme/editor/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaWeb/Res/plg_scheme/editor/close.png -------------------------------------------------------------------------------- /ScadaWeb/Res/plg_scheme/editor/component.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaWeb/Res/plg_scheme/editor/component.png -------------------------------------------------------------------------------- /ScadaWeb/Res/plg_scheme/editor/copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaWeb/Res/plg_scheme/editor/copy.png -------------------------------------------------------------------------------- /ScadaWeb/Res/plg_scheme/editor/cut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaWeb/Res/plg_scheme/editor/cut.png -------------------------------------------------------------------------------- /ScadaWeb/Res/plg_scheme/editor/delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaWeb/Res/plg_scheme/editor/delete.png -------------------------------------------------------------------------------- /ScadaWeb/Res/plg_scheme/editor/edit_redo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaWeb/Res/plg_scheme/editor/edit_redo.png -------------------------------------------------------------------------------- /ScadaWeb/Res/plg_scheme/editor/edit_undo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaWeb/Res/plg_scheme/editor/edit_undo.png -------------------------------------------------------------------------------- /ScadaWeb/Res/plg_scheme/editor/folder_open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaWeb/Res/plg_scheme/editor/folder_open.png -------------------------------------------------------------------------------- /ScadaWeb/Res/plg_scheme/editor/open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaWeb/Res/plg_scheme/editor/open.png -------------------------------------------------------------------------------- /ScadaWeb/Res/plg_scheme/editor/paintbrush.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaWeb/Res/plg_scheme/editor/paintbrush.ico -------------------------------------------------------------------------------- /ScadaWeb/Res/plg_scheme/editor/paste.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaWeb/Res/plg_scheme/editor/paste.png -------------------------------------------------------------------------------- /ScadaWeb/Res/plg_scheme/editor/pointer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaWeb/Res/plg_scheme/editor/pointer.png -------------------------------------------------------------------------------- /ScadaWeb/Res/plg_scheme/editor/save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaWeb/Res/plg_scheme/editor/save.png -------------------------------------------------------------------------------- /ScadaWeb/Res/plg_scheme/editor/save_as.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaWeb/Res/plg_scheme/editor/save_as.png -------------------------------------------------------------------------------- /ScadaWeb/Res/plg_scheme/editor/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaWeb/Res/plg_scheme/editor/settings.png -------------------------------------------------------------------------------- /ScadaWeb/Res/plg_scheme/editor/web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaWeb/Res/plg_scheme/editor/web.png -------------------------------------------------------------------------------- /ScadaWeb/ScadaWeb/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaWeb/ScadaWeb/.editorconfig -------------------------------------------------------------------------------- /ScadaWeb/ScadaWeb/ScadaWeb.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaWeb/ScadaWeb/ScadaWeb.sln -------------------------------------------------------------------------------- /ScadaWeb/ScadaWeb/ScadaWeb/Code/AppUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaWeb/ScadaWeb/ScadaWeb/Code/AppUtils.cs -------------------------------------------------------------------------------- /ScadaWeb/ScadaWeb/ScadaWeb/Code/AuditLog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaWeb/ScadaWeb/ScadaWeb/Code/AuditLog.cs -------------------------------------------------------------------------------- /ScadaWeb/ScadaWeb/ScadaWeb/Code/Captcha.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaWeb/ScadaWeb/ScadaWeb/Code/Captcha.cs -------------------------------------------------------------------------------- /ScadaWeb/ScadaWeb/ScadaWeb/Code/ClientAccessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaWeb/ScadaWeb/ScadaWeb/Code/ClientAccessor.cs -------------------------------------------------------------------------------- /ScadaWeb/ScadaWeb/ScadaWeb/Code/LoginService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaWeb/ScadaWeb/ScadaWeb/Code/LoginService.cs -------------------------------------------------------------------------------- /ScadaWeb/ScadaWeb/ScadaWeb/Code/Stats.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaWeb/ScadaWeb/ScadaWeb/Code/Stats.cs -------------------------------------------------------------------------------- /ScadaWeb/ScadaWeb/ScadaWeb/Code/UserContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaWeb/ScadaWeb/ScadaWeb/Code/UserContext.cs -------------------------------------------------------------------------------- /ScadaWeb/ScadaWeb/ScadaWeb/Code/ViewLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaWeb/ScadaWeb/ScadaWeb/Code/ViewLoader.cs -------------------------------------------------------------------------------- /ScadaWeb/ScadaWeb/ScadaWeb/Code/WebContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaWeb/ScadaWeb/ScadaWeb/Code/WebContext.cs -------------------------------------------------------------------------------- /ScadaWeb/ScadaWeb/ScadaWeb/Code/XmlEncryptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaWeb/ScadaWeb/ScadaWeb/Code/XmlEncryptor.cs -------------------------------------------------------------------------------- /ScadaWeb/ScadaWeb/ScadaWeb/Code/XmlRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaWeb/ScadaWeb/ScadaWeb/Code/XmlRepository.cs -------------------------------------------------------------------------------- /ScadaWeb/ScadaWeb/ScadaWeb/Pages/About.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaWeb/ScadaWeb/ScadaWeb/Pages/About.cshtml -------------------------------------------------------------------------------- /ScadaWeb/ScadaWeb/ScadaWeb/Pages/About.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaWeb/ScadaWeb/ScadaWeb/Pages/About.cshtml.cs -------------------------------------------------------------------------------- /ScadaWeb/ScadaWeb/ScadaWeb/Pages/CnlSelect.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaWeb/ScadaWeb/ScadaWeb/Pages/CnlSelect.cshtml -------------------------------------------------------------------------------- /ScadaWeb/ScadaWeb/ScadaWeb/Pages/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaWeb/ScadaWeb/ScadaWeb/Pages/Error.cshtml -------------------------------------------------------------------------------- /ScadaWeb/ScadaWeb/ScadaWeb/Pages/Error.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaWeb/ScadaWeb/ScadaWeb/Pages/Error.cshtml.cs -------------------------------------------------------------------------------- /ScadaWeb/ScadaWeb/ScadaWeb/Pages/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaWeb/ScadaWeb/ScadaWeb/Pages/Index.cshtml -------------------------------------------------------------------------------- /ScadaWeb/ScadaWeb/ScadaWeb/Pages/Index.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaWeb/ScadaWeb/ScadaWeb/Pages/Index.cshtml.cs -------------------------------------------------------------------------------- /ScadaWeb/ScadaWeb/ScadaWeb/Pages/Login.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaWeb/ScadaWeb/ScadaWeb/Pages/Login.cshtml -------------------------------------------------------------------------------- /ScadaWeb/ScadaWeb/ScadaWeb/Pages/Login.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaWeb/ScadaWeb/ScadaWeb/Pages/Login.cshtml.cs -------------------------------------------------------------------------------- /ScadaWeb/ScadaWeb/ScadaWeb/Pages/Logout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaWeb/ScadaWeb/ScadaWeb/Pages/Logout.cshtml -------------------------------------------------------------------------------- /ScadaWeb/ScadaWeb/ScadaWeb/Pages/Logout.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaWeb/ScadaWeb/ScadaWeb/Pages/Logout.cshtml.cs -------------------------------------------------------------------------------- /ScadaWeb/ScadaWeb/ScadaWeb/Pages/Reports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaWeb/ScadaWeb/ScadaWeb/Pages/Reports.cshtml -------------------------------------------------------------------------------- /ScadaWeb/ScadaWeb/ScadaWeb/Pages/View.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaWeb/ScadaWeb/ScadaWeb/Pages/View.cshtml -------------------------------------------------------------------------------- /ScadaWeb/ScadaWeb/ScadaWeb/Pages/View.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaWeb/ScadaWeb/ScadaWeb/Pages/View.cshtml.cs -------------------------------------------------------------------------------- /ScadaWeb/ScadaWeb/ScadaWeb/Pages/ViewFrame.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaWeb/ScadaWeb/ScadaWeb/Pages/ViewFrame.cshtml -------------------------------------------------------------------------------- /ScadaWeb/ScadaWeb/ScadaWeb/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaWeb/ScadaWeb/ScadaWeb/Program.cs -------------------------------------------------------------------------------- /ScadaWeb/ScadaWeb/ScadaWeb/ScadaWeb.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaWeb/ScadaWeb/ScadaWeb/ScadaWeb.csproj -------------------------------------------------------------------------------- /ScadaWeb/ScadaWeb/ScadaWeb/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaWeb/ScadaWeb/ScadaWeb/appsettings.json -------------------------------------------------------------------------------- /ScadaWeb/ScadaWeb/ScadaWeb/compilerconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaWeb/ScadaWeb/ScadaWeb/compilerconfig.json -------------------------------------------------------------------------------- /ScadaWeb/ScadaWeb/ScadaWeb/libman.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaWeb/ScadaWeb/ScadaWeb/libman.json -------------------------------------------------------------------------------- /ScadaWeb/ScadaWeb/ScadaWeb/wwwroot/css/pages/user-profile.css: -------------------------------------------------------------------------------- 1 | .user-info { 2 | max-width: 800px; 3 | } 4 | -------------------------------------------------------------------------------- /ScadaWeb/ScadaWeb/ScadaWeb/wwwroot/css/pages/user-profile.min.css: -------------------------------------------------------------------------------- 1 | .user-info{max-width:800px;} -------------------------------------------------------------------------------- /ScadaWeb/ScadaWeb/ScadaWeb/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaWeb/ScadaWeb/ScadaWeb/wwwroot/favicon.ico -------------------------------------------------------------------------------- /ScadaWeb/ScadaWeb/ScadaWeb/wwwroot/js/dialogs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaWeb/ScadaWeb/ScadaWeb/wwwroot/js/dialogs.js -------------------------------------------------------------------------------- /ScadaWeb/ScadaWeb/ScadaWeb/wwwroot/js/view-hub.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaWeb/ScadaWeb/ScadaWeb/wwwroot/js/view-hub.js -------------------------------------------------------------------------------- /ScadaWeb/ScadaWeb/ScadaWebCommon/Api/Dto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaWeb/ScadaWeb/ScadaWebCommon/Api/Dto.cs -------------------------------------------------------------------------------- /ScadaWeb/ScadaWeb/ScadaWebCommon/Api/DtoOfT.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaWeb/ScadaWeb/ScadaWebCommon/Api/DtoOfT.cs -------------------------------------------------------------------------------- /ScadaWeb/ScadaWeb/ScadaWebCommon/Api/IntRange.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaWeb/ScadaWeb/ScadaWebCommon/Api/IntRange.cs -------------------------------------------------------------------------------- /ScadaWeb/ScadaWeb/ScadaWebCommon/WebDirs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaWeb/ScadaWeb/ScadaWebCommon/WebDirs.cs -------------------------------------------------------------------------------- /ScadaWeb/ScadaWeb/ScadaWebCommon/WebPath.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaWeb/ScadaWeb/ScadaWebCommon/WebPath.cs -------------------------------------------------------------------------------- /ScadaWeb/ScadaWeb/ScadaWebCommon/WebUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaWeb/ScadaWeb/ScadaWebCommon/WebUtils.cs -------------------------------------------------------------------------------- /ScadaWeb/Script/Linux/scadaweb6.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaWeb/Script/Linux/scadaweb6.service -------------------------------------------------------------------------------- /ScadaWeb/Script/Linux/svc_restart.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaWeb/Script/Linux/svc_restart.sh -------------------------------------------------------------------------------- /ScadaWeb/Script/Linux/svc_start.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | systemctl start scadaweb6 3 | -------------------------------------------------------------------------------- /ScadaWeb/Script/Linux/svc_stop.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | systemctl stop scadaweb6 3 | -------------------------------------------------------------------------------- /ScadaWeb/Script/Nginx/default: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaWeb/Script/Nginx/default -------------------------------------------------------------------------------- /ScadaWeb/Script/Windows/svc_restart.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaWeb/Script/Windows/svc_restart.bat -------------------------------------------------------------------------------- /ScadaWeb/Script/Windows/svc_start.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaWeb/Script/Windows/svc_start.bat -------------------------------------------------------------------------------- /ScadaWeb/Script/Windows/svc_stop.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RapidScada/scada-v6/HEAD/ScadaWeb/Script/Windows/svc_stop.bat --------------------------------------------------------------------------------