├── .babelrc.json ├── .cirrus.yml ├── .dccache ├── .eslintignore ├── .eslintrc.json ├── .fmf └── version ├── .github └── workflows │ ├── npm-update-pf.yml │ ├── npm-update.yml │ └── release.yml.disabled ├── .gitignore ├── .stylelintrc.json ├── .vscode ├── configurationCache.log ├── dryrun.log ├── settings.json └── targets.log ├── LICENSE ├── Makefile ├── README.md ├── cockpit-sensors.deb ├── org.cockpit-project.sensors.metainfo.xml ├── package.json ├── packaging ├── cockpit-sensors.control └── cockpit-sensors.spec.in ├── packit.yaml ├── plans └── all.fmf ├── po ├── de.po └── pt_BR.po ├── src ├── app.jsx ├── app.scss ├── index.html ├── index.js └── manifest.json ├── test ├── browser │ ├── browser.sh │ ├── main.fmf │ └── run-test.sh ├── check-application ├── reference-image ├── run └── vm.install └── webpack.config.js /.babelrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocristopfer/cockpit-sensors-old/HEAD/.babelrc.json -------------------------------------------------------------------------------- /.cirrus.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocristopfer/cockpit-sensors-old/HEAD/.cirrus.yml -------------------------------------------------------------------------------- /.dccache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocristopfer/cockpit-sensors-old/HEAD/.dccache -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocristopfer/cockpit-sensors-old/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocristopfer/cockpit-sensors-old/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.fmf/version: -------------------------------------------------------------------------------- 1 | 1.4.1 2 | -------------------------------------------------------------------------------- /.github/workflows/npm-update-pf.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocristopfer/cockpit-sensors-old/HEAD/.github/workflows/npm-update-pf.yml -------------------------------------------------------------------------------- /.github/workflows/npm-update.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocristopfer/cockpit-sensors-old/HEAD/.github/workflows/npm-update.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml.disabled: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocristopfer/cockpit-sensors-old/HEAD/.github/workflows/release.yml.disabled -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocristopfer/cockpit-sensors-old/HEAD/.gitignore -------------------------------------------------------------------------------- /.stylelintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocristopfer/cockpit-sensors-old/HEAD/.stylelintrc.json -------------------------------------------------------------------------------- /.vscode/configurationCache.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocristopfer/cockpit-sensors-old/HEAD/.vscode/configurationCache.log -------------------------------------------------------------------------------- /.vscode/dryrun.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocristopfer/cockpit-sensors-old/HEAD/.vscode/dryrun.log -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "makefile.extensionOutputFolder": "./.vscode" 3 | } -------------------------------------------------------------------------------- /.vscode/targets.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocristopfer/cockpit-sensors-old/HEAD/.vscode/targets.log -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocristopfer/cockpit-sensors-old/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocristopfer/cockpit-sensors-old/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocristopfer/cockpit-sensors-old/HEAD/README.md -------------------------------------------------------------------------------- /cockpit-sensors.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocristopfer/cockpit-sensors-old/HEAD/cockpit-sensors.deb -------------------------------------------------------------------------------- /org.cockpit-project.sensors.metainfo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocristopfer/cockpit-sensors-old/HEAD/org.cockpit-project.sensors.metainfo.xml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocristopfer/cockpit-sensors-old/HEAD/package.json -------------------------------------------------------------------------------- /packaging/cockpit-sensors.control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocristopfer/cockpit-sensors-old/HEAD/packaging/cockpit-sensors.control -------------------------------------------------------------------------------- /packaging/cockpit-sensors.spec.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocristopfer/cockpit-sensors-old/HEAD/packaging/cockpit-sensors.spec.in -------------------------------------------------------------------------------- /packit.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocristopfer/cockpit-sensors-old/HEAD/packit.yaml -------------------------------------------------------------------------------- /plans/all.fmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocristopfer/cockpit-sensors-old/HEAD/plans/all.fmf -------------------------------------------------------------------------------- /po/de.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocristopfer/cockpit-sensors-old/HEAD/po/de.po -------------------------------------------------------------------------------- /po/pt_BR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocristopfer/cockpit-sensors-old/HEAD/po/pt_BR.po -------------------------------------------------------------------------------- /src/app.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocristopfer/cockpit-sensors-old/HEAD/src/app.jsx -------------------------------------------------------------------------------- /src/app.scss: -------------------------------------------------------------------------------- 1 | p { 2 | font-weight: bold; 3 | } 4 | -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocristopfer/cockpit-sensors-old/HEAD/src/index.html -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocristopfer/cockpit-sensors-old/HEAD/src/index.js -------------------------------------------------------------------------------- /src/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocristopfer/cockpit-sensors-old/HEAD/src/manifest.json -------------------------------------------------------------------------------- /test/browser/browser.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocristopfer/cockpit-sensors-old/HEAD/test/browser/browser.sh -------------------------------------------------------------------------------- /test/browser/main.fmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocristopfer/cockpit-sensors-old/HEAD/test/browser/main.fmf -------------------------------------------------------------------------------- /test/browser/run-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocristopfer/cockpit-sensors-old/HEAD/test/browser/run-test.sh -------------------------------------------------------------------------------- /test/check-application: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocristopfer/cockpit-sensors-old/HEAD/test/check-application -------------------------------------------------------------------------------- /test/reference-image: -------------------------------------------------------------------------------- 1 | fedora-35 2 | -------------------------------------------------------------------------------- /test/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocristopfer/cockpit-sensors-old/HEAD/test/run -------------------------------------------------------------------------------- /test/vm.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocristopfer/cockpit-sensors-old/HEAD/test/vm.install -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocristopfer/cockpit-sensors-old/HEAD/webpack.config.js --------------------------------------------------------------------------------