├── .deepsource.toml ├── .github └── workflows │ └── release.yml ├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── changelog7.2.txt ├── debian ├── changelog ├── compat ├── control ├── postinst └── rules ├── docs ├── .buildinfo ├── .nojekyll ├── _images │ └── login.png ├── _modules │ ├── aj │ │ └── plugins │ │ │ ├── lmn_auth │ │ │ ├── api.html │ │ │ └── views.html │ │ │ ├── lmn_common │ │ │ ├── api.html │ │ │ ├── lmnfile.html │ │ │ └── views.html │ │ │ ├── lmn_cron │ │ │ ├── manager.html │ │ │ └── views.html │ │ │ ├── lmn_crontab │ │ │ ├── manager.html │ │ │ └── views.html │ │ │ ├── lmn_devices │ │ │ └── views.html │ │ │ ├── lmn_dhcp │ │ │ └── views.html │ │ │ ├── lmn_docker │ │ │ └── views.html │ │ │ ├── lmn_groupmembership │ │ │ └── views.html │ │ │ ├── lmn_landingpage │ │ │ └── views.html │ │ │ ├── lmn_linbo │ │ │ └── views.html │ │ │ ├── lmn_linbo4 │ │ │ ├── images.html │ │ │ └── views.html │ │ │ ├── lmn_linbo_sync │ │ │ ├── api.html │ │ │ └── views.html │ │ │ ├── lmn_quotas │ │ │ └── views.html │ │ │ ├── lmn_session │ │ │ └── views.html │ │ │ ├── lmn_settings │ │ │ └── views.html │ │ │ ├── lmn_setup_wizard │ │ │ └── views.html │ │ │ └── lmn_users │ │ │ └── views.html │ └── index.html ├── _sources │ ├── index.rst.txt │ ├── plugins │ │ └── lmn_auth.rst.txt │ └── python │ │ ├── lmn_auth.rst.txt │ │ ├── lmn_common.rst.txt │ │ ├── lmn_cron.rst.txt │ │ ├── lmn_crontab.rst.txt │ │ ├── lmn_devices.rst.txt │ │ ├── lmn_dhcp.rst.txt │ │ ├── lmn_docker.rst.txt │ │ ├── lmn_groupmembership.rst.txt │ │ ├── lmn_landingpage.rst.txt │ │ ├── lmn_linbo4.rst.txt │ │ ├── lmn_linbo_sync.rst.txt │ │ ├── lmn_quotas.rst.txt │ │ ├── lmn_session.rst.txt │ │ ├── lmn_settings.rst.txt │ │ ├── lmn_setup_wizard.rst.txt │ │ └── lmn_users.rst.txt ├── _static │ ├── basic.css │ ├── css │ │ ├── badge_only.css │ │ ├── fonts │ │ │ ├── Roboto-Slab-Bold.woff │ │ │ ├── Roboto-Slab-Bold.woff2 │ │ │ ├── Roboto-Slab-Regular.woff │ │ │ ├── Roboto-Slab-Regular.woff2 │ │ │ ├── fontawesome-webfont.eot │ │ │ ├── fontawesome-webfont.svg │ │ │ ├── fontawesome-webfont.ttf │ │ │ ├── fontawesome-webfont.woff │ │ │ ├── fontawesome-webfont.woff2 │ │ │ ├── lato-bold-italic.woff │ │ │ ├── lato-bold-italic.woff2 │ │ │ ├── lato-bold.woff │ │ │ ├── lato-bold.woff2 │ │ │ ├── lato-normal-italic.woff │ │ │ ├── lato-normal-italic.woff2 │ │ │ ├── lato-normal.woff │ │ │ └── lato-normal.woff2 │ │ └── theme.css │ ├── doctools.js │ ├── documentation_options.js │ ├── file.png │ ├── fonts │ │ ├── FontAwesome.otf │ │ ├── Inconsolata-Bold.ttf │ │ ├── Inconsolata-Regular.ttf │ │ ├── Inconsolata.ttf │ │ ├── Lato-Bold.ttf │ │ ├── Lato-Regular.ttf │ │ ├── Lato │ │ │ ├── lato-bold.eot │ │ │ ├── lato-bold.ttf │ │ │ ├── lato-bold.woff │ │ │ ├── lato-bold.woff2 │ │ │ ├── lato-bolditalic.eot │ │ │ ├── lato-bolditalic.ttf │ │ │ ├── lato-bolditalic.woff │ │ │ ├── lato-bolditalic.woff2 │ │ │ ├── lato-italic.eot │ │ │ ├── lato-italic.ttf │ │ │ ├── lato-italic.woff │ │ │ ├── lato-italic.woff2 │ │ │ ├── lato-regular.eot │ │ │ ├── lato-regular.ttf │ │ │ ├── lato-regular.woff │ │ │ └── lato-regular.woff2 │ │ ├── Roboto-Slab-Bold.woff │ │ ├── Roboto-Slab-Bold.woff2 │ │ ├── Roboto-Slab-Light.woff │ │ ├── Roboto-Slab-Light.woff2 │ │ ├── Roboto-Slab-Regular.woff │ │ ├── Roboto-Slab-Regular.woff2 │ │ ├── Roboto-Slab-Thin.woff │ │ ├── Roboto-Slab-Thin.woff2 │ │ ├── RobotoSlab-Bold.ttf │ │ ├── RobotoSlab-Regular.ttf │ │ ├── RobotoSlab │ │ │ ├── roboto-slab-v7-bold.eot │ │ │ ├── roboto-slab-v7-bold.ttf │ │ │ ├── roboto-slab-v7-bold.woff │ │ │ ├── roboto-slab-v7-bold.woff2 │ │ │ ├── roboto-slab-v7-regular.eot │ │ │ ├── roboto-slab-v7-regular.ttf │ │ │ ├── roboto-slab-v7-regular.woff │ │ │ └── roboto-slab-v7-regular.woff2 │ │ ├── fontawesome-webfont.eot │ │ ├── fontawesome-webfont.svg │ │ ├── fontawesome-webfont.ttf │ │ ├── fontawesome-webfont.woff │ │ ├── fontawesome-webfont.woff2 │ │ ├── lato-bold-italic.woff │ │ ├── lato-bold-italic.woff2 │ │ ├── lato-bold.woff │ │ ├── lato-bold.woff2 │ │ ├── lato-normal-italic.woff │ │ ├── lato-normal-italic.woff2 │ │ ├── lato-normal.woff │ │ └── lato-normal.woff2 │ ├── jquery-3.5.1.js │ ├── jquery.js │ ├── js │ │ ├── badge_only.js │ │ ├── html5shiv-printshiv.min.js │ │ ├── html5shiv.min.js │ │ ├── modernizr.min.js │ │ └── theme.js │ ├── language_data.js │ ├── logo.png │ ├── minus.png │ ├── plus.png │ ├── pygments.css │ ├── screenshots │ │ ├── Subnet.png │ │ ├── cron1.png │ │ ├── cron2.png │ │ ├── cron3.png │ │ ├── custom_fields1.png │ │ ├── custom_fields2.png │ │ ├── custom_fields3.png │ │ ├── dhcp1.png │ │ ├── dhcp2.png │ │ ├── docker1.png │ │ ├── docker2.png │ │ ├── linbo4-1.png │ │ ├── linbo4-2.png │ │ ├── linbo4-3.png │ │ ├── linbo4-4.png │ │ ├── linbo_used1.png │ │ ├── linbo_used2.png │ │ ├── login.png │ │ ├── remote1.png │ │ ├── remote2.png │ │ ├── samba_dns1.png.png │ │ ├── samba_dns2.png.png │ │ ├── templates1.png │ │ ├── templates2.png │ │ ├── templates3.png │ │ └── templates4.png │ ├── searchtools.js │ ├── theme_overrides.css │ ├── translations.js │ ├── underscore-1.13.1.js │ ├── underscore-1.3.1.js │ ├── underscore.js │ ├── webui-class.png │ ├── webui-linbo.png │ ├── webui-login.png │ └── webui-user.png ├── doctrees │ ├── environment.pickle │ ├── index.doctree │ ├── plugins │ │ └── lmn_auth.doctree │ └── python │ │ ├── lmn_auth.doctree │ │ ├── lmn_common.doctree │ │ ├── lmn_cron.doctree │ │ ├── lmn_crontab.doctree │ │ ├── lmn_devices.doctree │ │ ├── lmn_dhcp.doctree │ │ ├── lmn_docker.doctree │ │ ├── lmn_groupmembership.doctree │ │ ├── lmn_landingpage.doctree │ │ ├── lmn_linbo.doctree │ │ ├── lmn_linbo4.doctree │ │ ├── lmn_linbo_sync.doctree │ │ ├── lmn_quotas.doctree │ │ ├── lmn_session.doctree │ │ ├── lmn_settings.doctree │ │ ├── lmn_setup_wizard.doctree │ │ └── lmn_users.doctree ├── genindex.html ├── index.html ├── objects.inv ├── plugins │ └── lmn_auth.html ├── py-modindex.html ├── python │ ├── lmn_auth.html │ ├── lmn_common.html │ ├── lmn_cron.html │ ├── lmn_crontab.html │ ├── lmn_devices.html │ ├── lmn_dhcp.html │ ├── lmn_docker.html │ ├── lmn_groupmembership.html │ ├── lmn_landingpage.html │ ├── lmn_linbo.html │ ├── lmn_linbo4.html │ ├── lmn_linbo_sync.html │ ├── lmn_quotas.html │ ├── lmn_session.html │ ├── lmn_settings.html │ ├── lmn_setup_wizard.html │ └── lmn_users.html ├── search.html └── searchindex.js ├── docs_src ├── _static │ ├── logo.png │ ├── screenshots │ │ ├── Subnet.png │ │ ├── cron1.png │ │ ├── cron2.png │ │ ├── cron3.png │ │ ├── custom_fields1.png │ │ ├── custom_fields2.png │ │ ├── custom_fields3.png │ │ ├── dhcp1.png │ │ ├── dhcp2.png │ │ ├── docker1.png │ │ ├── docker2.png │ │ ├── linbo4-1.png │ │ ├── linbo4-2.png │ │ ├── linbo4-3.png │ │ ├── linbo4-4.png │ │ ├── linbo_used1.png │ │ ├── linbo_used2.png │ │ ├── login.png │ │ ├── remote1.png │ │ ├── remote2.png │ │ ├── samba_dns1.png.png │ │ ├── samba_dns2.png.png │ │ ├── templates1.png │ │ ├── templates2.png │ │ ├── templates3.png │ │ └── templates4.png │ ├── theme_overrides.css │ ├── webui-class.png │ ├── webui-linbo.png │ ├── webui-login.png │ └── webui-user.png ├── conf.py ├── index.rst ├── plugins │ └── lmn_auth.rst └── python │ ├── lmn_auth.rst │ ├── lmn_common.rst │ ├── lmn_crontab.rst │ ├── lmn_devices.rst │ ├── lmn_dhcp.rst │ ├── lmn_docker.rst │ ├── lmn_groupmembership.rst │ ├── lmn_landingpage.rst │ ├── lmn_linbo4.rst │ ├── lmn_linbo_sync.rst │ ├── lmn_quotas.rst │ ├── lmn_session.rst │ ├── lmn_settings.rst │ ├── lmn_setup_wizard.rst │ └── lmn_users.rst ├── lib └── systemd │ └── system │ └── linuxmuster-webui.service ├── tests └── e2e │ ├── authconfig.json.sample │ ├── conf.js │ ├── global-admin.js │ └── teacher.js └── usr └── lib ├── linuxmuster-webui ├── etc │ ├── config_templates │ │ ├── ajenti_default.yml │ │ ├── template-ajenti.yml │ │ ├── template-webui.yml │ │ └── webui_default.yml │ ├── deprecated │ │ ├── SophomorixJsonOutput.py │ │ ├── create_webuiUploadFolder.sh │ │ └── split_config_aj.py │ ├── email_templates │ │ ├── reset_email.html │ │ ├── reset_email_de.html │ │ └── reset_email_fr.html │ ├── install_scripts │ │ ├── create_aj_cfg.sh │ │ └── webuiUpload.ntacl │ ├── requirements.txt │ └── update_scripts │ │ ├── clean_webui_config.py │ │ ├── merge-permissions.py │ │ └── update_ajenti_config.py └── plugins │ ├── lmn_auth │ ├── README.md │ ├── __init__.py │ ├── api.py │ ├── locale │ │ ├── af │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── app.pot │ │ ├── ar │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── ca │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── cs │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── da │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── de │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── el │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── en │ │ │ └── LC_MESSAGES │ │ │ │ └── app.po │ │ ├── es-ES │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── fi │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── fr │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── he │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── hu │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── it │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── ja │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── ko │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── nl │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── no │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── pl │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── pt-BR │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── pt-PT │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── ro │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── ru │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── sr │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── sv-SE │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── tr │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── uk │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── vi │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── zh-CN │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ └── zh-TW │ │ │ └── LC_MESSAGES │ │ │ ├── app.js │ │ │ └── app.po │ ├── plugin.yml │ ├── resources │ │ ├── build │ │ │ ├── all.css │ │ │ ├── all.js │ │ │ ├── all.vendor.css │ │ │ └── all.vendor.js │ │ ├── js │ │ │ ├── controllers │ │ │ │ └── index.controller.coffee │ │ │ └── module.coffee │ │ └── partial │ │ │ └── index.html │ └── views.py │ ├── lmn_clients │ ├── README.md │ ├── __init__.py │ ├── locale │ │ ├── af │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── app.pot │ │ ├── ar │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── ca │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── cs │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── da │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── de │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── el │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── en │ │ │ └── LC_MESSAGES │ │ │ │ └── app.po │ │ ├── es-ES │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── fi │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── fr │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── he │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── hu │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── it │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── ja │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── ko │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── nl │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── no │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── pl │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── pt-BR │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── pt-PT │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── ro │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── ru │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── sr │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── sv-SE │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── tr │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── uk │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── vi │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── zh-CN │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ └── zh-TW │ │ │ └── LC_MESSAGES │ │ │ ├── app.js │ │ │ └── app.po │ ├── main.py │ ├── permissions.yml │ ├── plugin.yml │ ├── requirements.txt │ ├── resources │ │ ├── build │ │ │ ├── all.css │ │ │ ├── all.js │ │ │ ├── all.vendor.css │ │ │ └── all.vendor.js │ │ ├── js │ │ │ ├── controllers │ │ │ │ └── index.controller.es │ │ │ ├── module.es │ │ │ └── routing.es │ │ └── partial │ │ │ └── index.html │ └── views.py │ ├── lmn_common │ ├── README.md │ ├── __init__.py │ ├── api.py │ ├── fieldnames.py │ ├── lmnfile.py │ ├── locale │ │ ├── af │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── app.pot │ │ ├── ar │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── be │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── bg │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── bn │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── ca │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── cs │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── da │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── de │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── el │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── en │ │ │ └── LC_MESSAGES │ │ │ │ └── app.po │ │ ├── es-ES │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── et │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── fa │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── fi │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── fr │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── fy-NL │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── he │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── hr │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── hu │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── id │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── it │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── ja │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── ka │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── ko │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── lt │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── lv │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── my │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── nl │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── no │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── pl │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── pt-BR │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── pt-PT │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── ro │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── ru │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── sk │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── sl │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── sr-CS │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── sr │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── sv-SE │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── sw │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── th │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── tlh-AA │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── tr │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── tzl │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── uk │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── vi │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── zh-CN │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ └── zh-TW │ │ │ └── LC_MESSAGES │ │ │ ├── app.js │ │ │ └── app.po │ ├── main.py │ ├── mimetypes.py │ ├── multischool.py │ ├── permissions.yml │ ├── plugin.yml │ ├── resources │ │ ├── build │ │ │ ├── all.css │ │ │ ├── all.js │ │ │ ├── all.vendor.css │ │ │ └── all.vendor.js │ │ ├── content │ │ │ └── main_view.html │ │ ├── img │ │ │ ├── app-store-badge.svg │ │ │ ├── class.png │ │ │ ├── course_card_colored_darkblue_trans.png │ │ │ ├── course_card_colored_orange_trans.png │ │ │ ├── course_class_colored_darkblue_trans.png │ │ │ ├── course_class_colored_orange_trans.png │ │ │ ├── course_people_colored_darkblue_trans.png │ │ │ ├── course_people_colored_orange_trans.png │ │ │ ├── favicon.png │ │ │ ├── logo-ajenti.png │ │ │ ├── logo-full.png │ │ │ ├── logo-ni.png │ │ │ ├── logo-small.png │ │ │ ├── logo-text-white.png │ │ │ ├── logo-x.png │ │ │ ├── webdav-app-ios-empty.png │ │ │ └── webdav-app-ios.png │ │ ├── js │ │ │ ├── controllers │ │ │ │ └── schoolswitcher.controller.es │ │ │ ├── directives │ │ │ │ ├── adminAccess.es │ │ │ │ ├── globalAdminAccess.es │ │ │ │ ├── lmlog.coffee │ │ │ │ ├── sambaAccess.es │ │ │ │ ├── teacherAccess.es │ │ │ │ └── upload.coffee │ │ │ ├── module.coffee │ │ │ ├── notused │ │ │ │ ├── lmFilesystem.service.es │ │ │ │ ├── messageboxContainer.es │ │ │ │ └── sophComment.service.coffee │ │ │ └── services │ │ │ │ ├── lmFileBackups.coffee │ │ │ │ ├── lmFileEditor.coffee │ │ │ │ ├── validation.coffee │ │ │ │ └── wait.coffee │ │ ├── partial │ │ │ ├── lmFileBackups.modal.html │ │ │ ├── lmFileBackupsDiff.modal.html │ │ │ ├── lmFileEditor.modal.html │ │ │ └── schoolswitcher.html │ │ ├── styles.less.deprecated │ │ └── styles.scss │ ├── tools.py │ └── views.py │ ├── lmn_crontab │ ├── README.md │ ├── __init__.py │ ├── locale │ │ ├── af │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── app.pot │ │ ├── ar │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── ca │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── cs │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── da │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── de │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── el │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── en │ │ │ └── LC_MESSAGES │ │ │ │ └── app.po │ │ ├── es-ES │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── fi │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── fr │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── he │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── hu │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── it │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── ja │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── ko │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── nl │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── no │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── pl │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── pt-BR │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── pt-PT │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── ro │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── ru │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── sr │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── sv-SE │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── tr │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── uk │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── vi │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── zh-CN │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ └── zh-TW │ │ │ └── LC_MESSAGES │ │ │ ├── app.js │ │ │ └── app.po │ ├── main.py │ ├── manager.py │ ├── permissions.yml │ ├── plugin.yml │ ├── requirements.txt │ ├── resources │ │ ├── build │ │ │ ├── all.css │ │ │ ├── all.js │ │ │ ├── all.vendor.css │ │ │ └── all.vendor.js │ │ ├── js │ │ │ ├── controllers │ │ │ │ └── index.controller.es │ │ │ ├── module.es │ │ │ └── routing.es │ │ └── partial │ │ │ └── index.html │ └── views.py │ ├── lmn_device-manager │ ├── __init__.py │ ├── locale │ │ ├── af │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── app.pot │ │ ├── ar │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── ca │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── cs │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── da │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── de │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── el │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── en │ │ │ └── LC_MESSAGES │ │ │ │ └── app.po │ │ ├── es-ES │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── fi │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── fr │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── he │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── hu │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── it │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── ja │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── ko │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── nl │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── no │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── pl │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── pt-BR │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── pt-PT │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── ro │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── ru │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── sr │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── sv-SE │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── tr │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── uk │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── vi │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── zh-CN │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ └── zh-TW │ │ │ └── LC_MESSAGES │ │ │ ├── app.js │ │ │ └── app.po │ ├── main.py │ ├── permissions.yml │ ├── plugin.yml │ ├── resources │ │ ├── build │ │ │ ├── all.css │ │ │ ├── all.js │ │ │ ├── all.vendor.css │ │ │ └── all.vendor.js │ │ ├── js │ │ │ ├── controllers │ │ │ │ └── index.controller.es │ │ │ ├── module.es │ │ │ └── routing.es │ │ ├── partial │ │ │ ├── actionForAllDevices.modal.html │ │ │ ├── index.html │ │ │ ├── linboremote.modal.html │ │ │ ├── prestartcommands.modal.html │ │ │ └── runningprocesses.modal.html │ │ └── style.less │ └── views.py │ ├── lmn_devices │ ├── README.md │ ├── __init__.py │ ├── locale │ │ ├── af │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── app.pot │ │ ├── ar │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── be │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── bg │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── bn │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── ca │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── cs │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── da │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── de │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── el │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── en │ │ │ └── LC_MESSAGES │ │ │ │ └── app.po │ │ ├── es-ES │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── et │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── fa │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── fi │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── fr │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── fy-NL │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── he │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── hr │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── hu │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── id │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── it │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── ja │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── ka │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── ko │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── lt │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── lv │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── my │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── nl │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── no │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── pl │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── pt-BR │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── pt-PT │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── ro │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── ru │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── sk │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── sl │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── sr-CS │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── sr │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── sv-SE │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── sw │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── th │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── tlh-AA │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── tr │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── tzl │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── uk │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── vi │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── zh-CN │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ └── zh-TW │ │ │ └── LC_MESSAGES │ │ │ ├── app.js │ │ │ └── app.po │ ├── main.py │ ├── permissions.yml │ ├── plugin.yml │ ├── resources │ │ ├── build │ │ │ ├── all.css │ │ │ ├── all.js │ │ │ ├── all.vendor.css │ │ │ └── all.vendor.js │ │ ├── js │ │ │ ├── controllers │ │ │ │ └── index.controller.coffee │ │ │ └── module.coffee │ │ └── partial │ │ │ ├── addDevice.modal.html │ │ │ ├── apply.modal.html │ │ │ └── index.html │ └── views.py │ ├── lmn_dhcp │ ├── README.md │ ├── __init__.py │ ├── locale │ │ ├── af │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── app.pot │ │ ├── ar │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── ca │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── cs │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── da │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── de │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── el │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── en │ │ │ └── LC_MESSAGES │ │ │ │ └── app.po │ │ ├── es-ES │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── fi │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── fr │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── he │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── hu │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── it │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── ja │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── ko │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── nl │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── no │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── pl │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── pt-BR │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── pt-PT │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── ro │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── ru │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── sr │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── sv-SE │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── tr │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── uk │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── vi │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── zh-CN │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ └── zh-TW │ │ │ └── LC_MESSAGES │ │ │ ├── app.js │ │ │ └── app.po │ ├── main.py │ ├── permissions.yml │ ├── plugin.yml │ ├── requirements.txt │ ├── resources │ │ ├── build │ │ │ ├── all.css │ │ │ ├── all.js │ │ │ ├── all.vendor.css │ │ │ └── all.vendor.js │ │ ├── js │ │ │ ├── controllers │ │ │ │ └── index.controller.es │ │ │ ├── module.es │ │ │ └── routing.es │ │ └── partial │ │ │ ├── addDevice.modal.html │ │ │ └── index.html │ └── views.py │ ├── lmn_docker │ ├── README.md │ ├── __init__.py │ ├── locale │ │ ├── af │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── app.pot │ │ ├── ar │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── ca │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── cs │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── da │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── de │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── el │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── en │ │ │ └── LC_MESSAGES │ │ │ │ └── app.po │ │ ├── es-ES │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── fi │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── fr │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── he │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── hu │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── it │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── ja │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── ko │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── nl │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── no │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── pl │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── pt-BR │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── pt-PT │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── ro │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── ru │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── sr │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── sv-SE │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── tr │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── uk │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── vi │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── zh-CN │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ └── zh-TW │ │ │ └── LC_MESSAGES │ │ │ ├── app.js │ │ │ └── app.po │ ├── main.py │ ├── permissions.yml │ ├── plugin.yml │ ├── resources │ │ ├── build │ │ │ ├── all.css │ │ │ ├── all.js │ │ │ ├── all.vendor.css │ │ │ └── all.vendor.js │ │ ├── js │ │ │ ├── controllers │ │ │ │ └── index.controller.es │ │ │ ├── module.es │ │ │ └── routing.es │ │ └── partial │ │ │ └── index.html │ └── views.py │ ├── lmn_groupmembership │ ├── README.md │ ├── __init__.py │ ├── locale │ │ ├── af │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── app.pot │ │ ├── ar │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── be │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── bg │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── bn │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── ca │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── cs │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── da │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── de │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── el │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── en │ │ │ └── LC_MESSAGES │ │ │ │ └── app.po │ │ ├── es-ES │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── et │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── fa │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── fi │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── fr │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── fy-NL │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── he │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── hr │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── hu │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── id │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── it │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── ja │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── ka │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── ko │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── lt │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── lv │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── my │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── nl │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── no │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── pl │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── pt-BR │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── pt-PT │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── ro │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── ru │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── sk │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── sl │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── sr-CS │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── sr │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── sv-SE │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── sw │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── th │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── tlh-AA │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── tr │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── tzl │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── uk │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── vi │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── zh-CN │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ └── zh-TW │ │ │ └── LC_MESSAGES │ │ │ ├── app.js │ │ │ └── app.po │ ├── main.py │ ├── permissions.yml │ ├── plugin.yml │ ├── resources │ │ ├── build │ │ │ ├── all.css │ │ │ ├── all.js │ │ │ ├── all.vendor.css │ │ │ └── all.vendor.js │ │ ├── js │ │ │ ├── controllers │ │ │ │ └── index.controller.coffee │ │ │ └── module.coffee │ │ └── partial │ │ │ ├── groupDetails.modal.html │ │ │ └── index.html │ └── views.py │ ├── lmn_landingpage │ ├── README.md │ ├── __init__.py │ ├── locale │ │ ├── af │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── app.pot │ │ ├── ar │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── ca │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── cs │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── da │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── de │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── el │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── en │ │ │ └── LC_MESSAGES │ │ │ │ └── app.po │ │ ├── es-ES │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── fi │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── fr │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── he │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── hu │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── it │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── ja │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── ko │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── nl │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── no │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── pl │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── pt-BR │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── pt-PT │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── ro │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── ru │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── sr │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── sv-SE │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── tr │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── uk │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── vi │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── zh-CN │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ └── zh-TW │ │ │ └── LC_MESSAGES │ │ │ ├── app.js │ │ │ └── app.po │ ├── main.py │ ├── permissions.yml │ ├── plugin.yml │ ├── resources │ │ ├── build │ │ │ ├── all.css │ │ │ ├── all.js │ │ │ ├── all.vendor.css │ │ │ └── all.vendor.js │ │ ├── js │ │ │ ├── controllers │ │ │ │ └── index.controller.coffee │ │ │ └── module.coffee │ │ └── partial │ │ │ ├── customFields.modal.html │ │ │ ├── index.html │ │ │ └── webappqr.modal.html │ └── views.py │ ├── lmn_linbo4 │ ├── README.md │ ├── __init__.py │ ├── bower.json │ ├── images.py │ ├── locale │ │ ├── af │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── app.pot │ │ ├── ar │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── ca │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── cs │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── da │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── de │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── el │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── en │ │ │ └── LC_MESSAGES │ │ │ │ └── app.po │ │ ├── es-ES │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── fi │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── fr │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── he │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── hu │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── it │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── ja │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── ko │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── nl │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── no │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── pl │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── pt-BR │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── pt-PT │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── ro │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── ru │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── sr │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── sv-SE │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── tr │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── uk │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── vi │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── zh-CN │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ └── zh-TW │ │ │ └── LC_MESSAGES │ │ │ ├── app.js │ │ │ └── app.po │ ├── main.py │ ├── permissions.yml │ ├── plugin.yml │ ├── resources │ │ ├── build │ │ │ ├── all.css │ │ │ ├── all.js │ │ │ ├── all.vendor.css │ │ │ └── all.vendor.js │ │ ├── js │ │ │ ├── controllers │ │ │ │ └── index.controller.coffee │ │ │ └── module.coffee │ │ ├── partial │ │ │ ├── accept.modal.html │ │ │ ├── apply.modal.html │ │ │ ├── config.modal.html │ │ │ ├── image.backups.modal.html │ │ │ ├── image.modal.html │ │ │ ├── index.html │ │ │ └── partition.modal.html │ │ └── vendor │ │ │ └── angular-bootstrap-colorpicker │ │ │ ├── .bower.json │ │ │ ├── .gitignore │ │ │ ├── .jshintrc │ │ │ ├── .travis.yml │ │ │ ├── CHANGELOG.md │ │ │ ├── MIT-LICENSE.txt │ │ │ ├── README.md │ │ │ ├── bower.json │ │ │ ├── css │ │ │ ├── colorpicker.css │ │ │ └── colorpicker.min.css │ │ │ ├── gulpfile.js │ │ │ ├── img │ │ │ ├── alpha.png │ │ │ ├── hue.png │ │ │ └── saturation.png │ │ │ ├── js │ │ │ ├── bootstrap-colorpicker-module.js │ │ │ └── bootstrap-colorpicker-module.min.js │ │ │ ├── less │ │ │ └── colorpicker.less │ │ │ └── package.json │ └── views.py │ ├── lmn_linbo_sync │ ├── README.md │ ├── __init__.py │ ├── api.py │ ├── locale │ │ ├── af │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── app.pot │ │ ├── ar │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── be │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── bg │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── bn │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── ca │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── cs │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── da │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── de │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── el │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── en │ │ │ └── LC_MESSAGES │ │ │ │ └── app.po │ │ ├── eo │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── es-ES │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── et │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── fa │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── fi │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── fr │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── fy-NL │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── he │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── hr │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── hu │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── id │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── it │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── ja │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── ka │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── ko │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── lt │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── lv │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── my │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── nl │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── no │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── pl │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── pt-BR │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── pt-PT │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── ro │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── ru │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── sk │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── sl │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── sr-CS │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── sr │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── sv-SE │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── sw │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── th │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── tlh-AA │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── tr │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── tzl │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── uk │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── vi │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── zh-CN │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ └── zh-TW │ │ │ └── LC_MESSAGES │ │ │ ├── app.js │ │ │ └── app.po │ ├── main.py │ ├── permissions.yml │ ├── plugin.yml │ ├── resources │ │ ├── build │ │ │ ├── all.css │ │ │ ├── all.js │ │ │ ├── all.vendor.css │ │ │ └── all.vendor.js │ │ ├── js │ │ │ ├── controllers │ │ │ │ └── index.controller.coffee │ │ │ ├── module.es │ │ │ └── routing.es │ │ └── partial │ │ │ └── index.html │ └── views.py │ ├── lmn_links │ ├── README.md │ ├── __init__.py │ ├── api.py │ ├── locale │ │ ├── af │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── app.pot │ │ ├── ar │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── ca │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── cs │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── da │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── de │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── el │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── en │ │ │ └── LC_MESSAGES │ │ │ │ └── app.po │ │ ├── es-ES │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── fi │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── fr │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── he │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── hu │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── it │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── ja │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── ko │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── nl │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── no │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── pl │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── pt-BR │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── pt-PT │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── ro │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── ru │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── sr │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── sv-SE │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── tr │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── uk │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── vi │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── zh-CN │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ └── zh-TW │ │ │ └── LC_MESSAGES │ │ │ ├── app.js │ │ │ └── app.po │ ├── main.py │ ├── permissions.yml │ ├── plugin.yml │ ├── resources │ │ ├── build │ │ │ ├── all.css │ │ │ ├── all.js │ │ │ ├── all.vendor.css │ │ │ └── all.vendor.js │ │ ├── js │ │ │ ├── controllers │ │ │ │ └── index.controller.es │ │ │ ├── module.es │ │ │ └── routing.es │ │ └── partial │ │ │ └── index.html │ └── views.py │ ├── lmn_nextcloud │ ├── README.md │ ├── __init__.py │ ├── api.py │ ├── locale │ │ ├── af │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── app.pot │ │ ├── ar │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── ca │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── cs │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── da │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── de │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── el │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── en │ │ │ └── LC_MESSAGES │ │ │ │ └── app.po │ │ ├── es-ES │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── fi │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── fr │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── he │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── hu │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── it │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── ja │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── ko │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── nl │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── no │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── pl │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── pt-BR │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── pt-PT │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── ro │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── ru │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── sr │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── sv-SE │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── tr │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── uk │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── vi │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── zh-CN │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ └── zh-TW │ │ │ └── LC_MESSAGES │ │ │ ├── app.js │ │ │ └── app.po │ ├── main.py │ ├── permissions.yml │ ├── plugin.yml │ ├── resources │ │ ├── build │ │ │ ├── all.css │ │ │ ├── all.js │ │ │ ├── all.vendor.css │ │ │ └── all.vendor.js │ │ ├── js │ │ │ ├── controllers │ │ │ │ └── index.controller.es │ │ │ ├── module.es │ │ │ └── routing.es │ │ └── partial │ │ │ └── index.html │ └── views.py │ ├── lmn_permissions │ ├── README.md │ ├── __init__.py │ ├── locale │ │ ├── af │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── app.pot │ │ ├── ar │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── be │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── bg │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── bn │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── ca │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── cs │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── da │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── de │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── el │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── en │ │ │ └── LC_MESSAGES │ │ │ │ └── app.po │ │ ├── eo │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── es-ES │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── et │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── fa │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── fi │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── fr │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── fy-NL │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── he │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── hr │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── hu │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── id │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── it │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── ja │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── ka │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── ko │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── lt │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── lv │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── my │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── nl │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── no │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── pl │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── pt-BR │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── pt-PT │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── ro │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── ru │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── sk │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── sl │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── sr-CS │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── sr │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── sv-SE │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── sw │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── th │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── tlh-AA │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── tr │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── tzl │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── uk │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── vi │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── zh-CN │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ └── zh-TW │ │ │ └── LC_MESSAGES │ │ │ ├── app.js │ │ │ └── app.po │ ├── main.py │ ├── plugin.yml │ ├── requirements.txt │ ├── resources │ │ ├── build │ │ │ ├── all.css │ │ │ ├── all.js │ │ │ ├── all.vendor.css │ │ │ └── all.vendor.js │ │ ├── js │ │ │ ├── controllers │ │ │ │ └── index.controller.coffee │ │ │ ├── module.es │ │ │ └── routing.es │ │ └── partial │ │ │ └── index.html │ └── views.py │ ├── lmn_quotas │ ├── README.md │ ├── __init__.py │ ├── locale │ │ ├── af │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── app.pot │ │ ├── ar │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── be │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── bg │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── bn │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── ca │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── cs │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── da │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── de │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── el │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── en │ │ │ └── LC_MESSAGES │ │ │ │ └── app.po │ │ ├── es-ES │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── et │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── fa │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── fi │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── fr │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── fy-NL │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── he │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── hr │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── hu │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── id │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── it │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── ja │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── ka │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── ko │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── lt │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── lv │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── my │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── nl │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── no │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── pl │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── pt-BR │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── pt-PT │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── ro │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── ru │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── sk │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── sl │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── sr-CS │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── sr │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── sv-SE │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── sw │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── th │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── tlh-AA │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── tr │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── tzl │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── uk │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── vi │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── zh-CN │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ └── zh-TW │ │ │ └── LC_MESSAGES │ │ │ ├── app.js │ │ │ └── app.po │ ├── main.py │ ├── permissions.yml │ ├── plugin.yml │ ├── resources │ │ ├── build │ │ │ ├── all.css │ │ │ ├── all.js │ │ │ ├── all.vendor.css │ │ │ └── all.vendor.js │ │ ├── js │ │ │ ├── controllers │ │ │ │ └── index.controller.coffee │ │ │ └── module.coffee │ │ └── partial │ │ │ ├── apply.modal.html │ │ │ ├── disabled.html │ │ │ └── index.html │ └── views.py │ ├── lmn_samba_dns │ ├── README.md │ ├── __init__.py │ ├── locale │ │ ├── af │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── app.pot │ │ ├── ar │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── ca │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── cs │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── da │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── de │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── el │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── en │ │ │ └── LC_MESSAGES │ │ │ │ └── app.po │ │ ├── es-ES │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── fi │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── fr │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── he │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── hu │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── it │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── ja │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── ko │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── nl │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── no │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── pl │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── pt-BR │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── pt-PT │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── ro │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── ru │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── sr │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── sv-SE │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── tr │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── uk │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── vi │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── zh-CN │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ └── zh-TW │ │ │ └── LC_MESSAGES │ │ │ ├── app.js │ │ │ └── app.po │ ├── main.py │ ├── permissions.yml │ ├── plugin.yml │ ├── resources │ │ ├── build │ │ │ ├── all.css │ │ │ ├── all.js │ │ │ ├── all.vendor.css │ │ │ └── all.vendor.js │ │ ├── js │ │ │ ├── controllers │ │ │ │ └── index.controller.es │ │ │ ├── module.es │ │ │ └── routing.es │ │ └── partial │ │ │ └── index.html │ └── views.py │ ├── lmn_samba_shares │ ├── README.md │ ├── __init__.py │ ├── bower.json │ ├── locale │ │ ├── af │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── app.pot │ │ ├── ar │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── ca │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── cs │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── da │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── de │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── el │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── en │ │ │ └── LC_MESSAGES │ │ │ │ └── app.po │ │ ├── es-ES │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── fi │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── fr │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── he │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── hu │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── it │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── ja │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── ko │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── nl │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── no │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── pl │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── pt-BR │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── pt-PT │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── ro │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── ru │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── sr │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── sv-SE │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── tr │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── uk │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── vi │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── zh-CN │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ └── zh-TW │ │ │ └── LC_MESSAGES │ │ │ ├── app.js │ │ │ └── app.po │ ├── main.py │ ├── permissions.yml │ ├── plugin.yml │ └── resources │ │ ├── build │ │ ├── all.css │ │ ├── all.js │ │ ├── all.vendor.css │ │ └── all.vendor.js │ │ ├── js │ │ ├── controllers │ │ │ ├── index.controller.es │ │ │ └── properties.controller.es │ │ ├── module.es │ │ └── routing.es │ │ └── partial │ │ ├── index.html │ │ └── properties.html │ ├── lmn_session_new │ ├── README.md │ ├── __init__.py │ ├── locale │ │ ├── af │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── app.pot │ │ ├── ar │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── ca │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── cs │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── da │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── de │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── el │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── en │ │ │ └── LC_MESSAGES │ │ │ │ └── app.po │ │ ├── es-ES │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── fi │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── fr │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── he │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── hu │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── it │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── ja │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── ko │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── nl │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── no │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── pl │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── pt-BR │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── pt-PT │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── ro │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── ru │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── sr │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── sv-SE │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── tr │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── uk │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── vi │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── zh-CN │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ └── zh-TW │ │ │ └── LC_MESSAGES │ │ │ ├── app.js │ │ │ └── app.po │ ├── main.py │ ├── permissions.yml │ ├── plugin.yml │ ├── resources │ │ ├── build │ │ │ ├── all.css │ │ │ ├── all.js │ │ │ ├── all.vendor.css │ │ │ └── all.vendor.js │ │ ├── js │ │ │ ├── controllers │ │ │ │ ├── session.controller.coffee │ │ │ │ └── sessionsList.controller.coffee │ │ │ ├── module.coffee │ │ │ ├── routing.es │ │ │ └── services │ │ │ │ └── sessionService.es │ │ ├── partial │ │ │ ├── roomDetails.modal.html │ │ │ ├── selectFile.modal.html │ │ │ ├── session.html │ │ │ └── sessionsList.html │ │ ├── styles.less.deprecated │ │ └── styles.scss │ └── views.py │ ├── lmn_settings │ ├── README.md │ ├── __init__.py │ ├── locale │ │ ├── af │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── app.pot │ │ ├── ar │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── be │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── bg │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── bn │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── ca │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── cs │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── da │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── de │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── el │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── en │ │ │ └── LC_MESSAGES │ │ │ │ └── app.po │ │ ├── es-ES │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── et │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── fa │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── fi │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── fr │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── fy-NL │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── he │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── hr │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── hu │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── id │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── it │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── ja │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── ka │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── ko │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── lt │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── lv │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── my │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── nl │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── no │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── pl │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── pt-BR │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── pt-PT │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── ro │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── ru │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── sk │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── sl │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── sr-CS │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── sr │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── sv-SE │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── sw │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── th │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── tlh-AA │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── tr │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── tzl │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── uk │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── vi │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── zh-CN │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ └── zh-TW │ │ │ └── LC_MESSAGES │ │ │ ├── app.js │ │ │ └── app.po │ ├── main.py │ ├── permissions.yml │ ├── plugin.yml │ ├── resources │ │ ├── build │ │ │ ├── all.css │ │ │ ├── all.js │ │ │ ├── all.vendor.css │ │ │ └── all.vendor.js │ │ ├── js │ │ │ ├── controllers │ │ │ │ ├── globalSettings.controller.es │ │ │ │ └── index.controller.coffee │ │ │ ├── module.coffee │ │ │ └── routing.es │ │ └── partial │ │ │ ├── globalSettings.html │ │ │ └── index.html │ └── views.py │ ├── lmn_setup_wizard │ ├── README.md │ ├── __init__.py │ ├── js │ │ ├── index.es │ │ └── init.controller.es │ ├── locale │ │ ├── af │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── app.pot │ │ ├── ar │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── ca │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── cs │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── da │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── de │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── el │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── en │ │ │ └── LC_MESSAGES │ │ │ │ └── app.po │ │ ├── es-ES │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── fi │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── fr │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── he │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── hu │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── it │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── ja │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── ko │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── nl │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── no │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── pl │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── pt-BR │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── pt-PT │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── ro │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── ru │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── sr │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── sv-SE │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── tr │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── uk │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── vi │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── zh-CN │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ └── zh-TW │ │ │ └── LC_MESSAGES │ │ │ ├── app.js │ │ │ └── app.po │ ├── partial │ │ ├── init-account.html │ │ ├── init-done.html │ │ ├── init-externalServices.html │ │ ├── init-school.html │ │ ├── init-setup.html │ │ ├── init-summary.html │ │ └── init-welcome.html │ ├── plugin.yml │ ├── resources │ │ └── build │ │ │ ├── all.css │ │ │ ├── all.js │ │ │ ├── all.vendor.css │ │ │ └── all.vendor.js │ └── views.py │ ├── lmn_smbclient │ ├── README.md │ ├── __init__.py │ ├── bower.json │ ├── davxml.py │ ├── locale │ │ ├── af │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── app.pot │ │ ├── ar │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── ca │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── cs │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── da │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── de │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── el │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── en │ │ │ └── LC_MESSAGES │ │ │ │ └── app.po │ │ ├── es-ES │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── fi │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── fr │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── he │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── hu │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── it │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── ja │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── ko │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── nl │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── no │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── pl │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── pt-BR │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── pt-PT │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── ro │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── ru │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── sr │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── sv-SE │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── tr │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── uk │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── vi │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── zh-CN │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ └── zh-TW │ │ │ └── LC_MESSAGES │ │ │ ├── app.js │ │ │ └── app.po │ ├── main.py │ ├── plugin.yml │ ├── resources │ │ ├── build │ │ │ ├── all.css │ │ │ ├── all.js │ │ │ ├── all.vendor.css │ │ │ └── all.vendor.js │ │ └── js │ │ │ ├── directives │ │ │ └── smbupload.directive.coffee │ │ │ ├── module.es │ │ │ └── services │ │ │ └── smbclient.service.es │ └── views │ │ ├── lmnsmbclient.py │ │ └── lmnwebdav.py │ ├── lmn_users │ ├── README.md │ ├── __init__.py │ ├── locale │ │ ├── af │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── app.pot │ │ ├── ar │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── be │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── bg │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── bn │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── ca │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── cs │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── da │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── de │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── el │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── en │ │ │ └── LC_MESSAGES │ │ │ │ └── app.po │ │ ├── es-ES │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── et │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── fa │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── fi │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── fr │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── fy-NL │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── he │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── hr │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── hu │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── id │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── it │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── ja │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── ka │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── ko │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── lt │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── lv │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── my │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── nl │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── no │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── pl │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── pt-BR │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── pt-PT │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── ro │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── ru │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── sk │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── sl │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── sr-CS │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── sr │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── sv-SE │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── sw │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── th │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── tlh-AA │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── tr │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── tzl │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── uk │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── vi │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── zh-CN │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ └── zh-TW │ │ │ └── LC_MESSAGES │ │ │ ├── app.js │ │ │ └── app.po │ ├── main.py │ ├── permissions.yml │ ├── plugin.yml │ ├── resources │ │ ├── build │ │ │ ├── all.css │ │ │ ├── all.js │ │ │ ├── all.vendor.css │ │ │ └── all.vendor.js │ │ ├── js │ │ │ ├── controllers │ │ │ │ ├── checkModal.controller.coffee │ │ │ │ ├── extraCourses.controller.coffee │ │ │ │ ├── extraStudents.controller.coffee │ │ │ │ ├── globaladmins.controller.coffee │ │ │ │ ├── listmanagement.controller.coffee │ │ │ │ ├── parents.controller.coffee │ │ │ │ ├── printPasswords.controller.coffee │ │ │ │ ├── schooladmins.controller.coffee │ │ │ │ ├── staff.controller.coffee │ │ │ │ ├── students.controller.coffee │ │ │ │ ├── teachers.controller.coffee │ │ │ │ └── usersCommon.controller.coffee │ │ │ ├── module.coffee │ │ │ └── services │ │ │ │ ├── customFields.es │ │ │ │ └── userPassword.es │ │ └── partial │ │ │ ├── addAdmin.modal.html │ │ │ ├── addUser.modal.html │ │ │ ├── apply.modal.html │ │ │ ├── check.modal.html │ │ │ ├── customPassword.modal.html │ │ │ ├── extra-courses.html │ │ │ ├── extra-students.html │ │ │ ├── globaladmins.html │ │ │ ├── listmanagement.html │ │ │ ├── parents.html │ │ │ ├── print-passwords.html │ │ │ ├── print-passwords.options.modal.html │ │ │ ├── result.modal.html │ │ │ ├── schooladmins.html │ │ │ ├── showPassword.modal.html │ │ │ ├── sortList.modal.html │ │ │ ├── staff.html │ │ │ ├── students.html │ │ │ ├── teachers.html │ │ │ ├── upload.modal.html │ │ │ └── userDetails.modal.html │ └── views │ │ ├── __init__.py │ │ ├── customFields.py │ │ ├── listmanagement.py │ │ ├── passwords.py │ │ └── sophomorixUsers.py │ ├── lmn_vdi_administration │ ├── README.md │ ├── __init__.py │ ├── locale │ │ ├── af │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── app.pot │ │ ├── ar │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── ca │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── cs │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── da │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── de │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── el │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── en │ │ │ └── LC_MESSAGES │ │ │ │ └── app.po │ │ ├── es-ES │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── fi │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── fr │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── he │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── hu │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── it │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── ja │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── ko │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── nl │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── no │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── pl │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── pt-BR │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── pt-PT │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── ro │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── ru │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── sr │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── sv-SE │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── tr │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── uk │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── vi │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── zh-CN │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ └── zh-TW │ │ │ └── LC_MESSAGES │ │ │ ├── app.js │ │ │ └── app.po │ ├── main.py │ ├── plugin.yml │ ├── requirements.txt │ ├── resources │ │ ├── build │ │ │ ├── all.css │ │ │ ├── all.js │ │ │ ├── all.vendor.css │ │ │ └── all.vendor.js │ │ ├── js │ │ │ ├── controllers │ │ │ │ └── index.controller.es │ │ │ ├── module.es │ │ │ └── routing.es │ │ └── partial │ │ │ ├── groupinfo.modal.html │ │ │ ├── index.html │ │ │ └── masterinfo.modal.html │ └── views.py │ ├── lmn_vdi_dashboard │ ├── README.md │ ├── __init__.py │ ├── locale │ │ ├── af │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── app.pot │ │ ├── ar │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── ca │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── cs │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── da │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── de │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── el │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── en │ │ │ └── LC_MESSAGES │ │ │ │ └── app.po │ │ ├── es-ES │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── fi │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── fr │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── he │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── hu │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── it │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── ja │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── ko │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── nl │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── no │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── pl │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── pt-BR │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── pt-PT │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── ro │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── ru │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── sr │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── sv-SE │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── tr │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── uk │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── vi │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── zh-CN │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ └── zh-TW │ │ │ └── LC_MESSAGES │ │ │ ├── app.js │ │ │ └── app.po │ ├── main.py │ ├── plugin.yml │ ├── requirements.txt │ ├── resources │ │ ├── build │ │ │ ├── all.css │ │ │ ├── all.js │ │ │ ├── all.vendor.css │ │ │ └── all.vendor.js │ │ ├── js │ │ │ ├── controllers │ │ │ │ └── index.controller.es │ │ │ ├── module.es │ │ │ └── routing.es │ │ ├── partial │ │ │ └── index.html │ │ ├── styles.less.deprecated │ │ └── styles.scss │ └── views.py │ ├── lmn_w_datetime │ ├── README.md │ ├── __init__.py │ ├── locale │ │ ├── af │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── app.pot │ │ ├── ar │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── ca │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── cs │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── da │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── de │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── el │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── en │ │ │ └── LC_MESSAGES │ │ │ │ └── app.po │ │ ├── es-ES │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── fi │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── fr │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── he │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── hu │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── it │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── ja │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── ko │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── nl │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── no │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── pl │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── pt-BR │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── pt-PT │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── ro │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── ru │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── sr │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── sv-SE │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── tr │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── uk │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── vi │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── zh-CN │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ └── zh-TW │ │ │ └── LC_MESSAGES │ │ │ ├── app.js │ │ │ └── app.po │ ├── plugin.yml │ ├── resources │ │ ├── build │ │ │ ├── all.css │ │ │ ├── all.js │ │ │ ├── all.vendor.css │ │ │ └── all.vendor.js │ │ ├── js │ │ │ ├── controllers │ │ │ │ └── widget.controller.coffee │ │ │ └── module.coffee │ │ └── partial │ │ │ ├── widget.config.html │ │ │ ├── widget.config.html.save │ │ │ ├── widget.config.html.save.1 │ │ │ └── widget.html │ └── widget.py │ ├── lmn_websession │ ├── README.md │ ├── __init__.py │ ├── api.py │ ├── locale │ │ ├── af │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── app.pot │ │ ├── ar │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── ca │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── cs │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── da │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── de │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── el │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── en │ │ │ └── LC_MESSAGES │ │ │ │ └── app.po │ │ ├── es-ES │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── fi │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── fr │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── he │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── hu │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── it │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── ja │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── ko │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── nl │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── no │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── pl │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── pt-BR │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── pt-PT │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── ro │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── ru │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── sr │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── sv-SE │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── tr │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── uk │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── vi │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ ├── zh-CN │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.js │ │ │ │ └── app.po │ │ └── zh-TW │ │ │ └── LC_MESSAGES │ │ │ ├── app.js │ │ │ └── app.po │ ├── main.py │ ├── permissions.yml │ ├── plugin.yml │ ├── resources │ │ ├── build │ │ │ ├── all.css │ │ │ ├── all.js │ │ │ ├── all.vendor.css │ │ │ └── all.vendor.js │ │ ├── js │ │ │ ├── controllers │ │ │ │ └── index.controller.coffee │ │ │ ├── module.coffee │ │ │ └── services │ │ │ │ └── websessionService.es │ │ ├── partial │ │ │ ├── createSession.modal.html │ │ │ ├── index.html │ │ │ └── public.html │ │ ├── styles.less.deprecated │ │ └── styles.scss │ └── views.py │ └── lmn_wireguard │ ├── .gitignore │ ├── README.md │ ├── __init__.py │ ├── locale │ ├── af │ │ └── LC_MESSAGES │ │ │ ├── app.js │ │ │ └── app.po │ ├── ar │ │ └── LC_MESSAGES │ │ │ ├── app.js │ │ │ └── app.po │ ├── ca │ │ └── LC_MESSAGES │ │ │ ├── app.js │ │ │ └── app.po │ ├── cs │ │ └── LC_MESSAGES │ │ │ ├── app.js │ │ │ └── app.po │ ├── da │ │ └── LC_MESSAGES │ │ │ ├── app.js │ │ │ └── app.po │ ├── de │ │ └── LC_MESSAGES │ │ │ ├── app.js │ │ │ └── app.po │ ├── el │ │ └── LC_MESSAGES │ │ │ ├── app.js │ │ │ └── app.po │ ├── en │ │ └── LC_MESSAGES │ │ │ └── app.po │ ├── es-ES │ │ └── LC_MESSAGES │ │ │ ├── app.js │ │ │ └── app.po │ ├── fi │ │ └── LC_MESSAGES │ │ │ ├── app.js │ │ │ └── app.po │ ├── fr │ │ └── LC_MESSAGES │ │ │ ├── app.js │ │ │ └── app.po │ ├── he │ │ └── LC_MESSAGES │ │ │ ├── app.js │ │ │ └── app.po │ ├── hu │ │ └── LC_MESSAGES │ │ │ ├── app.js │ │ │ └── app.po │ ├── it │ │ └── LC_MESSAGES │ │ │ ├── app.js │ │ │ └── app.po │ ├── ja │ │ └── LC_MESSAGES │ │ │ ├── app.js │ │ │ └── app.po │ ├── ko │ │ └── LC_MESSAGES │ │ │ ├── app.js │ │ │ └── app.po │ ├── nl │ │ └── LC_MESSAGES │ │ │ ├── app.js │ │ │ └── app.po │ ├── no │ │ └── LC_MESSAGES │ │ │ ├── app.js │ │ │ └── app.po │ ├── pl │ │ └── LC_MESSAGES │ │ │ ├── app.js │ │ │ └── app.po │ ├── pt-BR │ │ └── LC_MESSAGES │ │ │ ├── app.js │ │ │ └── app.po │ ├── pt-PT │ │ └── LC_MESSAGES │ │ │ ├── app.js │ │ │ └── app.po │ ├── ro │ │ └── LC_MESSAGES │ │ │ ├── app.js │ │ │ └── app.po │ ├── ru │ │ └── LC_MESSAGES │ │ │ ├── app.js │ │ │ └── app.po │ ├── sr │ │ └── LC_MESSAGES │ │ │ ├── app.js │ │ │ └── app.po │ ├── sv-SE │ │ └── LC_MESSAGES │ │ │ ├── app.js │ │ │ └── app.po │ ├── tr │ │ └── LC_MESSAGES │ │ │ ├── app.js │ │ │ └── app.po │ ├── uk │ │ └── LC_MESSAGES │ │ │ ├── app.js │ │ │ └── app.po │ ├── vi │ │ └── LC_MESSAGES │ │ │ ├── app.js │ │ │ └── app.po │ ├── zh-CN │ │ └── LC_MESSAGES │ │ │ ├── app.js │ │ │ └── app.po │ └── zh-TW │ │ └── LC_MESSAGES │ │ ├── app.js │ │ └── app.po │ ├── main.py │ ├── permissions.yml │ ├── plugin.yml │ ├── requirements.txt │ ├── resources │ ├── build │ │ ├── all.css │ │ ├── all.js │ │ ├── all.vendor.css │ │ └── all.vendor.js │ ├── js │ │ ├── controllers │ │ │ └── index.controller.es │ │ ├── module.es │ │ └── routing.es │ └── partial │ │ ├── import.modal.html │ │ └── index.html │ └── views.py ├── linuxmuster └── setup.d │ └── w_webui.py └── node_modules └── ng-flow ├── .npmignore ├── CHANGELOG.md ├── Gruntfile.js ├── LICENSE ├── README.md ├── bower.json ├── dist ├── ng-flow-standalone.js ├── ng-flow-standalone.min.js ├── ng-flow.js └── ng-flow.min.js ├── karma.conf.js ├── package.json ├── samples ├── basic │ ├── app.js │ ├── index.html │ └── upload.php ├── dataurl │ ├── app.js │ ├── flow.png │ └── index.html └── image │ ├── app.js │ ├── index.html │ └── upload.php ├── src ├── angular-flow.js ├── directives │ ├── btn.js │ ├── drag-events.js │ ├── drop.js │ ├── events.js │ ├── img.js │ ├── init.js │ └── transfers.js └── provider.js └── test ├── events.spec.js └── init.spec.js /.deepsource.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/.deepsource.toml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/README.md -------------------------------------------------------------------------------- /changelog7.2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/changelog7.2.txt -------------------------------------------------------------------------------- /debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/debian/changelog -------------------------------------------------------------------------------- /debian/compat: -------------------------------------------------------------------------------- 1 | 13 2 | 3 | -------------------------------------------------------------------------------- /debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/debian/control -------------------------------------------------------------------------------- /debian/postinst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/debian/postinst -------------------------------------------------------------------------------- /debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/debian/rules -------------------------------------------------------------------------------- /docs/.buildinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs/.buildinfo -------------------------------------------------------------------------------- /docs/.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/_images/login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs/_images/login.png -------------------------------------------------------------------------------- /docs/_modules/aj/plugins/lmn_auth/api.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs/_modules/aj/plugins/lmn_auth/api.html -------------------------------------------------------------------------------- /docs/_modules/aj/plugins/lmn_auth/views.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs/_modules/aj/plugins/lmn_auth/views.html -------------------------------------------------------------------------------- /docs/_modules/aj/plugins/lmn_common/api.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs/_modules/aj/plugins/lmn_common/api.html -------------------------------------------------------------------------------- /docs/_modules/aj/plugins/lmn_common/lmnfile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs/_modules/aj/plugins/lmn_common/lmnfile.html -------------------------------------------------------------------------------- /docs/_modules/aj/plugins/lmn_common/views.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs/_modules/aj/plugins/lmn_common/views.html -------------------------------------------------------------------------------- /docs/_modules/aj/plugins/lmn_cron/manager.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs/_modules/aj/plugins/lmn_cron/manager.html -------------------------------------------------------------------------------- /docs/_modules/aj/plugins/lmn_cron/views.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs/_modules/aj/plugins/lmn_cron/views.html -------------------------------------------------------------------------------- /docs/_modules/aj/plugins/lmn_crontab/manager.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs/_modules/aj/plugins/lmn_crontab/manager.html -------------------------------------------------------------------------------- /docs/_modules/aj/plugins/lmn_crontab/views.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs/_modules/aj/plugins/lmn_crontab/views.html -------------------------------------------------------------------------------- /docs/_modules/aj/plugins/lmn_devices/views.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs/_modules/aj/plugins/lmn_devices/views.html -------------------------------------------------------------------------------- /docs/_modules/aj/plugins/lmn_dhcp/views.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs/_modules/aj/plugins/lmn_dhcp/views.html -------------------------------------------------------------------------------- /docs/_modules/aj/plugins/lmn_docker/views.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs/_modules/aj/plugins/lmn_docker/views.html -------------------------------------------------------------------------------- /docs/_modules/aj/plugins/lmn_groupmembership/views.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs/_modules/aj/plugins/lmn_groupmembership/views.html -------------------------------------------------------------------------------- /docs/_modules/aj/plugins/lmn_landingpage/views.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs/_modules/aj/plugins/lmn_landingpage/views.html -------------------------------------------------------------------------------- /docs/_modules/aj/plugins/lmn_linbo/views.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs/_modules/aj/plugins/lmn_linbo/views.html -------------------------------------------------------------------------------- /docs/_modules/aj/plugins/lmn_linbo4/images.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs/_modules/aj/plugins/lmn_linbo4/images.html -------------------------------------------------------------------------------- /docs/_modules/aj/plugins/lmn_linbo4/views.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs/_modules/aj/plugins/lmn_linbo4/views.html -------------------------------------------------------------------------------- /docs/_modules/aj/plugins/lmn_linbo_sync/api.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs/_modules/aj/plugins/lmn_linbo_sync/api.html -------------------------------------------------------------------------------- /docs/_modules/aj/plugins/lmn_linbo_sync/views.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs/_modules/aj/plugins/lmn_linbo_sync/views.html -------------------------------------------------------------------------------- /docs/_modules/aj/plugins/lmn_quotas/views.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs/_modules/aj/plugins/lmn_quotas/views.html -------------------------------------------------------------------------------- /docs/_modules/aj/plugins/lmn_session/views.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs/_modules/aj/plugins/lmn_session/views.html -------------------------------------------------------------------------------- /docs/_modules/aj/plugins/lmn_settings/views.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs/_modules/aj/plugins/lmn_settings/views.html -------------------------------------------------------------------------------- /docs/_modules/aj/plugins/lmn_setup_wizard/views.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs/_modules/aj/plugins/lmn_setup_wizard/views.html -------------------------------------------------------------------------------- /docs/_modules/aj/plugins/lmn_users/views.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs/_modules/aj/plugins/lmn_users/views.html -------------------------------------------------------------------------------- /docs/_modules/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs/_modules/index.html -------------------------------------------------------------------------------- /docs/_sources/index.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs/_sources/index.rst.txt -------------------------------------------------------------------------------- /docs/_sources/plugins/lmn_auth.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs/_sources/plugins/lmn_auth.rst.txt -------------------------------------------------------------------------------- /docs/_sources/python/lmn_auth.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs/_sources/python/lmn_auth.rst.txt -------------------------------------------------------------------------------- /docs/_sources/python/lmn_common.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs/_sources/python/lmn_common.rst.txt -------------------------------------------------------------------------------- /docs/_sources/python/lmn_cron.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs/_sources/python/lmn_cron.rst.txt -------------------------------------------------------------------------------- /docs/_sources/python/lmn_crontab.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs/_sources/python/lmn_crontab.rst.txt -------------------------------------------------------------------------------- /docs/_sources/python/lmn_devices.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs/_sources/python/lmn_devices.rst.txt -------------------------------------------------------------------------------- /docs/_sources/python/lmn_dhcp.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs/_sources/python/lmn_dhcp.rst.txt -------------------------------------------------------------------------------- /docs/_sources/python/lmn_docker.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs/_sources/python/lmn_docker.rst.txt -------------------------------------------------------------------------------- /docs/_sources/python/lmn_groupmembership.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs/_sources/python/lmn_groupmembership.rst.txt -------------------------------------------------------------------------------- /docs/_sources/python/lmn_landingpage.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs/_sources/python/lmn_landingpage.rst.txt -------------------------------------------------------------------------------- /docs/_sources/python/lmn_linbo4.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs/_sources/python/lmn_linbo4.rst.txt -------------------------------------------------------------------------------- /docs/_sources/python/lmn_linbo_sync.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs/_sources/python/lmn_linbo_sync.rst.txt -------------------------------------------------------------------------------- /docs/_sources/python/lmn_quotas.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs/_sources/python/lmn_quotas.rst.txt -------------------------------------------------------------------------------- /docs/_sources/python/lmn_session.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs/_sources/python/lmn_session.rst.txt -------------------------------------------------------------------------------- /docs/_sources/python/lmn_settings.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs/_sources/python/lmn_settings.rst.txt -------------------------------------------------------------------------------- /docs/_sources/python/lmn_setup_wizard.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs/_sources/python/lmn_setup_wizard.rst.txt -------------------------------------------------------------------------------- /docs/_sources/python/lmn_users.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs/_sources/python/lmn_users.rst.txt -------------------------------------------------------------------------------- /docs/_static/basic.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs/_static/basic.css -------------------------------------------------------------------------------- /docs/_static/css/badge_only.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs/_static/css/badge_only.css -------------------------------------------------------------------------------- /docs/_static/css/fonts/Roboto-Slab-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs/_static/css/fonts/Roboto-Slab-Bold.woff -------------------------------------------------------------------------------- /docs/_static/css/fonts/Roboto-Slab-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs/_static/css/fonts/Roboto-Slab-Bold.woff2 -------------------------------------------------------------------------------- /docs/_static/css/fonts/Roboto-Slab-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs/_static/css/fonts/Roboto-Slab-Regular.woff -------------------------------------------------------------------------------- /docs/_static/css/fonts/Roboto-Slab-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs/_static/css/fonts/Roboto-Slab-Regular.woff2 -------------------------------------------------------------------------------- /docs/_static/css/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs/_static/css/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /docs/_static/css/fonts/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs/_static/css/fonts/fontawesome-webfont.svg -------------------------------------------------------------------------------- /docs/_static/css/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs/_static/css/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /docs/_static/css/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs/_static/css/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /docs/_static/css/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs/_static/css/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /docs/_static/css/fonts/lato-bold-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs/_static/css/fonts/lato-bold-italic.woff -------------------------------------------------------------------------------- /docs/_static/css/fonts/lato-bold-italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs/_static/css/fonts/lato-bold-italic.woff2 -------------------------------------------------------------------------------- /docs/_static/css/fonts/lato-bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs/_static/css/fonts/lato-bold.woff -------------------------------------------------------------------------------- /docs/_static/css/fonts/lato-bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs/_static/css/fonts/lato-bold.woff2 -------------------------------------------------------------------------------- /docs/_static/css/fonts/lato-normal-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs/_static/css/fonts/lato-normal-italic.woff -------------------------------------------------------------------------------- /docs/_static/css/fonts/lato-normal-italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs/_static/css/fonts/lato-normal-italic.woff2 -------------------------------------------------------------------------------- /docs/_static/css/fonts/lato-normal.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs/_static/css/fonts/lato-normal.woff -------------------------------------------------------------------------------- /docs/_static/css/fonts/lato-normal.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs/_static/css/fonts/lato-normal.woff2 -------------------------------------------------------------------------------- /docs/_static/css/theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs/_static/css/theme.css -------------------------------------------------------------------------------- /docs/_static/doctools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs/_static/doctools.js -------------------------------------------------------------------------------- /docs/_static/documentation_options.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs/_static/documentation_options.js -------------------------------------------------------------------------------- /docs/_static/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs/_static/file.png -------------------------------------------------------------------------------- /docs/_static/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs/_static/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /docs/_static/fonts/Inconsolata-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs/_static/fonts/Inconsolata-Bold.ttf -------------------------------------------------------------------------------- /docs/_static/fonts/Inconsolata-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs/_static/fonts/Inconsolata-Regular.ttf -------------------------------------------------------------------------------- /docs/_static/fonts/Inconsolata.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs/_static/fonts/Inconsolata.ttf -------------------------------------------------------------------------------- /docs/_static/fonts/Lato-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs/_static/fonts/Lato-Bold.ttf -------------------------------------------------------------------------------- /docs/_static/fonts/Lato-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs/_static/fonts/Lato-Regular.ttf -------------------------------------------------------------------------------- /docs/_static/fonts/Lato/lato-bold.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs/_static/fonts/Lato/lato-bold.eot -------------------------------------------------------------------------------- /docs/_static/fonts/Lato/lato-bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs/_static/fonts/Lato/lato-bold.ttf -------------------------------------------------------------------------------- /docs/_static/fonts/Lato/lato-bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs/_static/fonts/Lato/lato-bold.woff -------------------------------------------------------------------------------- /docs/_static/fonts/Lato/lato-bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs/_static/fonts/Lato/lato-bold.woff2 -------------------------------------------------------------------------------- /docs/_static/fonts/Lato/lato-bolditalic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs/_static/fonts/Lato/lato-bolditalic.eot -------------------------------------------------------------------------------- /docs/_static/fonts/Lato/lato-bolditalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs/_static/fonts/Lato/lato-bolditalic.ttf -------------------------------------------------------------------------------- /docs/_static/fonts/Lato/lato-bolditalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs/_static/fonts/Lato/lato-bolditalic.woff -------------------------------------------------------------------------------- /docs/_static/fonts/Lato/lato-bolditalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs/_static/fonts/Lato/lato-bolditalic.woff2 -------------------------------------------------------------------------------- /docs/_static/fonts/Lato/lato-italic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs/_static/fonts/Lato/lato-italic.eot -------------------------------------------------------------------------------- /docs/_static/fonts/Lato/lato-italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs/_static/fonts/Lato/lato-italic.ttf -------------------------------------------------------------------------------- /docs/_static/fonts/Lato/lato-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs/_static/fonts/Lato/lato-italic.woff -------------------------------------------------------------------------------- /docs/_static/fonts/Lato/lato-italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs/_static/fonts/Lato/lato-italic.woff2 -------------------------------------------------------------------------------- /docs/_static/fonts/Lato/lato-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs/_static/fonts/Lato/lato-regular.eot -------------------------------------------------------------------------------- /docs/_static/fonts/Lato/lato-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs/_static/fonts/Lato/lato-regular.ttf -------------------------------------------------------------------------------- /docs/_static/fonts/Lato/lato-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs/_static/fonts/Lato/lato-regular.woff -------------------------------------------------------------------------------- /docs/_static/fonts/Lato/lato-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs/_static/fonts/Lato/lato-regular.woff2 -------------------------------------------------------------------------------- /docs/_static/fonts/Roboto-Slab-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs/_static/fonts/Roboto-Slab-Bold.woff -------------------------------------------------------------------------------- /docs/_static/fonts/Roboto-Slab-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs/_static/fonts/Roboto-Slab-Bold.woff2 -------------------------------------------------------------------------------- /docs/_static/fonts/Roboto-Slab-Light.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs/_static/fonts/Roboto-Slab-Light.woff -------------------------------------------------------------------------------- /docs/_static/fonts/Roboto-Slab-Light.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs/_static/fonts/Roboto-Slab-Light.woff2 -------------------------------------------------------------------------------- /docs/_static/fonts/Roboto-Slab-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs/_static/fonts/Roboto-Slab-Regular.woff -------------------------------------------------------------------------------- /docs/_static/fonts/Roboto-Slab-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs/_static/fonts/Roboto-Slab-Regular.woff2 -------------------------------------------------------------------------------- /docs/_static/fonts/Roboto-Slab-Thin.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs/_static/fonts/Roboto-Slab-Thin.woff -------------------------------------------------------------------------------- /docs/_static/fonts/Roboto-Slab-Thin.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs/_static/fonts/Roboto-Slab-Thin.woff2 -------------------------------------------------------------------------------- /docs/_static/fonts/RobotoSlab-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs/_static/fonts/RobotoSlab-Bold.ttf -------------------------------------------------------------------------------- /docs/_static/fonts/RobotoSlab-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs/_static/fonts/RobotoSlab-Regular.ttf -------------------------------------------------------------------------------- /docs/_static/fonts/RobotoSlab/roboto-slab-v7-bold.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs/_static/fonts/RobotoSlab/roboto-slab-v7-bold.eot -------------------------------------------------------------------------------- /docs/_static/fonts/RobotoSlab/roboto-slab-v7-bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs/_static/fonts/RobotoSlab/roboto-slab-v7-bold.ttf -------------------------------------------------------------------------------- /docs/_static/fonts/RobotoSlab/roboto-slab-v7-bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs/_static/fonts/RobotoSlab/roboto-slab-v7-bold.woff -------------------------------------------------------------------------------- /docs/_static/fonts/RobotoSlab/roboto-slab-v7-bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs/_static/fonts/RobotoSlab/roboto-slab-v7-bold.woff2 -------------------------------------------------------------------------------- /docs/_static/fonts/RobotoSlab/roboto-slab-v7-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs/_static/fonts/RobotoSlab/roboto-slab-v7-regular.eot -------------------------------------------------------------------------------- /docs/_static/fonts/RobotoSlab/roboto-slab-v7-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs/_static/fonts/RobotoSlab/roboto-slab-v7-regular.ttf -------------------------------------------------------------------------------- /docs/_static/fonts/RobotoSlab/roboto-slab-v7-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs/_static/fonts/RobotoSlab/roboto-slab-v7-regular.woff -------------------------------------------------------------------------------- /docs/_static/fonts/RobotoSlab/roboto-slab-v7-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs/_static/fonts/RobotoSlab/roboto-slab-v7-regular.woff2 -------------------------------------------------------------------------------- /docs/_static/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs/_static/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /docs/_static/fonts/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs/_static/fonts/fontawesome-webfont.svg -------------------------------------------------------------------------------- /docs/_static/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs/_static/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /docs/_static/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs/_static/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /docs/_static/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs/_static/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /docs/_static/fonts/lato-bold-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs/_static/fonts/lato-bold-italic.woff -------------------------------------------------------------------------------- /docs/_static/fonts/lato-bold-italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs/_static/fonts/lato-bold-italic.woff2 -------------------------------------------------------------------------------- /docs/_static/fonts/lato-bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs/_static/fonts/lato-bold.woff -------------------------------------------------------------------------------- /docs/_static/fonts/lato-bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs/_static/fonts/lato-bold.woff2 -------------------------------------------------------------------------------- /docs/_static/fonts/lato-normal-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs/_static/fonts/lato-normal-italic.woff -------------------------------------------------------------------------------- /docs/_static/fonts/lato-normal-italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs/_static/fonts/lato-normal-italic.woff2 -------------------------------------------------------------------------------- /docs/_static/fonts/lato-normal.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs/_static/fonts/lato-normal.woff -------------------------------------------------------------------------------- /docs/_static/fonts/lato-normal.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs/_static/fonts/lato-normal.woff2 -------------------------------------------------------------------------------- /docs/_static/jquery-3.5.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs/_static/jquery-3.5.1.js -------------------------------------------------------------------------------- /docs/_static/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs/_static/jquery.js -------------------------------------------------------------------------------- /docs/_static/js/badge_only.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs/_static/js/badge_only.js -------------------------------------------------------------------------------- /docs/_static/js/html5shiv-printshiv.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs/_static/js/html5shiv-printshiv.min.js -------------------------------------------------------------------------------- /docs/_static/js/html5shiv.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs/_static/js/html5shiv.min.js -------------------------------------------------------------------------------- /docs/_static/js/modernizr.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs/_static/js/modernizr.min.js -------------------------------------------------------------------------------- /docs/_static/js/theme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs/_static/js/theme.js -------------------------------------------------------------------------------- /docs/_static/language_data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs/_static/language_data.js -------------------------------------------------------------------------------- /docs/_static/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs/_static/logo.png -------------------------------------------------------------------------------- /docs/_static/minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs/_static/minus.png -------------------------------------------------------------------------------- /docs/_static/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs/_static/plus.png -------------------------------------------------------------------------------- /docs/_static/pygments.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs/_static/pygments.css -------------------------------------------------------------------------------- /docs/_static/screenshots/Subnet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs/_static/screenshots/Subnet.png -------------------------------------------------------------------------------- /docs/_static/screenshots/cron1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs/_static/screenshots/cron1.png -------------------------------------------------------------------------------- /docs/_static/screenshots/cron2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs/_static/screenshots/cron2.png -------------------------------------------------------------------------------- /docs/_static/screenshots/cron3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs/_static/screenshots/cron3.png -------------------------------------------------------------------------------- /docs/_static/screenshots/custom_fields1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs/_static/screenshots/custom_fields1.png -------------------------------------------------------------------------------- /docs/_static/screenshots/custom_fields2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs/_static/screenshots/custom_fields2.png -------------------------------------------------------------------------------- /docs/_static/screenshots/custom_fields3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs/_static/screenshots/custom_fields3.png -------------------------------------------------------------------------------- /docs/_static/screenshots/dhcp1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs/_static/screenshots/dhcp1.png -------------------------------------------------------------------------------- /docs/_static/screenshots/dhcp2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs/_static/screenshots/dhcp2.png -------------------------------------------------------------------------------- /docs/_static/screenshots/docker1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs/_static/screenshots/docker1.png -------------------------------------------------------------------------------- /docs/_static/screenshots/docker2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs/_static/screenshots/docker2.png -------------------------------------------------------------------------------- /docs/_static/screenshots/linbo4-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs/_static/screenshots/linbo4-1.png -------------------------------------------------------------------------------- /docs/_static/screenshots/linbo4-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs/_static/screenshots/linbo4-2.png -------------------------------------------------------------------------------- /docs/_static/screenshots/linbo4-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs/_static/screenshots/linbo4-3.png -------------------------------------------------------------------------------- /docs/_static/screenshots/linbo4-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs/_static/screenshots/linbo4-4.png -------------------------------------------------------------------------------- /docs/_static/screenshots/linbo_used1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs/_static/screenshots/linbo_used1.png -------------------------------------------------------------------------------- /docs/_static/screenshots/linbo_used2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs/_static/screenshots/linbo_used2.png -------------------------------------------------------------------------------- /docs/_static/screenshots/login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs/_static/screenshots/login.png -------------------------------------------------------------------------------- /docs/_static/screenshots/remote1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs/_static/screenshots/remote1.png -------------------------------------------------------------------------------- /docs/_static/screenshots/remote2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs/_static/screenshots/remote2.png -------------------------------------------------------------------------------- /docs/_static/screenshots/samba_dns1.png.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs/_static/screenshots/samba_dns1.png.png -------------------------------------------------------------------------------- /docs/_static/screenshots/samba_dns2.png.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs/_static/screenshots/samba_dns2.png.png -------------------------------------------------------------------------------- /docs/_static/screenshots/templates1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs/_static/screenshots/templates1.png -------------------------------------------------------------------------------- /docs/_static/screenshots/templates2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs/_static/screenshots/templates2.png -------------------------------------------------------------------------------- /docs/_static/screenshots/templates3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs/_static/screenshots/templates3.png -------------------------------------------------------------------------------- /docs/_static/screenshots/templates4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs/_static/screenshots/templates4.png -------------------------------------------------------------------------------- /docs/_static/searchtools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs/_static/searchtools.js -------------------------------------------------------------------------------- /docs/_static/theme_overrides.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs/_static/theme_overrides.css -------------------------------------------------------------------------------- /docs/_static/translations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs/_static/translations.js -------------------------------------------------------------------------------- /docs/_static/underscore-1.13.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs/_static/underscore-1.13.1.js -------------------------------------------------------------------------------- /docs/_static/underscore-1.3.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs/_static/underscore-1.3.1.js -------------------------------------------------------------------------------- /docs/_static/underscore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs/_static/underscore.js -------------------------------------------------------------------------------- /docs/_static/webui-class.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs/_static/webui-class.png -------------------------------------------------------------------------------- /docs/_static/webui-linbo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs/_static/webui-linbo.png -------------------------------------------------------------------------------- /docs/_static/webui-login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs/_static/webui-login.png -------------------------------------------------------------------------------- /docs/_static/webui-user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs/_static/webui-user.png -------------------------------------------------------------------------------- /docs/doctrees/environment.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs/doctrees/environment.pickle -------------------------------------------------------------------------------- /docs/doctrees/index.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs/doctrees/index.doctree -------------------------------------------------------------------------------- /docs/doctrees/plugins/lmn_auth.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs/doctrees/plugins/lmn_auth.doctree -------------------------------------------------------------------------------- /docs/doctrees/python/lmn_auth.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs/doctrees/python/lmn_auth.doctree -------------------------------------------------------------------------------- /docs/doctrees/python/lmn_common.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs/doctrees/python/lmn_common.doctree -------------------------------------------------------------------------------- /docs/doctrees/python/lmn_cron.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs/doctrees/python/lmn_cron.doctree -------------------------------------------------------------------------------- /docs/doctrees/python/lmn_crontab.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs/doctrees/python/lmn_crontab.doctree -------------------------------------------------------------------------------- /docs/doctrees/python/lmn_devices.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs/doctrees/python/lmn_devices.doctree -------------------------------------------------------------------------------- /docs/doctrees/python/lmn_dhcp.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs/doctrees/python/lmn_dhcp.doctree -------------------------------------------------------------------------------- /docs/doctrees/python/lmn_docker.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs/doctrees/python/lmn_docker.doctree -------------------------------------------------------------------------------- /docs/doctrees/python/lmn_groupmembership.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs/doctrees/python/lmn_groupmembership.doctree -------------------------------------------------------------------------------- /docs/doctrees/python/lmn_landingpage.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs/doctrees/python/lmn_landingpage.doctree -------------------------------------------------------------------------------- /docs/doctrees/python/lmn_linbo.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs/doctrees/python/lmn_linbo.doctree -------------------------------------------------------------------------------- /docs/doctrees/python/lmn_linbo4.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs/doctrees/python/lmn_linbo4.doctree -------------------------------------------------------------------------------- /docs/doctrees/python/lmn_linbo_sync.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs/doctrees/python/lmn_linbo_sync.doctree -------------------------------------------------------------------------------- /docs/doctrees/python/lmn_quotas.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs/doctrees/python/lmn_quotas.doctree -------------------------------------------------------------------------------- /docs/doctrees/python/lmn_session.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs/doctrees/python/lmn_session.doctree -------------------------------------------------------------------------------- /docs/doctrees/python/lmn_settings.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs/doctrees/python/lmn_settings.doctree -------------------------------------------------------------------------------- /docs/doctrees/python/lmn_setup_wizard.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs/doctrees/python/lmn_setup_wizard.doctree -------------------------------------------------------------------------------- /docs/doctrees/python/lmn_users.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs/doctrees/python/lmn_users.doctree -------------------------------------------------------------------------------- /docs/genindex.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs/genindex.html -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/objects.inv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs/objects.inv -------------------------------------------------------------------------------- /docs/plugins/lmn_auth.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs/plugins/lmn_auth.html -------------------------------------------------------------------------------- /docs/py-modindex.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs/py-modindex.html -------------------------------------------------------------------------------- /docs/python/lmn_auth.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs/python/lmn_auth.html -------------------------------------------------------------------------------- /docs/python/lmn_common.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs/python/lmn_common.html -------------------------------------------------------------------------------- /docs/python/lmn_cron.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs/python/lmn_cron.html -------------------------------------------------------------------------------- /docs/python/lmn_crontab.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs/python/lmn_crontab.html -------------------------------------------------------------------------------- /docs/python/lmn_devices.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs/python/lmn_devices.html -------------------------------------------------------------------------------- /docs/python/lmn_dhcp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs/python/lmn_dhcp.html -------------------------------------------------------------------------------- /docs/python/lmn_docker.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs/python/lmn_docker.html -------------------------------------------------------------------------------- /docs/python/lmn_groupmembership.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs/python/lmn_groupmembership.html -------------------------------------------------------------------------------- /docs/python/lmn_landingpage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs/python/lmn_landingpage.html -------------------------------------------------------------------------------- /docs/python/lmn_linbo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs/python/lmn_linbo.html -------------------------------------------------------------------------------- /docs/python/lmn_linbo4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs/python/lmn_linbo4.html -------------------------------------------------------------------------------- /docs/python/lmn_linbo_sync.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs/python/lmn_linbo_sync.html -------------------------------------------------------------------------------- /docs/python/lmn_quotas.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs/python/lmn_quotas.html -------------------------------------------------------------------------------- /docs/python/lmn_session.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs/python/lmn_session.html -------------------------------------------------------------------------------- /docs/python/lmn_settings.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs/python/lmn_settings.html -------------------------------------------------------------------------------- /docs/python/lmn_setup_wizard.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs/python/lmn_setup_wizard.html -------------------------------------------------------------------------------- /docs/python/lmn_users.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs/python/lmn_users.html -------------------------------------------------------------------------------- /docs/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs/search.html -------------------------------------------------------------------------------- /docs/searchindex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs/searchindex.js -------------------------------------------------------------------------------- /docs_src/_static/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs_src/_static/logo.png -------------------------------------------------------------------------------- /docs_src/_static/screenshots/Subnet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs_src/_static/screenshots/Subnet.png -------------------------------------------------------------------------------- /docs_src/_static/screenshots/cron1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs_src/_static/screenshots/cron1.png -------------------------------------------------------------------------------- /docs_src/_static/screenshots/cron2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs_src/_static/screenshots/cron2.png -------------------------------------------------------------------------------- /docs_src/_static/screenshots/cron3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs_src/_static/screenshots/cron3.png -------------------------------------------------------------------------------- /docs_src/_static/screenshots/custom_fields1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs_src/_static/screenshots/custom_fields1.png -------------------------------------------------------------------------------- /docs_src/_static/screenshots/custom_fields2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs_src/_static/screenshots/custom_fields2.png -------------------------------------------------------------------------------- /docs_src/_static/screenshots/custom_fields3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs_src/_static/screenshots/custom_fields3.png -------------------------------------------------------------------------------- /docs_src/_static/screenshots/dhcp1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs_src/_static/screenshots/dhcp1.png -------------------------------------------------------------------------------- /docs_src/_static/screenshots/dhcp2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs_src/_static/screenshots/dhcp2.png -------------------------------------------------------------------------------- /docs_src/_static/screenshots/docker1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs_src/_static/screenshots/docker1.png -------------------------------------------------------------------------------- /docs_src/_static/screenshots/docker2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs_src/_static/screenshots/docker2.png -------------------------------------------------------------------------------- /docs_src/_static/screenshots/linbo4-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs_src/_static/screenshots/linbo4-1.png -------------------------------------------------------------------------------- /docs_src/_static/screenshots/linbo4-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs_src/_static/screenshots/linbo4-2.png -------------------------------------------------------------------------------- /docs_src/_static/screenshots/linbo4-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs_src/_static/screenshots/linbo4-3.png -------------------------------------------------------------------------------- /docs_src/_static/screenshots/linbo4-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs_src/_static/screenshots/linbo4-4.png -------------------------------------------------------------------------------- /docs_src/_static/screenshots/linbo_used1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs_src/_static/screenshots/linbo_used1.png -------------------------------------------------------------------------------- /docs_src/_static/screenshots/linbo_used2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs_src/_static/screenshots/linbo_used2.png -------------------------------------------------------------------------------- /docs_src/_static/screenshots/login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs_src/_static/screenshots/login.png -------------------------------------------------------------------------------- /docs_src/_static/screenshots/remote1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs_src/_static/screenshots/remote1.png -------------------------------------------------------------------------------- /docs_src/_static/screenshots/remote2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs_src/_static/screenshots/remote2.png -------------------------------------------------------------------------------- /docs_src/_static/screenshots/samba_dns1.png.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs_src/_static/screenshots/samba_dns1.png.png -------------------------------------------------------------------------------- /docs_src/_static/screenshots/samba_dns2.png.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs_src/_static/screenshots/samba_dns2.png.png -------------------------------------------------------------------------------- /docs_src/_static/screenshots/templates1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs_src/_static/screenshots/templates1.png -------------------------------------------------------------------------------- /docs_src/_static/screenshots/templates2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs_src/_static/screenshots/templates2.png -------------------------------------------------------------------------------- /docs_src/_static/screenshots/templates3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs_src/_static/screenshots/templates3.png -------------------------------------------------------------------------------- /docs_src/_static/screenshots/templates4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs_src/_static/screenshots/templates4.png -------------------------------------------------------------------------------- /docs_src/_static/theme_overrides.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs_src/_static/theme_overrides.css -------------------------------------------------------------------------------- /docs_src/_static/webui-class.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs_src/_static/webui-class.png -------------------------------------------------------------------------------- /docs_src/_static/webui-linbo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs_src/_static/webui-linbo.png -------------------------------------------------------------------------------- /docs_src/_static/webui-login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs_src/_static/webui-login.png -------------------------------------------------------------------------------- /docs_src/_static/webui-user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs_src/_static/webui-user.png -------------------------------------------------------------------------------- /docs_src/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs_src/conf.py -------------------------------------------------------------------------------- /docs_src/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs_src/index.rst -------------------------------------------------------------------------------- /docs_src/plugins/lmn_auth.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs_src/plugins/lmn_auth.rst -------------------------------------------------------------------------------- /docs_src/python/lmn_auth.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs_src/python/lmn_auth.rst -------------------------------------------------------------------------------- /docs_src/python/lmn_common.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs_src/python/lmn_common.rst -------------------------------------------------------------------------------- /docs_src/python/lmn_crontab.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs_src/python/lmn_crontab.rst -------------------------------------------------------------------------------- /docs_src/python/lmn_devices.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs_src/python/lmn_devices.rst -------------------------------------------------------------------------------- /docs_src/python/lmn_dhcp.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs_src/python/lmn_dhcp.rst -------------------------------------------------------------------------------- /docs_src/python/lmn_docker.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs_src/python/lmn_docker.rst -------------------------------------------------------------------------------- /docs_src/python/lmn_groupmembership.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs_src/python/lmn_groupmembership.rst -------------------------------------------------------------------------------- /docs_src/python/lmn_landingpage.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs_src/python/lmn_landingpage.rst -------------------------------------------------------------------------------- /docs_src/python/lmn_linbo4.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs_src/python/lmn_linbo4.rst -------------------------------------------------------------------------------- /docs_src/python/lmn_linbo_sync.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs_src/python/lmn_linbo_sync.rst -------------------------------------------------------------------------------- /docs_src/python/lmn_quotas.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs_src/python/lmn_quotas.rst -------------------------------------------------------------------------------- /docs_src/python/lmn_session.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs_src/python/lmn_session.rst -------------------------------------------------------------------------------- /docs_src/python/lmn_settings.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs_src/python/lmn_settings.rst -------------------------------------------------------------------------------- /docs_src/python/lmn_setup_wizard.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs_src/python/lmn_setup_wizard.rst -------------------------------------------------------------------------------- /docs_src/python/lmn_users.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/docs_src/python/lmn_users.rst -------------------------------------------------------------------------------- /lib/systemd/system/linuxmuster-webui.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/lib/systemd/system/linuxmuster-webui.service -------------------------------------------------------------------------------- /tests/e2e/authconfig.json.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/tests/e2e/authconfig.json.sample -------------------------------------------------------------------------------- /tests/e2e/conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/tests/e2e/conf.js -------------------------------------------------------------------------------- /tests/e2e/global-admin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/tests/e2e/global-admin.js -------------------------------------------------------------------------------- /tests/e2e/teacher.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/tests/e2e/teacher.js -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/etc/config_templates/ajenti_default.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/etc/config_templates/ajenti_default.yml -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/etc/config_templates/template-ajenti.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/etc/config_templates/template-ajenti.yml -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/etc/config_templates/template-webui.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/etc/config_templates/template-webui.yml -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/etc/config_templates/webui_default.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/etc/config_templates/webui_default.yml -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/etc/deprecated/SophomorixJsonOutput.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/etc/deprecated/SophomorixJsonOutput.py -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/etc/deprecated/create_webuiUploadFolder.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/etc/deprecated/create_webuiUploadFolder.sh -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/etc/deprecated/split_config_aj.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/etc/deprecated/split_config_aj.py -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/etc/email_templates/reset_email.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/etc/email_templates/reset_email.html -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/etc/email_templates/reset_email_de.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/etc/email_templates/reset_email_de.html -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/etc/email_templates/reset_email_fr.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/etc/email_templates/reset_email_fr.html -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/etc/install_scripts/create_aj_cfg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/etc/install_scripts/create_aj_cfg.sh -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/etc/install_scripts/webuiUpload.ntacl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/etc/install_scripts/webuiUpload.ntacl -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/etc/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/etc/requirements.txt -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/etc/update_scripts/clean_webui_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/etc/update_scripts/clean_webui_config.py -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/etc/update_scripts/merge-permissions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/etc/update_scripts/merge-permissions.py -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/etc/update_scripts/update_ajenti_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/etc/update_scripts/update_ajenti_config.py -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_auth/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_auth/README.md -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_auth/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_auth/__init__.py -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_auth/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_auth/api.py -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_auth/locale/af/LC_MESSAGES/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_auth/locale/af/LC_MESSAGES/app.js -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_auth/locale/af/LC_MESSAGES/app.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_auth/locale/af/LC_MESSAGES/app.po -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_auth/locale/app.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_auth/locale/app.pot -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_auth/locale/ar/LC_MESSAGES/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_auth/locale/ar/LC_MESSAGES/app.js -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_auth/locale/ar/LC_MESSAGES/app.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_auth/locale/ar/LC_MESSAGES/app.po -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_auth/locale/ca/LC_MESSAGES/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_auth/locale/ca/LC_MESSAGES/app.js -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_auth/locale/ca/LC_MESSAGES/app.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_auth/locale/ca/LC_MESSAGES/app.po -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_auth/locale/cs/LC_MESSAGES/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_auth/locale/cs/LC_MESSAGES/app.js -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_auth/locale/cs/LC_MESSAGES/app.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_auth/locale/cs/LC_MESSAGES/app.po -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_auth/locale/da/LC_MESSAGES/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_auth/locale/da/LC_MESSAGES/app.js -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_auth/locale/da/LC_MESSAGES/app.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_auth/locale/da/LC_MESSAGES/app.po -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_auth/locale/de/LC_MESSAGES/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_auth/locale/de/LC_MESSAGES/app.js -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_auth/locale/de/LC_MESSAGES/app.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_auth/locale/de/LC_MESSAGES/app.po -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_auth/locale/el/LC_MESSAGES/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_auth/locale/el/LC_MESSAGES/app.js -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_auth/locale/el/LC_MESSAGES/app.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_auth/locale/el/LC_MESSAGES/app.po -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_auth/locale/en/LC_MESSAGES/app.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_auth/locale/en/LC_MESSAGES/app.po -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_auth/locale/fi/LC_MESSAGES/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_auth/locale/fi/LC_MESSAGES/app.js -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_auth/locale/fi/LC_MESSAGES/app.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_auth/locale/fi/LC_MESSAGES/app.po -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_auth/locale/fr/LC_MESSAGES/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_auth/locale/fr/LC_MESSAGES/app.js -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_auth/locale/fr/LC_MESSAGES/app.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_auth/locale/fr/LC_MESSAGES/app.po -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_auth/locale/he/LC_MESSAGES/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_auth/locale/he/LC_MESSAGES/app.js -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_auth/locale/he/LC_MESSAGES/app.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_auth/locale/he/LC_MESSAGES/app.po -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_auth/locale/hu/LC_MESSAGES/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_auth/locale/hu/LC_MESSAGES/app.js -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_auth/locale/hu/LC_MESSAGES/app.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_auth/locale/hu/LC_MESSAGES/app.po -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_auth/locale/it/LC_MESSAGES/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_auth/locale/it/LC_MESSAGES/app.js -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_auth/locale/it/LC_MESSAGES/app.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_auth/locale/it/LC_MESSAGES/app.po -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_auth/locale/ja/LC_MESSAGES/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_auth/locale/ja/LC_MESSAGES/app.js -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_auth/locale/ja/LC_MESSAGES/app.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_auth/locale/ja/LC_MESSAGES/app.po -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_auth/locale/ko/LC_MESSAGES/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_auth/locale/ko/LC_MESSAGES/app.js -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_auth/locale/ko/LC_MESSAGES/app.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_auth/locale/ko/LC_MESSAGES/app.po -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_auth/locale/nl/LC_MESSAGES/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_auth/locale/nl/LC_MESSAGES/app.js -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_auth/locale/nl/LC_MESSAGES/app.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_auth/locale/nl/LC_MESSAGES/app.po -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_auth/locale/no/LC_MESSAGES/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_auth/locale/no/LC_MESSAGES/app.js -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_auth/locale/no/LC_MESSAGES/app.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_auth/locale/no/LC_MESSAGES/app.po -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_auth/locale/pl/LC_MESSAGES/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_auth/locale/pl/LC_MESSAGES/app.js -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_auth/locale/pl/LC_MESSAGES/app.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_auth/locale/pl/LC_MESSAGES/app.po -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_auth/locale/ro/LC_MESSAGES/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_auth/locale/ro/LC_MESSAGES/app.js -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_auth/locale/ro/LC_MESSAGES/app.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_auth/locale/ro/LC_MESSAGES/app.po -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_auth/locale/ru/LC_MESSAGES/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_auth/locale/ru/LC_MESSAGES/app.js -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_auth/locale/ru/LC_MESSAGES/app.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_auth/locale/ru/LC_MESSAGES/app.po -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_auth/locale/sr/LC_MESSAGES/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_auth/locale/sr/LC_MESSAGES/app.js -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_auth/locale/sr/LC_MESSAGES/app.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_auth/locale/sr/LC_MESSAGES/app.po -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_auth/locale/tr/LC_MESSAGES/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_auth/locale/tr/LC_MESSAGES/app.js -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_auth/locale/tr/LC_MESSAGES/app.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_auth/locale/tr/LC_MESSAGES/app.po -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_auth/locale/uk/LC_MESSAGES/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_auth/locale/uk/LC_MESSAGES/app.js -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_auth/locale/uk/LC_MESSAGES/app.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_auth/locale/uk/LC_MESSAGES/app.po -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_auth/locale/vi/LC_MESSAGES/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_auth/locale/vi/LC_MESSAGES/app.js -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_auth/locale/vi/LC_MESSAGES/app.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_auth/locale/vi/LC_MESSAGES/app.po -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_auth/plugin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_auth/plugin.yml -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_auth/resources/build/all.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_auth/resources/build/all.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_auth/resources/build/all.js -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_auth/resources/build/all.vendor.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_auth/resources/build/all.vendor.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_auth/resources/js/module.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_auth/resources/js/module.coffee -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_auth/resources/partial/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_auth/resources/partial/index.html -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_auth/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_auth/views.py -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_clients/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_clients/README.md -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_clients/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_clients/__init__.py -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_clients/locale/app.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_clients/locale/app.pot -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_clients/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_clients/main.py -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_clients/permissions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_clients/permissions.yml -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_clients/plugin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_clients/plugin.yml -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_clients/requirements.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_clients/resources/build/all.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_clients/resources/build/all.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_clients/resources/build/all.js -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_clients/resources/build/all.vendor.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_clients/resources/build/all.vendor.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_clients/resources/js/module.es: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_clients/resources/js/module.es -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_clients/resources/js/routing.es: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_clients/resources/js/routing.es -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_clients/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_clients/views.py -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_common/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_common/README.md -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_common/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_common/__init__.py -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_common/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_common/api.py -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_common/fieldnames.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_common/fieldnames.py -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_common/lmnfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_common/lmnfile.py -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_common/locale/app.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_common/locale/app.pot -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_common/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_common/main.py -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_common/mimetypes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_common/mimetypes.py -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_common/multischool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_common/multischool.py -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_common/permissions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_common/permissions.yml -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_common/plugin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_common/plugin.yml -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_common/resources/build/all.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_common/resources/build/all.css -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_common/resources/build/all.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_common/resources/build/all.js -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_common/resources/build/all.vendor.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_common/resources/build/all.vendor.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_common/resources/img/class.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_common/resources/img/class.png -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_common/resources/img/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_common/resources/img/favicon.png -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_common/resources/img/logo-ni.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_common/resources/img/logo-ni.png -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_common/resources/img/logo-x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_common/resources/img/logo-x.png -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_common/resources/js/module.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_common/resources/js/module.coffee -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_common/resources/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_common/resources/styles.scss -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_common/tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_common/tools.py -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_common/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_common/views.py -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_crontab/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_crontab/README.md -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_crontab/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_crontab/__init__.py -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_crontab/locale/app.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_crontab/locale/app.pot -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_crontab/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_crontab/main.py -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_crontab/manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_crontab/manager.py -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_crontab/permissions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_crontab/permissions.yml -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_crontab/plugin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_crontab/plugin.yml -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_crontab/requirements.txt: -------------------------------------------------------------------------------- 1 | reconfigure 2 | -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_crontab/resources/build/all.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_crontab/resources/build/all.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_crontab/resources/build/all.js -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_crontab/resources/build/all.vendor.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_crontab/resources/build/all.vendor.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_crontab/resources/js/module.es: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_crontab/resources/js/module.es -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_crontab/resources/js/routing.es: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_crontab/resources/js/routing.es -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_crontab/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_crontab/views.py -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_device-manager/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_device-manager/__init__.py -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_device-manager/locale/app.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_device-manager/locale/app.pot -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_device-manager/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_device-manager/main.py -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_device-manager/permissions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_device-manager/permissions.yml -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_device-manager/plugin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_device-manager/plugin.yml -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_device-manager/resources/build/all.vendor.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_device-manager/resources/build/all.vendor.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_device-manager/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_device-manager/views.py -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_devices/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_devices/README.md -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_devices/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_devices/__init__.py -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_devices/locale/app.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_devices/locale/app.pot -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_devices/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_devices/main.py -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_devices/permissions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_devices/permissions.yml -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_devices/plugin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_devices/plugin.yml -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_devices/resources/build/all.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_devices/resources/build/all.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_devices/resources/build/all.js -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_devices/resources/build/all.vendor.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_devices/resources/build/all.vendor.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_devices/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_devices/views.py -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_dhcp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_dhcp/README.md -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_dhcp/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_dhcp/__init__.py -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_dhcp/locale/af/LC_MESSAGES/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_dhcp/locale/af/LC_MESSAGES/app.js -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_dhcp/locale/af/LC_MESSAGES/app.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_dhcp/locale/af/LC_MESSAGES/app.po -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_dhcp/locale/app.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_dhcp/locale/app.pot -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_dhcp/locale/ar/LC_MESSAGES/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_dhcp/locale/ar/LC_MESSAGES/app.js -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_dhcp/locale/ar/LC_MESSAGES/app.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_dhcp/locale/ar/LC_MESSAGES/app.po -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_dhcp/locale/ca/LC_MESSAGES/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_dhcp/locale/ca/LC_MESSAGES/app.js -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_dhcp/locale/ca/LC_MESSAGES/app.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_dhcp/locale/ca/LC_MESSAGES/app.po -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_dhcp/locale/cs/LC_MESSAGES/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_dhcp/locale/cs/LC_MESSAGES/app.js -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_dhcp/locale/cs/LC_MESSAGES/app.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_dhcp/locale/cs/LC_MESSAGES/app.po -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_dhcp/locale/da/LC_MESSAGES/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_dhcp/locale/da/LC_MESSAGES/app.js -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_dhcp/locale/da/LC_MESSAGES/app.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_dhcp/locale/da/LC_MESSAGES/app.po -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_dhcp/locale/de/LC_MESSAGES/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_dhcp/locale/de/LC_MESSAGES/app.js -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_dhcp/locale/de/LC_MESSAGES/app.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_dhcp/locale/de/LC_MESSAGES/app.po -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_dhcp/locale/el/LC_MESSAGES/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_dhcp/locale/el/LC_MESSAGES/app.js -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_dhcp/locale/el/LC_MESSAGES/app.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_dhcp/locale/el/LC_MESSAGES/app.po -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_dhcp/locale/en/LC_MESSAGES/app.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_dhcp/locale/en/LC_MESSAGES/app.po -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_dhcp/locale/fi/LC_MESSAGES/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_dhcp/locale/fi/LC_MESSAGES/app.js -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_dhcp/locale/fi/LC_MESSAGES/app.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_dhcp/locale/fi/LC_MESSAGES/app.po -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_dhcp/locale/fr/LC_MESSAGES/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_dhcp/locale/fr/LC_MESSAGES/app.js -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_dhcp/locale/fr/LC_MESSAGES/app.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_dhcp/locale/fr/LC_MESSAGES/app.po -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_dhcp/locale/he/LC_MESSAGES/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_dhcp/locale/he/LC_MESSAGES/app.js -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_dhcp/locale/he/LC_MESSAGES/app.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_dhcp/locale/he/LC_MESSAGES/app.po -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_dhcp/locale/hu/LC_MESSAGES/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_dhcp/locale/hu/LC_MESSAGES/app.js -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_dhcp/locale/hu/LC_MESSAGES/app.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_dhcp/locale/hu/LC_MESSAGES/app.po -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_dhcp/locale/it/LC_MESSAGES/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_dhcp/locale/it/LC_MESSAGES/app.js -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_dhcp/locale/it/LC_MESSAGES/app.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_dhcp/locale/it/LC_MESSAGES/app.po -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_dhcp/locale/ja/LC_MESSAGES/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_dhcp/locale/ja/LC_MESSAGES/app.js -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_dhcp/locale/ja/LC_MESSAGES/app.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_dhcp/locale/ja/LC_MESSAGES/app.po -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_dhcp/locale/ko/LC_MESSAGES/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_dhcp/locale/ko/LC_MESSAGES/app.js -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_dhcp/locale/ko/LC_MESSAGES/app.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_dhcp/locale/ko/LC_MESSAGES/app.po -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_dhcp/locale/nl/LC_MESSAGES/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_dhcp/locale/nl/LC_MESSAGES/app.js -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_dhcp/locale/nl/LC_MESSAGES/app.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_dhcp/locale/nl/LC_MESSAGES/app.po -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_dhcp/locale/no/LC_MESSAGES/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_dhcp/locale/no/LC_MESSAGES/app.js -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_dhcp/locale/no/LC_MESSAGES/app.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_dhcp/locale/no/LC_MESSAGES/app.po -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_dhcp/locale/pl/LC_MESSAGES/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_dhcp/locale/pl/LC_MESSAGES/app.js -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_dhcp/locale/pl/LC_MESSAGES/app.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_dhcp/locale/pl/LC_MESSAGES/app.po -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_dhcp/locale/ro/LC_MESSAGES/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_dhcp/locale/ro/LC_MESSAGES/app.js -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_dhcp/locale/ro/LC_MESSAGES/app.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_dhcp/locale/ro/LC_MESSAGES/app.po -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_dhcp/locale/ru/LC_MESSAGES/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_dhcp/locale/ru/LC_MESSAGES/app.js -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_dhcp/locale/ru/LC_MESSAGES/app.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_dhcp/locale/ru/LC_MESSAGES/app.po -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_dhcp/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_dhcp/main.py -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_dhcp/permissions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_dhcp/permissions.yml -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_dhcp/plugin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_dhcp/plugin.yml -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_dhcp/requirements.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_dhcp/resources/build/all.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_dhcp/resources/build/all.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_dhcp/resources/build/all.js -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_dhcp/resources/build/all.vendor.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_dhcp/resources/build/all.vendor.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_dhcp/resources/js/module.es: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_dhcp/resources/js/module.es -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_dhcp/resources/js/routing.es: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_dhcp/resources/js/routing.es -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_dhcp/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_dhcp/views.py -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_docker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_docker/README.md -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_docker/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_docker/__init__.py -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_docker/locale/app.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_docker/locale/app.pot -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_docker/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_docker/main.py -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_docker/permissions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_docker/permissions.yml -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_docker/plugin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_docker/plugin.yml -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_docker/resources/build/all.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_docker/resources/build/all.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_docker/resources/build/all.js -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_docker/resources/build/all.vendor.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_docker/resources/build/all.vendor.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_docker/resources/js/module.es: -------------------------------------------------------------------------------- 1 | angular.module('lmn.docker', [ 2 | 'core', 3 | ]); 4 | 5 | -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_docker/resources/js/routing.es: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_docker/resources/js/routing.es -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_docker/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_docker/views.py -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_groupmembership/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_groupmembership/README.md -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_groupmembership/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_groupmembership/__init__.py -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_groupmembership/locale/app.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_groupmembership/locale/app.pot -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_groupmembership/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_groupmembership/main.py -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_groupmembership/plugin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_groupmembership/plugin.yml -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_groupmembership/resources/build/all.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_groupmembership/resources/build/all.vendor.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_groupmembership/resources/build/all.vendor.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_groupmembership/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_groupmembership/views.py -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_landingpage/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_landingpage/README.md -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_landingpage/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_landingpage/__init__.py -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_landingpage/locale/app.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_landingpage/locale/app.pot -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_landingpage/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_landingpage/main.py -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_landingpage/permissions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_landingpage/permissions.yml -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_landingpage/plugin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_landingpage/plugin.yml -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_landingpage/resources/build/all.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_landingpage/resources/build/all.vendor.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_landingpage/resources/build/all.vendor.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_landingpage/views.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_linbo4/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_linbo4/README.md -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_linbo4/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_linbo4/__init__.py -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_linbo4/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_linbo4/bower.json -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_linbo4/images.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_linbo4/images.py -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_linbo4/locale/app.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_linbo4/locale/app.pot -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_linbo4/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_linbo4/main.py -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_linbo4/permissions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_linbo4/permissions.yml -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_linbo4/plugin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_linbo4/plugin.yml -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_linbo4/resources/build/all.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_linbo4/resources/build/all.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_linbo4/resources/build/all.js -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_linbo4/resources/vendor/angular-bootstrap-colorpicker/.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | node_modules/ 3 | test/coverage 4 | -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_linbo4/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_linbo4/views.py -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_linbo_sync/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_linbo_sync/README.md -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_linbo_sync/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_linbo_sync/__init__.py -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_linbo_sync/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_linbo_sync/api.py -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_linbo_sync/locale/app.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_linbo_sync/locale/app.pot -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_linbo_sync/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_linbo_sync/main.py -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_linbo_sync/permissions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_linbo_sync/permissions.yml -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_linbo_sync/plugin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_linbo_sync/plugin.yml -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_linbo_sync/resources/build/all.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_linbo_sync/resources/build/all.vendor.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_linbo_sync/resources/build/all.vendor.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_linbo_sync/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_linbo_sync/views.py -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_links/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_links/README.md -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_links/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_links/__init__.py -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_links/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_links/api.py -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_links/locale/app.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_links/locale/app.pot -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_links/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_links/main.py -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_links/permissions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_links/permissions.yml -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_links/plugin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_links/plugin.yml -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_links/resources/build/all.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_links/resources/build/all.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_links/resources/build/all.js -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_links/resources/build/all.vendor.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_links/resources/build/all.vendor.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_links/resources/js/module.es: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_links/resources/js/module.es -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_links/resources/js/routing.es: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_links/resources/js/routing.es -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_links/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_links/views.py -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_nextcloud/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_nextcloud/README.md -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_nextcloud/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_nextcloud/__init__.py -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_nextcloud/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_nextcloud/api.py -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_nextcloud/locale/app.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_nextcloud/locale/app.pot -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_nextcloud/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_nextcloud/main.py -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_nextcloud/permissions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_nextcloud/permissions.yml -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_nextcloud/plugin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_nextcloud/plugin.yml -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_nextcloud/resources/build/all.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_nextcloud/resources/build/all.vendor.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_nextcloud/resources/build/all.vendor.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_nextcloud/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_nextcloud/views.py -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_permissions/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_permissions/README.md -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_permissions/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_permissions/__init__.py -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_permissions/locale/app.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_permissions/locale/app.pot -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_permissions/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_permissions/main.py -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_permissions/plugin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_permissions/plugin.yml -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_permissions/requirements.txt: -------------------------------------------------------------------------------- 1 | aj 2 | ajenti.plugin.core 3 | -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_permissions/resources/build/all.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_permissions/resources/build/all.vendor.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_permissions/resources/build/all.vendor.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_permissions/resources/js/module.es: -------------------------------------------------------------------------------- 1 | angular.module('lmn.permissions', [ 2 | 'core', 3 | ]); 4 | -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_permissions/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_permissions/views.py -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_quotas/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_quotas/README.md -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_quotas/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_quotas/__init__.py -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_quotas/locale/app.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_quotas/locale/app.pot -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_quotas/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_quotas/main.py -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_quotas/permissions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_quotas/permissions.yml -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_quotas/plugin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_quotas/plugin.yml -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_quotas/resources/build/all.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_quotas/resources/build/all.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_quotas/resources/build/all.js -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_quotas/resources/build/all.vendor.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_quotas/resources/build/all.vendor.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_quotas/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_quotas/views.py -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_samba_dns/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_samba_dns/README.md -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_samba_dns/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_samba_dns/__init__.py -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_samba_dns/locale/app.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_samba_dns/locale/app.pot -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_samba_dns/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_samba_dns/main.py -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_samba_dns/permissions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_samba_dns/permissions.yml -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_samba_dns/plugin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_samba_dns/plugin.yml -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_samba_dns/resources/build/all.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_samba_dns/resources/build/all.vendor.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_samba_dns/resources/build/all.vendor.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_samba_dns/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_samba_dns/views.py -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_samba_shares/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_samba_shares/README.md -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_samba_shares/__init__.py: -------------------------------------------------------------------------------- 1 | # pyflakes: disable-all 2 | from .main import * -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_samba_shares/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_samba_shares/bower.json -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_samba_shares/locale/app.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_samba_shares/locale/app.pot -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_samba_shares/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_samba_shares/main.py -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_samba_shares/permissions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_samba_shares/permissions.yml -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_samba_shares/plugin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_samba_shares/plugin.yml -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_samba_shares/resources/build/all.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_samba_shares/resources/build/all.vendor.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_samba_shares/resources/build/all.vendor.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_session_new/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_session_new/README.md -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_session_new/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_session_new/__init__.py -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_session_new/locale/app.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_session_new/locale/app.pot -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_session_new/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_session_new/main.py -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_session_new/permissions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_session_new/permissions.yml -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_session_new/plugin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_session_new/plugin.yml -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_session_new/resources/build/all.vendor.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_session_new/resources/build/all.vendor.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_session_new/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_session_new/views.py -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_settings/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_settings/README.md -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_settings/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_settings/__init__.py -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_settings/locale/app.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_settings/locale/app.pot -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_settings/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_settings/main.py -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_settings/permissions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_settings/permissions.yml -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_settings/plugin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_settings/plugin.yml -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_settings/resources/build/all.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_settings/resources/build/all.vendor.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_settings/resources/build/all.vendor.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_settings/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_settings/views.py -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_setup_wizard/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_setup_wizard/README.md -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_setup_wizard/__init__.py: -------------------------------------------------------------------------------- 1 | from .views import * 2 | -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_setup_wizard/js/index.es: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_setup_wizard/js/index.es -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_setup_wizard/locale/app.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_setup_wizard/locale/app.pot -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_setup_wizard/plugin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_setup_wizard/plugin.yml -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_setup_wizard/resources/build/all.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_setup_wizard/resources/build/all.vendor.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_setup_wizard/resources/build/all.vendor.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_setup_wizard/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_setup_wizard/views.py -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_smbclient/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_smbclient/README.md -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_smbclient/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_smbclient/__init__.py -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_smbclient/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_smbclient/bower.json -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_smbclient/davxml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_smbclient/davxml.py -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_smbclient/locale/app.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_smbclient/locale/app.pot -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_smbclient/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_smbclient/main.py -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_smbclient/plugin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_smbclient/plugin.yml -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_smbclient/resources/build/all.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_smbclient/resources/build/all.vendor.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_smbclient/resources/build/all.vendor.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_smbclient/views/lmnwebdav.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_smbclient/views/lmnwebdav.py -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_users/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_users/README.md -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_users/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_users/__init__.py -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_users/locale/app.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_users/locale/app.pot -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_users/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_users/main.py -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_users/permissions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_users/permissions.yml -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_users/plugin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_users/plugin.yml -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_users/resources/build/all.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_users/resources/build/all.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_users/resources/build/all.js -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_users/resources/build/all.vendor.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_users/resources/build/all.vendor.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_users/views/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_users/views/customFields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_users/views/customFields.py -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_users/views/listmanagement.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_users/views/listmanagement.py -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_users/views/passwords.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_users/views/passwords.py -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_users/views/sophomorixUsers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_users/views/sophomorixUsers.py -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_vdi_administration/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_vdi_administration/README.md -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_vdi_administration/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_vdi_administration/__init__.py -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_vdi_administration/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_vdi_administration/main.py -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_vdi_administration/plugin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_vdi_administration/plugin.yml -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_vdi_administration/requirements.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_vdi_administration/resources/build/all.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_vdi_administration/resources/build/all.vendor.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_vdi_administration/resources/build/all.vendor.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_vdi_administration/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_vdi_administration/views.py -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_vdi_dashboard/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_vdi_dashboard/README.md -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_vdi_dashboard/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_vdi_dashboard/__init__.py -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_vdi_dashboard/locale/app.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_vdi_dashboard/locale/app.pot -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_vdi_dashboard/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_vdi_dashboard/main.py -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_vdi_dashboard/plugin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_vdi_dashboard/plugin.yml -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_vdi_dashboard/requirements.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_vdi_dashboard/resources/build/all.vendor.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_vdi_dashboard/resources/build/all.vendor.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_vdi_dashboard/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_vdi_dashboard/views.py -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_w_datetime/README.md: -------------------------------------------------------------------------------- 1 | # Linuxmuster.net datetime plugin 2 | 3 | DEPRECATED. 4 | -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_w_datetime/__init__.py: -------------------------------------------------------------------------------- 1 | from .widget import * 2 | -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_w_datetime/locale/af/LC_MESSAGES/app.js: -------------------------------------------------------------------------------- 1 | {"": ""} -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_w_datetime/locale/app.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_w_datetime/locale/app.pot -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_w_datetime/locale/ar/LC_MESSAGES/app.js: -------------------------------------------------------------------------------- 1 | {"": ""} -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_w_datetime/locale/ca/LC_MESSAGES/app.js: -------------------------------------------------------------------------------- 1 | {"": ""} -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_w_datetime/locale/cs/LC_MESSAGES/app.js: -------------------------------------------------------------------------------- 1 | {"": ""} -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_w_datetime/locale/da/LC_MESSAGES/app.js: -------------------------------------------------------------------------------- 1 | {"": ""} -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_w_datetime/locale/de/LC_MESSAGES/app.js: -------------------------------------------------------------------------------- 1 | {"": ""} -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_w_datetime/locale/el/LC_MESSAGES/app.js: -------------------------------------------------------------------------------- 1 | {"": ""} -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_w_datetime/locale/es-ES/LC_MESSAGES/app.js: -------------------------------------------------------------------------------- 1 | {"": ""} -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_w_datetime/locale/fi/LC_MESSAGES/app.js: -------------------------------------------------------------------------------- 1 | {"": ""} -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_w_datetime/locale/fr/LC_MESSAGES/app.js: -------------------------------------------------------------------------------- 1 | {"": ""} -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_w_datetime/locale/he/LC_MESSAGES/app.js: -------------------------------------------------------------------------------- 1 | {"": ""} -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_w_datetime/locale/hu/LC_MESSAGES/app.js: -------------------------------------------------------------------------------- 1 | {"": ""} -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_w_datetime/locale/it/LC_MESSAGES/app.js: -------------------------------------------------------------------------------- 1 | {"": ""} -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_w_datetime/locale/ja/LC_MESSAGES/app.js: -------------------------------------------------------------------------------- 1 | {"": ""} -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_w_datetime/locale/ko/LC_MESSAGES/app.js: -------------------------------------------------------------------------------- 1 | {"": ""} -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_w_datetime/locale/nl/LC_MESSAGES/app.js: -------------------------------------------------------------------------------- 1 | {"": ""} -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_w_datetime/locale/no/LC_MESSAGES/app.js: -------------------------------------------------------------------------------- 1 | {"": ""} -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_w_datetime/locale/pl/LC_MESSAGES/app.js: -------------------------------------------------------------------------------- 1 | {"": ""} -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_w_datetime/locale/pt-BR/LC_MESSAGES/app.js: -------------------------------------------------------------------------------- 1 | {"": ""} -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_w_datetime/locale/pt-PT/LC_MESSAGES/app.js: -------------------------------------------------------------------------------- 1 | {"": ""} -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_w_datetime/locale/ro/LC_MESSAGES/app.js: -------------------------------------------------------------------------------- 1 | {"": ""} -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_w_datetime/locale/ru/LC_MESSAGES/app.js: -------------------------------------------------------------------------------- 1 | {"": ""} -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_w_datetime/locale/sr/LC_MESSAGES/app.js: -------------------------------------------------------------------------------- 1 | {"": ""} -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_w_datetime/locale/sv-SE/LC_MESSAGES/app.js: -------------------------------------------------------------------------------- 1 | {"": ""} -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_w_datetime/locale/tr/LC_MESSAGES/app.js: -------------------------------------------------------------------------------- 1 | {"": ""} -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_w_datetime/locale/uk/LC_MESSAGES/app.js: -------------------------------------------------------------------------------- 1 | {"": ""} -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_w_datetime/locale/vi/LC_MESSAGES/app.js: -------------------------------------------------------------------------------- 1 | {"": ""} -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_w_datetime/locale/zh-CN/LC_MESSAGES/app.js: -------------------------------------------------------------------------------- 1 | {"": ""} -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_w_datetime/locale/zh-TW/LC_MESSAGES/app.js: -------------------------------------------------------------------------------- 1 | {"": ""} -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_w_datetime/plugin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_w_datetime/plugin.yml -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_w_datetime/resources/build/all.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_w_datetime/resources/build/all.vendor.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_w_datetime/resources/build/all.vendor.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_w_datetime/widget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_w_datetime/widget.py -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_websession/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_websession/README.md -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_websession/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_websession/__init__.py -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_websession/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_websession/api.py -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_websession/locale/app.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_websession/locale/app.pot -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_websession/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_websession/main.py -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_websession/permissions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_websession/permissions.yml -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_websession/plugin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_websession/plugin.yml -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_websession/resources/build/all.vendor.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_websession/resources/build/all.vendor.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_websession/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_websession/views.py -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_wireguard/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_wireguard/.gitignore -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_wireguard/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_wireguard/README.md -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_wireguard/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_wireguard/__init__.py -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_wireguard/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_wireguard/main.py -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_wireguard/permissions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_wireguard/permissions.yml -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_wireguard/plugin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_wireguard/plugin.yml -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_wireguard/requirements.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_wireguard/resources/build/all.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_wireguard/resources/build/all.vendor.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_wireguard/resources/build/all.vendor.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /usr/lib/linuxmuster-webui/plugins/lmn_wireguard/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster-webui/plugins/lmn_wireguard/views.py -------------------------------------------------------------------------------- /usr/lib/linuxmuster/setup.d/w_webui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/linuxmuster/setup.d/w_webui.py -------------------------------------------------------------------------------- /usr/lib/node_modules/ng-flow/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/node_modules/ng-flow/.npmignore -------------------------------------------------------------------------------- /usr/lib/node_modules/ng-flow/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/node_modules/ng-flow/CHANGELOG.md -------------------------------------------------------------------------------- /usr/lib/node_modules/ng-flow/Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/node_modules/ng-flow/Gruntfile.js -------------------------------------------------------------------------------- /usr/lib/node_modules/ng-flow/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/node_modules/ng-flow/LICENSE -------------------------------------------------------------------------------- /usr/lib/node_modules/ng-flow/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/node_modules/ng-flow/README.md -------------------------------------------------------------------------------- /usr/lib/node_modules/ng-flow/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/node_modules/ng-flow/bower.json -------------------------------------------------------------------------------- /usr/lib/node_modules/ng-flow/dist/ng-flow-standalone.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/node_modules/ng-flow/dist/ng-flow-standalone.js -------------------------------------------------------------------------------- /usr/lib/node_modules/ng-flow/dist/ng-flow-standalone.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/node_modules/ng-flow/dist/ng-flow-standalone.min.js -------------------------------------------------------------------------------- /usr/lib/node_modules/ng-flow/dist/ng-flow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/node_modules/ng-flow/dist/ng-flow.js -------------------------------------------------------------------------------- /usr/lib/node_modules/ng-flow/dist/ng-flow.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/node_modules/ng-flow/dist/ng-flow.min.js -------------------------------------------------------------------------------- /usr/lib/node_modules/ng-flow/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/node_modules/ng-flow/karma.conf.js -------------------------------------------------------------------------------- /usr/lib/node_modules/ng-flow/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/node_modules/ng-flow/package.json -------------------------------------------------------------------------------- /usr/lib/node_modules/ng-flow/samples/basic/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/node_modules/ng-flow/samples/basic/app.js -------------------------------------------------------------------------------- /usr/lib/node_modules/ng-flow/samples/basic/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/node_modules/ng-flow/samples/basic/index.html -------------------------------------------------------------------------------- /usr/lib/node_modules/ng-flow/samples/basic/upload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/node_modules/ng-flow/samples/basic/upload.php -------------------------------------------------------------------------------- /usr/lib/node_modules/ng-flow/samples/dataurl/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/node_modules/ng-flow/samples/dataurl/app.js -------------------------------------------------------------------------------- /usr/lib/node_modules/ng-flow/samples/dataurl/flow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/node_modules/ng-flow/samples/dataurl/flow.png -------------------------------------------------------------------------------- /usr/lib/node_modules/ng-flow/samples/dataurl/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/node_modules/ng-flow/samples/dataurl/index.html -------------------------------------------------------------------------------- /usr/lib/node_modules/ng-flow/samples/image/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/node_modules/ng-flow/samples/image/app.js -------------------------------------------------------------------------------- /usr/lib/node_modules/ng-flow/samples/image/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/node_modules/ng-flow/samples/image/index.html -------------------------------------------------------------------------------- /usr/lib/node_modules/ng-flow/samples/image/upload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/node_modules/ng-flow/samples/image/upload.php -------------------------------------------------------------------------------- /usr/lib/node_modules/ng-flow/src/angular-flow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/node_modules/ng-flow/src/angular-flow.js -------------------------------------------------------------------------------- /usr/lib/node_modules/ng-flow/src/directives/btn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/node_modules/ng-flow/src/directives/btn.js -------------------------------------------------------------------------------- /usr/lib/node_modules/ng-flow/src/directives/drag-events.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/node_modules/ng-flow/src/directives/drag-events.js -------------------------------------------------------------------------------- /usr/lib/node_modules/ng-flow/src/directives/drop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/node_modules/ng-flow/src/directives/drop.js -------------------------------------------------------------------------------- /usr/lib/node_modules/ng-flow/src/directives/events.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/node_modules/ng-flow/src/directives/events.js -------------------------------------------------------------------------------- /usr/lib/node_modules/ng-flow/src/directives/img.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/node_modules/ng-flow/src/directives/img.js -------------------------------------------------------------------------------- /usr/lib/node_modules/ng-flow/src/directives/init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/node_modules/ng-flow/src/directives/init.js -------------------------------------------------------------------------------- /usr/lib/node_modules/ng-flow/src/directives/transfers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/node_modules/ng-flow/src/directives/transfers.js -------------------------------------------------------------------------------- /usr/lib/node_modules/ng-flow/src/provider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/node_modules/ng-flow/src/provider.js -------------------------------------------------------------------------------- /usr/lib/node_modules/ng-flow/test/events.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/node_modules/ng-flow/test/events.spec.js -------------------------------------------------------------------------------- /usr/lib/node_modules/ng-flow/test/init.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmuster/linuxmuster-webui7/HEAD/usr/lib/node_modules/ng-flow/test/init.spec.js --------------------------------------------------------------------------------