├── .gitattributes ├── .github ├── crowdin.yml ├── scripts │ └── generate-pr-plugin.sh ├── translations │ ├── extract_js_translations_from_page.py │ └── extract_translations.py └── workflows │ ├── crowdin-upload.yml │ ├── pr-plugin-build.yml │ ├── pr-plugin-cleanup.yml │ └── pr-plugin-upload.yml ├── .gitignore ├── .vscode ├── extensions.json ├── settings.json └── sftp-template.json ├── README.md ├── emhttp ├── apple-touch-icon.png ├── auth-request.php ├── boot ├── favicon-96x96.png ├── favicon.ico ├── favicon.svg ├── languages │ └── en_US │ │ └── helptext.txt ├── log ├── logging.htm ├── login.php ├── manifest.json ├── mnt ├── plugins │ ├── dynamix.apcupsd │ │ ├── LICENSE │ │ ├── UPSdetails.page │ │ ├── UPSsettings.page │ │ ├── apcupsd.notify │ │ ├── default.cfg │ │ ├── event │ │ │ └── driver_loaded │ │ ├── include │ │ │ ├── UPSstatus.php │ │ │ └── update.apcupsd.php │ │ └── sheets │ │ │ └── UPSsettings.css │ ├── dynamix.docker.manager │ │ ├── AddContainer.page │ │ ├── Docker.page │ │ ├── DockerContainers.page │ │ ├── DockerSettings.page │ │ ├── LICENSE │ │ ├── UpdateContainer.page │ │ ├── default.cfg │ │ ├── images │ │ │ ├── question.png │ │ │ └── tailscale.png │ │ ├── include │ │ │ ├── ContainerManager.php │ │ │ ├── CreateDocker.php │ │ │ ├── DockerClient.php │ │ │ ├── DockerContainers.php │ │ │ ├── DockerUpdate.php │ │ │ ├── Events.php │ │ │ ├── Helpers.php │ │ │ ├── PruneConfig.php │ │ │ ├── UpdateConfig.php │ │ │ └── UserPrefs.php │ │ ├── javascript │ │ │ ├── addDocker.js │ │ │ ├── docker.js │ │ │ └── markdown.js │ │ ├── log.htm │ │ ├── nchan │ │ │ └── docker_load │ │ ├── scripts │ │ │ ├── container_size │ │ │ ├── docker │ │ │ ├── docker_init │ │ │ ├── docker_rm │ │ │ ├── dockerconfig │ │ │ ├── dockerupdate │ │ │ ├── fixDescriptions │ │ │ ├── rebuild_container │ │ │ └── update_container │ │ ├── sheets │ │ │ ├── CreateDocker.css │ │ │ ├── DockerContainers.css │ │ │ └── DockerSettings.css │ │ └── system │ │ │ └── Docker │ ├── dynamix.gui.search │ │ ├── gui_search.page │ │ ├── include │ │ │ └── exec.php │ │ └── sheets │ │ │ └── gui_search.css │ ├── dynamix.plugin.manager │ │ ├── PluginHelpers.page │ │ ├── PluginInstall.page │ │ ├── Plugins.page │ │ ├── PluginsError.page │ │ ├── PluginsStale.page │ │ ├── include │ │ │ ├── Downgrade.php │ │ │ ├── PluginHelpers.php │ │ │ ├── ShowChanges.php │ │ │ └── ShowPlugins.php │ │ ├── post-hooks │ │ │ └── post_plugin_checks │ │ ├── pre-hooks │ │ │ └── pre_plugin_checks │ │ ├── scripts │ │ │ ├── PluginAPI.php │ │ │ ├── checkall │ │ │ ├── language │ │ │ ├── languagecheck │ │ │ ├── multiplugin │ │ │ ├── plugin │ │ │ ├── plugin_rm │ │ │ ├── plugincheck │ │ │ └── showchanges │ │ └── sheets │ │ │ └── Update.css │ ├── dynamix.vm.manager │ │ ├── AddVM.page │ │ ├── UpdateVM.page │ │ ├── VMMachines.page │ │ ├── VMSettings.page │ │ ├── VMTemplates.page │ │ ├── VMUsageStats.page │ │ ├── VMs.page │ │ ├── include │ │ │ ├── Fedora-virtio-isos.php │ │ │ ├── UserPrefs.php │ │ │ ├── VMMachines.php │ │ │ ├── VMManager.php │ │ │ ├── VMajax.php │ │ │ ├── VMedit.php │ │ │ ├── libvirt.php │ │ │ └── libvirt_helpers.php │ │ ├── javascript │ │ │ ├── dynamix.vm.manager.js │ │ │ └── vmmanager.js │ │ ├── nchan │ │ │ └── vm_usage │ │ ├── novnc │ │ │ ├── .github │ │ │ │ ├── ISSUE_TEMPLATE │ │ │ │ │ ├── bug_report.md │ │ │ │ │ ├── config.yml │ │ │ │ │ └── feature_request.md │ │ │ │ └── workflows │ │ │ │ │ ├── deploy.yml │ │ │ │ │ ├── lint.yml │ │ │ │ │ ├── test.yml │ │ │ │ │ └── translate.yml │ │ │ ├── .gitignore │ │ │ ├── .gitmodules │ │ │ ├── LICENSE.txt │ │ │ ├── app │ │ │ │ ├── error-handler.js │ │ │ │ ├── images │ │ │ │ │ ├── alt.svg │ │ │ │ │ ├── clipboard.svg │ │ │ │ │ ├── connect.svg │ │ │ │ │ ├── ctrl.svg │ │ │ │ │ ├── ctrlaltdel.svg │ │ │ │ │ ├── disconnect.svg │ │ │ │ │ ├── drag.svg │ │ │ │ │ ├── error.svg │ │ │ │ │ ├── esc.svg │ │ │ │ │ ├── expander.svg │ │ │ │ │ ├── fullscreen.svg │ │ │ │ │ ├── handle.svg │ │ │ │ │ ├── handle_bg.svg │ │ │ │ │ ├── icons │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── novnc-120x120.png │ │ │ │ │ │ ├── novnc-144x144.png │ │ │ │ │ │ ├── novnc-152x152.png │ │ │ │ │ │ ├── novnc-16x16.png │ │ │ │ │ │ ├── novnc-192x192.png │ │ │ │ │ │ ├── novnc-24x24.png │ │ │ │ │ │ ├── novnc-32x32.png │ │ │ │ │ │ ├── novnc-48x48.png │ │ │ │ │ │ ├── novnc-60x60.png │ │ │ │ │ │ ├── novnc-64x64.png │ │ │ │ │ │ ├── novnc-72x72.png │ │ │ │ │ │ ├── novnc-76x76.png │ │ │ │ │ │ ├── novnc-96x96.png │ │ │ │ │ │ ├── novnc-icon-sm.svg │ │ │ │ │ │ ├── novnc-icon.svg │ │ │ │ │ │ ├── novnc-ios-120.png │ │ │ │ │ │ ├── novnc-ios-152.png │ │ │ │ │ │ ├── novnc-ios-167.png │ │ │ │ │ │ ├── novnc-ios-180.png │ │ │ │ │ │ ├── novnc-ios-40.png │ │ │ │ │ │ ├── novnc-ios-58.png │ │ │ │ │ │ ├── novnc-ios-60.png │ │ │ │ │ │ ├── novnc-ios-80.png │ │ │ │ │ │ ├── novnc-ios-87.png │ │ │ │ │ │ ├── novnc-ios-icon.svg │ │ │ │ │ │ └── novnc.ico │ │ │ │ │ ├── info.svg │ │ │ │ │ ├── keyboard.svg │ │ │ │ │ ├── power.svg │ │ │ │ │ ├── settings.svg │ │ │ │ │ ├── tab.svg │ │ │ │ │ ├── toggleextrakeys.svg │ │ │ │ │ ├── warning.svg │ │ │ │ │ └── windows.svg │ │ │ │ ├── locale │ │ │ │ │ ├── README │ │ │ │ │ ├── cs.json │ │ │ │ │ ├── de.json │ │ │ │ │ ├── el.json │ │ │ │ │ ├── es.json │ │ │ │ │ ├── fr.json │ │ │ │ │ ├── it.json │ │ │ │ │ ├── ja.json │ │ │ │ │ ├── ko.json │ │ │ │ │ ├── nl.json │ │ │ │ │ ├── pl.json │ │ │ │ │ ├── pt_BR.json │ │ │ │ │ ├── ru.json │ │ │ │ │ ├── sv.json │ │ │ │ │ ├── tr.json │ │ │ │ │ ├── zh_CN.json │ │ │ │ │ └── zh_TW.json │ │ │ │ ├── localization.js │ │ │ │ ├── sounds │ │ │ │ │ ├── CREDITS │ │ │ │ │ ├── bell.mp3 │ │ │ │ │ └── bell.oga │ │ │ │ ├── styles │ │ │ │ │ ├── Orbitron700.ttf │ │ │ │ │ ├── Orbitron700.woff │ │ │ │ │ ├── base.css │ │ │ │ │ ├── constants.css │ │ │ │ │ └── input.css │ │ │ │ ├── ui.js │ │ │ │ └── webutil.js │ │ │ ├── core │ │ │ │ ├── base64.js │ │ │ │ ├── crypto │ │ │ │ │ ├── aes.js │ │ │ │ │ ├── bigint.js │ │ │ │ │ ├── crypto.js │ │ │ │ │ ├── des.js │ │ │ │ │ ├── dh.js │ │ │ │ │ ├── md5.js │ │ │ │ │ └── rsa.js │ │ │ │ ├── decoders │ │ │ │ │ ├── copyrect.js │ │ │ │ │ ├── h264.js │ │ │ │ │ ├── hextile.js │ │ │ │ │ ├── jpeg.js │ │ │ │ │ ├── raw.js │ │ │ │ │ ├── rre.js │ │ │ │ │ ├── tight.js │ │ │ │ │ ├── tightpng.js │ │ │ │ │ ├── zlib.js │ │ │ │ │ └── zrle.js │ │ │ │ ├── deflator.js │ │ │ │ ├── des.js │ │ │ │ ├── display.js │ │ │ │ ├── encodings.js │ │ │ │ ├── inflator.js │ │ │ │ ├── input │ │ │ │ │ ├── domkeytable.js │ │ │ │ │ ├── fixedkeys.js │ │ │ │ │ ├── gesturehandler.js │ │ │ │ │ ├── keyboard.js │ │ │ │ │ ├── keysym.js │ │ │ │ │ ├── keysymdef.js │ │ │ │ │ ├── util.js │ │ │ │ │ ├── vkeys.js │ │ │ │ │ └── xtscancodes.js │ │ │ │ ├── ra2.js │ │ │ │ ├── rfb.js │ │ │ │ ├── util │ │ │ │ │ ├── browser.js │ │ │ │ │ ├── cursor.js │ │ │ │ │ ├── element.js │ │ │ │ │ ├── events.js │ │ │ │ │ ├── eventtarget.js │ │ │ │ │ ├── int.js │ │ │ │ │ ├── logging.js │ │ │ │ │ ├── polyfill.js │ │ │ │ │ └── strings.js │ │ │ │ └── websock.js │ │ │ ├── defaults.json │ │ │ ├── mandatory.json │ │ │ ├── package.json │ │ │ ├── vendor │ │ │ │ ├── browser-es-module-loader │ │ │ │ │ ├── README.md │ │ │ │ │ ├── dist │ │ │ │ │ │ ├── babel-worker.js │ │ │ │ │ │ ├── browser-es-module-loader.js │ │ │ │ │ │ └── browser-es-module-loader.js.map │ │ │ │ │ ├── genworker.js │ │ │ │ │ └── rollup.config.js │ │ │ │ ├── pako │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ └── lib │ │ │ │ │ │ ├── utils │ │ │ │ │ │ └── common.js │ │ │ │ │ │ └── zlib │ │ │ │ │ │ ├── adler32.js │ │ │ │ │ │ ├── constants.js │ │ │ │ │ │ ├── crc32.js │ │ │ │ │ │ ├── deflate.js │ │ │ │ │ │ ├── gzheader.js │ │ │ │ │ │ ├── inffast.js │ │ │ │ │ │ ├── inflate.js │ │ │ │ │ │ ├── inftrees.js │ │ │ │ │ │ ├── messages.js │ │ │ │ │ │ ├── trees.js │ │ │ │ │ │ └── zstream.js │ │ │ │ └── promise.js │ │ │ ├── vnc.html │ │ │ └── vnc_lite.html │ │ ├── scripts │ │ │ ├── VMAjaxCall.php │ │ │ ├── VMClone.php │ │ │ ├── codemirror │ │ │ │ ├── addon │ │ │ │ │ ├── display │ │ │ │ │ │ └── placeholder.js │ │ │ │ │ ├── fold │ │ │ │ │ │ └── foldcode.js │ │ │ │ │ └── hint │ │ │ │ │ │ ├── libvirt-schema.js │ │ │ │ │ │ ├── show-hint.css │ │ │ │ │ │ ├── show-hint.js │ │ │ │ │ │ └── xml-hint.js │ │ │ │ ├── lib │ │ │ │ │ ├── codemirror.css │ │ │ │ │ └── codemirror.js │ │ │ │ └── mode │ │ │ │ │ └── xml │ │ │ │ │ └── xml.js │ │ │ ├── libvirt_init │ │ │ ├── libvirt_rm │ │ │ ├── libvirtconfig │ │ │ ├── pcicheck.php │ │ │ ├── qemu.php │ │ │ └── virtiofsd.php │ │ ├── sheets │ │ │ ├── VMMachines.css │ │ │ ├── VMSettings.css │ │ │ └── VMTemplates.css │ │ ├── spice.html │ │ ├── spice │ │ │ ├── .gitignore │ │ │ ├── COPYING │ │ │ ├── COPYING.LESSER │ │ │ ├── Makefile │ │ │ ├── README │ │ │ ├── TODO │ │ │ ├── apache.conf.sample │ │ │ ├── package.json.in │ │ │ ├── spice-html5.spec.in │ │ │ ├── spice.css │ │ │ ├── spice.html │ │ │ ├── spice_auto.html │ │ │ └── src │ │ │ │ ├── atKeynames.js │ │ │ │ ├── bitmap.js │ │ │ │ ├── cursor.js │ │ │ │ ├── display.js │ │ │ │ ├── enums.js │ │ │ │ ├── filexfer.js │ │ │ │ ├── inputs.js │ │ │ │ ├── lz.js │ │ │ │ ├── main.js │ │ │ │ ├── playback.js │ │ │ │ ├── png.js │ │ │ │ ├── port.js │ │ │ │ ├── quic.js │ │ │ │ ├── resize.js │ │ │ │ ├── simulatecursor.js │ │ │ │ ├── spicearraybuffer.js │ │ │ │ ├── spiceconn.js │ │ │ │ ├── spicedataview.js │ │ │ │ ├── spicemsg.js │ │ │ │ ├── spicetype.js │ │ │ │ ├── thirdparty │ │ │ │ ├── browser-es-module-loader │ │ │ │ │ ├── .npmignore │ │ │ │ │ ├── README.md │ │ │ │ │ ├── dist │ │ │ │ │ │ ├── babel-worker.js │ │ │ │ │ │ ├── browser-es-module-loader.js │ │ │ │ │ │ └── browser-es-module-loader.js.map │ │ │ │ │ ├── rollup.config.js │ │ │ │ │ └── src │ │ │ │ │ │ ├── babel-worker.js │ │ │ │ │ │ └── browser-es-module-loader.js │ │ │ │ ├── jsbn.js │ │ │ │ ├── prng4.js │ │ │ │ ├── rng.js │ │ │ │ ├── rsa.js │ │ │ │ └── sha1.js │ │ │ │ ├── ticket.js │ │ │ │ ├── utils.js │ │ │ │ ├── webm.js │ │ │ │ └── wire.js │ │ ├── styles │ │ │ ├── dynamix.vm.manager.css │ │ │ └── edit.css │ │ ├── templates │ │ │ ├── Custom.form.php │ │ │ ├── XML_Expert.form.php │ │ │ └── images │ │ │ │ ├── arch.png │ │ │ │ ├── centos.png │ │ │ │ ├── chromeos.png │ │ │ │ ├── coreos.png │ │ │ │ ├── debian.png │ │ │ │ ├── default.png │ │ │ │ ├── fedora.png │ │ │ │ ├── freebsd.png │ │ │ │ ├── libreelec.png │ │ │ │ ├── linux.png │ │ │ │ ├── openelec.png │ │ │ │ ├── opensuse.png │ │ │ │ ├── redhat.png │ │ │ │ ├── scientific.png │ │ │ │ ├── slackware.png │ │ │ │ ├── steamos.png │ │ │ │ ├── ubuntu.png │ │ │ │ ├── unraid.png │ │ │ │ ├── vyos.png │ │ │ │ ├── windows.png │ │ │ │ ├── windows11.png │ │ │ │ ├── windows7.png │ │ │ │ ├── windowsvista.png │ │ │ │ └── windowsxp.png │ │ └── vnc.html │ └── dynamix │ │ ├── About.page │ │ ├── Apps.page │ │ ├── ArrayDevices.page │ │ ├── ArrayOperation.page │ │ ├── BootDevice.page │ │ ├── Browse.page │ │ ├── BrowseButton.page │ │ ├── CPUisol.page │ │ ├── CPUpin.page │ │ ├── CPUset.page │ │ ├── CPUvms.page │ │ ├── CacheDevices.page │ │ ├── Confirmations.page │ │ ├── Console.page │ │ ├── Credits.page │ │ ├── DashStats.page │ │ ├── Dashboard.page │ │ ├── DashboardCustomTileExample.page- │ │ ├── DateTime.page │ │ ├── Device.page │ │ ├── DeviceAttributes.page │ │ ├── DeviceCapabilities.page │ │ ├── DeviceIdentify.page │ │ ├── DeviceInfo.page │ │ ├── Diagnostics.page │ │ ├── Disk.page │ │ ├── DiskList.page │ │ ├── DiskSettings.page │ │ ├── DisplaySettings.page │ │ ├── Eth0.page │ │ ├── EthX.page │ │ ├── FTP.page │ │ ├── Favorites.page │ │ ├── FeedbackButton.page │ │ ├── Flash.page │ │ ├── FlashInfo.page │ │ ├── Grub.page │ │ ├── HardwareProfile.page │ │ ├── HelpButton.page │ │ ├── Identification.page │ │ ├── InfoButton.page │ │ ├── InstallKey.page │ │ ├── LICENSE │ │ ├── Language.page │ │ ├── LanguageButton.page │ │ ├── LogButton.page │ │ ├── LogViewer.page │ │ ├── LogoutButton.page │ │ ├── Main.page │ │ ├── ManagementAccess.page │ │ ├── MoverSettings.page │ │ ├── MyFavorites.page │ │ ├── NFS.page │ │ ├── NetworkExtra.page │ │ ├── NetworkRules.page │ │ ├── NetworkServices.page │ │ ├── NetworkSettings.page │ │ ├── New.page │ │ ├── NewConfig.page │ │ ├── NewPerms.page │ │ ├── NotificationAgents.page │ │ ├── Notifications.page │ │ ├── OpenDevices.page │ │ ├── OtherSettings.page │ │ ├── OutgoingProxy.page │ │ ├── PHPsettings.page │ │ ├── PageMap.page │ │ ├── ParityCheck.page │ │ ├── PowerMode.page │ │ ├── Processes.page │ │ ├── README.md │ │ ├── RoutingTable.page │ │ ├── SMB.page │ │ ├── SMBActiveDirectory.page │ │ ├── SMBExtras.page │ │ ├── SMBWorkGroup.page │ │ ├── SMBsettings.page │ │ ├── Scheduler.page │ │ ├── SecurityNFS.page │ │ ├── SecuritySMB.page │ │ ├── Selftest.page │ │ ├── Settings.page │ │ ├── Share.page │ │ ├── ShareEdit.page │ │ ├── ShareList.page │ │ ├── ShareSettings.page │ │ ├── Shares.page │ │ ├── SmtpSettings.page │ │ ├── SysDevs.page │ │ ├── SysDrivers.page │ │ ├── Syslinux.page │ │ ├── Syslog.page │ │ ├── SyslogSettings.page │ │ ├── Terminal.page │ │ ├── TerminalButton.page │ │ ├── Tools.page │ │ ├── TrimSettings.page │ │ ├── UNRAID-OS.page │ │ ├── UserAdd.page │ │ ├── UserEdit.page │ │ ├── UserList.page │ │ ├── UserPreferences.page │ │ ├── Users.page │ │ ├── Utilities.page │ │ ├── VPNmanager.page │ │ ├── Vars.page │ │ ├── WG0.page │ │ ├── WGX.page │ │ ├── WebGui.page │ │ ├── Wireless.page │ │ ├── agents │ │ ├── Bark.xml │ │ ├── Boxcar.xml │ │ ├── Discord.xml │ │ ├── Gotify.xml │ │ ├── Join.xml │ │ ├── Prowl.xml │ │ ├── PushBits.xml │ │ ├── Pushbullet.xml │ │ ├── Pushover.xml │ │ ├── Pushplus.xml │ │ ├── ServerChan.xml │ │ ├── Slack.xml │ │ ├── Telegram.xml │ │ └── ntfy.sh.xml │ │ ├── api │ │ └── api.txt │ │ ├── default.cfg │ │ ├── event │ │ ├── disks_mounted │ │ │ └── local_syslog_start │ │ ├── docker_started │ │ │ └── update_services │ │ ├── driver_loaded │ │ │ └── SysDriversBuild │ │ └── unmounting_disks │ │ │ └── local_syslog_stop │ │ ├── icons │ │ ├── alerts.png │ │ ├── bark.png │ │ ├── boxcar.png │ │ ├── default.png │ │ ├── discord.png │ │ ├── folderup.png │ │ ├── gotify.png │ │ ├── join.png │ │ ├── log.png │ │ ├── messages.png │ │ ├── notifymyandroid.png │ │ ├── ntfy.sh.png │ │ ├── prowl.png │ │ ├── pushbits.png │ │ ├── pushbullet.png │ │ ├── pushover.png │ │ ├── pushplus.png │ │ ├── serverchan.png │ │ ├── slack.png │ │ ├── smart.png │ │ ├── telegram.png │ │ └── warnings.png │ │ ├── images │ │ ├── UN-logotype-gradient.svg │ │ ├── animated-logo.svg │ │ ├── banner.png │ │ ├── case-model.png │ │ ├── cdrom.png │ │ ├── close.png │ │ ├── default.png │ │ ├── directory.png │ │ ├── disk-image.png │ │ ├── disk.png │ │ ├── explore.png │ │ ├── feedback_bugreport.png │ │ ├── feedback_comment.png │ │ ├── feedback_error.png │ │ ├── feedback_featurerequest.png │ │ ├── feedback_troubleshoot.png │ │ ├── file-types.png │ │ ├── file.png │ │ ├── folder_open.png │ │ ├── green-on.png │ │ ├── linc_station_n1_black.png │ │ ├── linc_station_n1_white.png │ │ ├── loading.gif │ │ ├── notice.png │ │ ├── noview.png │ │ ├── plg.png │ │ ├── red-on.png │ │ ├── sort-asc.png │ │ ├── sort-both.png │ │ ├── sort-desc.png │ │ ├── spinner.gif │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ ├── ui-bg_flat_75_ffffff_40x100.png │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ ├── ui-bg_glass_75_dadada_1x400.png │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png │ │ ├── ui-bg_glass_95_fef1ec_1x400.png │ │ ├── ui-bg_highlight-soft_75_cccccc_1x100.png │ │ ├── ui-icons_222222_256x240.png │ │ ├── ui-icons_2e83ff_256x240.png │ │ ├── ui-icons_454545_256x240.png │ │ ├── ui-icons_888888_256x240.png │ │ ├── ui-icons_cd0a0a_256x240.png │ │ ├── user.png │ │ ├── wireguard-help.png │ │ └── yellow-on.png │ │ ├── include │ │ ├── .login.php │ │ ├── .set-password.php │ │ ├── Acknowledge.php │ │ ├── Boot.php │ │ ├── Browse.php │ │ ├── CPUset.php │ │ ├── CheckPort.php │ │ ├── ColorCoding.php │ │ ├── Control.php │ │ ├── Custom.php │ │ ├── CustomMerge.php │ │ ├── DashboardApps.php │ │ ├── DefaultPageLayout.php │ │ ├── DefaultPageLayout │ │ │ ├── BodyInlineJS.php │ │ │ ├── Favicon.php │ │ │ ├── Footer.php │ │ │ ├── HeadInlineJS.php │ │ │ ├── Header.php │ │ │ ├── MainContent.php │ │ │ ├── MainContentTabbed.php │ │ │ ├── MainContentTabless.php │ │ │ ├── MiscElementsBottom.php │ │ │ ├── MiscElementsTop.php │ │ │ ├── Navigation │ │ │ │ └── Main.php │ │ │ ├── ToastSetup.php │ │ │ └── evalContent.php │ │ ├── DeleteLogFile.php │ │ ├── DiskList.php │ │ ├── DiskLog.php │ │ ├── Dispatcher.php │ │ ├── Download.php │ │ ├── Encryption.php │ │ ├── Feedback.php │ │ ├── FileSystemStatus.php │ │ ├── FileTree.php │ │ ├── FileUpload.php │ │ ├── HardwareCollect.php │ │ ├── Helpers.php │ │ ├── InitCharts.php │ │ ├── InputSecurity.php │ │ ├── InstallKey.php │ │ ├── JSCache.php │ │ ├── KeyUpload.php │ │ ├── LanguageReset.php │ │ ├── Markdown.php │ │ ├── MarkdownExtra.inc.php │ │ ├── MarkdownExtra.php │ │ ├── MarkdownInterface.php │ │ ├── MyFavorites.php │ │ ├── NetworkInfo.php │ │ ├── Notify.php │ │ ├── OpenTerminal.php │ │ ├── OutgoingProxy.php │ │ ├── OutgoingProxyLib.php │ │ ├── PCIUpdate.php │ │ ├── PHPsettings.php │ │ ├── PageBuilder.php │ │ ├── ParityControl.php │ │ ├── PortToggle.php │ │ ├── Preselect.php │ │ ├── ProcessStatus.php │ │ ├── ProtocolData.php │ │ ├── ProvisionCert.php │ │ ├── Report.php │ │ ├── ResetTZ.php │ │ ├── RoutingTable.php │ │ ├── SMTPtest.php │ │ ├── Secure.php │ │ ├── SelectCase.php │ │ ├── ShareData.php │ │ ├── ShareList.php │ │ ├── SmartInfo.php │ │ ├── SriovHelpers.php │ │ ├── StartCommand.php │ │ ├── StartStopPTP.php │ │ ├── SysDevs.php │ │ ├── SysDrivers.php │ │ ├── SysDriversHelpers.php │ │ ├── SysDriversInit.php │ │ ├── Syslog.php │ │ ├── Templates.php │ │ ├── ThemeHelper.php │ │ ├── ToggleState.php │ │ ├── Translations.php │ │ ├── UpdateOne.php │ │ ├── UpdateTwo.php │ │ ├── Wireless.php │ │ ├── Wrappers.php │ │ ├── apply.sriov-cfg.php │ │ ├── cpulist.php │ │ ├── gitstatus.php │ │ ├── languages.key │ │ ├── local_prepend.php │ │ ├── publish.php │ │ ├── regions.key │ │ ├── timezones.key │ │ ├── tld.key │ │ ├── update.btrfs.php │ │ ├── update.encryption.php │ │ ├── update.ethernet.php │ │ ├── update.file.php │ │ ├── update.parity.php │ │ ├── update.rules.php │ │ ├── update.smart.php │ │ ├── update.sriov-cfg.php │ │ ├── update.ssmtp.php │ │ ├── update.trim.php │ │ ├── update.vfio-pci-cfg.php │ │ ├── update.wireguard.php │ │ ├── update.wireless.php │ │ ├── update.zfs.php │ │ └── zfs_upgrade.php │ │ ├── javascript │ │ ├── EZView.js │ │ ├── ace │ │ │ ├── ace.js │ │ │ ├── ext-beautify.js │ │ │ ├── ext-code_lens.js │ │ │ ├── ext-elastic_tabstops_lite.js │ │ │ ├── ext-emmet.js │ │ │ ├── ext-error_marker.js │ │ │ ├── ext-hardwrap.js │ │ │ ├── ext-keybinding_menu.js │ │ │ ├── ext-language_tools.js │ │ │ ├── ext-linking.js │ │ │ ├── ext-modelist.js │ │ │ ├── ext-options.js │ │ │ ├── ext-prompt.js │ │ │ ├── ext-rtl.js │ │ │ ├── ext-searchbox.js │ │ │ ├── ext-settings_menu.js │ │ │ ├── ext-spellcheck.js │ │ │ ├── ext-split.js │ │ │ ├── ext-static_highlight.js │ │ │ ├── ext-statusbar.js │ │ │ ├── ext-textarea.js │ │ │ ├── ext-themelist.js │ │ │ ├── ext-whitespace.js │ │ │ ├── keybinding-emacs.js │ │ │ ├── keybinding-sublime.js │ │ │ ├── keybinding-vim.js │ │ │ ├── keybinding-vscode.js │ │ │ ├── mode-abap.js │ │ │ ├── mode-abc.js │ │ │ ├── mode-actionscript.js │ │ │ ├── mode-ada.js │ │ │ ├── mode-alda.js │ │ │ ├── mode-apache_conf.js │ │ │ ├── mode-apex.js │ │ │ ├── mode-applescript.js │ │ │ ├── mode-aql.js │ │ │ ├── mode-asciidoc.js │ │ │ ├── mode-asl.js │ │ │ ├── mode-assembly_x86.js │ │ │ ├── mode-autohotkey.js │ │ │ ├── mode-batchfile.js │ │ │ ├── mode-bibtex.js │ │ │ ├── mode-c9search.js │ │ │ ├── mode-c_cpp.js │ │ │ ├── mode-cirru.js │ │ │ ├── mode-clojure.js │ │ │ ├── mode-cobol.js │ │ │ ├── mode-coffee.js │ │ │ ├── mode-coldfusion.js │ │ │ ├── mode-crystal.js │ │ │ ├── mode-csharp.js │ │ │ ├── mode-csound_document.js │ │ │ ├── mode-csound_orchestra.js │ │ │ ├── mode-csound_score.js │ │ │ ├── mode-csp.js │ │ │ ├── mode-css.js │ │ │ ├── mode-curly.js │ │ │ ├── mode-d.js │ │ │ ├── mode-dart.js │ │ │ ├── mode-diff.js │ │ │ ├── mode-django.js │ │ │ ├── mode-dockerfile.js │ │ │ ├── mode-dot.js │ │ │ ├── mode-drools.js │ │ │ ├── mode-edifact.js │ │ │ ├── mode-eiffel.js │ │ │ ├── mode-ejs.js │ │ │ ├── mode-elixir.js │ │ │ ├── mode-elm.js │ │ │ ├── mode-erlang.js │ │ │ ├── mode-forth.js │ │ │ ├── mode-fortran.js │ │ │ ├── mode-fsharp.js │ │ │ ├── mode-fsl.js │ │ │ ├── mode-ftl.js │ │ │ ├── mode-gcode.js │ │ │ ├── mode-gherkin.js │ │ │ ├── mode-gitignore.js │ │ │ ├── mode-glsl.js │ │ │ ├── mode-gobstones.js │ │ │ ├── mode-golang.js │ │ │ ├── mode-graphqlschema.js │ │ │ ├── mode-groovy.js │ │ │ ├── mode-haml.js │ │ │ ├── mode-handlebars.js │ │ │ ├── mode-haskell.js │ │ │ ├── mode-haskell_cabal.js │ │ │ ├── mode-haxe.js │ │ │ ├── mode-hjson.js │ │ │ ├── mode-html.js │ │ │ ├── mode-html_elixir.js │ │ │ ├── mode-html_ruby.js │ │ │ ├── mode-ini.js │ │ │ ├── mode-io.js │ │ │ ├── mode-ion.js │ │ │ ├── mode-jack.js │ │ │ ├── mode-jade.js │ │ │ ├── mode-java.js │ │ │ ├── mode-javascript.js │ │ │ ├── mode-jexl.js │ │ │ ├── mode-json.js │ │ │ ├── mode-json5.js │ │ │ ├── mode-jsoniq.js │ │ │ ├── mode-jsp.js │ │ │ ├── mode-jssm.js │ │ │ ├── mode-jsx.js │ │ │ ├── mode-julia.js │ │ │ ├── mode-kotlin.js │ │ │ ├── mode-latex.js │ │ │ ├── mode-latte.js │ │ │ ├── mode-less.js │ │ │ ├── mode-liquid.js │ │ │ ├── mode-lisp.js │ │ │ ├── mode-livescript.js │ │ │ ├── mode-logiql.js │ │ │ ├── mode-logtalk.js │ │ │ ├── mode-lsl.js │ │ │ ├── mode-lua.js │ │ │ ├── mode-luapage.js │ │ │ ├── mode-lucene.js │ │ │ ├── mode-makefile.js │ │ │ ├── mode-markdown.js │ │ │ ├── mode-mask.js │ │ │ ├── mode-matlab.js │ │ │ ├── mode-maze.js │ │ │ ├── mode-mediawiki.js │ │ │ ├── mode-mel.js │ │ │ ├── mode-mips.js │ │ │ ├── mode-mixal.js │ │ │ ├── mode-mushcode.js │ │ │ ├── mode-mysql.js │ │ │ ├── mode-nginx.js │ │ │ ├── mode-nim.js │ │ │ ├── mode-nix.js │ │ │ ├── mode-nsis.js │ │ │ ├── mode-nunjucks.js │ │ │ ├── mode-objectivec.js │ │ │ ├── mode-ocaml.js │ │ │ ├── mode-partiql.js │ │ │ ├── mode-pascal.js │ │ │ ├── mode-perl.js │ │ │ ├── mode-pgsql.js │ │ │ ├── mode-php.js │ │ │ ├── mode-php_laravel_blade.js │ │ │ ├── mode-pig.js │ │ │ ├── mode-plain_text.js │ │ │ ├── mode-plsql.js │ │ │ ├── mode-powershell.js │ │ │ ├── mode-praat.js │ │ │ ├── mode-prisma.js │ │ │ ├── mode-prolog.js │ │ │ ├── mode-properties.js │ │ │ ├── mode-protobuf.js │ │ │ ├── mode-puppet.js │ │ │ ├── mode-python.js │ │ │ ├── mode-qml.js │ │ │ ├── mode-r.js │ │ │ ├── mode-raku.js │ │ │ ├── mode-razor.js │ │ │ ├── mode-rdoc.js │ │ │ ├── mode-red.js │ │ │ ├── mode-redshift.js │ │ │ ├── mode-rhtml.js │ │ │ ├── mode-robot.js │ │ │ ├── mode-rst.js │ │ │ ├── mode-ruby.js │ │ │ ├── mode-rust.js │ │ │ ├── mode-sac.js │ │ │ ├── mode-sass.js │ │ │ ├── mode-scad.js │ │ │ ├── mode-scala.js │ │ │ ├── mode-scheme.js │ │ │ ├── mode-scrypt.js │ │ │ ├── mode-scss.js │ │ │ ├── mode-sh.js │ │ │ ├── mode-sjs.js │ │ │ ├── mode-slim.js │ │ │ ├── mode-smarty.js │ │ │ ├── mode-smithy.js │ │ │ ├── mode-snippets.js │ │ │ ├── mode-soy_template.js │ │ │ ├── mode-space.js │ │ │ ├── mode-sparql.js │ │ │ ├── mode-sql.js │ │ │ ├── mode-sqlserver.js │ │ │ ├── mode-stylus.js │ │ │ ├── mode-svg.js │ │ │ ├── mode-swift.js │ │ │ ├── mode-tcl.js │ │ │ ├── mode-terraform.js │ │ │ ├── mode-tex.js │ │ │ ├── mode-text.js │ │ │ ├── mode-textile.js │ │ │ ├── mode-toml.js │ │ │ ├── mode-tsx.js │ │ │ ├── mode-turtle.js │ │ │ ├── mode-twig.js │ │ │ ├── mode-typescript.js │ │ │ ├── mode-vala.js │ │ │ ├── mode-vbscript.js │ │ │ ├── mode-velocity.js │ │ │ ├── mode-verilog.js │ │ │ ├── mode-vhdl.js │ │ │ ├── mode-visualforce.js │ │ │ ├── mode-wollok.js │ │ │ ├── mode-xml.js │ │ │ ├── mode-xquery.js │ │ │ ├── mode-yaml.js │ │ │ ├── mode-zeek.js │ │ │ ├── theme-ambiance.js │ │ │ ├── theme-chaos.js │ │ │ ├── theme-chrome.js │ │ │ ├── theme-cloud9_day.js │ │ │ ├── theme-cloud9_night.js │ │ │ ├── theme-cloud9_night_low_color.js │ │ │ ├── theme-clouds.js │ │ │ ├── theme-clouds_midnight.js │ │ │ ├── theme-cobalt.js │ │ │ ├── theme-crimson_editor.js │ │ │ ├── theme-dawn.js │ │ │ ├── theme-dracula.js │ │ │ ├── theme-dreamweaver.js │ │ │ ├── theme-eclipse.js │ │ │ ├── theme-github.js │ │ │ ├── theme-gob.js │ │ │ ├── theme-gruvbox.js │ │ │ ├── theme-gruvbox_dark_hard.js │ │ │ ├── theme-gruvbox_light_hard.js │ │ │ ├── theme-idle_fingers.js │ │ │ ├── theme-iplastic.js │ │ │ ├── theme-katzenmilch.js │ │ │ ├── theme-kr_theme.js │ │ │ ├── theme-kuroir.js │ │ │ ├── theme-merbivore.js │ │ │ ├── theme-merbivore_soft.js │ │ │ ├── theme-mono_industrial.js │ │ │ ├── theme-monokai.js │ │ │ ├── theme-nord_dark.js │ │ │ ├── theme-one_dark.js │ │ │ ├── theme-pastel_on_dark.js │ │ │ ├── theme-solarized_dark.js │ │ │ ├── theme-solarized_light.js │ │ │ ├── theme-sqlserver.js │ │ │ ├── theme-terminal.js │ │ │ ├── theme-textmate.js │ │ │ ├── theme-tomorrow.js │ │ │ ├── theme-tomorrow_night.js │ │ │ ├── theme-tomorrow_night_blue.js │ │ │ ├── theme-tomorrow_night_bright.js │ │ │ ├── theme-tomorrow_night_eighties.js │ │ │ ├── theme-twilight.js │ │ │ ├── theme-vibrant_ink.js │ │ │ ├── theme-xcode.js │ │ │ ├── worker-base.js │ │ │ ├── worker-coffee.js │ │ │ ├── worker-css.js │ │ │ ├── worker-html.js │ │ │ ├── worker-javascript.js │ │ │ ├── worker-json.js │ │ │ ├── worker-lua.js │ │ │ ├── worker-php.js │ │ │ ├── worker-xml.js │ │ │ ├── worker-xquery.js │ │ │ └── worker-yaml.js │ │ ├── dynamix.js │ │ ├── jquery.apexcharts.js │ │ ├── jquery.base64.js │ │ ├── jquery.filedrop.js │ │ ├── jquery.filetree.js │ │ ├── jquery.switchbutton.js │ │ ├── jquery.tablesorter.widgets.js │ │ ├── smoothie.js │ │ └── translate.en_US.js │ │ ├── nchan │ │ ├── device_list │ │ ├── disk_load │ │ ├── file_manager │ │ ├── notify_poller │ │ ├── parity_list │ │ ├── session_check │ │ ├── update_1 │ │ ├── update_2 │ │ ├── update_3 │ │ ├── ups_status │ │ ├── vm_dashusage │ │ ├── wg_poller │ │ └── wlan0 │ │ ├── scripts │ │ ├── agent │ │ ├── bootmode │ │ ├── btrfs_balance │ │ ├── btrfs_check │ │ ├── btrfs_scrub │ │ ├── check.source │ │ ├── console │ │ ├── diagnostics │ │ ├── disk_size │ │ ├── emcmd │ │ ├── error_interfaces │ │ ├── exfat_check │ │ ├── ext_check │ │ ├── feedback │ │ ├── flash_backup │ │ ├── ftpusers │ │ ├── install_key │ │ ├── monitor │ │ ├── netconfig │ │ ├── newperms │ │ ├── nfsSettings │ │ ├── notify │ │ ├── ntfs_check │ │ ├── open_ssl │ │ ├── outgoingproxy │ │ ├── parity_control │ │ ├── parity_history │ │ ├── powermode │ │ ├── reiserfs_check │ │ ├── reload_services │ │ ├── replace_key_job │ │ ├── restore_favorites │ │ ├── rsyslog_config │ │ ├── run_cmd │ │ ├── select_case │ │ ├── set_proxy │ │ ├── share_size │ │ ├── show_interfaces │ │ ├── ssd_trim │ │ ├── statuscheck │ │ ├── system_information │ │ ├── update_access │ │ ├── update_services │ │ ├── upnp_poller │ │ ├── upnp_poller_start │ │ ├── upnp_port │ │ ├── wg_config │ │ ├── wireless │ │ ├── xfs_check │ │ └── zfs_scrub │ │ ├── sheets │ │ ├── ArrayOperation.css │ │ ├── Browse.css │ │ ├── BrowseButton.css │ │ ├── CPUvms.css │ │ ├── CacheDevices.css │ │ ├── DashStats.css │ │ ├── DateTime.css │ │ ├── DeviceIdentify.css │ │ ├── DeviceInfo.css │ │ ├── Diagnostics.css │ │ ├── Disk.css │ │ ├── DiskList.css │ │ ├── DiskSettings.css │ │ ├── DisplaySettings.css │ │ ├── Eth0.css │ │ ├── Flash.css │ │ ├── InstallKey.css │ │ ├── Language.css │ │ ├── NetworkRules.css │ │ ├── NewPerms.css │ │ ├── Notifications.css │ │ ├── PHPsettings.css │ │ ├── PowerMode.css │ │ ├── RoutingTable.css │ │ ├── SMBExtras.css │ │ ├── ShareEdit.css │ │ ├── ShareList.css │ │ ├── SysDevs.css │ │ ├── SysDrivers.css │ │ ├── Syslinux.css │ │ ├── Syslog.css │ │ ├── SyslogSettings.css │ │ ├── SystemDisks.css │ │ ├── UserAdd.css │ │ ├── UserEdit.css │ │ ├── UserList.css │ │ ├── WG0.css │ │ └── Wireless.css │ │ ├── styles │ │ ├── bitstream-bold-italic.woff │ │ ├── bitstream-bold.woff │ │ ├── bitstream-italic.woff │ │ ├── bitstream.woff │ │ ├── clear-sans-bold-italic.woff │ │ ├── clear-sans-bold.woff │ │ ├── clear-sans-italic.woff │ │ ├── clear-sans.woff │ │ ├── context.standalone.css │ │ ├── default-base.css │ │ ├── default-cases.css │ │ ├── default-color-palette.css │ │ ├── default-dynamix.css │ │ ├── default-fonts.css │ │ ├── docker-icon.woff │ │ ├── font-awesome.css │ │ ├── font-awesome.woff │ │ ├── font-cases.woff │ │ ├── font-unraid.woff │ │ ├── jquery.filetree.css │ │ ├── jquery.sweetalert.css │ │ ├── jquery.switchbutton.css │ │ ├── jquery.ui.css │ │ └── themes │ │ │ ├── README.md │ │ │ ├── azure.css │ │ │ ├── black.css │ │ │ ├── gray.css │ │ │ └── white.css │ │ ├── system │ │ ├── VM │ │ └── ZFS_cache │ │ └── template.php ├── redirect.htm ├── robots.txt ├── state ├── update.htm ├── update.php ├── web-app-manifest-192x192.png ├── web-app-manifest-512x512.png └── webGui ├── etc └── rc.d │ ├── rc.0 │ ├── rc.4 │ ├── rc.4.local │ ├── rc.6 │ ├── rc.K │ ├── rc.M │ ├── rc.S │ ├── rc.S.cont │ ├── rc.acpid │ ├── rc.apcupsd │ ├── rc.atd │ ├── rc.avahidaemon │ ├── rc.avahidnsconfd │ ├── rc.bind │ ├── rc.cgconfig │ ├── rc.cgred │ ├── rc.cgroup2unraid │ ├── rc.cpufreq │ ├── rc.crond │ ├── rc.dnsmasq │ ├── rc.docker │ ├── rc.elogind │ ├── rc.font │ ├── rc.inet1 │ ├── rc.inet1.conf │ ├── rc.inet2 │ ├── rc.inetd │ ├── rc.ip_forward │ ├── rc.kadmind │ ├── rc.keymap │ ├── rc.kpropd │ ├── rc.krb5kdc │ ├── rc.library.source │ ├── rc.libvirt │ ├── rc.local │ ├── rc.local_shutdown │ ├── rc.loop │ ├── rc.mcelog │ ├── rc.messagebus │ ├── rc.modules │ ├── rc.modules.local │ ├── rc.mysqld │ ├── rc.nfsd │ ├── rc.nginx │ ├── rc.ntpd │ ├── rc.openldap │ ├── rc.php-fpm │ ├── rc.ptpd │ ├── rc.rpc │ ├── rc.rsyslogd │ ├── rc.runlog │ ├── rc.samba │ ├── rc.saslauthd │ ├── rc.serial │ ├── rc.setterm │ ├── rc.smartd │ ├── rc.sshd │ ├── rc.sysstat │ ├── rc.sysvinit │ ├── rc.udev │ ├── rc.wireguard │ ├── rc.wireless │ └── rc.wsdd2 ├── sbin ├── create_network_ini ├── diagnostics ├── emcmd ├── emhttp ├── emhttp_event ├── inet ├── language ├── mdcmd ├── monitor_interface ├── monitor_nchan ├── mount_image ├── mover ├── newperms ├── plugin ├── powerdown ├── publish ├── qemu ├── samba ├── savepcidata ├── sdspin ├── set_ncq ├── smartctl_type ├── sriov ├── sriov-setvfs.sh ├── sriov-vfsettings.sh ├── ttyd-exec ├── update_cron ├── upgrade ├── use_ssl ├── vfio-pci ├── vfio-pci-bind.sh ├── virtiofsd └── zenstates └── share └── docker └── tailscale_container_hook /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/crowdin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/.github/crowdin.yml -------------------------------------------------------------------------------- /.github/scripts/generate-pr-plugin.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/.github/scripts/generate-pr-plugin.sh -------------------------------------------------------------------------------- /.github/translations/extract_js_translations_from_page.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/.github/translations/extract_js_translations_from_page.py -------------------------------------------------------------------------------- /.github/translations/extract_translations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/.github/translations/extract_translations.py -------------------------------------------------------------------------------- /.github/workflows/crowdin-upload.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/.github/workflows/crowdin-upload.yml -------------------------------------------------------------------------------- /.github/workflows/pr-plugin-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/.github/workflows/pr-plugin-build.yml -------------------------------------------------------------------------------- /.github/workflows/pr-plugin-cleanup.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/.github/workflows/pr-plugin-cleanup.yml -------------------------------------------------------------------------------- /.github/workflows/pr-plugin-upload.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/.github/workflows/pr-plugin-upload.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/sftp-template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/.vscode/sftp-template.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/README.md -------------------------------------------------------------------------------- /emhttp/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/apple-touch-icon.png -------------------------------------------------------------------------------- /emhttp/auth-request.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/auth-request.php -------------------------------------------------------------------------------- /emhttp/boot: -------------------------------------------------------------------------------- 1 | /boot -------------------------------------------------------------------------------- /emhttp/favicon-96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/favicon-96x96.png -------------------------------------------------------------------------------- /emhttp/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/favicon.ico -------------------------------------------------------------------------------- /emhttp/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/favicon.svg -------------------------------------------------------------------------------- /emhttp/languages/en_US/helptext.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/languages/en_US/helptext.txt -------------------------------------------------------------------------------- /emhttp/log: -------------------------------------------------------------------------------- 1 | /var/log -------------------------------------------------------------------------------- /emhttp/logging.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/logging.htm -------------------------------------------------------------------------------- /emhttp/login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/login.php -------------------------------------------------------------------------------- /emhttp/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/manifest.json -------------------------------------------------------------------------------- /emhttp/mnt: -------------------------------------------------------------------------------- 1 | /mnt -------------------------------------------------------------------------------- /emhttp/plugins/dynamix.apcupsd/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix.apcupsd/LICENSE -------------------------------------------------------------------------------- /emhttp/plugins/dynamix.apcupsd/UPSdetails.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix.apcupsd/UPSdetails.page -------------------------------------------------------------------------------- /emhttp/plugins/dynamix.apcupsd/UPSsettings.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix.apcupsd/UPSsettings.page -------------------------------------------------------------------------------- /emhttp/plugins/dynamix.apcupsd/apcupsd.notify: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix.apcupsd/apcupsd.notify -------------------------------------------------------------------------------- /emhttp/plugins/dynamix.apcupsd/default.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix.apcupsd/default.cfg -------------------------------------------------------------------------------- /emhttp/plugins/dynamix.apcupsd/event/driver_loaded: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix.apcupsd/event/driver_loaded -------------------------------------------------------------------------------- /emhttp/plugins/dynamix.apcupsd/include/UPSstatus.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix.apcupsd/include/UPSstatus.php -------------------------------------------------------------------------------- /emhttp/plugins/dynamix.apcupsd/include/update.apcupsd.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix.apcupsd/include/update.apcupsd.php -------------------------------------------------------------------------------- /emhttp/plugins/dynamix.apcupsd/sheets/UPSsettings.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix.apcupsd/sheets/UPSsettings.css -------------------------------------------------------------------------------- /emhttp/plugins/dynamix.docker.manager/AddContainer.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix.docker.manager/AddContainer.page -------------------------------------------------------------------------------- /emhttp/plugins/dynamix.docker.manager/Docker.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix.docker.manager/Docker.page -------------------------------------------------------------------------------- /emhttp/plugins/dynamix.docker.manager/DockerSettings.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix.docker.manager/DockerSettings.page -------------------------------------------------------------------------------- /emhttp/plugins/dynamix.docker.manager/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix.docker.manager/LICENSE -------------------------------------------------------------------------------- /emhttp/plugins/dynamix.docker.manager/default.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix.docker.manager/default.cfg -------------------------------------------------------------------------------- /emhttp/plugins/dynamix.docker.manager/images/question.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix.docker.manager/images/question.png -------------------------------------------------------------------------------- /emhttp/plugins/dynamix.docker.manager/include/Events.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix.docker.manager/include/Events.php -------------------------------------------------------------------------------- /emhttp/plugins/dynamix.docker.manager/include/Helpers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix.docker.manager/include/Helpers.php -------------------------------------------------------------------------------- /emhttp/plugins/dynamix.docker.manager/log.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix.docker.manager/log.htm -------------------------------------------------------------------------------- /emhttp/plugins/dynamix.docker.manager/nchan/docker_load: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix.docker.manager/nchan/docker_load -------------------------------------------------------------------------------- /emhttp/plugins/dynamix.docker.manager/scripts/docker: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix.docker.manager/scripts/docker -------------------------------------------------------------------------------- /emhttp/plugins/dynamix.docker.manager/scripts/docker_init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix.docker.manager/scripts/docker_init -------------------------------------------------------------------------------- /emhttp/plugins/dynamix.docker.manager/scripts/docker_rm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix.docker.manager/scripts/docker_rm -------------------------------------------------------------------------------- /emhttp/plugins/dynamix.docker.manager/system/Docker: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix.docker.manager/system/Docker -------------------------------------------------------------------------------- /emhttp/plugins/dynamix.gui.search/gui_search.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix.gui.search/gui_search.page -------------------------------------------------------------------------------- /emhttp/plugins/dynamix.gui.search/include/exec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix.gui.search/include/exec.php -------------------------------------------------------------------------------- /emhttp/plugins/dynamix.gui.search/sheets/gui_search.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix.gui.search/sheets/gui_search.css -------------------------------------------------------------------------------- /emhttp/plugins/dynamix.plugin.manager/PluginHelpers.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix.plugin.manager/PluginHelpers.page -------------------------------------------------------------------------------- /emhttp/plugins/dynamix.plugin.manager/Plugins.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix.plugin.manager/Plugins.page -------------------------------------------------------------------------------- /emhttp/plugins/dynamix.plugin.manager/scripts/checkall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix.plugin.manager/scripts/checkall -------------------------------------------------------------------------------- /emhttp/plugins/dynamix.plugin.manager/scripts/language: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix.plugin.manager/scripts/language -------------------------------------------------------------------------------- /emhttp/plugins/dynamix.plugin.manager/scripts/plugin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix.plugin.manager/scripts/plugin -------------------------------------------------------------------------------- /emhttp/plugins/dynamix.vm.manager/AddVM.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix.vm.manager/AddVM.page -------------------------------------------------------------------------------- /emhttp/plugins/dynamix.vm.manager/UpdateVM.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix.vm.manager/UpdateVM.page -------------------------------------------------------------------------------- /emhttp/plugins/dynamix.vm.manager/VMMachines.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix.vm.manager/VMMachines.page -------------------------------------------------------------------------------- /emhttp/plugins/dynamix.vm.manager/VMSettings.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix.vm.manager/VMSettings.page -------------------------------------------------------------------------------- /emhttp/plugins/dynamix.vm.manager/VMTemplates.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix.vm.manager/VMTemplates.page -------------------------------------------------------------------------------- /emhttp/plugins/dynamix.vm.manager/VMUsageStats.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix.vm.manager/VMUsageStats.page -------------------------------------------------------------------------------- /emhttp/plugins/dynamix.vm.manager/VMs.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix.vm.manager/VMs.page -------------------------------------------------------------------------------- /emhttp/plugins/dynamix.vm.manager/include/VMajax.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix.vm.manager/include/VMajax.php -------------------------------------------------------------------------------- /emhttp/plugins/dynamix.vm.manager/include/VMedit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix.vm.manager/include/VMedit.php -------------------------------------------------------------------------------- /emhttp/plugins/dynamix.vm.manager/include/libvirt.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix.vm.manager/include/libvirt.php -------------------------------------------------------------------------------- /emhttp/plugins/dynamix.vm.manager/nchan/vm_usage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix.vm.manager/nchan/vm_usage -------------------------------------------------------------------------------- /emhttp/plugins/dynamix.vm.manager/novnc/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix.vm.manager/novnc/.gitignore -------------------------------------------------------------------------------- /emhttp/plugins/dynamix.vm.manager/novnc/.gitmodules: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /emhttp/plugins/dynamix.vm.manager/novnc/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix.vm.manager/novnc/LICENSE.txt -------------------------------------------------------------------------------- /emhttp/plugins/dynamix.vm.manager/novnc/app/ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix.vm.manager/novnc/app/ui.js -------------------------------------------------------------------------------- /emhttp/plugins/dynamix.vm.manager/novnc/app/webutil.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix.vm.manager/novnc/app/webutil.js -------------------------------------------------------------------------------- /emhttp/plugins/dynamix.vm.manager/novnc/core/base64.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix.vm.manager/novnc/core/base64.js -------------------------------------------------------------------------------- /emhttp/plugins/dynamix.vm.manager/novnc/core/des.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix.vm.manager/novnc/core/des.js -------------------------------------------------------------------------------- /emhttp/plugins/dynamix.vm.manager/novnc/core/ra2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix.vm.manager/novnc/core/ra2.js -------------------------------------------------------------------------------- /emhttp/plugins/dynamix.vm.manager/novnc/core/rfb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix.vm.manager/novnc/core/rfb.js -------------------------------------------------------------------------------- /emhttp/plugins/dynamix.vm.manager/novnc/defaults.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /emhttp/plugins/dynamix.vm.manager/novnc/mandatory.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /emhttp/plugins/dynamix.vm.manager/novnc/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix.vm.manager/novnc/package.json -------------------------------------------------------------------------------- /emhttp/plugins/dynamix.vm.manager/novnc/vnc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix.vm.manager/novnc/vnc.html -------------------------------------------------------------------------------- /emhttp/plugins/dynamix.vm.manager/novnc/vnc_lite.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix.vm.manager/novnc/vnc_lite.html -------------------------------------------------------------------------------- /emhttp/plugins/dynamix.vm.manager/scripts/VMClone.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix.vm.manager/scripts/VMClone.php -------------------------------------------------------------------------------- /emhttp/plugins/dynamix.vm.manager/scripts/libvirt_init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix.vm.manager/scripts/libvirt_init -------------------------------------------------------------------------------- /emhttp/plugins/dynamix.vm.manager/scripts/libvirt_rm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix.vm.manager/scripts/libvirt_rm -------------------------------------------------------------------------------- /emhttp/plugins/dynamix.vm.manager/scripts/pcicheck.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix.vm.manager/scripts/pcicheck.php -------------------------------------------------------------------------------- /emhttp/plugins/dynamix.vm.manager/scripts/qemu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix.vm.manager/scripts/qemu.php -------------------------------------------------------------------------------- /emhttp/plugins/dynamix.vm.manager/spice.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix.vm.manager/spice.html -------------------------------------------------------------------------------- /emhttp/plugins/dynamix.vm.manager/spice/.gitignore: -------------------------------------------------------------------------------- 1 | spice-html5.spec 2 | package.json 3 | -------------------------------------------------------------------------------- /emhttp/plugins/dynamix.vm.manager/spice/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix.vm.manager/spice/COPYING -------------------------------------------------------------------------------- /emhttp/plugins/dynamix.vm.manager/spice/COPYING.LESSER: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix.vm.manager/spice/COPYING.LESSER -------------------------------------------------------------------------------- /emhttp/plugins/dynamix.vm.manager/spice/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix.vm.manager/spice/Makefile -------------------------------------------------------------------------------- /emhttp/plugins/dynamix.vm.manager/spice/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix.vm.manager/spice/README -------------------------------------------------------------------------------- /emhttp/plugins/dynamix.vm.manager/spice/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix.vm.manager/spice/TODO -------------------------------------------------------------------------------- /emhttp/plugins/dynamix.vm.manager/spice/spice.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix.vm.manager/spice/spice.css -------------------------------------------------------------------------------- /emhttp/plugins/dynamix.vm.manager/spice/spice.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix.vm.manager/spice/spice.html -------------------------------------------------------------------------------- /emhttp/plugins/dynamix.vm.manager/spice/src/bitmap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix.vm.manager/spice/src/bitmap.js -------------------------------------------------------------------------------- /emhttp/plugins/dynamix.vm.manager/spice/src/cursor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix.vm.manager/spice/src/cursor.js -------------------------------------------------------------------------------- /emhttp/plugins/dynamix.vm.manager/spice/src/display.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix.vm.manager/spice/src/display.js -------------------------------------------------------------------------------- /emhttp/plugins/dynamix.vm.manager/spice/src/enums.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix.vm.manager/spice/src/enums.js -------------------------------------------------------------------------------- /emhttp/plugins/dynamix.vm.manager/spice/src/inputs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix.vm.manager/spice/src/inputs.js -------------------------------------------------------------------------------- /emhttp/plugins/dynamix.vm.manager/spice/src/lz.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix.vm.manager/spice/src/lz.js -------------------------------------------------------------------------------- /emhttp/plugins/dynamix.vm.manager/spice/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix.vm.manager/spice/src/main.js -------------------------------------------------------------------------------- /emhttp/plugins/dynamix.vm.manager/spice/src/png.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix.vm.manager/spice/src/png.js -------------------------------------------------------------------------------- /emhttp/plugins/dynamix.vm.manager/spice/src/port.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix.vm.manager/spice/src/port.js -------------------------------------------------------------------------------- /emhttp/plugins/dynamix.vm.manager/spice/src/quic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix.vm.manager/spice/src/quic.js -------------------------------------------------------------------------------- /emhttp/plugins/dynamix.vm.manager/spice/src/resize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix.vm.manager/spice/src/resize.js -------------------------------------------------------------------------------- /emhttp/plugins/dynamix.vm.manager/spice/src/thirdparty/browser-es-module-loader/.npmignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /emhttp/plugins/dynamix.vm.manager/spice/src/ticket.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix.vm.manager/spice/src/ticket.js -------------------------------------------------------------------------------- /emhttp/plugins/dynamix.vm.manager/spice/src/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix.vm.manager/spice/src/utils.js -------------------------------------------------------------------------------- /emhttp/plugins/dynamix.vm.manager/spice/src/webm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix.vm.manager/spice/src/webm.js -------------------------------------------------------------------------------- /emhttp/plugins/dynamix.vm.manager/spice/src/wire.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix.vm.manager/spice/src/wire.js -------------------------------------------------------------------------------- /emhttp/plugins/dynamix.vm.manager/styles/edit.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix.vm.manager/styles/edit.css -------------------------------------------------------------------------------- /emhttp/plugins/dynamix.vm.manager/vnc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix.vm.manager/vnc.html -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/About.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/About.page -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/Apps.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/Apps.page -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/ArrayDevices.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/ArrayDevices.page -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/ArrayOperation.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/ArrayOperation.page -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/BootDevice.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/BootDevice.page -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/Browse.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/Browse.page -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/BrowseButton.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/BrowseButton.page -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/CPUisol.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/CPUisol.page -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/CPUpin.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/CPUpin.page -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/CPUset.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/CPUset.page -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/CPUvms.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/CPUvms.page -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/CacheDevices.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/CacheDevices.page -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/Confirmations.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/Confirmations.page -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/Console.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/Console.page -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/Credits.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/Credits.page -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/DashStats.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/DashStats.page -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/Dashboard.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/Dashboard.page -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/DateTime.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/DateTime.page -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/Device.page: -------------------------------------------------------------------------------- 1 | Type="xmenu" 2 | Tabs="true" -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/DeviceAttributes.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/DeviceAttributes.page -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/DeviceCapabilities.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/DeviceCapabilities.page -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/DeviceIdentify.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/DeviceIdentify.page -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/DeviceInfo.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/DeviceInfo.page -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/Diagnostics.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/Diagnostics.page -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/Disk.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/Disk.page -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/DiskList.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/DiskList.page -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/DiskSettings.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/DiskSettings.page -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/DisplaySettings.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/DisplaySettings.page -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/Eth0.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/Eth0.page -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/EthX.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/EthX.page -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/FTP.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/FTP.page -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/Favorites.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/Favorites.page -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/FeedbackButton.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/FeedbackButton.page -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/Flash.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/Flash.page -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/FlashInfo.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/FlashInfo.page -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/Grub.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/Grub.page -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/HardwareProfile.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/HardwareProfile.page -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/HelpButton.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/HelpButton.page -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/Identification.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/Identification.page -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/InfoButton.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/InfoButton.page -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/InstallKey.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/InstallKey.page -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/LICENSE -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/Language.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/Language.page -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/LanguageButton.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/LanguageButton.page -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/LogButton.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/LogButton.page -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/LogViewer.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/LogViewer.page -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/LogoutButton.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/LogoutButton.page -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/Main.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/Main.page -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/ManagementAccess.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/ManagementAccess.page -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/MoverSettings.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/MoverSettings.page -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/MyFavorites.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/MyFavorites.page -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/NFS.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/NFS.page -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/NetworkExtra.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/NetworkExtra.page -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/NetworkRules.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/NetworkRules.page -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/NetworkServices.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/NetworkServices.page -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/NetworkSettings.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/NetworkSettings.page -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/New.page: -------------------------------------------------------------------------------- 1 | Type="xmenu" 2 | Tabs="true" -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/NewConfig.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/NewConfig.page -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/NewPerms.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/NewPerms.page -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/NotificationAgents.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/NotificationAgents.page -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/Notifications.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/Notifications.page -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/OpenDevices.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/OpenDevices.page -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/OtherSettings.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/OtherSettings.page -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/OutgoingProxy.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/OutgoingProxy.page -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/PHPsettings.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/PHPsettings.page -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/PageMap.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/PageMap.page -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/ParityCheck.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/ParityCheck.page -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/PowerMode.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/PowerMode.page -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/Processes.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/Processes.page -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/README.md -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/RoutingTable.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/RoutingTable.page -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/SMB.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/SMB.page -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/SMBActiveDirectory.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/SMBActiveDirectory.page -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/SMBExtras.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/SMBExtras.page -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/SMBWorkGroup.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/SMBWorkGroup.page -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/SMBsettings.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/SMBsettings.page -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/Scheduler.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/Scheduler.page -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/SecurityNFS.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/SecurityNFS.page -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/SecuritySMB.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/SecuritySMB.page -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/Selftest.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/Selftest.page -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/Settings.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/Settings.page -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/Share.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/Share.page -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/ShareEdit.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/ShareEdit.page -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/ShareList.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/ShareList.page -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/ShareSettings.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/ShareSettings.page -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/Shares.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/Shares.page -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/SmtpSettings.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/SmtpSettings.page -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/SysDevs.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/SysDevs.page -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/SysDrivers.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/SysDrivers.page -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/Syslinux.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/Syslinux.page -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/Syslog.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/Syslog.page -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/SyslogSettings.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/SyslogSettings.page -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/Terminal.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/Terminal.page -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/TerminalButton.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/TerminalButton.page -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/Tools.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/Tools.page -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/TrimSettings.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/TrimSettings.page -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/UNRAID-OS.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/UNRAID-OS.page -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/UserAdd.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/UserAdd.page -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/UserEdit.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/UserEdit.page -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/UserList.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/UserList.page -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/UserPreferences.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/UserPreferences.page -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/Users.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/Users.page -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/Utilities.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/Utilities.page -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/VPNmanager.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/VPNmanager.page -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/Vars.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/Vars.page -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/WG0.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/WG0.page -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/WGX.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/WGX.page -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/WebGui.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/WebGui.page -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/Wireless.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/Wireless.page -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/agents/Bark.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/agents/Bark.xml -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/agents/Boxcar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/agents/Boxcar.xml -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/agents/Discord.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/agents/Discord.xml -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/agents/Gotify.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/agents/Gotify.xml -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/agents/Join.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/agents/Join.xml -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/agents/Prowl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/agents/Prowl.xml -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/agents/PushBits.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/agents/PushBits.xml -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/agents/Pushbullet.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/agents/Pushbullet.xml -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/agents/Pushover.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/agents/Pushover.xml -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/agents/Pushplus.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/agents/Pushplus.xml -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/agents/ServerChan.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/agents/ServerChan.xml -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/agents/Slack.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/agents/Slack.xml -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/agents/Telegram.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/agents/Telegram.xml -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/agents/ntfy.sh.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/agents/ntfy.sh.xml -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/api/api.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/api/api.txt -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/default.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/default.cfg -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/event/docker_started/update_services: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | /usr/local/emhttp/webGui/scripts/update_services 10 3 | -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/icons/alerts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/icons/alerts.png -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/icons/bark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/icons/bark.png -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/icons/boxcar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/icons/boxcar.png -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/icons/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/icons/default.png -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/icons/discord.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/icons/discord.png -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/icons/folderup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/icons/folderup.png -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/icons/gotify.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/icons/gotify.png -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/icons/join.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/icons/join.png -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/icons/log.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/icons/log.png -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/icons/messages.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/icons/messages.png -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/icons/notifymyandroid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/icons/notifymyandroid.png -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/icons/ntfy.sh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/icons/ntfy.sh.png -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/icons/prowl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/icons/prowl.png -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/icons/pushbits.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/icons/pushbits.png -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/icons/pushbullet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/icons/pushbullet.png -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/icons/pushover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/icons/pushover.png -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/icons/pushplus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/icons/pushplus.png -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/icons/serverchan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/icons/serverchan.png -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/icons/slack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/icons/slack.png -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/icons/smart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/icons/smart.png -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/icons/telegram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/icons/telegram.png -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/icons/warnings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/icons/warnings.png -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/images/UN-logotype-gradient.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/images/UN-logotype-gradient.svg -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/images/animated-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/images/animated-logo.svg -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/images/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/images/banner.png -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/images/case-model.png: -------------------------------------------------------------------------------- 1 | /boot/config/plugins/dynamix/case-model.png -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/images/cdrom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/images/cdrom.png -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/images/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/images/close.png -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/images/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/images/default.png -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/images/directory.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/images/directory.png -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/images/disk-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/images/disk-image.png -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/images/disk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/images/disk.png -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/images/explore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/images/explore.png -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/images/feedback_bugreport.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/images/feedback_bugreport.png -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/images/feedback_comment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/images/feedback_comment.png -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/images/feedback_error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/images/feedback_error.png -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/images/file-types.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/images/file-types.png -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/images/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/images/file.png -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/images/folder_open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/images/folder_open.png -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/images/green-on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/images/green-on.png -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/images/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/images/loading.gif -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/images/notice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/images/notice.png -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/images/noview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/images/noview.png -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/images/plg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/images/plg.png -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/images/red-on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/images/red-on.png -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/images/sort-asc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/images/sort-asc.png -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/images/sort-both.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/images/sort-both.png -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/images/sort-desc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/images/sort-desc.png -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/images/spinner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/images/spinner.gif -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/images/user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/images/user.png -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/images/wireguard-help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/images/wireguard-help.png -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/images/yellow-on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/images/yellow-on.png -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/include/.login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/include/.login.php -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/include/.set-password.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/include/.set-password.php -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/include/Acknowledge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/include/Acknowledge.php -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/include/Boot.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/include/Boot.php -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/include/Browse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/include/Browse.php -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/include/CPUset.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/include/CPUset.php -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/include/CheckPort.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/include/CheckPort.php -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/include/ColorCoding.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/include/ColorCoding.php -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/include/Control.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/include/Control.php -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/include/Custom.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/include/Custom.php -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/include/CustomMerge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/include/CustomMerge.php -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/include/DashboardApps.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/include/DashboardApps.php -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/include/DefaultPageLayout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/include/DefaultPageLayout.php -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/include/DeleteLogFile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/include/DeleteLogFile.php -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/include/DiskList.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/include/DiskList.php -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/include/DiskLog.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/include/DiskLog.php -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/include/Dispatcher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/include/Dispatcher.php -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/include/Download.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/include/Download.php -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/include/Encryption.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/include/Encryption.php -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/include/Feedback.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/include/Feedback.php -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/include/FileSystemStatus.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/include/FileSystemStatus.php -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/include/FileTree.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/include/FileTree.php -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/include/FileUpload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/include/FileUpload.php -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/include/HardwareCollect.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/include/HardwareCollect.php -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/include/Helpers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/include/Helpers.php -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/include/InitCharts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/include/InitCharts.php -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/include/InputSecurity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/include/InputSecurity.php -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/include/InstallKey.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/include/InstallKey.php -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/include/JSCache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/include/JSCache.php -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/include/KeyUpload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/include/KeyUpload.php -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/include/LanguageReset.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/include/LanguageReset.php -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/include/Markdown.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/include/Markdown.php -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/include/MarkdownExtra.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/include/MarkdownExtra.inc.php -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/include/MarkdownExtra.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/include/MarkdownExtra.php -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/include/MarkdownInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/include/MarkdownInterface.php -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/include/MyFavorites.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/include/MyFavorites.php -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/include/NetworkInfo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/include/NetworkInfo.php -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/include/Notify.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/include/Notify.php -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/include/OpenTerminal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/include/OpenTerminal.php -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/include/OutgoingProxy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/include/OutgoingProxy.php -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/include/OutgoingProxyLib.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/include/OutgoingProxyLib.php -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/include/PCIUpdate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/include/PCIUpdate.php -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/include/PHPsettings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/include/PHPsettings.php -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/include/PageBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/include/PageBuilder.php -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/include/ParityControl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/include/ParityControl.php -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/include/PortToggle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/include/PortToggle.php -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/include/Preselect.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/include/Preselect.php -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/include/ProcessStatus.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/include/ProcessStatus.php -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/include/ProtocolData.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/include/ProtocolData.php -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/include/ProvisionCert.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/include/ProvisionCert.php -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/include/Report.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/include/Report.php -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/include/ResetTZ.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/include/ResetTZ.php -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/include/RoutingTable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/include/RoutingTable.php -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/include/SMTPtest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/include/SMTPtest.php -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/include/Secure.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/include/Secure.php -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/include/SelectCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/include/SelectCase.php -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/include/ShareData.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/include/ShareData.php -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/include/ShareList.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/include/ShareList.php -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/include/SmartInfo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/include/SmartInfo.php -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/include/SriovHelpers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/include/SriovHelpers.php -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/include/StartCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/include/StartCommand.php -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/include/StartStopPTP.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/include/StartStopPTP.php -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/include/SysDevs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/include/SysDevs.php -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/include/SysDrivers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/include/SysDrivers.php -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/include/SysDriversHelpers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/include/SysDriversHelpers.php -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/include/SysDriversInit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/include/SysDriversInit.php -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/include/Syslog.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/include/Syslog.php -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/include/Templates.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/include/Templates.php -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/include/ThemeHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/include/ThemeHelper.php -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/include/ToggleState.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/include/ToggleState.php -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/include/Translations.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/include/Translations.php -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/include/UpdateOne.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/include/UpdateOne.php -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/include/UpdateTwo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/include/UpdateTwo.php -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/include/Wireless.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/include/Wireless.php -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/include/Wrappers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/include/Wrappers.php -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/include/apply.sriov-cfg.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/include/apply.sriov-cfg.php -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/include/cpulist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/include/cpulist.php -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/include/gitstatus.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/include/gitstatus.php -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/include/languages.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/include/languages.key -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/include/local_prepend.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/include/local_prepend.php -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/include/publish.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/include/publish.php -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/include/regions.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/include/regions.key -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/include/timezones.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/include/timezones.key -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/include/tld.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/include/tld.key -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/include/update.btrfs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/include/update.btrfs.php -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/include/update.encryption.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/include/update.encryption.php -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/include/update.ethernet.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/include/update.ethernet.php -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/include/update.file.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/include/update.file.php -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/include/update.parity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/include/update.parity.php -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/include/update.rules.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/include/update.rules.php -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/include/update.smart.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/include/update.smart.php -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/include/update.sriov-cfg.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/include/update.sriov-cfg.php -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/include/update.ssmtp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/include/update.ssmtp.php -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/include/update.trim.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/include/update.trim.php -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/include/update.vfio-pci-cfg.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/include/update.vfio-pci-cfg.php -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/include/update.wireguard.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/include/update.wireguard.php -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/include/update.wireless.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/include/update.wireless.php -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/include/update.zfs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/include/update.zfs.php -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/include/zfs_upgrade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/include/zfs_upgrade.php -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/javascript/EZView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/javascript/EZView.js -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/javascript/ace/ace.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/javascript/ace/ace.js -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/javascript/ace/ext-beautify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/javascript/ace/ext-beautify.js -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/javascript/ace/ext-code_lens.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/javascript/ace/ext-code_lens.js -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/javascript/ace/ext-emmet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/javascript/ace/ext-emmet.js -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/javascript/ace/ext-hardwrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/javascript/ace/ext-hardwrap.js -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/javascript/ace/ext-linking.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/javascript/ace/ext-linking.js -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/javascript/ace/ext-modelist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/javascript/ace/ext-modelist.js -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/javascript/ace/ext-options.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/javascript/ace/ext-options.js -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/javascript/ace/ext-prompt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/javascript/ace/ext-prompt.js -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/javascript/ace/ext-rtl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/javascript/ace/ext-rtl.js -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/javascript/ace/ext-searchbox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/javascript/ace/ext-searchbox.js -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/javascript/ace/ext-split.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/javascript/ace/ext-split.js -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/javascript/ace/ext-statusbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/javascript/ace/ext-statusbar.js -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/javascript/ace/ext-textarea.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/javascript/ace/ext-textarea.js -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/javascript/ace/ext-themelist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/javascript/ace/ext-themelist.js -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/javascript/ace/mode-abap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/javascript/ace/mode-abap.js -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/javascript/ace/mode-abc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/javascript/ace/mode-abc.js -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/javascript/ace/mode-ada.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/javascript/ace/mode-ada.js -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/javascript/ace/mode-alda.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/javascript/ace/mode-alda.js -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/javascript/ace/mode-apex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/javascript/ace/mode-apex.js -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/javascript/ace/mode-aql.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/javascript/ace/mode-aql.js -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/javascript/ace/mode-asciidoc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/javascript/ace/mode-asciidoc.js -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/javascript/ace/mode-asl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/javascript/ace/mode-asl.js -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/javascript/ace/mode-bibtex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/javascript/ace/mode-bibtex.js -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/javascript/ace/mode-c9search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/javascript/ace/mode-c9search.js -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/javascript/ace/mode-c_cpp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/javascript/ace/mode-c_cpp.js -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/javascript/ace/mode-cirru.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/javascript/ace/mode-cirru.js -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/javascript/ace/mode-clojure.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/javascript/ace/mode-clojure.js -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/javascript/ace/mode-cobol.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/javascript/ace/mode-cobol.js -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/javascript/ace/mode-coffee.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/javascript/ace/mode-coffee.js -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/javascript/ace/mode-crystal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/javascript/ace/mode-crystal.js -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/javascript/ace/mode-csharp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/javascript/ace/mode-csharp.js -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/javascript/ace/mode-csp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/javascript/ace/mode-csp.js -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/javascript/ace/mode-css.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/javascript/ace/mode-css.js -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/javascript/ace/mode-curly.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/javascript/ace/mode-curly.js -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/javascript/ace/mode-d.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/javascript/ace/mode-d.js -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/javascript/ace/mode-dart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/javascript/ace/mode-dart.js -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/javascript/ace/mode-diff.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/javascript/ace/mode-diff.js -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/javascript/ace/mode-django.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/javascript/ace/mode-django.js -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/javascript/ace/mode-dot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/javascript/ace/mode-dot.js -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/javascript/ace/mode-drools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/javascript/ace/mode-drools.js -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/javascript/ace/mode-edifact.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/javascript/ace/mode-edifact.js -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/javascript/ace/mode-eiffel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/javascript/ace/mode-eiffel.js -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/javascript/ace/mode-ejs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/javascript/ace/mode-ejs.js -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/javascript/ace/mode-elixir.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/javascript/ace/mode-elixir.js -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/javascript/ace/mode-elm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/javascript/ace/mode-elm.js -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/javascript/ace/mode-erlang.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/javascript/ace/mode-erlang.js -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/javascript/ace/mode-forth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/javascript/ace/mode-forth.js -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/javascript/ace/mode-fortran.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/javascript/ace/mode-fortran.js -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/javascript/ace/mode-fsharp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/javascript/ace/mode-fsharp.js -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/javascript/ace/mode-fsl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/javascript/ace/mode-fsl.js -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/javascript/ace/mode-ftl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/javascript/ace/mode-ftl.js -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/javascript/ace/mode-gcode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/javascript/ace/mode-gcode.js -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/javascript/ace/mode-gherkin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/javascript/ace/mode-gherkin.js -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/javascript/ace/mode-glsl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/javascript/ace/mode-glsl.js -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/javascript/ace/mode-golang.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/javascript/ace/mode-golang.js -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/javascript/ace/mode-groovy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/javascript/ace/mode-groovy.js -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/javascript/ace/mode-haml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/javascript/ace/mode-haml.js -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/javascript/ace/mode-haskell.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/javascript/ace/mode-haskell.js -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/javascript/ace/mode-haxe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/javascript/ace/mode-haxe.js -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/javascript/ace/mode-hjson.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/javascript/ace/mode-hjson.js -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/javascript/ace/mode-html.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/javascript/ace/mode-html.js -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/javascript/ace/mode-ini.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/javascript/ace/mode-ini.js -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/javascript/ace/mode-io.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/javascript/ace/mode-io.js -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/javascript/ace/mode-ion.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/javascript/ace/mode-ion.js -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/javascript/ace/mode-jack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/javascript/ace/mode-jack.js -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/javascript/ace/mode-jade.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/javascript/ace/mode-jade.js -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/javascript/ace/mode-java.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/javascript/ace/mode-java.js -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/javascript/ace/mode-jexl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/javascript/ace/mode-jexl.js -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/javascript/ace/mode-json.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/javascript/ace/mode-json.js -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/javascript/ace/mode-json5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/javascript/ace/mode-json5.js -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/javascript/ace/mode-jsoniq.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/javascript/ace/mode-jsoniq.js -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/javascript/ace/mode-jsp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/javascript/ace/mode-jsp.js -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/javascript/ace/mode-jssm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/javascript/ace/mode-jssm.js -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/javascript/ace/mode-jsx.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/javascript/ace/mode-jsx.js -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/javascript/ace/mode-julia.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/javascript/ace/mode-julia.js -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/javascript/ace/mode-kotlin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/javascript/ace/mode-kotlin.js -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/javascript/ace/mode-latex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/javascript/ace/mode-latex.js -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/javascript/ace/mode-latte.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/javascript/ace/mode-latte.js -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/javascript/ace/mode-less.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/javascript/ace/mode-less.js -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/javascript/ace/mode-liquid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/javascript/ace/mode-liquid.js -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/javascript/ace/mode-lisp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/javascript/ace/mode-lisp.js -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/javascript/ace/mode-logiql.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/javascript/ace/mode-logiql.js -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/javascript/ace/mode-logtalk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/javascript/ace/mode-logtalk.js -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/javascript/ace/mode-lsl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/javascript/ace/mode-lsl.js -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/javascript/ace/mode-lua.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/javascript/ace/mode-lua.js -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/javascript/ace/mode-luapage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/javascript/ace/mode-luapage.js -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/javascript/ace/mode-lucene.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/javascript/ace/mode-lucene.js -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/javascript/ace/mode-makefile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/javascript/ace/mode-makefile.js -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/javascript/ace/mode-markdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/javascript/ace/mode-markdown.js -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/javascript/ace/mode-mask.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/javascript/ace/mode-mask.js -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/javascript/ace/mode-matlab.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/javascript/ace/mode-matlab.js -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/javascript/ace/mode-maze.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/javascript/ace/mode-maze.js -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/javascript/ace/mode-mel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/javascript/ace/mode-mel.js -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/javascript/ace/mode-mips.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/javascript/ace/mode-mips.js -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/javascript/ace/mode-mixal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/javascript/ace/mode-mixal.js -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/javascript/ace/mode-mushcode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/javascript/ace/mode-mushcode.js -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/javascript/ace/mode-mysql.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/javascript/ace/mode-mysql.js -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/javascript/ace/mode-nginx.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/javascript/ace/mode-nginx.js -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/javascript/ace/mode-nim.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/javascript/ace/mode-nim.js -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/javascript/ace/mode-nix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/javascript/ace/mode-nix.js -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/javascript/ace/mode-nsis.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/javascript/ace/mode-nsis.js -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/javascript/ace/mode-nunjucks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/javascript/ace/mode-nunjucks.js -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/javascript/ace/mode-ocaml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/javascript/ace/mode-ocaml.js -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/javascript/ace/mode-partiql.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/javascript/ace/mode-partiql.js -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/javascript/ace/mode-pascal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/javascript/ace/mode-pascal.js -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/javascript/ace/mode-perl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/javascript/ace/mode-perl.js -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/javascript/ace/mode-pgsql.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/javascript/ace/mode-pgsql.js -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/javascript/ace/mode-php.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/javascript/ace/mode-php.js -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/javascript/ace/mode-pig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/javascript/ace/mode-pig.js -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/javascript/ace/mode-plsql.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/javascript/ace/mode-plsql.js -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/javascript/ace/mode-praat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/javascript/ace/mode-praat.js -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/javascript/ace/mode-prisma.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/javascript/ace/mode-prisma.js -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/javascript/ace/mode-prolog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/javascript/ace/mode-prolog.js -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/javascript/ace/mode-protobuf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/javascript/ace/mode-protobuf.js -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/javascript/ace/mode-puppet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/javascript/ace/mode-puppet.js -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/javascript/ace/mode-python.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/javascript/ace/mode-python.js -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/javascript/ace/mode-qml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/javascript/ace/mode-qml.js -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/javascript/ace/mode-r.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/javascript/ace/mode-r.js -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/javascript/ace/mode-raku.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/javascript/ace/mode-raku.js -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/javascript/ace/mode-razor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/javascript/ace/mode-razor.js -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/javascript/ace/mode-rdoc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/javascript/ace/mode-rdoc.js -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/javascript/ace/mode-red.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/javascript/ace/mode-red.js -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/javascript/ace/mode-redshift.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/javascript/ace/mode-redshift.js -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/javascript/ace/mode-rhtml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/javascript/ace/mode-rhtml.js -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/javascript/ace/mode-robot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/javascript/ace/mode-robot.js -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/javascript/ace/mode-rst.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/javascript/ace/mode-rst.js -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/javascript/ace/mode-ruby.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/javascript/ace/mode-ruby.js -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/javascript/ace/mode-rust.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/javascript/ace/mode-rust.js -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/javascript/ace/mode-sac.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/javascript/ace/mode-sac.js -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/javascript/ace/mode-sass.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/javascript/ace/mode-sass.js -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/javascript/ace/mode-scad.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/javascript/ace/mode-scad.js -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/javascript/ace/mode-scala.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/javascript/ace/mode-scala.js -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/javascript/ace/mode-scheme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/javascript/ace/mode-scheme.js -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/javascript/ace/mode-scrypt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/javascript/ace/mode-scrypt.js -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/javascript/ace/mode-scss.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/javascript/ace/mode-scss.js -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/javascript/ace/mode-sh.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/javascript/ace/mode-sh.js -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/javascript/ace/mode-sjs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/javascript/ace/mode-sjs.js -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/javascript/ace/mode-slim.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/javascript/ace/mode-slim.js -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/javascript/ace/mode-smarty.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/javascript/ace/mode-smarty.js -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/javascript/ace/mode-smithy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/javascript/ace/mode-smithy.js -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/javascript/ace/mode-snippets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/javascript/ace/mode-snippets.js -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/javascript/ace/mode-space.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/javascript/ace/mode-space.js -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/javascript/ace/mode-sparql.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/javascript/ace/mode-sparql.js -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/javascript/ace/mode-sql.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/javascript/ace/mode-sql.js -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/javascript/ace/mode-stylus.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/javascript/ace/mode-stylus.js -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/javascript/ace/mode-svg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/javascript/ace/mode-svg.js -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/javascript/ace/mode-swift.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/javascript/ace/mode-swift.js -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/javascript/ace/mode-tcl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/javascript/ace/mode-tcl.js -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/javascript/ace/mode-tex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/javascript/ace/mode-tex.js -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/javascript/ace/mode-text.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/javascript/ace/mode-text.js -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/javascript/ace/mode-textile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/javascript/ace/mode-textile.js -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/javascript/ace/mode-toml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/javascript/ace/mode-toml.js -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/javascript/ace/mode-tsx.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/javascript/ace/mode-tsx.js -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/javascript/ace/mode-turtle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/javascript/ace/mode-turtle.js -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/javascript/ace/mode-twig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/javascript/ace/mode-twig.js -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/javascript/ace/mode-vala.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/javascript/ace/mode-vala.js -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/javascript/ace/mode-vbscript.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/javascript/ace/mode-vbscript.js -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/javascript/ace/mode-velocity.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/javascript/ace/mode-velocity.js -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/javascript/ace/mode-verilog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/javascript/ace/mode-verilog.js -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/javascript/ace/mode-vhdl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/javascript/ace/mode-vhdl.js -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/javascript/ace/mode-wollok.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/javascript/ace/mode-wollok.js -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/javascript/ace/mode-xml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/javascript/ace/mode-xml.js -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/javascript/ace/mode-xquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/javascript/ace/mode-xquery.js -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/javascript/ace/mode-yaml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/javascript/ace/mode-yaml.js -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/javascript/ace/mode-zeek.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/javascript/ace/mode-zeek.js -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/javascript/ace/theme-chaos.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/javascript/ace/theme-chaos.js -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/javascript/ace/theme-chrome.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/javascript/ace/theme-chrome.js -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/javascript/ace/theme-clouds.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/javascript/ace/theme-clouds.js -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/javascript/ace/theme-cobalt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/javascript/ace/theme-cobalt.js -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/javascript/ace/theme-dawn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/javascript/ace/theme-dawn.js -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/javascript/ace/theme-dracula.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/javascript/ace/theme-dracula.js -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/javascript/ace/theme-eclipse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/javascript/ace/theme-eclipse.js -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/javascript/ace/theme-github.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/javascript/ace/theme-github.js -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/javascript/ace/theme-gob.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/javascript/ace/theme-gob.js -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/javascript/ace/theme-gruvbox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/javascript/ace/theme-gruvbox.js -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/javascript/ace/theme-kuroir.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/javascript/ace/theme-kuroir.js -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/javascript/ace/theme-monokai.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/javascript/ace/theme-monokai.js -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/javascript/ace/theme-xcode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/javascript/ace/theme-xcode.js -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/javascript/ace/worker-base.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/javascript/ace/worker-base.js -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/javascript/ace/worker-coffee.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/javascript/ace/worker-coffee.js -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/javascript/ace/worker-css.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/javascript/ace/worker-css.js -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/javascript/ace/worker-html.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/javascript/ace/worker-html.js -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/javascript/ace/worker-json.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/javascript/ace/worker-json.js -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/javascript/ace/worker-lua.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/javascript/ace/worker-lua.js -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/javascript/ace/worker-php.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/javascript/ace/worker-php.js -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/javascript/ace/worker-xml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/javascript/ace/worker-xml.js -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/javascript/ace/worker-xquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/javascript/ace/worker-xquery.js -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/javascript/ace/worker-yaml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/javascript/ace/worker-yaml.js -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/javascript/dynamix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/javascript/dynamix.js -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/javascript/jquery.apexcharts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/javascript/jquery.apexcharts.js -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/javascript/jquery.base64.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/javascript/jquery.base64.js -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/javascript/jquery.filedrop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/javascript/jquery.filedrop.js -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/javascript/jquery.filetree.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/javascript/jquery.filetree.js -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/javascript/smoothie.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/javascript/smoothie.js -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/javascript/translate.en_US.js: -------------------------------------------------------------------------------- 1 | function _(t){return t;} -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/nchan/device_list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/nchan/device_list -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/nchan/disk_load: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/nchan/disk_load -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/nchan/file_manager: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/nchan/file_manager -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/nchan/notify_poller: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/nchan/notify_poller -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/nchan/parity_list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/nchan/parity_list -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/nchan/session_check: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/nchan/session_check -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/nchan/update_1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/nchan/update_1 -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/nchan/update_2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/nchan/update_2 -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/nchan/update_3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/nchan/update_3 -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/nchan/ups_status: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/nchan/ups_status -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/nchan/vm_dashusage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/nchan/vm_dashusage -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/nchan/wg_poller: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/nchan/wg_poller -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/nchan/wlan0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/nchan/wlan0 -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/scripts/agent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/scripts/agent -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/scripts/bootmode: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/scripts/bootmode -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/scripts/btrfs_balance: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/scripts/btrfs_balance -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/scripts/btrfs_check: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/scripts/btrfs_check -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/scripts/btrfs_scrub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/scripts/btrfs_scrub -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/scripts/check.source: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/scripts/check.source -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/scripts/console: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/scripts/console -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/scripts/diagnostics: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/scripts/diagnostics -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/scripts/disk_size: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/scripts/disk_size -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/scripts/emcmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/scripts/emcmd -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/scripts/error_interfaces: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/scripts/error_interfaces -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/scripts/exfat_check: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/scripts/exfat_check -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/scripts/ext_check: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/scripts/ext_check -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/scripts/feedback: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/scripts/feedback -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/scripts/flash_backup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/scripts/flash_backup -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/scripts/ftpusers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/scripts/ftpusers -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/scripts/install_key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/scripts/install_key -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/scripts/monitor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/scripts/monitor -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/scripts/netconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/scripts/netconfig -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/scripts/newperms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/scripts/newperms -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/scripts/nfsSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/scripts/nfsSettings -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/scripts/notify: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/scripts/notify -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/scripts/ntfs_check: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/scripts/ntfs_check -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/scripts/open_ssl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/scripts/open_ssl -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/scripts/outgoingproxy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/scripts/outgoingproxy -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/scripts/parity_control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/scripts/parity_control -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/scripts/parity_history: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/scripts/parity_history -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/scripts/powermode: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/scripts/powermode -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/scripts/reiserfs_check: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/scripts/reiserfs_check -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/scripts/reload_services: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/scripts/reload_services -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/scripts/replace_key_job: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/scripts/replace_key_job -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/scripts/restore_favorites: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/scripts/restore_favorites -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/scripts/rsyslog_config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/scripts/rsyslog_config -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/scripts/run_cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/scripts/run_cmd -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/scripts/select_case: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/scripts/select_case -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/scripts/set_proxy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/scripts/set_proxy -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/scripts/share_size: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/scripts/share_size -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/scripts/show_interfaces: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/scripts/show_interfaces -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/scripts/ssd_trim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/scripts/ssd_trim -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/scripts/statuscheck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/scripts/statuscheck -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/scripts/system_information: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/scripts/system_information -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/scripts/update_access: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/scripts/update_access -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/scripts/update_services: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/scripts/update_services -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/scripts/upnp_poller: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/scripts/upnp_poller -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/scripts/upnp_poller_start: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/scripts/upnp_poller_start -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/scripts/upnp_port: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/scripts/upnp_port -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/scripts/wg_config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/scripts/wg_config -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/scripts/wireless: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/scripts/wireless -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/scripts/xfs_check: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/scripts/xfs_check -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/scripts/zfs_scrub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/scripts/zfs_scrub -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/sheets/ArrayOperation.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/sheets/ArrayOperation.css -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/sheets/Browse.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/sheets/Browse.css -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/sheets/BrowseButton.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/sheets/BrowseButton.css -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/sheets/CPUvms.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/sheets/CPUvms.css -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/sheets/CacheDevices.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/sheets/CacheDevices.css -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/sheets/DashStats.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/sheets/DashStats.css -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/sheets/DateTime.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/sheets/DateTime.css -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/sheets/DeviceIdentify.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/sheets/DeviceIdentify.css -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/sheets/DeviceInfo.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/sheets/DeviceInfo.css -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/sheets/Diagnostics.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/sheets/Diagnostics.css -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/sheets/Disk.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/sheets/Disk.css -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/sheets/DiskList.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/sheets/DiskList.css -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/sheets/DiskSettings.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/sheets/DiskSettings.css -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/sheets/DisplaySettings.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/sheets/DisplaySettings.css -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/sheets/Eth0.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/sheets/Eth0.css -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/sheets/Flash.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/sheets/Flash.css -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/sheets/InstallKey.css: -------------------------------------------------------------------------------- 1 | span.info { 2 | margin-left: 12px; 3 | } 4 | -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/sheets/Language.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/sheets/Language.css -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/sheets/NetworkRules.css: -------------------------------------------------------------------------------- 1 | span[id^=info-] { 2 | margin-left:6px; 3 | } 4 | -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/sheets/NewPerms.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/sheets/NewPerms.css -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/sheets/Notifications.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/sheets/Notifications.css -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/sheets/PHPsettings.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/sheets/PHPsettings.css -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/sheets/PowerMode.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/sheets/PowerMode.css -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/sheets/RoutingTable.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/sheets/RoutingTable.css -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/sheets/SMBExtras.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/sheets/SMBExtras.css -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/sheets/ShareEdit.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/sheets/ShareEdit.css -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/sheets/ShareList.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/sheets/ShareList.css -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/sheets/SysDevs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/sheets/SysDevs.css -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/sheets/SysDrivers.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/sheets/SysDrivers.css -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/sheets/Syslinux.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/sheets/Syslinux.css -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/sheets/Syslog.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/sheets/Syslog.css -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/sheets/SyslogSettings.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/sheets/SyslogSettings.css -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/sheets/SystemDisks.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/sheets/SystemDisks.css -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/sheets/UserAdd.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/sheets/UserAdd.css -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/sheets/UserEdit.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/sheets/UserEdit.css -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/sheets/UserList.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/sheets/UserList.css -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/sheets/WG0.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/sheets/WG0.css -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/sheets/Wireless.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/sheets/Wireless.css -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/styles/bitstream-bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/styles/bitstream-bold.woff -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/styles/bitstream-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/styles/bitstream-italic.woff -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/styles/bitstream.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/styles/bitstream.woff -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/styles/clear-sans-bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/styles/clear-sans-bold.woff -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/styles/clear-sans-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/styles/clear-sans-italic.woff -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/styles/clear-sans.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/styles/clear-sans.woff -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/styles/context.standalone.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/styles/context.standalone.css -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/styles/default-base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/styles/default-base.css -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/styles/default-cases.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/styles/default-cases.css -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/styles/default-dynamix.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/styles/default-dynamix.css -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/styles/default-fonts.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/styles/default-fonts.css -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/styles/docker-icon.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/styles/docker-icon.woff -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/styles/font-awesome.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/styles/font-awesome.css -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/styles/font-awesome.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/styles/font-awesome.woff -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/styles/font-cases.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/styles/font-cases.woff -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/styles/font-unraid.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/styles/font-unraid.woff -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/styles/jquery.filetree.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/styles/jquery.filetree.css -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/styles/jquery.sweetalert.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/styles/jquery.sweetalert.css -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/styles/jquery.switchbutton.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/styles/jquery.switchbutton.css -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/styles/jquery.ui.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/styles/jquery.ui.css -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/styles/themes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/styles/themes/README.md -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/styles/themes/azure.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/styles/themes/azure.css -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/styles/themes/black.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/styles/themes/black.css -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/styles/themes/gray.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/styles/themes/gray.css -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/styles/themes/white.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/styles/themes/white.css -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/system/VM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/system/VM -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/system/ZFS_cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/system/ZFS_cache -------------------------------------------------------------------------------- /emhttp/plugins/dynamix/template.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/plugins/dynamix/template.php -------------------------------------------------------------------------------- /emhttp/redirect.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/redirect.htm -------------------------------------------------------------------------------- /emhttp/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: / 3 | -------------------------------------------------------------------------------- /emhttp/state: -------------------------------------------------------------------------------- 1 | /var/local/emhttp -------------------------------------------------------------------------------- /emhttp/update.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/update.htm -------------------------------------------------------------------------------- /emhttp/update.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/update.php -------------------------------------------------------------------------------- /emhttp/web-app-manifest-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/web-app-manifest-192x192.png -------------------------------------------------------------------------------- /emhttp/web-app-manifest-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/emhttp/web-app-manifest-512x512.png -------------------------------------------------------------------------------- /emhttp/webGui: -------------------------------------------------------------------------------- 1 | plugins/dynamix -------------------------------------------------------------------------------- /etc/rc.d/rc.0: -------------------------------------------------------------------------------- 1 | rc.6 -------------------------------------------------------------------------------- /etc/rc.d/rc.4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/etc/rc.d/rc.4 -------------------------------------------------------------------------------- /etc/rc.d/rc.4.local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/etc/rc.d/rc.4.local -------------------------------------------------------------------------------- /etc/rc.d/rc.6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/etc/rc.d/rc.6 -------------------------------------------------------------------------------- /etc/rc.d/rc.K: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/etc/rc.d/rc.K -------------------------------------------------------------------------------- /etc/rc.d/rc.M: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/etc/rc.d/rc.M -------------------------------------------------------------------------------- /etc/rc.d/rc.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/etc/rc.d/rc.S -------------------------------------------------------------------------------- /etc/rc.d/rc.S.cont: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/etc/rc.d/rc.S.cont -------------------------------------------------------------------------------- /etc/rc.d/rc.acpid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/etc/rc.d/rc.acpid -------------------------------------------------------------------------------- /etc/rc.d/rc.apcupsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/etc/rc.d/rc.apcupsd -------------------------------------------------------------------------------- /etc/rc.d/rc.atd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/etc/rc.d/rc.atd -------------------------------------------------------------------------------- /etc/rc.d/rc.avahidaemon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/etc/rc.d/rc.avahidaemon -------------------------------------------------------------------------------- /etc/rc.d/rc.avahidnsconfd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/etc/rc.d/rc.avahidnsconfd -------------------------------------------------------------------------------- /etc/rc.d/rc.bind: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/etc/rc.d/rc.bind -------------------------------------------------------------------------------- /etc/rc.d/rc.cgconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/etc/rc.d/rc.cgconfig -------------------------------------------------------------------------------- /etc/rc.d/rc.cgred: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/etc/rc.d/rc.cgred -------------------------------------------------------------------------------- /etc/rc.d/rc.cgroup2unraid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/etc/rc.d/rc.cgroup2unraid -------------------------------------------------------------------------------- /etc/rc.d/rc.cpufreq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/etc/rc.d/rc.cpufreq -------------------------------------------------------------------------------- /etc/rc.d/rc.crond: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/etc/rc.d/rc.crond -------------------------------------------------------------------------------- /etc/rc.d/rc.dnsmasq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/etc/rc.d/rc.dnsmasq -------------------------------------------------------------------------------- /etc/rc.d/rc.docker: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/etc/rc.d/rc.docker -------------------------------------------------------------------------------- /etc/rc.d/rc.elogind: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/etc/rc.d/rc.elogind -------------------------------------------------------------------------------- /etc/rc.d/rc.font: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/etc/rc.d/rc.font -------------------------------------------------------------------------------- /etc/rc.d/rc.inet1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/etc/rc.d/rc.inet1 -------------------------------------------------------------------------------- /etc/rc.d/rc.inet1.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/etc/rc.d/rc.inet1.conf -------------------------------------------------------------------------------- /etc/rc.d/rc.inet2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/etc/rc.d/rc.inet2 -------------------------------------------------------------------------------- /etc/rc.d/rc.inetd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/etc/rc.d/rc.inetd -------------------------------------------------------------------------------- /etc/rc.d/rc.ip_forward: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/etc/rc.d/rc.ip_forward -------------------------------------------------------------------------------- /etc/rc.d/rc.kadmind: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/etc/rc.d/rc.kadmind -------------------------------------------------------------------------------- /etc/rc.d/rc.keymap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/etc/rc.d/rc.keymap -------------------------------------------------------------------------------- /etc/rc.d/rc.kpropd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/etc/rc.d/rc.kpropd -------------------------------------------------------------------------------- /etc/rc.d/rc.krb5kdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/etc/rc.d/rc.krb5kdc -------------------------------------------------------------------------------- /etc/rc.d/rc.library.source: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/etc/rc.d/rc.library.source -------------------------------------------------------------------------------- /etc/rc.d/rc.libvirt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/etc/rc.d/rc.libvirt -------------------------------------------------------------------------------- /etc/rc.d/rc.local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/etc/rc.d/rc.local -------------------------------------------------------------------------------- /etc/rc.d/rc.local_shutdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/etc/rc.d/rc.local_shutdown -------------------------------------------------------------------------------- /etc/rc.d/rc.loop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/etc/rc.d/rc.loop -------------------------------------------------------------------------------- /etc/rc.d/rc.mcelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/etc/rc.d/rc.mcelog -------------------------------------------------------------------------------- /etc/rc.d/rc.messagebus: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/etc/rc.d/rc.messagebus -------------------------------------------------------------------------------- /etc/rc.d/rc.modules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/etc/rc.d/rc.modules -------------------------------------------------------------------------------- /etc/rc.d/rc.modules.local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/etc/rc.d/rc.modules.local -------------------------------------------------------------------------------- /etc/rc.d/rc.mysqld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/etc/rc.d/rc.mysqld -------------------------------------------------------------------------------- /etc/rc.d/rc.nfsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/etc/rc.d/rc.nfsd -------------------------------------------------------------------------------- /etc/rc.d/rc.nginx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/etc/rc.d/rc.nginx -------------------------------------------------------------------------------- /etc/rc.d/rc.ntpd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/etc/rc.d/rc.ntpd -------------------------------------------------------------------------------- /etc/rc.d/rc.openldap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/etc/rc.d/rc.openldap -------------------------------------------------------------------------------- /etc/rc.d/rc.php-fpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/etc/rc.d/rc.php-fpm -------------------------------------------------------------------------------- /etc/rc.d/rc.ptpd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/etc/rc.d/rc.ptpd -------------------------------------------------------------------------------- /etc/rc.d/rc.rpc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/etc/rc.d/rc.rpc -------------------------------------------------------------------------------- /etc/rc.d/rc.rsyslogd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/etc/rc.d/rc.rsyslogd -------------------------------------------------------------------------------- /etc/rc.d/rc.runlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/etc/rc.d/rc.runlog -------------------------------------------------------------------------------- /etc/rc.d/rc.samba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/etc/rc.d/rc.samba -------------------------------------------------------------------------------- /etc/rc.d/rc.saslauthd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/etc/rc.d/rc.saslauthd -------------------------------------------------------------------------------- /etc/rc.d/rc.serial: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/etc/rc.d/rc.serial -------------------------------------------------------------------------------- /etc/rc.d/rc.setterm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/etc/rc.d/rc.setterm -------------------------------------------------------------------------------- /etc/rc.d/rc.smartd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/etc/rc.d/rc.smartd -------------------------------------------------------------------------------- /etc/rc.d/rc.sshd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/etc/rc.d/rc.sshd -------------------------------------------------------------------------------- /etc/rc.d/rc.sysstat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/etc/rc.d/rc.sysstat -------------------------------------------------------------------------------- /etc/rc.d/rc.sysvinit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/etc/rc.d/rc.sysvinit -------------------------------------------------------------------------------- /etc/rc.d/rc.udev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/etc/rc.d/rc.udev -------------------------------------------------------------------------------- /etc/rc.d/rc.wireguard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/etc/rc.d/rc.wireguard -------------------------------------------------------------------------------- /etc/rc.d/rc.wireless: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/etc/rc.d/rc.wireless -------------------------------------------------------------------------------- /etc/rc.d/rc.wsdd2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/etc/rc.d/rc.wsdd2 -------------------------------------------------------------------------------- /sbin/create_network_ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/sbin/create_network_ini -------------------------------------------------------------------------------- /sbin/diagnostics: -------------------------------------------------------------------------------- 1 | /usr/local/emhttp/plugins/dynamix/scripts/diagnostics -------------------------------------------------------------------------------- /sbin/emcmd: -------------------------------------------------------------------------------- 1 | /usr/local/emhttp/plugins/dynamix/scripts/emcmd -------------------------------------------------------------------------------- /sbin/emhttp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/sbin/emhttp -------------------------------------------------------------------------------- /sbin/emhttp_event: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/sbin/emhttp_event -------------------------------------------------------------------------------- /sbin/inet: -------------------------------------------------------------------------------- 1 | /etc/rc.d/rc.inet1 -------------------------------------------------------------------------------- /sbin/language: -------------------------------------------------------------------------------- 1 | /usr/local/emhttp/plugins/dynamix.plugin.manager/scripts/language -------------------------------------------------------------------------------- /sbin/mdcmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/sbin/mdcmd -------------------------------------------------------------------------------- /sbin/monitor_interface: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/sbin/monitor_interface -------------------------------------------------------------------------------- /sbin/monitor_nchan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/sbin/monitor_nchan -------------------------------------------------------------------------------- /sbin/mount_image: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/sbin/mount_image -------------------------------------------------------------------------------- /sbin/mover: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/sbin/mover -------------------------------------------------------------------------------- /sbin/newperms: -------------------------------------------------------------------------------- 1 | /usr/local/emhttp/plugins/dynamix/scripts/newperms -------------------------------------------------------------------------------- /sbin/plugin: -------------------------------------------------------------------------------- 1 | /usr/local/emhttp/plugins/dynamix.plugin.manager/scripts/plugin -------------------------------------------------------------------------------- /sbin/powerdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/sbin/powerdown -------------------------------------------------------------------------------- /sbin/publish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/sbin/publish -------------------------------------------------------------------------------- /sbin/qemu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/sbin/qemu -------------------------------------------------------------------------------- /sbin/samba: -------------------------------------------------------------------------------- 1 | /etc/rc.d/rc.samba -------------------------------------------------------------------------------- /sbin/savepcidata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/sbin/savepcidata -------------------------------------------------------------------------------- /sbin/sdspin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/sbin/sdspin -------------------------------------------------------------------------------- /sbin/set_ncq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/sbin/set_ncq -------------------------------------------------------------------------------- /sbin/smartctl_type: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/sbin/smartctl_type -------------------------------------------------------------------------------- /sbin/sriov: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/sbin/sriov -------------------------------------------------------------------------------- /sbin/sriov-setvfs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/sbin/sriov-setvfs.sh -------------------------------------------------------------------------------- /sbin/sriov-vfsettings.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/sbin/sriov-vfsettings.sh -------------------------------------------------------------------------------- /sbin/ttyd-exec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/sbin/ttyd-exec -------------------------------------------------------------------------------- /sbin/update_cron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/sbin/update_cron -------------------------------------------------------------------------------- /sbin/upgrade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/sbin/upgrade -------------------------------------------------------------------------------- /sbin/use_ssl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/sbin/use_ssl -------------------------------------------------------------------------------- /sbin/vfio-pci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/sbin/vfio-pci -------------------------------------------------------------------------------- /sbin/vfio-pci-bind.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/sbin/vfio-pci-bind.sh -------------------------------------------------------------------------------- /sbin/virtiofsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/sbin/virtiofsd -------------------------------------------------------------------------------- /sbin/zenstates: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/sbin/zenstates -------------------------------------------------------------------------------- /share/docker/tailscale_container_hook: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unraid/webgui/HEAD/share/docker/tailscale_container_hook --------------------------------------------------------------------------------