├── .gitignore ├── LICENSE ├── README.md ├── sbin ├── openwall ├── setnetwork ├── telegram └── updatewebui ├── structure.md └── www ├── a ├── bootstrap.bundle.min.js ├── bootstrap.min.css ├── bootstrap.override.css ├── logo.svg ├── main.js ├── preview.svg └── timezone.js ├── cgi-bin ├── ext-backuper.cgi ├── ext-openwall.cgi ├── ext-proxy.cgi ├── ext-telegram.cgi ├── ext-vtun.cgi ├── ext-wireguard.cgi ├── fpv-wfb.cgi ├── fw-editor.cgi ├── fw-interface.cgi ├── fw-network.cgi ├── fw-reset.cgi ├── fw-restart.cgi ├── fw-restore.cgi ├── fw-settings.cgi ├── fw-system.cgi ├── fw-time.cgi ├── fw-update.cgi ├── info-kernel.cgi ├── info-majestic.cgi ├── info-overlay.cgi ├── j │ ├── locale.cgi │ ├── locale_fpv.cgi │ ├── pulse.cgi │ ├── run.cgi │ └── time.cgi ├── mj-configuration.cgi ├── mj-endpoints.cgi ├── mj-settings.cgi ├── p │ ├── address.cgi │ ├── common.cgi │ ├── footer.cgi │ ├── fpv_common.cgi │ ├── header.cgi │ ├── header_fpv.cgi │ ├── motor.cgi │ └── roi.cgi ├── preview.cgi ├── status.cgi ├── tool-console.cgi ├── tool-files.cgi └── tool-sdcard.cgi ├── favicon.ico ├── index.html └── m └── img.html /.gitignore: -------------------------------------------------------------------------------- 1 | /files 2 | 3 | 4 | **/fpv-test.cgi -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIPC/majestic-webui/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIPC/majestic-webui/HEAD/README.md -------------------------------------------------------------------------------- /sbin/openwall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIPC/majestic-webui/HEAD/sbin/openwall -------------------------------------------------------------------------------- /sbin/setnetwork: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIPC/majestic-webui/HEAD/sbin/setnetwork -------------------------------------------------------------------------------- /sbin/telegram: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIPC/majestic-webui/HEAD/sbin/telegram -------------------------------------------------------------------------------- /sbin/updatewebui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIPC/majestic-webui/HEAD/sbin/updatewebui -------------------------------------------------------------------------------- /structure.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIPC/majestic-webui/HEAD/structure.md -------------------------------------------------------------------------------- /www/a/bootstrap.bundle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIPC/majestic-webui/HEAD/www/a/bootstrap.bundle.min.js -------------------------------------------------------------------------------- /www/a/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIPC/majestic-webui/HEAD/www/a/bootstrap.min.css -------------------------------------------------------------------------------- /www/a/bootstrap.override.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIPC/majestic-webui/HEAD/www/a/bootstrap.override.css -------------------------------------------------------------------------------- /www/a/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIPC/majestic-webui/HEAD/www/a/logo.svg -------------------------------------------------------------------------------- /www/a/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIPC/majestic-webui/HEAD/www/a/main.js -------------------------------------------------------------------------------- /www/a/preview.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIPC/majestic-webui/HEAD/www/a/preview.svg -------------------------------------------------------------------------------- /www/a/timezone.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIPC/majestic-webui/HEAD/www/a/timezone.js -------------------------------------------------------------------------------- /www/cgi-bin/ext-backuper.cgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIPC/majestic-webui/HEAD/www/cgi-bin/ext-backuper.cgi -------------------------------------------------------------------------------- /www/cgi-bin/ext-openwall.cgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIPC/majestic-webui/HEAD/www/cgi-bin/ext-openwall.cgi -------------------------------------------------------------------------------- /www/cgi-bin/ext-proxy.cgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIPC/majestic-webui/HEAD/www/cgi-bin/ext-proxy.cgi -------------------------------------------------------------------------------- /www/cgi-bin/ext-telegram.cgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIPC/majestic-webui/HEAD/www/cgi-bin/ext-telegram.cgi -------------------------------------------------------------------------------- /www/cgi-bin/ext-vtun.cgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIPC/majestic-webui/HEAD/www/cgi-bin/ext-vtun.cgi -------------------------------------------------------------------------------- /www/cgi-bin/ext-wireguard.cgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIPC/majestic-webui/HEAD/www/cgi-bin/ext-wireguard.cgi -------------------------------------------------------------------------------- /www/cgi-bin/fpv-wfb.cgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIPC/majestic-webui/HEAD/www/cgi-bin/fpv-wfb.cgi -------------------------------------------------------------------------------- /www/cgi-bin/fw-editor.cgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIPC/majestic-webui/HEAD/www/cgi-bin/fw-editor.cgi -------------------------------------------------------------------------------- /www/cgi-bin/fw-interface.cgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIPC/majestic-webui/HEAD/www/cgi-bin/fw-interface.cgi -------------------------------------------------------------------------------- /www/cgi-bin/fw-network.cgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIPC/majestic-webui/HEAD/www/cgi-bin/fw-network.cgi -------------------------------------------------------------------------------- /www/cgi-bin/fw-reset.cgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIPC/majestic-webui/HEAD/www/cgi-bin/fw-reset.cgi -------------------------------------------------------------------------------- /www/cgi-bin/fw-restart.cgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIPC/majestic-webui/HEAD/www/cgi-bin/fw-restart.cgi -------------------------------------------------------------------------------- /www/cgi-bin/fw-restore.cgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIPC/majestic-webui/HEAD/www/cgi-bin/fw-restore.cgi -------------------------------------------------------------------------------- /www/cgi-bin/fw-settings.cgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIPC/majestic-webui/HEAD/www/cgi-bin/fw-settings.cgi -------------------------------------------------------------------------------- /www/cgi-bin/fw-system.cgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIPC/majestic-webui/HEAD/www/cgi-bin/fw-system.cgi -------------------------------------------------------------------------------- /www/cgi-bin/fw-time.cgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIPC/majestic-webui/HEAD/www/cgi-bin/fw-time.cgi -------------------------------------------------------------------------------- /www/cgi-bin/fw-update.cgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIPC/majestic-webui/HEAD/www/cgi-bin/fw-update.cgi -------------------------------------------------------------------------------- /www/cgi-bin/info-kernel.cgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIPC/majestic-webui/HEAD/www/cgi-bin/info-kernel.cgi -------------------------------------------------------------------------------- /www/cgi-bin/info-majestic.cgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIPC/majestic-webui/HEAD/www/cgi-bin/info-majestic.cgi -------------------------------------------------------------------------------- /www/cgi-bin/info-overlay.cgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIPC/majestic-webui/HEAD/www/cgi-bin/info-overlay.cgi -------------------------------------------------------------------------------- /www/cgi-bin/j/locale.cgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIPC/majestic-webui/HEAD/www/cgi-bin/j/locale.cgi -------------------------------------------------------------------------------- /www/cgi-bin/j/locale_fpv.cgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIPC/majestic-webui/HEAD/www/cgi-bin/j/locale_fpv.cgi -------------------------------------------------------------------------------- /www/cgi-bin/j/pulse.cgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIPC/majestic-webui/HEAD/www/cgi-bin/j/pulse.cgi -------------------------------------------------------------------------------- /www/cgi-bin/j/run.cgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIPC/majestic-webui/HEAD/www/cgi-bin/j/run.cgi -------------------------------------------------------------------------------- /www/cgi-bin/j/time.cgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIPC/majestic-webui/HEAD/www/cgi-bin/j/time.cgi -------------------------------------------------------------------------------- /www/cgi-bin/mj-configuration.cgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIPC/majestic-webui/HEAD/www/cgi-bin/mj-configuration.cgi -------------------------------------------------------------------------------- /www/cgi-bin/mj-endpoints.cgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIPC/majestic-webui/HEAD/www/cgi-bin/mj-endpoints.cgi -------------------------------------------------------------------------------- /www/cgi-bin/mj-settings.cgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIPC/majestic-webui/HEAD/www/cgi-bin/mj-settings.cgi -------------------------------------------------------------------------------- /www/cgi-bin/p/address.cgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIPC/majestic-webui/HEAD/www/cgi-bin/p/address.cgi -------------------------------------------------------------------------------- /www/cgi-bin/p/common.cgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIPC/majestic-webui/HEAD/www/cgi-bin/p/common.cgi -------------------------------------------------------------------------------- /www/cgi-bin/p/footer.cgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIPC/majestic-webui/HEAD/www/cgi-bin/p/footer.cgi -------------------------------------------------------------------------------- /www/cgi-bin/p/fpv_common.cgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIPC/majestic-webui/HEAD/www/cgi-bin/p/fpv_common.cgi -------------------------------------------------------------------------------- /www/cgi-bin/p/header.cgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIPC/majestic-webui/HEAD/www/cgi-bin/p/header.cgi -------------------------------------------------------------------------------- /www/cgi-bin/p/header_fpv.cgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIPC/majestic-webui/HEAD/www/cgi-bin/p/header_fpv.cgi -------------------------------------------------------------------------------- /www/cgi-bin/p/motor.cgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIPC/majestic-webui/HEAD/www/cgi-bin/p/motor.cgi -------------------------------------------------------------------------------- /www/cgi-bin/p/roi.cgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIPC/majestic-webui/HEAD/www/cgi-bin/p/roi.cgi -------------------------------------------------------------------------------- /www/cgi-bin/preview.cgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIPC/majestic-webui/HEAD/www/cgi-bin/preview.cgi -------------------------------------------------------------------------------- /www/cgi-bin/status.cgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIPC/majestic-webui/HEAD/www/cgi-bin/status.cgi -------------------------------------------------------------------------------- /www/cgi-bin/tool-console.cgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIPC/majestic-webui/HEAD/www/cgi-bin/tool-console.cgi -------------------------------------------------------------------------------- /www/cgi-bin/tool-files.cgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIPC/majestic-webui/HEAD/www/cgi-bin/tool-files.cgi -------------------------------------------------------------------------------- /www/cgi-bin/tool-sdcard.cgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIPC/majestic-webui/HEAD/www/cgi-bin/tool-sdcard.cgi -------------------------------------------------------------------------------- /www/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIPC/majestic-webui/HEAD/www/favicon.ico -------------------------------------------------------------------------------- /www/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIPC/majestic-webui/HEAD/www/index.html -------------------------------------------------------------------------------- /www/m/img.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenIPC/majestic-webui/HEAD/www/m/img.html --------------------------------------------------------------------------------