├── .config └── dotnet-tools.json ├── .dockerignore ├── .github └── workflows │ └── docker-publish.yml ├── .gitignore ├── Controllers └── DashboardController.cs ├── Dockerfile ├── Encoding ├── DataSet.cs ├── DataSetDecodeErrorEventArgs.cs ├── Enums.cs ├── Field.cs ├── JsonDataSetMessage.cs ├── JsonNetworkMessage.cs ├── UaDataSetMessage.cs ├── UaNetworkMessage.cs ├── UadpDataSetMessage.cs └── UadpNetworkMessage.cs ├── Interfaces ├── IMessageProcessor.cs └── ISubscriber.cs ├── KafkaSubscriber.cs ├── LICENSE ├── MQTTSubscriber.cs ├── Models └── ErrorViewModel.cs ├── Program.cs ├── Properties ├── ServiceDependencies │ ├── connected-factory-showcase - Web Deploy │ │ └── profile.arm.json │ └── connected-factory-showcase-achema-opcua-dashboard - Web Deploy │ │ └── profile.arm.json └── launchSettings.json ├── README.md ├── Startup.cs ├── StatusHub.cs ├── UACloudDashboard.csproj ├── UACloudDashboard.sln ├── UAPubSubMessageProcessor.cs ├── Views ├── Dashboard │ ├── Graph.cshtml │ ├── Index.cshtml │ └── Privacy.cshtml ├── Shared │ ├── Error.cshtml │ ├── _Layout.cshtml │ └── _ValidationScriptsPartial.cshtml ├── _ViewImports.cshtml └── _ViewStart.cshtml ├── appsettings.Development.json ├── appsettings.json ├── libman.json └── wwwroot ├── 2mag_logo.png ├── Agilent_Logo.png ├── Beckhoff_Logo.png ├── Berthold.jpg ├── Byonoy_Logo.png ├── FHI.png ├── Gefran.png ├── INTEGRIS LIMS_Logo.png ├── JAIMA.png ├── JULABO_LOGO_bei_Einsatz_mit_weisem_Hintergrund.png ├── KUKA.png ├── Logoeslogan.jpg ├── OPCUA.png ├── SPECTARIS_Dachmarke_CMYK.jpg ├── amensio.png ├── brand.png ├── css ├── 32px.png ├── 40px.png ├── site.css ├── style.min.css └── throbber.gif ├── essentim.png ├── favicon.ico ├── gambica_logo.png ├── inforsht.png ├── infoteam_2x_4c_rgb_Logo.png ├── inray.png ├── js ├── aspnet-signalr │ ├── signalr.js │ └── signalr.min.js └── site.js ├── labforward.png ├── labmas.png ├── lads.png ├── lib ├── Chart.js │ ├── chart.esm.js │ ├── chart.esm.min.js │ ├── chart.js │ ├── chart.min.js │ ├── helpers.esm.js │ ├── helpers.esm.min.js │ └── utils.js ├── bootstrap-table │ ├── bootstrap-table-locale-all.js │ ├── bootstrap-table-locale-all.min.js │ ├── bootstrap-table-vue.esm.js │ ├── bootstrap-table-vue.esm.min.js │ ├── bootstrap-table-vue.js │ ├── bootstrap-table-vue.min.js │ ├── bootstrap-table.css │ ├── bootstrap-table.js │ ├── bootstrap-table.min.css │ ├── bootstrap-table.min.js │ ├── extensions │ │ ├── addrbar │ │ │ ├── bootstrap-table-addrbar.js │ │ │ └── bootstrap-table-addrbar.min.js │ │ ├── auto-refresh │ │ │ ├── bootstrap-table-auto-refresh.js │ │ │ └── bootstrap-table-auto-refresh.min.js │ │ ├── cookie │ │ │ ├── bootstrap-table-cookie.js │ │ │ └── bootstrap-table-cookie.min.js │ │ ├── copy-rows │ │ │ ├── bootstrap-table-copy-rows.js │ │ │ └── bootstrap-table-copy-rows.min.js │ │ ├── custom-view │ │ │ ├── bootstrap-table-custom-view.js │ │ │ └── bootstrap-table-custom-view.min.js │ │ ├── defer-url │ │ │ ├── bootstrap-table-defer-url.js │ │ │ └── bootstrap-table-defer-url.min.js │ │ ├── editable │ │ │ ├── bootstrap-table-editable.js │ │ │ └── bootstrap-table-editable.min.js │ │ ├── export │ │ │ ├── bootstrap-table-export.js │ │ │ └── bootstrap-table-export.min.js │ │ ├── filter-control │ │ │ ├── bootstrap-table-filter-control.css │ │ │ ├── bootstrap-table-filter-control.js │ │ │ ├── bootstrap-table-filter-control.min.css │ │ │ ├── bootstrap-table-filter-control.min.js │ │ │ ├── utils.js │ │ │ └── utils.min.js │ │ ├── fixed-columns │ │ │ ├── bootstrap-table-fixed-columns.css │ │ │ ├── bootstrap-table-fixed-columns.js │ │ │ ├── bootstrap-table-fixed-columns.min.css │ │ │ └── bootstrap-table-fixed-columns.min.js │ │ ├── group-by-v2 │ │ │ ├── bootstrap-table-group-by.css │ │ │ ├── bootstrap-table-group-by.js │ │ │ ├── bootstrap-table-group-by.min.css │ │ │ └── bootstrap-table-group-by.min.js │ │ ├── i18n-enhance │ │ │ ├── bootstrap-table-i18n-enhance.js │ │ │ └── bootstrap-table-i18n-enhance.min.js │ │ ├── key-events │ │ │ ├── bootstrap-table-key-events.js │ │ │ └── bootstrap-table-key-events.min.js │ │ ├── mobile │ │ │ ├── bootstrap-table-mobile.js │ │ │ └── bootstrap-table-mobile.min.js │ │ ├── multiple-sort │ │ │ ├── bootstrap-table-multiple-sort.js │ │ │ └── bootstrap-table-multiple-sort.min.js │ │ ├── page-jump-to │ │ │ ├── bootstrap-table-page-jump-to.css │ │ │ ├── bootstrap-table-page-jump-to.js │ │ │ ├── bootstrap-table-page-jump-to.min.css │ │ │ └── bootstrap-table-page-jump-to.min.js │ │ ├── pipeline │ │ │ ├── bootstrap-table-pipeline.js │ │ │ └── bootstrap-table-pipeline.min.js │ │ ├── print │ │ │ ├── bootstrap-table-print.js │ │ │ └── bootstrap-table-print.min.js │ │ ├── reorder-columns │ │ │ ├── bootstrap-table-reorder-columns.js │ │ │ └── bootstrap-table-reorder-columns.min.js │ │ ├── reorder-rows │ │ │ ├── bootstrap-table-reorder-rows.css │ │ │ ├── bootstrap-table-reorder-rows.js │ │ │ ├── bootstrap-table-reorder-rows.min.css │ │ │ └── bootstrap-table-reorder-rows.min.js │ │ ├── resizable │ │ │ ├── bootstrap-table-resizable.js │ │ │ └── bootstrap-table-resizable.min.js │ │ ├── sticky-header │ │ │ ├── bootstrap-table-sticky-header.css │ │ │ ├── bootstrap-table-sticky-header.js │ │ │ ├── bootstrap-table-sticky-header.min.css │ │ │ └── bootstrap-table-sticky-header.min.js │ │ ├── toolbar │ │ │ ├── bootstrap-table-toolbar.js │ │ │ └── bootstrap-table-toolbar.min.js │ │ └── treegrid │ │ │ ├── bootstrap-table-treegrid.js │ │ │ └── bootstrap-table-treegrid.min.js │ ├── locale │ │ ├── bootstrap-table-af-ZA.js │ │ ├── bootstrap-table-af-ZA.min.js │ │ ├── bootstrap-table-ar-SA.js │ │ ├── bootstrap-table-ar-SA.min.js │ │ ├── bootstrap-table-bg-BG.js │ │ ├── bootstrap-table-bg-BG.min.js │ │ ├── bootstrap-table-ca-ES.js │ │ ├── bootstrap-table-ca-ES.min.js │ │ ├── bootstrap-table-cs-CZ.js │ │ ├── bootstrap-table-cs-CZ.min.js │ │ ├── bootstrap-table-da-DK.js │ │ ├── bootstrap-table-da-DK.min.js │ │ ├── bootstrap-table-de-DE.js │ │ ├── bootstrap-table-de-DE.min.js │ │ ├── bootstrap-table-el-GR.js │ │ ├── bootstrap-table-el-GR.min.js │ │ ├── bootstrap-table-en-US.js │ │ ├── bootstrap-table-en-US.min.js │ │ ├── bootstrap-table-es-AR.js │ │ ├── bootstrap-table-es-AR.min.js │ │ ├── bootstrap-table-es-CL.js │ │ ├── bootstrap-table-es-CL.min.js │ │ ├── bootstrap-table-es-CR.js │ │ ├── bootstrap-table-es-CR.min.js │ │ ├── bootstrap-table-es-ES.js │ │ ├── bootstrap-table-es-ES.min.js │ │ ├── bootstrap-table-es-MX.js │ │ ├── bootstrap-table-es-MX.min.js │ │ ├── bootstrap-table-es-NI.js │ │ ├── bootstrap-table-es-NI.min.js │ │ ├── bootstrap-table-es-SP.js │ │ ├── bootstrap-table-es-SP.min.js │ │ ├── bootstrap-table-et-EE.js │ │ ├── bootstrap-table-et-EE.min.js │ │ ├── bootstrap-table-eu-EU.js │ │ ├── bootstrap-table-eu-EU.min.js │ │ ├── bootstrap-table-fa-IR.js │ │ ├── bootstrap-table-fa-IR.min.js │ │ ├── bootstrap-table-fi-FI.js │ │ ├── bootstrap-table-fi-FI.min.js │ │ ├── bootstrap-table-fr-BE.js │ │ ├── bootstrap-table-fr-BE.min.js │ │ ├── bootstrap-table-fr-CH.js │ │ ├── bootstrap-table-fr-CH.min.js │ │ ├── bootstrap-table-fr-FR.js │ │ ├── bootstrap-table-fr-FR.min.js │ │ ├── bootstrap-table-fr-LU.js │ │ ├── bootstrap-table-fr-LU.min.js │ │ ├── bootstrap-table-he-IL.js │ │ ├── bootstrap-table-he-IL.min.js │ │ ├── bootstrap-table-hr-HR.js │ │ ├── bootstrap-table-hr-HR.min.js │ │ ├── bootstrap-table-hu-HU.js │ │ ├── bootstrap-table-hu-HU.min.js │ │ ├── bootstrap-table-id-ID.js │ │ ├── bootstrap-table-id-ID.min.js │ │ ├── bootstrap-table-it-IT.js │ │ ├── bootstrap-table-it-IT.min.js │ │ ├── bootstrap-table-ja-JP.js │ │ ├── bootstrap-table-ja-JP.min.js │ │ ├── bootstrap-table-ka-GE.js │ │ ├── bootstrap-table-ka-GE.min.js │ │ ├── bootstrap-table-ko-KR.js │ │ ├── bootstrap-table-ko-KR.min.js │ │ ├── bootstrap-table-ms-MY.js │ │ ├── bootstrap-table-ms-MY.min.js │ │ ├── bootstrap-table-nb-NO.js │ │ ├── bootstrap-table-nb-NO.min.js │ │ ├── bootstrap-table-nl-BE.js │ │ ├── bootstrap-table-nl-BE.min.js │ │ ├── bootstrap-table-nl-NL.js │ │ ├── bootstrap-table-nl-NL.min.js │ │ ├── bootstrap-table-pl-PL.js │ │ ├── bootstrap-table-pl-PL.min.js │ │ ├── bootstrap-table-pt-BR.js │ │ ├── bootstrap-table-pt-BR.min.js │ │ ├── bootstrap-table-pt-PT.js │ │ ├── bootstrap-table-pt-PT.min.js │ │ ├── bootstrap-table-ro-RO.js │ │ ├── bootstrap-table-ro-RO.min.js │ │ ├── bootstrap-table-ru-RU.js │ │ ├── bootstrap-table-ru-RU.min.js │ │ ├── bootstrap-table-sk-SK.js │ │ ├── bootstrap-table-sk-SK.min.js │ │ ├── bootstrap-table-sr-Cyrl-RS.js │ │ ├── bootstrap-table-sr-Cyrl-RS.min.js │ │ ├── bootstrap-table-sr-Latn-RS.js │ │ ├── bootstrap-table-sr-Latn-RS.min.js │ │ ├── bootstrap-table-sv-SE.js │ │ ├── bootstrap-table-sv-SE.min.js │ │ ├── bootstrap-table-th-TH.js │ │ ├── bootstrap-table-th-TH.min.js │ │ ├── bootstrap-table-tr-TR.js │ │ ├── bootstrap-table-tr-TR.min.js │ │ ├── bootstrap-table-uk-UA.js │ │ ├── bootstrap-table-uk-UA.min.js │ │ ├── bootstrap-table-ur-PK.js │ │ ├── bootstrap-table-ur-PK.min.js │ │ ├── bootstrap-table-uz-Latn-UZ.js │ │ ├── bootstrap-table-uz-Latn-UZ.min.js │ │ ├── bootstrap-table-vi-VN.js │ │ ├── bootstrap-table-vi-VN.min.js │ │ ├── bootstrap-table-zh-CN.js │ │ ├── bootstrap-table-zh-CN.min.js │ │ ├── bootstrap-table-zh-TW.js │ │ └── bootstrap-table-zh-TW.min.js │ └── themes │ │ ├── bootstrap-table │ │ ├── bootstrap-table.css │ │ ├── bootstrap-table.js │ │ ├── bootstrap-table.min.css │ │ ├── bootstrap-table.min.js │ │ └── fonts │ │ │ ├── bootstrap-table.eot │ │ │ ├── bootstrap-table.svg │ │ │ ├── bootstrap-table.ttf │ │ │ └── bootstrap-table.woff │ │ ├── bulma │ │ ├── bootstrap-table-bulma.css │ │ ├── bootstrap-table-bulma.js │ │ ├── bootstrap-table-bulma.min.css │ │ └── bootstrap-table-bulma.min.js │ │ ├── foundation │ │ ├── bootstrap-table-foundation.css │ │ ├── bootstrap-table-foundation.js │ │ ├── bootstrap-table-foundation.min.css │ │ └── bootstrap-table-foundation.min.js │ │ ├── materialize │ │ ├── bootstrap-table-materialize.css │ │ ├── bootstrap-table-materialize.js │ │ ├── bootstrap-table-materialize.min.css │ │ └── bootstrap-table-materialize.min.js │ │ └── semantic │ │ ├── bootstrap-table-semantic.css │ │ ├── bootstrap-table-semantic.js │ │ ├── bootstrap-table-semantic.min.css │ │ └── bootstrap-table-semantic.min.js ├── bootstrap │ ├── LICENSE │ └── dist │ │ ├── css │ │ ├── bootstrap-grid.css │ │ ├── bootstrap-grid.css.map │ │ ├── bootstrap-grid.min.css │ │ ├── bootstrap-grid.min.css.map │ │ ├── bootstrap-reboot.css │ │ ├── bootstrap-reboot.css.map │ │ ├── bootstrap-reboot.min.css │ │ ├── bootstrap-reboot.min.css.map │ │ ├── bootstrap.css │ │ ├── bootstrap.css.map │ │ ├── bootstrap.min.css │ │ └── bootstrap.min.css.map │ │ └── js │ │ ├── bootstrap.bundle.js │ │ ├── bootstrap.bundle.js.map │ │ ├── bootstrap.bundle.min.js │ │ ├── bootstrap.bundle.min.js.map │ │ ├── bootstrap.js │ │ ├── bootstrap.js.map │ │ ├── bootstrap.min.js │ │ └── bootstrap.min.js.map ├── jquery-ajax-unobtrusive │ ├── jquery.unobtrusive-ajax.js │ └── jquery.unobtrusive-ajax.min.js ├── jquery-validation-unobtrusive │ ├── LICENSE.txt │ ├── jquery.validate.unobtrusive.js │ └── jquery.validate.unobtrusive.min.js ├── jquery-validation │ ├── LICENSE.md │ └── dist │ │ ├── additional-methods.js │ │ ├── additional-methods.min.js │ │ ├── jquery.validate.js │ │ └── jquery.validate.min.js └── jquery │ ├── LICENSE.txt │ └── dist │ ├── jquery.js │ ├── jquery.min.js │ └── jquery.min.map ├── matrikon.png ├── mettlertoledo.png ├── microsoft.png ├── opcf.jpg ├── phoenix-contact.png ├── pilz.jpg ├── prosys.png ├── samson.png ├── schneider.png ├── siemens.png ├── trumpf.jpg ├── ualogo.png ├── vdw.png └── wago.jpg /.config/dotnet-tools.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/.config/dotnet-tools.json -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/.dockerignore -------------------------------------------------------------------------------- /.github/workflows/docker-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/.github/workflows/docker-publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/.gitignore -------------------------------------------------------------------------------- /Controllers/DashboardController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/Controllers/DashboardController.cs -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/Dockerfile -------------------------------------------------------------------------------- /Encoding/DataSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/Encoding/DataSet.cs -------------------------------------------------------------------------------- /Encoding/DataSetDecodeErrorEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/Encoding/DataSetDecodeErrorEventArgs.cs -------------------------------------------------------------------------------- /Encoding/Enums.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/Encoding/Enums.cs -------------------------------------------------------------------------------- /Encoding/Field.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/Encoding/Field.cs -------------------------------------------------------------------------------- /Encoding/JsonDataSetMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/Encoding/JsonDataSetMessage.cs -------------------------------------------------------------------------------- /Encoding/JsonNetworkMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/Encoding/JsonNetworkMessage.cs -------------------------------------------------------------------------------- /Encoding/UaDataSetMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/Encoding/UaDataSetMessage.cs -------------------------------------------------------------------------------- /Encoding/UaNetworkMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/Encoding/UaNetworkMessage.cs -------------------------------------------------------------------------------- /Encoding/UadpDataSetMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/Encoding/UadpDataSetMessage.cs -------------------------------------------------------------------------------- /Encoding/UadpNetworkMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/Encoding/UadpNetworkMessage.cs -------------------------------------------------------------------------------- /Interfaces/IMessageProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/Interfaces/IMessageProcessor.cs -------------------------------------------------------------------------------- /Interfaces/ISubscriber.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/Interfaces/ISubscriber.cs -------------------------------------------------------------------------------- /KafkaSubscriber.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/KafkaSubscriber.cs -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/LICENSE -------------------------------------------------------------------------------- /MQTTSubscriber.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/MQTTSubscriber.cs -------------------------------------------------------------------------------- /Models/ErrorViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/Models/ErrorViewModel.cs -------------------------------------------------------------------------------- /Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/Program.cs -------------------------------------------------------------------------------- /Properties/ServiceDependencies/connected-factory-showcase - Web Deploy/profile.arm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/Properties/ServiceDependencies/connected-factory-showcase - Web Deploy/profile.arm.json -------------------------------------------------------------------------------- /Properties/ServiceDependencies/connected-factory-showcase-achema-opcua-dashboard - Web Deploy/profile.arm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/Properties/ServiceDependencies/connected-factory-showcase-achema-opcua-dashboard - Web Deploy/profile.arm.json -------------------------------------------------------------------------------- /Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/Properties/launchSettings.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/README.md -------------------------------------------------------------------------------- /Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/Startup.cs -------------------------------------------------------------------------------- /StatusHub.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/StatusHub.cs -------------------------------------------------------------------------------- /UACloudDashboard.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/UACloudDashboard.csproj -------------------------------------------------------------------------------- /UACloudDashboard.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/UACloudDashboard.sln -------------------------------------------------------------------------------- /UAPubSubMessageProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/UAPubSubMessageProcessor.cs -------------------------------------------------------------------------------- /Views/Dashboard/Graph.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/Views/Dashboard/Graph.cshtml -------------------------------------------------------------------------------- /Views/Dashboard/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/Views/Dashboard/Index.cshtml -------------------------------------------------------------------------------- /Views/Dashboard/Privacy.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/Views/Dashboard/Privacy.cshtml -------------------------------------------------------------------------------- /Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/Views/Shared/Error.cshtml -------------------------------------------------------------------------------- /Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /Views/Shared/_ValidationScriptsPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/Views/Shared/_ValidationScriptsPartial.cshtml -------------------------------------------------------------------------------- /Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/Views/_ViewImports.cshtml -------------------------------------------------------------------------------- /Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/appsettings.Development.json -------------------------------------------------------------------------------- /appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/appsettings.json -------------------------------------------------------------------------------- /libman.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/libman.json -------------------------------------------------------------------------------- /wwwroot/2mag_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/2mag_logo.png -------------------------------------------------------------------------------- /wwwroot/Agilent_Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/Agilent_Logo.png -------------------------------------------------------------------------------- /wwwroot/Beckhoff_Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/Beckhoff_Logo.png -------------------------------------------------------------------------------- /wwwroot/Berthold.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/Berthold.jpg -------------------------------------------------------------------------------- /wwwroot/Byonoy_Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/Byonoy_Logo.png -------------------------------------------------------------------------------- /wwwroot/FHI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/FHI.png -------------------------------------------------------------------------------- /wwwroot/Gefran.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/Gefran.png -------------------------------------------------------------------------------- /wwwroot/INTEGRIS LIMS_Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/INTEGRIS LIMS_Logo.png -------------------------------------------------------------------------------- /wwwroot/JAIMA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/JAIMA.png -------------------------------------------------------------------------------- /wwwroot/JULABO_LOGO_bei_Einsatz_mit_weisem_Hintergrund.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/JULABO_LOGO_bei_Einsatz_mit_weisem_Hintergrund.png -------------------------------------------------------------------------------- /wwwroot/KUKA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/KUKA.png -------------------------------------------------------------------------------- /wwwroot/Logoeslogan.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/Logoeslogan.jpg -------------------------------------------------------------------------------- /wwwroot/OPCUA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/OPCUA.png -------------------------------------------------------------------------------- /wwwroot/SPECTARIS_Dachmarke_CMYK.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/SPECTARIS_Dachmarke_CMYK.jpg -------------------------------------------------------------------------------- /wwwroot/amensio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/amensio.png -------------------------------------------------------------------------------- /wwwroot/brand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/brand.png -------------------------------------------------------------------------------- /wwwroot/css/32px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/css/32px.png -------------------------------------------------------------------------------- /wwwroot/css/40px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/css/40px.png -------------------------------------------------------------------------------- /wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/css/site.css -------------------------------------------------------------------------------- /wwwroot/css/style.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/css/style.min.css -------------------------------------------------------------------------------- /wwwroot/css/throbber.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/css/throbber.gif -------------------------------------------------------------------------------- /wwwroot/essentim.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/essentim.png -------------------------------------------------------------------------------- /wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/favicon.ico -------------------------------------------------------------------------------- /wwwroot/gambica_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/gambica_logo.png -------------------------------------------------------------------------------- /wwwroot/inforsht.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/inforsht.png -------------------------------------------------------------------------------- /wwwroot/infoteam_2x_4c_rgb_Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/infoteam_2x_4c_rgb_Logo.png -------------------------------------------------------------------------------- /wwwroot/inray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/inray.png -------------------------------------------------------------------------------- /wwwroot/js/aspnet-signalr/signalr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/js/aspnet-signalr/signalr.js -------------------------------------------------------------------------------- /wwwroot/js/aspnet-signalr/signalr.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/js/aspnet-signalr/signalr.min.js -------------------------------------------------------------------------------- /wwwroot/js/site.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/js/site.js -------------------------------------------------------------------------------- /wwwroot/labforward.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/labforward.png -------------------------------------------------------------------------------- /wwwroot/labmas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/labmas.png -------------------------------------------------------------------------------- /wwwroot/lads.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/lads.png -------------------------------------------------------------------------------- /wwwroot/lib/Chart.js/chart.esm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/lib/Chart.js/chart.esm.js -------------------------------------------------------------------------------- /wwwroot/lib/Chart.js/chart.esm.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/lib/Chart.js/chart.esm.min.js -------------------------------------------------------------------------------- /wwwroot/lib/Chart.js/chart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/lib/Chart.js/chart.js -------------------------------------------------------------------------------- /wwwroot/lib/Chart.js/chart.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/lib/Chart.js/chart.min.js -------------------------------------------------------------------------------- /wwwroot/lib/Chart.js/helpers.esm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/lib/Chart.js/helpers.esm.js -------------------------------------------------------------------------------- /wwwroot/lib/Chart.js/helpers.esm.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/lib/Chart.js/helpers.esm.min.js -------------------------------------------------------------------------------- /wwwroot/lib/Chart.js/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/lib/Chart.js/utils.js -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap-table/bootstrap-table-locale-all.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/lib/bootstrap-table/bootstrap-table-locale-all.js -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap-table/bootstrap-table-locale-all.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/lib/bootstrap-table/bootstrap-table-locale-all.min.js -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap-table/bootstrap-table-vue.esm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/lib/bootstrap-table/bootstrap-table-vue.esm.js -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap-table/bootstrap-table-vue.esm.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/lib/bootstrap-table/bootstrap-table-vue.esm.min.js -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap-table/bootstrap-table-vue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/lib/bootstrap-table/bootstrap-table-vue.js -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap-table/bootstrap-table-vue.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/lib/bootstrap-table/bootstrap-table-vue.min.js -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap-table/bootstrap-table.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/lib/bootstrap-table/bootstrap-table.css -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap-table/bootstrap-table.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/lib/bootstrap-table/bootstrap-table.js -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap-table/bootstrap-table.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/lib/bootstrap-table/bootstrap-table.min.css -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap-table/bootstrap-table.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/lib/bootstrap-table/bootstrap-table.min.js -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap-table/extensions/addrbar/bootstrap-table-addrbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/lib/bootstrap-table/extensions/addrbar/bootstrap-table-addrbar.js -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap-table/extensions/addrbar/bootstrap-table-addrbar.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/lib/bootstrap-table/extensions/addrbar/bootstrap-table-addrbar.min.js -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap-table/extensions/auto-refresh/bootstrap-table-auto-refresh.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/lib/bootstrap-table/extensions/auto-refresh/bootstrap-table-auto-refresh.js -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap-table/extensions/auto-refresh/bootstrap-table-auto-refresh.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/lib/bootstrap-table/extensions/auto-refresh/bootstrap-table-auto-refresh.min.js -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap-table/extensions/cookie/bootstrap-table-cookie.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/lib/bootstrap-table/extensions/cookie/bootstrap-table-cookie.js -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap-table/extensions/cookie/bootstrap-table-cookie.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/lib/bootstrap-table/extensions/cookie/bootstrap-table-cookie.min.js -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap-table/extensions/copy-rows/bootstrap-table-copy-rows.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/lib/bootstrap-table/extensions/copy-rows/bootstrap-table-copy-rows.js -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap-table/extensions/copy-rows/bootstrap-table-copy-rows.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/lib/bootstrap-table/extensions/copy-rows/bootstrap-table-copy-rows.min.js -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap-table/extensions/custom-view/bootstrap-table-custom-view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/lib/bootstrap-table/extensions/custom-view/bootstrap-table-custom-view.js -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap-table/extensions/custom-view/bootstrap-table-custom-view.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/lib/bootstrap-table/extensions/custom-view/bootstrap-table-custom-view.min.js -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap-table/extensions/defer-url/bootstrap-table-defer-url.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/lib/bootstrap-table/extensions/defer-url/bootstrap-table-defer-url.js -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap-table/extensions/defer-url/bootstrap-table-defer-url.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/lib/bootstrap-table/extensions/defer-url/bootstrap-table-defer-url.min.js -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap-table/extensions/editable/bootstrap-table-editable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/lib/bootstrap-table/extensions/editable/bootstrap-table-editable.js -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap-table/extensions/editable/bootstrap-table-editable.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/lib/bootstrap-table/extensions/editable/bootstrap-table-editable.min.js -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap-table/extensions/export/bootstrap-table-export.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/lib/bootstrap-table/extensions/export/bootstrap-table-export.js -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap-table/extensions/export/bootstrap-table-export.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/lib/bootstrap-table/extensions/export/bootstrap-table-export.min.js -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap-table/extensions/filter-control/bootstrap-table-filter-control.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/lib/bootstrap-table/extensions/filter-control/bootstrap-table-filter-control.css -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap-table/extensions/filter-control/bootstrap-table-filter-control.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/lib/bootstrap-table/extensions/filter-control/bootstrap-table-filter-control.js -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap-table/extensions/filter-control/bootstrap-table-filter-control.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/lib/bootstrap-table/extensions/filter-control/bootstrap-table-filter-control.min.css -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap-table/extensions/filter-control/bootstrap-table-filter-control.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/lib/bootstrap-table/extensions/filter-control/bootstrap-table-filter-control.min.js -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap-table/extensions/filter-control/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/lib/bootstrap-table/extensions/filter-control/utils.js -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap-table/extensions/filter-control/utils.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/lib/bootstrap-table/extensions/filter-control/utils.min.js -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap-table/extensions/fixed-columns/bootstrap-table-fixed-columns.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/lib/bootstrap-table/extensions/fixed-columns/bootstrap-table-fixed-columns.css -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap-table/extensions/fixed-columns/bootstrap-table-fixed-columns.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/lib/bootstrap-table/extensions/fixed-columns/bootstrap-table-fixed-columns.js -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap-table/extensions/fixed-columns/bootstrap-table-fixed-columns.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/lib/bootstrap-table/extensions/fixed-columns/bootstrap-table-fixed-columns.min.css -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap-table/extensions/fixed-columns/bootstrap-table-fixed-columns.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/lib/bootstrap-table/extensions/fixed-columns/bootstrap-table-fixed-columns.min.js -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap-table/extensions/group-by-v2/bootstrap-table-group-by.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/lib/bootstrap-table/extensions/group-by-v2/bootstrap-table-group-by.css -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap-table/extensions/group-by-v2/bootstrap-table-group-by.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/lib/bootstrap-table/extensions/group-by-v2/bootstrap-table-group-by.js -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap-table/extensions/group-by-v2/bootstrap-table-group-by.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/lib/bootstrap-table/extensions/group-by-v2/bootstrap-table-group-by.min.css -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap-table/extensions/group-by-v2/bootstrap-table-group-by.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/lib/bootstrap-table/extensions/group-by-v2/bootstrap-table-group-by.min.js -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap-table/extensions/i18n-enhance/bootstrap-table-i18n-enhance.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/lib/bootstrap-table/extensions/i18n-enhance/bootstrap-table-i18n-enhance.js -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap-table/extensions/i18n-enhance/bootstrap-table-i18n-enhance.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/lib/bootstrap-table/extensions/i18n-enhance/bootstrap-table-i18n-enhance.min.js -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap-table/extensions/key-events/bootstrap-table-key-events.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/lib/bootstrap-table/extensions/key-events/bootstrap-table-key-events.js -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap-table/extensions/key-events/bootstrap-table-key-events.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/lib/bootstrap-table/extensions/key-events/bootstrap-table-key-events.min.js -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap-table/extensions/mobile/bootstrap-table-mobile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/lib/bootstrap-table/extensions/mobile/bootstrap-table-mobile.js -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap-table/extensions/mobile/bootstrap-table-mobile.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/lib/bootstrap-table/extensions/mobile/bootstrap-table-mobile.min.js -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap-table/extensions/multiple-sort/bootstrap-table-multiple-sort.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/lib/bootstrap-table/extensions/multiple-sort/bootstrap-table-multiple-sort.js -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap-table/extensions/multiple-sort/bootstrap-table-multiple-sort.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/lib/bootstrap-table/extensions/multiple-sort/bootstrap-table-multiple-sort.min.js -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap-table/extensions/page-jump-to/bootstrap-table-page-jump-to.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/lib/bootstrap-table/extensions/page-jump-to/bootstrap-table-page-jump-to.css -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap-table/extensions/page-jump-to/bootstrap-table-page-jump-to.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/lib/bootstrap-table/extensions/page-jump-to/bootstrap-table-page-jump-to.js -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap-table/extensions/page-jump-to/bootstrap-table-page-jump-to.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/lib/bootstrap-table/extensions/page-jump-to/bootstrap-table-page-jump-to.min.css -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap-table/extensions/page-jump-to/bootstrap-table-page-jump-to.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/lib/bootstrap-table/extensions/page-jump-to/bootstrap-table-page-jump-to.min.js -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap-table/extensions/pipeline/bootstrap-table-pipeline.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/lib/bootstrap-table/extensions/pipeline/bootstrap-table-pipeline.js -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap-table/extensions/pipeline/bootstrap-table-pipeline.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/lib/bootstrap-table/extensions/pipeline/bootstrap-table-pipeline.min.js -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap-table/extensions/print/bootstrap-table-print.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/lib/bootstrap-table/extensions/print/bootstrap-table-print.js -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap-table/extensions/print/bootstrap-table-print.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/lib/bootstrap-table/extensions/print/bootstrap-table-print.min.js -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap-table/extensions/reorder-columns/bootstrap-table-reorder-columns.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/lib/bootstrap-table/extensions/reorder-columns/bootstrap-table-reorder-columns.js -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap-table/extensions/reorder-columns/bootstrap-table-reorder-columns.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/lib/bootstrap-table/extensions/reorder-columns/bootstrap-table-reorder-columns.min.js -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap-table/extensions/reorder-rows/bootstrap-table-reorder-rows.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/lib/bootstrap-table/extensions/reorder-rows/bootstrap-table-reorder-rows.css -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap-table/extensions/reorder-rows/bootstrap-table-reorder-rows.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/lib/bootstrap-table/extensions/reorder-rows/bootstrap-table-reorder-rows.js -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap-table/extensions/reorder-rows/bootstrap-table-reorder-rows.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/lib/bootstrap-table/extensions/reorder-rows/bootstrap-table-reorder-rows.min.css -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap-table/extensions/reorder-rows/bootstrap-table-reorder-rows.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/lib/bootstrap-table/extensions/reorder-rows/bootstrap-table-reorder-rows.min.js -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap-table/extensions/resizable/bootstrap-table-resizable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/lib/bootstrap-table/extensions/resizable/bootstrap-table-resizable.js -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap-table/extensions/resizable/bootstrap-table-resizable.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/lib/bootstrap-table/extensions/resizable/bootstrap-table-resizable.min.js -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap-table/extensions/sticky-header/bootstrap-table-sticky-header.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/lib/bootstrap-table/extensions/sticky-header/bootstrap-table-sticky-header.css -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap-table/extensions/sticky-header/bootstrap-table-sticky-header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/lib/bootstrap-table/extensions/sticky-header/bootstrap-table-sticky-header.js -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap-table/extensions/sticky-header/bootstrap-table-sticky-header.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/lib/bootstrap-table/extensions/sticky-header/bootstrap-table-sticky-header.min.css -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap-table/extensions/sticky-header/bootstrap-table-sticky-header.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/lib/bootstrap-table/extensions/sticky-header/bootstrap-table-sticky-header.min.js -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap-table/extensions/toolbar/bootstrap-table-toolbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/lib/bootstrap-table/extensions/toolbar/bootstrap-table-toolbar.js -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap-table/extensions/toolbar/bootstrap-table-toolbar.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/lib/bootstrap-table/extensions/toolbar/bootstrap-table-toolbar.min.js -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap-table/extensions/treegrid/bootstrap-table-treegrid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/lib/bootstrap-table/extensions/treegrid/bootstrap-table-treegrid.js -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap-table/extensions/treegrid/bootstrap-table-treegrid.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/lib/bootstrap-table/extensions/treegrid/bootstrap-table-treegrid.min.js -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap-table/locale/bootstrap-table-af-ZA.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/lib/bootstrap-table/locale/bootstrap-table-af-ZA.js -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap-table/locale/bootstrap-table-af-ZA.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/lib/bootstrap-table/locale/bootstrap-table-af-ZA.min.js -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap-table/locale/bootstrap-table-ar-SA.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/lib/bootstrap-table/locale/bootstrap-table-ar-SA.js -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap-table/locale/bootstrap-table-ar-SA.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/lib/bootstrap-table/locale/bootstrap-table-ar-SA.min.js -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap-table/locale/bootstrap-table-bg-BG.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/lib/bootstrap-table/locale/bootstrap-table-bg-BG.js -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap-table/locale/bootstrap-table-bg-BG.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/lib/bootstrap-table/locale/bootstrap-table-bg-BG.min.js -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap-table/locale/bootstrap-table-ca-ES.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/lib/bootstrap-table/locale/bootstrap-table-ca-ES.js -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap-table/locale/bootstrap-table-ca-ES.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/lib/bootstrap-table/locale/bootstrap-table-ca-ES.min.js -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap-table/locale/bootstrap-table-cs-CZ.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/lib/bootstrap-table/locale/bootstrap-table-cs-CZ.js -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap-table/locale/bootstrap-table-cs-CZ.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/lib/bootstrap-table/locale/bootstrap-table-cs-CZ.min.js -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap-table/locale/bootstrap-table-da-DK.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/lib/bootstrap-table/locale/bootstrap-table-da-DK.js -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap-table/locale/bootstrap-table-da-DK.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/lib/bootstrap-table/locale/bootstrap-table-da-DK.min.js -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap-table/locale/bootstrap-table-de-DE.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/lib/bootstrap-table/locale/bootstrap-table-de-DE.js -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap-table/locale/bootstrap-table-de-DE.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/lib/bootstrap-table/locale/bootstrap-table-de-DE.min.js -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap-table/locale/bootstrap-table-el-GR.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/lib/bootstrap-table/locale/bootstrap-table-el-GR.js -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap-table/locale/bootstrap-table-el-GR.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/lib/bootstrap-table/locale/bootstrap-table-el-GR.min.js -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap-table/locale/bootstrap-table-en-US.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/lib/bootstrap-table/locale/bootstrap-table-en-US.js -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap-table/locale/bootstrap-table-en-US.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/lib/bootstrap-table/locale/bootstrap-table-en-US.min.js -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap-table/locale/bootstrap-table-es-AR.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/lib/bootstrap-table/locale/bootstrap-table-es-AR.js -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap-table/locale/bootstrap-table-es-AR.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/lib/bootstrap-table/locale/bootstrap-table-es-AR.min.js -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap-table/locale/bootstrap-table-es-CL.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/lib/bootstrap-table/locale/bootstrap-table-es-CL.js -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap-table/locale/bootstrap-table-es-CL.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/lib/bootstrap-table/locale/bootstrap-table-es-CL.min.js -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap-table/locale/bootstrap-table-es-CR.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/lib/bootstrap-table/locale/bootstrap-table-es-CR.js -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap-table/locale/bootstrap-table-es-CR.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/lib/bootstrap-table/locale/bootstrap-table-es-CR.min.js -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap-table/locale/bootstrap-table-es-ES.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/lib/bootstrap-table/locale/bootstrap-table-es-ES.js -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap-table/locale/bootstrap-table-es-ES.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/lib/bootstrap-table/locale/bootstrap-table-es-ES.min.js -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap-table/locale/bootstrap-table-es-MX.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/lib/bootstrap-table/locale/bootstrap-table-es-MX.js -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap-table/locale/bootstrap-table-es-MX.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/lib/bootstrap-table/locale/bootstrap-table-es-MX.min.js -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap-table/locale/bootstrap-table-es-NI.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/lib/bootstrap-table/locale/bootstrap-table-es-NI.js -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap-table/locale/bootstrap-table-es-NI.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/lib/bootstrap-table/locale/bootstrap-table-es-NI.min.js -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap-table/locale/bootstrap-table-es-SP.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/lib/bootstrap-table/locale/bootstrap-table-es-SP.js -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap-table/locale/bootstrap-table-es-SP.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/lib/bootstrap-table/locale/bootstrap-table-es-SP.min.js -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap-table/locale/bootstrap-table-et-EE.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/lib/bootstrap-table/locale/bootstrap-table-et-EE.js -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap-table/locale/bootstrap-table-et-EE.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/lib/bootstrap-table/locale/bootstrap-table-et-EE.min.js -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap-table/locale/bootstrap-table-eu-EU.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/lib/bootstrap-table/locale/bootstrap-table-eu-EU.js -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap-table/locale/bootstrap-table-eu-EU.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/lib/bootstrap-table/locale/bootstrap-table-eu-EU.min.js -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap-table/locale/bootstrap-table-fa-IR.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/lib/bootstrap-table/locale/bootstrap-table-fa-IR.js -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap-table/locale/bootstrap-table-fa-IR.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/lib/bootstrap-table/locale/bootstrap-table-fa-IR.min.js -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap-table/locale/bootstrap-table-fi-FI.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/lib/bootstrap-table/locale/bootstrap-table-fi-FI.js -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap-table/locale/bootstrap-table-fi-FI.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/lib/bootstrap-table/locale/bootstrap-table-fi-FI.min.js -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap-table/locale/bootstrap-table-fr-BE.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/lib/bootstrap-table/locale/bootstrap-table-fr-BE.js -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap-table/locale/bootstrap-table-fr-BE.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/lib/bootstrap-table/locale/bootstrap-table-fr-BE.min.js -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap-table/locale/bootstrap-table-fr-CH.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/lib/bootstrap-table/locale/bootstrap-table-fr-CH.js -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap-table/locale/bootstrap-table-fr-CH.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/lib/bootstrap-table/locale/bootstrap-table-fr-CH.min.js -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap-table/locale/bootstrap-table-fr-FR.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/lib/bootstrap-table/locale/bootstrap-table-fr-FR.js -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap-table/locale/bootstrap-table-fr-FR.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/lib/bootstrap-table/locale/bootstrap-table-fr-FR.min.js -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap-table/locale/bootstrap-table-fr-LU.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/lib/bootstrap-table/locale/bootstrap-table-fr-LU.js -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap-table/locale/bootstrap-table-fr-LU.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/lib/bootstrap-table/locale/bootstrap-table-fr-LU.min.js -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap-table/locale/bootstrap-table-he-IL.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/lib/bootstrap-table/locale/bootstrap-table-he-IL.js -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap-table/locale/bootstrap-table-he-IL.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/lib/bootstrap-table/locale/bootstrap-table-he-IL.min.js -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap-table/locale/bootstrap-table-hr-HR.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/lib/bootstrap-table/locale/bootstrap-table-hr-HR.js -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap-table/locale/bootstrap-table-hr-HR.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/lib/bootstrap-table/locale/bootstrap-table-hr-HR.min.js -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap-table/locale/bootstrap-table-hu-HU.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/lib/bootstrap-table/locale/bootstrap-table-hu-HU.js -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap-table/locale/bootstrap-table-hu-HU.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/lib/bootstrap-table/locale/bootstrap-table-hu-HU.min.js -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap-table/locale/bootstrap-table-id-ID.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/lib/bootstrap-table/locale/bootstrap-table-id-ID.js -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap-table/locale/bootstrap-table-id-ID.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/lib/bootstrap-table/locale/bootstrap-table-id-ID.min.js -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap-table/locale/bootstrap-table-it-IT.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/lib/bootstrap-table/locale/bootstrap-table-it-IT.js -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap-table/locale/bootstrap-table-it-IT.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/lib/bootstrap-table/locale/bootstrap-table-it-IT.min.js -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap-table/locale/bootstrap-table-ja-JP.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/lib/bootstrap-table/locale/bootstrap-table-ja-JP.js -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap-table/locale/bootstrap-table-ja-JP.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/lib/bootstrap-table/locale/bootstrap-table-ja-JP.min.js -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap-table/locale/bootstrap-table-ka-GE.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/lib/bootstrap-table/locale/bootstrap-table-ka-GE.js -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap-table/locale/bootstrap-table-ka-GE.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/lib/bootstrap-table/locale/bootstrap-table-ka-GE.min.js -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap-table/locale/bootstrap-table-ko-KR.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/lib/bootstrap-table/locale/bootstrap-table-ko-KR.js -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap-table/locale/bootstrap-table-ko-KR.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/lib/bootstrap-table/locale/bootstrap-table-ko-KR.min.js -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap-table/locale/bootstrap-table-ms-MY.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/lib/bootstrap-table/locale/bootstrap-table-ms-MY.js -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap-table/locale/bootstrap-table-ms-MY.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/lib/bootstrap-table/locale/bootstrap-table-ms-MY.min.js -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap-table/locale/bootstrap-table-nb-NO.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/lib/bootstrap-table/locale/bootstrap-table-nb-NO.js -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap-table/locale/bootstrap-table-nb-NO.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/lib/bootstrap-table/locale/bootstrap-table-nb-NO.min.js -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap-table/locale/bootstrap-table-nl-BE.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/lib/bootstrap-table/locale/bootstrap-table-nl-BE.js -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap-table/locale/bootstrap-table-nl-BE.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/lib/bootstrap-table/locale/bootstrap-table-nl-BE.min.js -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap-table/locale/bootstrap-table-nl-NL.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/lib/bootstrap-table/locale/bootstrap-table-nl-NL.js -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap-table/locale/bootstrap-table-nl-NL.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/lib/bootstrap-table/locale/bootstrap-table-nl-NL.min.js -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap-table/locale/bootstrap-table-pl-PL.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/lib/bootstrap-table/locale/bootstrap-table-pl-PL.js -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap-table/locale/bootstrap-table-pl-PL.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/lib/bootstrap-table/locale/bootstrap-table-pl-PL.min.js -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap-table/locale/bootstrap-table-pt-BR.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/lib/bootstrap-table/locale/bootstrap-table-pt-BR.js -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap-table/locale/bootstrap-table-pt-BR.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/lib/bootstrap-table/locale/bootstrap-table-pt-BR.min.js -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap-table/locale/bootstrap-table-pt-PT.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/lib/bootstrap-table/locale/bootstrap-table-pt-PT.js -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap-table/locale/bootstrap-table-pt-PT.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/lib/bootstrap-table/locale/bootstrap-table-pt-PT.min.js -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap-table/locale/bootstrap-table-ro-RO.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/lib/bootstrap-table/locale/bootstrap-table-ro-RO.js -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap-table/locale/bootstrap-table-ro-RO.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/lib/bootstrap-table/locale/bootstrap-table-ro-RO.min.js -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap-table/locale/bootstrap-table-ru-RU.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/lib/bootstrap-table/locale/bootstrap-table-ru-RU.js -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap-table/locale/bootstrap-table-ru-RU.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/lib/bootstrap-table/locale/bootstrap-table-ru-RU.min.js -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap-table/locale/bootstrap-table-sk-SK.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/lib/bootstrap-table/locale/bootstrap-table-sk-SK.js -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap-table/locale/bootstrap-table-sk-SK.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/lib/bootstrap-table/locale/bootstrap-table-sk-SK.min.js -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap-table/locale/bootstrap-table-sr-Cyrl-RS.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/lib/bootstrap-table/locale/bootstrap-table-sr-Cyrl-RS.js -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap-table/locale/bootstrap-table-sr-Cyrl-RS.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/lib/bootstrap-table/locale/bootstrap-table-sr-Cyrl-RS.min.js -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap-table/locale/bootstrap-table-sr-Latn-RS.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/lib/bootstrap-table/locale/bootstrap-table-sr-Latn-RS.js -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap-table/locale/bootstrap-table-sr-Latn-RS.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/lib/bootstrap-table/locale/bootstrap-table-sr-Latn-RS.min.js -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap-table/locale/bootstrap-table-sv-SE.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/lib/bootstrap-table/locale/bootstrap-table-sv-SE.js -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap-table/locale/bootstrap-table-sv-SE.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/lib/bootstrap-table/locale/bootstrap-table-sv-SE.min.js -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap-table/locale/bootstrap-table-th-TH.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/lib/bootstrap-table/locale/bootstrap-table-th-TH.js -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap-table/locale/bootstrap-table-th-TH.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/lib/bootstrap-table/locale/bootstrap-table-th-TH.min.js -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap-table/locale/bootstrap-table-tr-TR.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/lib/bootstrap-table/locale/bootstrap-table-tr-TR.js -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap-table/locale/bootstrap-table-tr-TR.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/lib/bootstrap-table/locale/bootstrap-table-tr-TR.min.js -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap-table/locale/bootstrap-table-uk-UA.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/lib/bootstrap-table/locale/bootstrap-table-uk-UA.js -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap-table/locale/bootstrap-table-uk-UA.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/lib/bootstrap-table/locale/bootstrap-table-uk-UA.min.js -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap-table/locale/bootstrap-table-ur-PK.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/lib/bootstrap-table/locale/bootstrap-table-ur-PK.js -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap-table/locale/bootstrap-table-ur-PK.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/lib/bootstrap-table/locale/bootstrap-table-ur-PK.min.js -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap-table/locale/bootstrap-table-uz-Latn-UZ.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/lib/bootstrap-table/locale/bootstrap-table-uz-Latn-UZ.js -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap-table/locale/bootstrap-table-uz-Latn-UZ.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/lib/bootstrap-table/locale/bootstrap-table-uz-Latn-UZ.min.js -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap-table/locale/bootstrap-table-vi-VN.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/lib/bootstrap-table/locale/bootstrap-table-vi-VN.js -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap-table/locale/bootstrap-table-vi-VN.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/lib/bootstrap-table/locale/bootstrap-table-vi-VN.min.js -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap-table/locale/bootstrap-table-zh-CN.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/lib/bootstrap-table/locale/bootstrap-table-zh-CN.js -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap-table/locale/bootstrap-table-zh-CN.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/lib/bootstrap-table/locale/bootstrap-table-zh-CN.min.js -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap-table/locale/bootstrap-table-zh-TW.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/lib/bootstrap-table/locale/bootstrap-table-zh-TW.js -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap-table/locale/bootstrap-table-zh-TW.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/lib/bootstrap-table/locale/bootstrap-table-zh-TW.min.js -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap-table/themes/bootstrap-table/bootstrap-table.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/lib/bootstrap-table/themes/bootstrap-table/bootstrap-table.css -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap-table/themes/bootstrap-table/bootstrap-table.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/lib/bootstrap-table/themes/bootstrap-table/bootstrap-table.js -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap-table/themes/bootstrap-table/bootstrap-table.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/lib/bootstrap-table/themes/bootstrap-table/bootstrap-table.min.css -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap-table/themes/bootstrap-table/bootstrap-table.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/lib/bootstrap-table/themes/bootstrap-table/bootstrap-table.min.js -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap-table/themes/bootstrap-table/fonts/bootstrap-table.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/lib/bootstrap-table/themes/bootstrap-table/fonts/bootstrap-table.eot -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap-table/themes/bootstrap-table/fonts/bootstrap-table.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/lib/bootstrap-table/themes/bootstrap-table/fonts/bootstrap-table.svg -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap-table/themes/bootstrap-table/fonts/bootstrap-table.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/lib/bootstrap-table/themes/bootstrap-table/fonts/bootstrap-table.ttf -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap-table/themes/bootstrap-table/fonts/bootstrap-table.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/lib/bootstrap-table/themes/bootstrap-table/fonts/bootstrap-table.woff -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap-table/themes/bulma/bootstrap-table-bulma.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/lib/bootstrap-table/themes/bulma/bootstrap-table-bulma.css -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap-table/themes/bulma/bootstrap-table-bulma.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/lib/bootstrap-table/themes/bulma/bootstrap-table-bulma.js -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap-table/themes/bulma/bootstrap-table-bulma.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/lib/bootstrap-table/themes/bulma/bootstrap-table-bulma.min.css -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap-table/themes/bulma/bootstrap-table-bulma.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/lib/bootstrap-table/themes/bulma/bootstrap-table-bulma.min.js -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap-table/themes/foundation/bootstrap-table-foundation.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/lib/bootstrap-table/themes/foundation/bootstrap-table-foundation.css -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap-table/themes/foundation/bootstrap-table-foundation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/lib/bootstrap-table/themes/foundation/bootstrap-table-foundation.js -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap-table/themes/foundation/bootstrap-table-foundation.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/lib/bootstrap-table/themes/foundation/bootstrap-table-foundation.min.css -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap-table/themes/foundation/bootstrap-table-foundation.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/lib/bootstrap-table/themes/foundation/bootstrap-table-foundation.min.js -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap-table/themes/materialize/bootstrap-table-materialize.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/lib/bootstrap-table/themes/materialize/bootstrap-table-materialize.css -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap-table/themes/materialize/bootstrap-table-materialize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/lib/bootstrap-table/themes/materialize/bootstrap-table-materialize.js -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap-table/themes/materialize/bootstrap-table-materialize.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/lib/bootstrap-table/themes/materialize/bootstrap-table-materialize.min.css -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap-table/themes/materialize/bootstrap-table-materialize.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/lib/bootstrap-table/themes/materialize/bootstrap-table-materialize.min.js -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap-table/themes/semantic/bootstrap-table-semantic.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/lib/bootstrap-table/themes/semantic/bootstrap-table-semantic.css -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap-table/themes/semantic/bootstrap-table-semantic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/lib/bootstrap-table/themes/semantic/bootstrap-table-semantic.js -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap-table/themes/semantic/bootstrap-table-semantic.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/lib/bootstrap-table/themes/semantic/bootstrap-table-semantic.min.css -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap-table/themes/semantic/bootstrap-table-semantic.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/lib/bootstrap-table/themes/semantic/bootstrap-table-semantic.min.js -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/lib/bootstrap/LICENSE -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css.map -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css.map -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css.map -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap/dist/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/lib/bootstrap/dist/css/bootstrap.css -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap/dist/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap/dist/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js.map -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap/dist/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/lib/bootstrap/dist/js/bootstrap.js -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap/dist/js/bootstrap.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/lib/bootstrap/dist/js/bootstrap.js.map -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap/dist/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js -------------------------------------------------------------------------------- /wwwroot/lib/bootstrap/dist/js/bootstrap.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js.map -------------------------------------------------------------------------------- /wwwroot/lib/jquery-ajax-unobtrusive/jquery.unobtrusive-ajax.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/lib/jquery-ajax-unobtrusive/jquery.unobtrusive-ajax.js -------------------------------------------------------------------------------- /wwwroot/lib/jquery-ajax-unobtrusive/jquery.unobtrusive-ajax.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/lib/jquery-ajax-unobtrusive/jquery.unobtrusive-ajax.min.js -------------------------------------------------------------------------------- /wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt -------------------------------------------------------------------------------- /wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js -------------------------------------------------------------------------------- /wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js -------------------------------------------------------------------------------- /wwwroot/lib/jquery-validation/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/lib/jquery-validation/LICENSE.md -------------------------------------------------------------------------------- /wwwroot/lib/jquery-validation/dist/additional-methods.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/lib/jquery-validation/dist/additional-methods.js -------------------------------------------------------------------------------- /wwwroot/lib/jquery-validation/dist/additional-methods.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/lib/jquery-validation/dist/additional-methods.min.js -------------------------------------------------------------------------------- /wwwroot/lib/jquery-validation/dist/jquery.validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/lib/jquery-validation/dist/jquery.validate.js -------------------------------------------------------------------------------- /wwwroot/lib/jquery-validation/dist/jquery.validate.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js -------------------------------------------------------------------------------- /wwwroot/lib/jquery/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/lib/jquery/LICENSE.txt -------------------------------------------------------------------------------- /wwwroot/lib/jquery/dist/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/lib/jquery/dist/jquery.js -------------------------------------------------------------------------------- /wwwroot/lib/jquery/dist/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/lib/jquery/dist/jquery.min.js -------------------------------------------------------------------------------- /wwwroot/lib/jquery/dist/jquery.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/lib/jquery/dist/jquery.min.map -------------------------------------------------------------------------------- /wwwroot/matrikon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/matrikon.png -------------------------------------------------------------------------------- /wwwroot/mettlertoledo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/mettlertoledo.png -------------------------------------------------------------------------------- /wwwroot/microsoft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/microsoft.png -------------------------------------------------------------------------------- /wwwroot/opcf.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/opcf.jpg -------------------------------------------------------------------------------- /wwwroot/phoenix-contact.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/phoenix-contact.png -------------------------------------------------------------------------------- /wwwroot/pilz.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/pilz.jpg -------------------------------------------------------------------------------- /wwwroot/prosys.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/prosys.png -------------------------------------------------------------------------------- /wwwroot/samson.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/samson.png -------------------------------------------------------------------------------- /wwwroot/schneider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/schneider.png -------------------------------------------------------------------------------- /wwwroot/siemens.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/siemens.png -------------------------------------------------------------------------------- /wwwroot/trumpf.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/trumpf.jpg -------------------------------------------------------------------------------- /wwwroot/ualogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/ualogo.png -------------------------------------------------------------------------------- /wwwroot/vdw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/vdw.png -------------------------------------------------------------------------------- /wwwroot/wago.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OPCFoundation/UA-CloudDashboard/HEAD/wwwroot/wago.jpg --------------------------------------------------------------------------------