├── .ci ├── Containerfile.functional-tests-stable ├── Containerfile.gitlabci ├── Containerfile.gitlabci.dockerignore ├── functional-tests.yml ├── gitlab-runner │ ├── config.toml │ └── custom-driver │ │ ├── README │ │ ├── base.sh │ │ ├── cleanup.sh │ │ ├── prepare.sh │ │ └── run.sh └── update-container-image.sh ├── .gitignore ├── .gitlab-ci.yml ├── .style.yapf ├── .vagrant-scripts └── plinth-user-permissions.py ├── CONTRIBUTING.md ├── COPYING.md ├── HACKING.md ├── INSTALL.md ├── Makefile ├── README.md ├── Vagrantfile ├── bin ├── freedombox-cmd ├── freedombox-privileged └── plinth ├── conftest.py ├── container ├── data ├── etc │ ├── apache2 │ │ ├── conf-available │ │ │ ├── freedombox-tls-site-macro.conf │ │ │ ├── freedombox-tls.conf │ │ │ └── freedombox.conf │ │ └── sites-available │ │ │ └── freedombox-default.conf │ ├── avahi │ │ └── services │ │ │ ├── domain.service │ │ │ └── freedombox.service │ ├── issue.d │ │ └── 01freedombox.issue │ ├── sudoers.d │ │ └── plinth │ └── update-motd.d │ │ └── 50-freedombox └── usr │ ├── lib │ └── systemd │ │ └── system │ │ ├── freedombox-privileged.service │ │ ├── freedombox-privileged.socket │ │ └── plinth.service │ └── share │ └── dbus-1 │ └── system.d │ └── org.freedombox.Service.conf ├── debian ├── changelog ├── control ├── copyright ├── freedombox-doc-en.doc-base ├── freedombox-doc-en.install ├── freedombox-doc-en.links ├── freedombox-doc-en.lintian-overrides ├── freedombox-doc-es.doc-base ├── freedombox-doc-es.install ├── freedombox-doc-es.links ├── freedombox-doc-es.lintian-overrides ├── freedombox.docs ├── freedombox.install ├── freedombox.lintian-overrides ├── freedombox.maintscript ├── freedombox.manpages ├── freedombox.postinst ├── freedombox.postrm ├── freedombox.preinst ├── freedombox.templates ├── gbp.conf ├── po │ ├── POTFILES.in │ ├── ca.po │ ├── de.po │ ├── es.po │ ├── fr.po │ ├── it.po │ ├── nl.po │ ├── pt.po │ ├── pt_BR.po │ ├── ru.po │ ├── sq.po │ ├── sv.po │ └── templates.pot ├── rules ├── source │ ├── format │ └── lintian-overrides └── tests │ └── control ├── doc ├── Makefile ├── dev │ ├── Makefile │ ├── README.rst │ ├── _static │ │ ├── .gitkeep │ │ └── favicon.ico │ ├── _templates │ │ └── layout.html │ ├── conf.py │ ├── images │ │ └── lets_encrypt_flow.png │ ├── index.rst │ ├── reference │ │ ├── action_utils.rst │ │ ├── actions.rst │ │ ├── app.rst │ │ ├── components │ │ │ ├── backups.rst │ │ │ ├── config.rst │ │ │ ├── container.rst │ │ │ ├── coturn.rst │ │ │ ├── daemon.rst │ │ │ ├── domain.rst │ │ │ ├── enablestate.rst │ │ │ ├── firewall.rst │ │ │ ├── frontpage.rst │ │ │ ├── index.rst │ │ │ ├── info.rst │ │ │ ├── letsencrypt.rst │ │ │ ├── menu.rst │ │ │ ├── packages.rst │ │ │ ├── staticfiles.rst │ │ │ ├── users.rst │ │ │ └── webserver.rst │ │ ├── forms.rst │ │ ├── index.rst │ │ ├── notifications.rst │ │ └── views.rst │ └── tutorial │ │ ├── beginning.rst │ │ ├── code.rst │ │ ├── components.rst │ │ ├── customizing.rst │ │ ├── finishing.rst │ │ ├── index.rst │ │ ├── other.rst │ │ ├── setup.rst │ │ ├── skeleton.rst │ │ └── view.rst ├── freedombox-cmd.xml ├── manual │ ├── en │ │ ├── A20-OLinuXino-Lime2.raw.wiki │ │ ├── A20-OLinuXino-MICRO.raw.wiki │ │ ├── APU.raw.wiki │ │ ├── Apache_userdir.raw.wiki │ │ ├── Backups.raw.wiki │ │ ├── BananaPro.raw.wiki │ │ ├── BeagleBone.raw.wiki │ │ ├── Bind.raw.wiki │ │ ├── Calibre.raw.wiki │ │ ├── Cockpit.raw.wiki │ │ ├── Configure.raw.wiki │ │ ├── Contribute.raw.wiki │ │ ├── Coturn.raw.wiki │ │ ├── Cubieboard2.raw.wiki │ │ ├── Cubietruck.raw.wiki │ │ ├── Customization.raw.wiki │ │ ├── DateTime.raw.wiki │ │ ├── Debian.raw.wiki │ │ ├── DebianUpgradeNotes.raw.wiki │ │ ├── Deluge.raw.wiki │ │ ├── Developer.raw.wiki │ │ ├── Diagnostics.raw.wiki │ │ ├── Download.raw.wiki │ │ ├── DynamicDNS.raw.wiki │ │ ├── Email.raw.wiki │ │ ├── ExposeLocalService.raw.wiki │ │ ├── FeatherWiki.raw.wiki │ │ ├── Firewall.raw.wiki │ │ ├── GettingHelp.raw.wiki │ │ ├── GitWeb.raw.wiki │ │ ├── Hardware.raw.wiki │ │ ├── HomeAssistant.raw.wiki │ │ ├── Ikiwiki.raw.wiki │ │ ├── Infinoted.raw.wiki │ │ ├── Introduction.raw.wiki │ │ ├── JSXC.raw.wiki │ │ ├── Janus.raw.wiki │ │ ├── Kiwix.raw.wiki │ │ ├── LetsEncrypt.raw.wiki │ │ ├── Maker.raw.wiki │ │ ├── MatrixSynapse.raw.wiki │ │ ├── MediaWiki.raw.wiki │ │ ├── Minetest.raw.wiki │ │ ├── MiniDLNA.raw.wiki │ │ ├── Miniflux.raw.wiki │ │ ├── Mumble.raw.wiki │ │ ├── NameServices.raw.wiki │ │ ├── Networks.raw.wiki │ │ ├── Nextcloud.raw.wiki │ │ ├── OpenVPN.raw.wiki │ │ ├── OrangePiZero.raw.wiki │ │ ├── PageKite.raw.wiki │ │ ├── Performance.raw.wiki │ │ ├── PineA64+.raw.wiki │ │ ├── PioneerEdition.raw.wiki │ │ ├── Plinth.raw.wiki │ │ ├── Power.raw.wiki │ │ ├── Privoxy.raw.wiki │ │ ├── Quassel.raw.wiki │ │ ├── QuickStart.raw.wiki │ │ ├── RSSBridge.raw.wiki │ │ ├── Radicale.raw.wiki │ │ ├── RaspberryPi2.raw.wiki │ │ ├── RaspberryPi3B+.raw.wiki │ │ ├── RaspberryPi3B.raw.wiki │ │ ├── RaspberryPi4B.raw.wiki │ │ ├── ReleaseNotes.raw.wiki │ │ ├── Rock64.raw.wiki │ │ ├── RockPro64.raw.wiki │ │ ├── Roundcube.raw.wiki │ │ ├── Samba.raw.wiki │ │ ├── Searx.raw.wiki │ │ ├── SecureShell.raw.wiki │ │ ├── Security.raw.wiki │ │ ├── ServiceDiscovery.raw.wiki │ │ ├── Shaarli.raw.wiki │ │ ├── Shadowsocks.raw.wiki │ │ ├── Sharing.raw.wiki │ │ ├── Snapshots.raw.wiki │ │ ├── Storage.raw.wiki │ │ ├── Syncthing.raw.wiki │ │ ├── TiddlyWiki.raw.wiki │ │ ├── TinyTinyRSS.raw.wiki │ │ ├── Tor.raw.wiki │ │ ├── TorProxy.raw.wiki │ │ ├── Transmission.raw.wiki │ │ ├── USBWiFi.raw.wiki │ │ ├── Upgrades.raw.wiki │ │ ├── Users.raw.wiki │ │ ├── VirtualBox.raw.wiki │ │ ├── WireGuard.raw.wiki │ │ ├── WordPress.raw.wiki │ │ ├── Zoph.raw.wiki │ │ ├── bepasty.raw.wiki │ │ ├── ejabberd.raw.wiki │ │ ├── freedombox-manual.raw.wiki │ │ ├── images │ │ │ ├── AppJustInstalled_en_V01.png │ │ │ ├── Backups_Step1_v49.png │ │ │ ├── Backups_Step2_v49.png │ │ │ ├── Backups_Step3_v49.png │ │ │ ├── Backups_Step4_v49.png │ │ │ ├── Backups_Step5_v49.png │ │ │ ├── Backups_Step6_v49.png │ │ │ ├── Backups_Step7_v49.png │ │ │ ├── Calibre-FreedomBox.png │ │ │ ├── Coturn-icon_en_V01.png │ │ │ ├── DAVdroid-refresh.png │ │ │ ├── DAVdroid-setup-account.png │ │ │ ├── DAVdroid-sync-account.png │ │ │ ├── DateTime.png │ │ │ ├── Deluge-icon_en_V01.png │ │ │ ├── DynamicDNS-Settings.png │ │ │ ├── EmailServerAliasesPage.png │ │ │ ├── EmailServerAliasesTile.png │ │ │ ├── EmailServerAmongAppsMenu_en_V01.png │ │ │ ├── EmailServerClientConfig.png │ │ │ ├── Evolution-new-calendar.png │ │ │ ├── Feather-Wiki-Settings.png │ │ │ ├── Feather-Wiki-on-FreedomBox.png │ │ │ ├── Firewall.png │ │ │ ├── Gitweb-icon_en_V01.png │ │ │ ├── Ikiwiki-icon_en_V01.png │ │ │ ├── Infinoted-icon_en_V01.png │ │ │ ├── InstallButtonInAppPage_en_V01.png │ │ │ ├── InstalledEmailServerInAppsMenu_en_V01.png │ │ │ ├── InstallingPostInstall_en_V01.png │ │ │ ├── Installing_en_V01.png │ │ │ ├── JSXC-KO_en_V01.png │ │ │ ├── JSXC-icon_en_V01.png │ │ │ ├── JSXC-ok_en_V01.png │ │ │ ├── Janus-icon_en_V01.png │ │ │ ├── LetsEncrypt-Certificate.png │ │ │ ├── LetsEncrypt-Configure.png │ │ │ ├── LetsEncrypt-NameServices.png │ │ │ ├── LetsEncrypt.png │ │ │ ├── Matrix-icon_en_V01.png │ │ │ ├── MediaWiki-icon_en_V03.png │ │ │ ├── Minetest-icon_en_V01.png │ │ │ ├── MiniDLNA-icon_en_V01.png │ │ │ ├── Miniflux-icon_en_v01.png │ │ │ ├── Mumble-icon_en_V01.png │ │ │ ├── OPML.png │ │ │ ├── OpenVPN-icon_en_V01.png │ │ │ ├── Privoxy-BrowserSettings.png │ │ │ ├── Privoxy-Installation.png │ │ │ ├── Privoxy-icon_en_V01.png │ │ │ ├── Quassel-icon_en_V02.png │ │ │ ├── Quassel_Installation.png │ │ │ ├── Quassel_PortForwarding_en_v01.png │ │ │ ├── Quasseldroid.png │ │ │ ├── Radicale-Plinth.png │ │ │ ├── Radicale-icon_en_V01.png │ │ │ ├── Roundcube-icon_en_V01.png │ │ │ ├── Samba-icon_en_V01.png │ │ │ ├── Searx-icon_en_V01.png │ │ │ ├── Security.png │ │ │ ├── Select-RSS-feed.png │ │ │ ├── Shaarli-icon_en_V01.png │ │ │ ├── Shaarli-screenshot_en_V01.png │ │ │ ├── Shadowsocks-diagram_en_V01.png │ │ │ ├── Shadowsocks-icon_en_V01.png │ │ │ ├── Sharing-icon_en_V01.png │ │ │ ├── Storage.png │ │ │ ├── Subscribe-dialog.png │ │ │ ├── Subscribe-to-feed.png │ │ │ ├── Syncthing-icon_en_V01.png │ │ │ ├── Syncthing_GUI.png │ │ │ ├── ThunderbirdAutoconfigSetup.png │ │ │ ├── TiddlyWiki-Autosave.png │ │ │ ├── TiddlyWiki-on-FreedomBox.png │ │ │ ├── TinyTinyRSS-icon_en_V01.png │ │ │ ├── Tor-OnionService_en_V01.png │ │ │ ├── Tor-icon_en_V01.png │ │ │ ├── TorProxy-icon_en_V01.png │ │ │ ├── Transmission-icon_en_V01.png │ │ │ ├── Unsubscribe.png │ │ │ ├── VisualEditor.png │ │ │ ├── WikiNews-feed.png │ │ │ ├── WireGuard-icon_en_V01.png │ │ │ ├── WordPress-icon_en_V01.png │ │ │ ├── a20-olinuxino-lime2.jpg │ │ │ ├── a20-olinuxino-lime2_thumb.jpg │ │ │ ├── a20-olinuxino-micro.jpg │ │ │ ├── a20-olinuxino-micro_thumb.jpg │ │ │ ├── android-app-custom-shortcut.jpg │ │ │ ├── apu1d.jpg │ │ │ ├── apu1d_thumb.jpg │ │ │ ├── banana-pro.jpg │ │ │ ├── banana-pro_thumb.jpg │ │ │ ├── beagleboard.jpg │ │ │ ├── beagleboard_thumb.jpg │ │ │ ├── bepasty-icon_en_V01.png │ │ │ ├── bepasty_logged_in_page.png │ │ │ ├── checkmark.png │ │ │ ├── cockpit-admin-user.png │ │ │ ├── cockpit-enable.png │ │ │ ├── cockpit-login.png │ │ │ ├── cockpit-logs.png │ │ │ ├── cockpit-mobile.png │ │ │ ├── cockpit-network1.png │ │ │ ├── cockpit-network2.png │ │ │ ├── cockpit-network3.png │ │ │ ├── cockpit-services1.png │ │ │ ├── cockpit-services2.png │ │ │ ├── cockpit-storage1.png │ │ │ ├── cockpit-storage2.png │ │ │ ├── cockpit-system.png │ │ │ ├── cockpit-terminal.png │ │ │ ├── conversations-add-contacts.png │ │ │ ├── conversations-first-screen.png │ │ │ ├── conversations-login.png │ │ │ ├── copy_channel_name.png │ │ │ ├── copy_url.png │ │ │ ├── create_wiki_or_blog.png │ │ │ ├── create_wiki_or_blog_step_two.png │ │ │ ├── cubieboard2.jpg │ │ │ ├── cubieboard2_thumb.jpg │ │ │ ├── customization_styling.png │ │ │ ├── danube_thumb.png │ │ │ ├── debian_thumb.png │ │ │ ├── deluge.png │ │ │ ├── deluge_connection_manager.png │ │ │ ├── deluge_connection_manager_2.png │ │ │ ├── deluge_login.png │ │ │ ├── dino-first-screen.png │ │ │ ├── dino-login.png │ │ │ ├── dino-start-conversation.png │ │ │ ├── distribution-update.png │ │ │ ├── ejabberd-icon_en_V01.png │ │ │ ├── emailserverDNS_Records_en_V01.png │ │ │ ├── firewalld-cockpit.png │ │ │ ├── freedombox-danube.jpg │ │ │ ├── freedombox-frontpage-2019-03-02.png │ │ │ ├── freedombox-janus-videoroom.png │ │ │ ├── freedombox-screenshot-about.png │ │ │ ├── freedombox-screenshot-apps.png │ │ │ ├── freedombox-screenshot-home.png │ │ │ ├── freedombox-screenshot-manual.png │ │ │ ├── freedombox-screenshot-roundcube.png │ │ │ ├── freedombox-screenshot-system.png │ │ │ ├── freedombox-screenshot-tor.png │ │ │ ├── freedombox-screenshot-ttrss.png │ │ │ ├── gajim-first-screen.png │ │ │ ├── gajim-login.png │ │ │ ├── gajim-main-window.png │ │ │ ├── homeassistant-app.png │ │ │ ├── homeassistant-login.png │ │ │ ├── homeassistant-setup-step-1.png │ │ │ ├── homeassistant-setup-step-2.png │ │ │ ├── homeassistant-setup-step-3.png │ │ │ ├── homeassistant-setup-step-4.png │ │ │ ├── homeassistant-setup-step-5.png │ │ │ ├── homeassistant-ui.png │ │ │ ├── homeassistant.png │ │ │ ├── icon-error.png │ │ │ ├── icons │ │ │ │ ├── alert.png │ │ │ │ ├── checkmark.png │ │ │ │ ├── icon-error.png │ │ │ │ ├── icon-info.png │ │ │ │ ├── star_off.png │ │ │ │ └── star_on.png │ │ │ ├── ikiwiki_site_list.png │ │ │ ├── kiwix-tile.png │ │ │ ├── matrix_with_coturn.png │ │ │ ├── mediawiki-toolbar.png │ │ │ ├── network_single.png │ │ │ ├── networks-cockpit.png │ │ │ ├── nextcloud-frontpage-shortcut.png │ │ │ ├── nextcloud.png │ │ │ ├── openvpn_connect.png │ │ │ ├── openvpn_connected.png │ │ │ ├── openvpn_disconnect.png │ │ │ ├── openvpn_download_profile.png │ │ │ ├── openvpn_edit_domain_name.png │ │ │ ├── openvpn_import_profile.png │ │ │ ├── openvpn_install_app.png │ │ │ ├── openvpn_profile_created.png │ │ │ ├── orange-pi-zero.jpg │ │ │ ├── orange-pi-zero_thumb.jpg │ │ │ ├── paste_channel_name.png │ │ │ ├── pcduino3s.jpg │ │ │ ├── pcduino3s_thumb.jpg │ │ │ ├── performance-one-week.png │ │ │ ├── pine64-plus.jpg │ │ │ ├── pine64-plus_thumb.jpg │ │ │ ├── pioneer-edition.jpg │ │ │ ├── pioneer-edition_thumb.jpg │ │ │ ├── plinth_first_boot.png │ │ │ ├── plinth_openvpn.png │ │ │ ├── power-buttons.jpeg │ │ │ ├── quassel-client-1-connect-to-core.png │ │ │ ├── quassel-client-10-setup-identity.png │ │ │ ├── quassel-client-11-setup-network-connection.png │ │ │ ├── quassel-client-12-server-info.png │ │ │ ├── quassel-client-13-server-info-ssl.png │ │ │ ├── quassel-client-14-setup-network-connection.png │ │ │ ├── quassel-client-15-quassel-main.png │ │ │ ├── quassel-client-2-add-core-account.png │ │ │ ├── quassel-client-3-connect-to-core.png │ │ │ ├── quassel-client-4-untrusted-security-certficate.png │ │ │ ├── quassel-client-5-untrusted-security-certificate.png │ │ │ ├── quassel-client-6-core-configuration-wizard.png │ │ │ ├── quassel-client-7-create-admin-user.png │ │ │ ├── quassel-client-8-select-storage-backend.png │ │ │ ├── quassel-client-9-welcome-wizard.png │ │ │ ├── radicale_web.png │ │ │ ├── raspberry2_thumb.jpg │ │ │ ├── raspberrypi2.jpg │ │ │ ├── raspberrypi3.jpg │ │ │ ├── raspberrypi3b_thumb.jpg │ │ │ ├── raspberrypi3bplus.jpg │ │ │ ├── raspberrypi3bplus_thumb.jpg │ │ │ ├── raspberrypi4b.jpg │ │ │ ├── raspberrypi4b_thumb.jpg │ │ │ ├── rock64.jpg │ │ │ ├── rock64_thumb.jpg │ │ │ ├── rockpro64.jpg │ │ │ ├── rockpro64_thumb.jpg │ │ │ ├── roundcube-gmail.png │ │ │ ├── roundcube-riseup.png │ │ │ ├── rssbridge-icon_en_V01.png │ │ │ ├── searx-screenshot.png │ │ │ ├── select_atom_feed.png │ │ │ ├── show_more.png │ │ │ ├── snapshots_v2.png │ │ │ ├── star_off.png │ │ │ ├── star_on.png │ │ │ ├── storage-cockpit.png │ │ │ ├── subscribe_to_feed.png │ │ │ ├── tor-bridge-configuration.png │ │ │ ├── tor-bridge-db.png │ │ │ ├── tor-socks-firefox.png │ │ │ ├── transmission.png │ │ │ ├── ttrss.png │ │ │ ├── ttrssapp1.png │ │ │ ├── ttrssapp2.png │ │ │ ├── ttrssapp3.png │ │ │ ├── ttrssapp4.png │ │ │ ├── ttrssapp5.png │ │ │ ├── ui_apps.png │ │ │ ├── ui_burger_icon.png │ │ │ ├── ui_burger_menu.png │ │ │ ├── ui_firstboot_account.png │ │ │ ├── ui_firstboot_complete.png │ │ │ ├── ui_firstboot_complete_notification.png │ │ │ ├── ui_firstboot_feature_updates.png │ │ │ ├── ui_firstboot_welcome.png │ │ │ ├── ui_frontpage.png │ │ │ ├── ui_frontpage_with_app.png │ │ │ ├── ui_help.png │ │ │ ├── ui_insecure_connection.png │ │ │ ├── ui_system.png │ │ │ ├── ui_user_menu.png │ │ │ ├── update.png │ │ │ ├── user-websites-browser.png │ │ │ ├── user-websites-folder.png │ │ │ ├── virtualbox.png │ │ │ ├── virtualbox_console_after_boot.png │ │ │ ├── virtualbox_harddisk_file.png │ │ │ ├── virtualbox_network_type.png │ │ │ ├── virtualbox_os_type.png │ │ │ ├── virtualbox_thumb.png │ │ │ ├── wordpress-admin.png │ │ │ ├── wordpress-edit.png │ │ │ ├── wordpress-permalinks.png │ │ │ ├── wordpress-setup.png │ │ │ ├── wordpress-site.png │ │ │ ├── xmpp-clients_en_V02.png │ │ │ ├── zoph-home.png │ │ │ ├── zoph-icon_en_V01.png │ │ │ ├── zoph-new-person.png │ │ │ └── zoph-prefs.png │ │ └── pcDuino3.raw.wiki │ └── es │ │ ├── A20-OLinuXino-Lime2.raw.wiki │ │ ├── A20-OLinuXino-MICRO.raw.wiki │ │ ├── APU.raw.wiki │ │ ├── Apache_userdir.raw.wiki │ │ ├── Backups.raw.wiki │ │ ├── BananaPro.raw.wiki │ │ ├── BeagleBone.raw.wiki │ │ ├── Bind.raw.wiki │ │ ├── Calibre.raw.wiki │ │ ├── Cockpit.raw.wiki │ │ ├── Configure.raw.wiki │ │ ├── Contribute.raw.wiki │ │ ├── Coturn.raw.wiki │ │ ├── Cubieboard2.raw.wiki │ │ ├── Cubietruck.raw.wiki │ │ ├── Customization.raw.wiki │ │ ├── DateTime.raw.wiki │ │ ├── Debian.raw.wiki │ │ ├── Deluge.raw.wiki │ │ ├── Developer.raw.wiki │ │ ├── Diagnostics.raw.wiki │ │ ├── Download.raw.wiki │ │ ├── DynamicDNS.raw.wiki │ │ ├── Email.raw.wiki │ │ ├── ExposeLocalService.raw.wiki │ │ ├── Firewall.raw.wiki │ │ ├── GettingHelp.raw.wiki │ │ ├── GitWeb.raw.wiki │ │ ├── Hardware.raw.wiki │ │ ├── HomeAssistant.raw.wiki │ │ ├── Ikiwiki.raw.wiki │ │ ├── Infinoted.raw.wiki │ │ ├── Introduction.raw.wiki │ │ ├── JSXC.raw.wiki │ │ ├── Janus.raw.wiki │ │ ├── Kiwix.raw.wiki │ │ ├── LetsEncrypt.raw.wiki │ │ ├── Maker.raw.wiki │ │ ├── Manual.raw.wiki │ │ ├── MatrixSynapse.raw.wiki │ │ ├── MediaWiki.raw.wiki │ │ ├── Minetest.raw.wiki │ │ ├── MiniDLNA.raw.wiki │ │ ├── Miniflux.raw.wiki │ │ ├── Mumble.raw.wiki │ │ ├── NameServices.raw.wiki │ │ ├── Networks.raw.wiki │ │ ├── OpenVPN.raw.wiki │ │ ├── OrangePiZero.raw.wiki │ │ ├── PageKite.raw.wiki │ │ ├── Performance.raw.wiki │ │ ├── PineA64+.raw.wiki │ │ ├── PioneerEdition.raw.wiki │ │ ├── Plinth.raw.wiki │ │ ├── Power.raw.wiki │ │ ├── Privoxy.raw.wiki │ │ ├── Quassel.raw.wiki │ │ ├── QuickStart.raw.wiki │ │ ├── RSSBridge.raw.wiki │ │ ├── Radicale.raw.wiki │ │ ├── RaspberryPi2.raw.wiki │ │ ├── RaspberryPi3B+.raw.wiki │ │ ├── RaspberryPi3B.raw.wiki │ │ ├── RaspberryPi4B.raw.wiki │ │ ├── ReleaseNotes.raw.wiki │ │ ├── Rock64.raw.wiki │ │ ├── RockPro64.raw.wiki │ │ ├── Roundcube.raw.wiki │ │ ├── Samba.raw.wiki │ │ ├── Searx.raw.wiki │ │ ├── SecureShell.raw.wiki │ │ ├── Security.raw.wiki │ │ ├── ServiceDiscovery.raw.wiki │ │ ├── Shaarli.raw.wiki │ │ ├── Shadowsocks.raw.wiki │ │ ├── Sharing.raw.wiki │ │ ├── Snapshots.raw.wiki │ │ ├── Storage.raw.wiki │ │ ├── Syncthing.raw.wiki │ │ ├── TiddlyWiki.raw.wiki │ │ ├── TinyTinyRSS.raw.wiki │ │ ├── Tor.raw.wiki │ │ ├── TorProxy.raw.wiki │ │ ├── Transmission.raw.wiki │ │ ├── USBWiFi.raw.wiki │ │ ├── Upgrades.raw.wiki │ │ ├── Users.raw.wiki │ │ ├── VirtualBox.raw.wiki │ │ ├── WireGuard.raw.wiki │ │ ├── WordPress.raw.wiki │ │ ├── Zoph.raw.wiki │ │ ├── bepasty.raw.wiki │ │ ├── ejabberd.raw.wiki │ │ ├── freedombox-manual.raw.wiki │ │ ├── images │ │ ├── AppJustInstalled_en_V01.png │ │ ├── Backups_Step1_es_v02.png │ │ ├── Backups_Step2_v49.png │ │ ├── Backups_Step3_es_v01.png │ │ ├── Backups_Step4_es_v02.png │ │ ├── Backups_Step5_es_v02.png │ │ ├── Backups_Step6_es_v02.png │ │ ├── Calibre-FreedomBox.png │ │ ├── Coturn-icon_en_V01.png │ │ ├── DAVdroid-refresh.png │ │ ├── DAVdroid-setup-account.png │ │ ├── DAVdroid-sync-account.png │ │ ├── DateTime_es_v01.png │ │ ├── Deluge-icon_en_V01.png │ │ ├── DynamicDNS-Settings.png │ │ ├── EmailServerAliasesPage.png │ │ ├── EmailServerAliasesTile.png │ │ ├── EmailServerAmongAppsMenu_en_V01.png │ │ ├── EmailServerClientConfig.png │ │ ├── Evolution-new-calendar.png │ │ ├── Firewall_es_v01.png │ │ ├── Gitweb-icon_en_V01.png │ │ ├── Ikiwiki-icon_en_V01.png │ │ ├── Infinoted-icon_en_V01.png │ │ ├── InstallButtonInAppPage_en_V01.png │ │ ├── InstalledEmailServerInAppsMenu_en_V01.png │ │ ├── InstallingPostInstall_en_V01.png │ │ ├── Installing_en_V01.png │ │ ├── JSXC-KO_en_V01.png │ │ ├── JSXC-icon_en_V01.png │ │ ├── JSXC-ok_en_V01.png │ │ ├── Janus-icon_en_V01.png │ │ ├── LetsEncrypt-Certificate.png │ │ ├── LetsEncrypt-Configure.png │ │ ├── LetsEncrypt-NameServices.png │ │ ├── LetsEncrypt.png │ │ ├── Matrix-icon_en_V01.png │ │ ├── MediaWiki-icon_en_V03.png │ │ ├── Minetest-icon_en_V01.png │ │ ├── MiniDLNA-icon_en_V01.png │ │ ├── Miniflux-icon_en_v01.png │ │ ├── Mumble-icon_en_V01.png │ │ ├── OPML.png │ │ ├── OpenVPN-icon_en_V01.png │ │ ├── Privoxy-BrowserSettings.png │ │ ├── Privoxy-Installation.png │ │ ├── Privoxy-icon_en_V01.png │ │ ├── Quassel-icon_en_V02.png │ │ ├── Quassel_Installation_es_v01.png │ │ ├── Quassel_PortForwarding_es_v01.png │ │ ├── Quasseldroid.png │ │ ├── Radicale-Plinth.png │ │ ├── Radicale-icon_en_V01.png │ │ ├── Roundcube-icon_en_V01.png │ │ ├── Samba-icon_en_V01.png │ │ ├── Searx-icon_en_V01.png │ │ ├── Security_es_v01.png │ │ ├── Select-RSS-feed.png │ │ ├── Shaarli-icon_en_V01.png │ │ ├── Shaarli-screenshot_en_V01.png │ │ ├── Shadowsocks-diagram_en_V01.png │ │ ├── Shadowsocks-icon_en_V01.png │ │ ├── Sharing-icon_en_V01.png │ │ ├── Storage.png │ │ ├── Subscribe-dialog.png │ │ ├── Subscribe-to-feed.png │ │ ├── Syncthing-icon_en_V01.png │ │ ├── Syncthing_GUI.png │ │ ├── ThunderbirdAutoconfigSetup.png │ │ ├── TiddlyWiki-Autosave.png │ │ ├── TiddlyWiki-on-FreedomBox.png │ │ ├── TinyTinyRSS-icon_en_V01.png │ │ ├── Tor-OnionService_en_V01.png │ │ ├── Tor-icon_en_V01.png │ │ ├── TorProxy-icon_en_V01.png │ │ ├── Transmission-icon_en_V01.png │ │ ├── Unsubscribe.png │ │ ├── VisualEditor.png │ │ ├── WikiNews-feed.png │ │ ├── WireGuard-icon_en_V01.png │ │ ├── WordPress-icon_en_V01.png │ │ ├── a20-olinuxino-lime2.jpg │ │ ├── a20-olinuxino-lime2_thumb.jpg │ │ ├── a20-olinuxino-micro.jpg │ │ ├── a20-olinuxino-micro_thumb.jpg │ │ ├── android-app-custom-shortcut.jpg │ │ ├── apu1d.jpg │ │ ├── apu1d_thumb.jpg │ │ ├── banana-pro.jpg │ │ ├── banana-pro_thumb.jpg │ │ ├── beagleboard.jpg │ │ ├── beagleboard_thumb.jpg │ │ ├── bepasty-icon_en_V01.png │ │ ├── bepasty_logged_in_page.png │ │ ├── checkmark.png │ │ ├── cockpit-admin-user.png │ │ ├── cockpit-enable.png │ │ ├── cockpit-login.png │ │ ├── cockpit-logs.png │ │ ├── cockpit-mobile.png │ │ ├── cockpit-network1.png │ │ ├── cockpit-network2.png │ │ ├── cockpit-network3.png │ │ ├── cockpit-services1.png │ │ ├── cockpit-services2.png │ │ ├── cockpit-storage1.png │ │ ├── cockpit-storage2.png │ │ ├── cockpit-system.png │ │ ├── cockpit-terminal.png │ │ ├── conversations-add-contacts.png │ │ ├── conversations-first-screen.png │ │ ├── conversations-login.png │ │ ├── copy_channel_name.png │ │ ├── copy_link_youtube.png │ │ ├── copy_url.png │ │ ├── create_wiki_or_blog.png │ │ ├── create_wiki_or_blog_step_two.png │ │ ├── cubieboard2.jpg │ │ ├── cubieboard2_thumb.jpg │ │ ├── customization_styling.png │ │ ├── danube_thumb.png │ │ ├── debian_thumb.png │ │ ├── deluge.png │ │ ├── deluge_connection_manager.png │ │ ├── deluge_connection_manager_2.png │ │ ├── deluge_login.png │ │ ├── dino-first-screen.png │ │ ├── dino-login.png │ │ ├── dino-start-conversation.png │ │ ├── distribution-update.png │ │ ├── ejabberd-icon_es_V01.png │ │ ├── emailserverDNS_Records_en_V01.png │ │ ├── firewalld-cockpit.png │ │ ├── freedombox-danube.jpg │ │ ├── freedombox-frontpage-2019-03-02.png │ │ ├── freedombox-janus-videoroom.png │ │ ├── freedombox-screenshot-about.png │ │ ├── freedombox-screenshot-apps.png │ │ ├── freedombox-screenshot-home.png │ │ ├── freedombox-screenshot-manual.png │ │ ├── freedombox-screenshot-roundcube.png │ │ ├── freedombox-screenshot-system.png │ │ ├── freedombox-screenshot-tor.png │ │ ├── freedombox-screenshot-ttrss.png │ │ ├── gajim-first-screen.png │ │ ├── gajim-login.png │ │ ├── gajim-main-window.png │ │ ├── homeassistant-app.png │ │ ├── homeassistant-login.png │ │ ├── homeassistant-setup-step-1.png │ │ ├── homeassistant-setup-step-2.png │ │ ├── homeassistant-setup-step-3.png │ │ ├── homeassistant-setup-step-4.png │ │ ├── homeassistant-setup-step-5.png │ │ ├── homeassistant-ui.png │ │ ├── homeassistant.png │ │ ├── icon-error.png │ │ ├── icons │ │ ├── ikiwiki_site_list.png │ │ ├── kiwix-tile.png │ │ ├── matrix_with_coturn.png │ │ ├── mediawiki-toolbar.png │ │ ├── network_single.png │ │ ├── networks-cockpit.png │ │ ├── nextcloud-frontpage-shortcut.png │ │ ├── openvpn_connect.png │ │ ├── openvpn_connected.png │ │ ├── openvpn_disconnect.png │ │ ├── openvpn_download_profile.png │ │ ├── openvpn_edit_domain_name.png │ │ ├── openvpn_import_profile.png │ │ ├── openvpn_install_app.png │ │ ├── openvpn_profile_created.png │ │ ├── orange-pi-zero.jpg │ │ ├── orange-pi-zero_thumb.jpg │ │ ├── paste_channel_name.png │ │ ├── paste_link_youtube.png │ │ ├── pcduino3s.jpg │ │ ├── pcduino3s_thumb.jpg │ │ ├── performance-one-week.png │ │ ├── pine64-plus.jpg │ │ ├── pine64-plus_thumb.jpg │ │ ├── pioneer-edition.jpg │ │ ├── pioneer-edition_thumb.jpg │ │ ├── plinth_first_boot.png │ │ ├── plinth_openvpn.png │ │ ├── power-buttons.jpeg │ │ ├── quassel-client-1-connect-to-core_es_v01.png │ │ ├── quassel-client-10-setup-identity_es_v01.png │ │ ├── quassel-client-11-setup-network-connection_es_v02.png │ │ ├── quassel-client-12-server-info_es_v01.png │ │ ├── quassel-client-13-server-info-ssl_es_v01.png │ │ ├── quassel-client-14-setup-network-connection_es_v01.png │ │ ├── quassel-client-15-quassel-main_es_v01.png │ │ ├── quassel-client-2-add-core-account_es_v01.png │ │ ├── quassel-client-3-connect-to-core_es_v01.png │ │ ├── quassel-client-4-untrusted-security-certficate_es_v01.png │ │ ├── quassel-client-5-untrusted-security-certificate_es_v01.png │ │ ├── quassel-client-6-core-configuration-wizard_es_v01.png │ │ ├── quassel-client-7-create-admin-user_es_v01.png │ │ ├── quassel-client-8-select-storage-backend_es_v01.png │ │ ├── quassel-client-9-welcome-wizard_es_v01.png │ │ ├── radicale_web.png │ │ ├── raspberry2_thumb.jpg │ │ ├── raspberrypi2.jpg │ │ ├── raspberrypi3.jpg │ │ ├── raspberrypi3b_thumb.jpg │ │ ├── raspberrypi3bplus.jpg │ │ ├── raspberrypi3bplus_thumb.jpg │ │ ├── raspberrypi4b.jpg │ │ ├── raspberrypi4b_thumb.jpg │ │ ├── rock64.jpg │ │ ├── rock64_thumb.jpg │ │ ├── rockpro64.jpg │ │ ├── rockpro64_thumb.jpg │ │ ├── roundcube-gmail.png │ │ ├── roundcube-riseup.png │ │ ├── rssbridge-icon_en_V01.png │ │ ├── searx-screenshot.png │ │ ├── select_atom_feed.png │ │ ├── show_more.png │ │ ├── snapshots_v2.png │ │ ├── star_off.png │ │ ├── star_on.png │ │ ├── storage-cockpit.png │ │ ├── subscribe_to_feed.png │ │ ├── subscribe_to_subreddit.png │ │ ├── tor-bridge-configuration.png │ │ ├── tor-bridge-db.png │ │ ├── tor-socks-firefox.png │ │ ├── transmission.png │ │ ├── ttrss.png │ │ ├── ttrssapp1.png │ │ ├── ttrssapp2.png │ │ ├── ttrssapp3.png │ │ ├── ttrssapp4.png │ │ ├── ttrssapp5.png │ │ ├── ui_add_security_exception-es.png │ │ ├── ui_apps.png │ │ ├── ui_burger_icon-es.png │ │ ├── ui_burger_menu-es.png │ │ ├── ui_firstboot_account-es.png │ │ ├── ui_firstboot_complete-es.png │ │ ├── ui_firstboot_feature_updates.png │ │ ├── ui_firstboot_welcome-es.png │ │ ├── ui_frontpage.png │ │ ├── ui_frontpage_with_app.png │ │ ├── ui_help-es.png │ │ ├── ui_insecure_connection-es.png │ │ ├── ui_system.png │ │ ├── ui_user_menu-es.png │ │ ├── upgrades_es_v01.png │ │ ├── valid_youtube_rss_feed.png │ │ ├── virtualbox.png │ │ ├── virtualbox_console_after_boot.png │ │ ├── virtualbox_harddisk_file.png │ │ ├── virtualbox_network_type.png │ │ ├── virtualbox_os_type.png │ │ ├── virtualbox_thumb.png │ │ ├── wordpress-admin.png │ │ ├── wordpress-edit.png │ │ ├── wordpress-permalinks.png │ │ ├── wordpress-setup.png │ │ ├── wordpress-site.png │ │ ├── xmpp-clients_es_V02.png │ │ ├── youtube_final_step.png │ │ ├── zoph-home.png │ │ ├── zoph-icon_en_V01.png │ │ ├── zoph-new-person.png │ │ └── zoph-prefs.png │ │ └── pcDuino3.raw.wiki ├── plinth.xml ├── scripts │ ├── fetch-images.xslt │ ├── test-wikiparser │ └── wikiparser.py └── visual_design │ ├── FreedomBox-Identity-Manual.pdf │ ├── FreedomBox-Logo.7z │ ├── FreedomBox-logo-32px-white.png │ ├── FreedomBox-logo-grayscale-negative.png │ ├── FreedomBox-logo-grayscale-negative.svg │ ├── FreedomBox-logo-grayscale.png │ ├── FreedomBox-logo-grayscale.svg │ ├── FreedomBox-logo-lineart-negative.png │ ├── FreedomBox-logo-lineart-negative.svg │ ├── FreedomBox-logo-lineart.png │ ├── FreedomBox-logo-lineart.svg │ ├── FreedomBox-logo-standard.png │ ├── FreedomBox-logo-white.svg │ ├── apple-touch-icon.xcf │ ├── freedombox-logo-200px.png │ └── freedombox-logotype.png ├── manage.py ├── plinth ├── __init__.py ├── __main__.py ├── action_utils.py ├── actions.py ├── app.py ├── cfg.py ├── clients.py ├── config.py ├── conftest.py ├── container.py ├── context_processors.py ├── daemon.py ├── db │ ├── __init__.py │ ├── mariadb.py │ └── postgres.py ├── dbus.py ├── develop.config ├── diagnostic_check.py ├── errors.py ├── forms.py ├── frontpage.py ├── glib.py ├── hashers.py ├── kvstore.py ├── locale │ ├── README │ ├── ar │ │ └── LC_MESSAGES │ │ │ └── django.po │ ├── ar_SA │ │ └── LC_MESSAGES │ │ │ └── django.po │ ├── be │ │ └── LC_MESSAGES │ │ │ └── django.po │ ├── bg │ │ └── LC_MESSAGES │ │ │ └── django.po │ ├── bn │ │ └── LC_MESSAGES │ │ │ └── django.po │ ├── ca │ │ └── LC_MESSAGES │ │ │ └── django.po │ ├── cs │ │ └── LC_MESSAGES │ │ │ └── django.po │ ├── da │ │ └── LC_MESSAGES │ │ │ ├── django.po │ │ │ └── terms.org │ ├── de │ │ └── LC_MESSAGES │ │ │ └── django.po │ ├── django.pot │ ├── el │ │ └── LC_MESSAGES │ │ │ └── django.po │ ├── es │ │ └── LC_MESSAGES │ │ │ └── django.po │ ├── et │ │ └── LC_MESSAGES │ │ │ └── django.po │ ├── fa │ │ └── LC_MESSAGES │ │ │ └── django.po │ ├── fake │ │ └── LC_MESSAGES │ │ │ └── django.po │ ├── fr │ │ └── LC_MESSAGES │ │ │ └── django.po │ ├── gl │ │ └── LC_MESSAGES │ │ │ └── django.po │ ├── gu │ │ └── LC_MESSAGES │ │ │ └── django.po │ ├── hi │ │ └── LC_MESSAGES │ │ │ └── django.po │ ├── hu │ │ └── LC_MESSAGES │ │ │ └── django.po │ ├── id │ │ └── LC_MESSAGES │ │ │ └── django.po │ ├── it │ │ └── LC_MESSAGES │ │ │ └── django.po │ ├── ja │ │ └── LC_MESSAGES │ │ │ └── django.po │ ├── kn │ │ └── LC_MESSAGES │ │ │ └── django.po │ ├── lt │ │ └── LC_MESSAGES │ │ │ └── django.po │ ├── lv │ │ └── LC_MESSAGES │ │ │ └── django.po │ ├── nb │ │ └── LC_MESSAGES │ │ │ └── django.po │ ├── nl │ │ └── LC_MESSAGES │ │ │ └── django.po │ ├── pl │ │ └── LC_MESSAGES │ │ │ └── django.po │ ├── pt │ │ └── LC_MESSAGES │ │ │ └── django.po │ ├── ru │ │ └── LC_MESSAGES │ │ │ └── django.po │ ├── si │ │ └── LC_MESSAGES │ │ │ └── django.po │ ├── sl │ │ └── LC_MESSAGES │ │ │ └── django.po │ ├── sq │ │ └── LC_MESSAGES │ │ │ └── django.po │ ├── sr │ │ └── LC_MESSAGES │ │ │ └── django.po │ ├── sv │ │ └── LC_MESSAGES │ │ │ └── django.po │ ├── ta │ │ └── LC_MESSAGES │ │ │ └── django.po │ ├── te │ │ └── LC_MESSAGES │ │ │ └── django.po │ ├── tr │ │ └── LC_MESSAGES │ │ │ └── django.po │ ├── uk │ │ └── LC_MESSAGES │ │ │ └── django.po │ ├── vi │ │ └── LC_MESSAGES │ │ │ └── django.po │ ├── zh_Hans │ │ └── LC_MESSAGES │ │ │ └── django.po │ └── zh_Hant │ │ └── LC_MESSAGES │ │ └── django.po ├── log.py ├── menu.py ├── middleware.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_modulestore.py │ ├── 0003_merge_firstboot_completed_fields.py │ ├── 0004_userprofile.py │ ├── 0005_storednotification.py │ └── __init__.py ├── models.py ├── module_loader.py ├── modules │ ├── __init__.py │ ├── apache │ │ ├── __init__.py │ │ ├── components.py │ │ ├── data │ │ │ └── usr │ │ │ │ └── share │ │ │ │ └── freedombox │ │ │ │ ├── etc │ │ │ │ ├── apache2 │ │ │ │ │ └── conf-available │ │ │ │ │ │ └── php-fpm-freedombox.conf │ │ │ │ └── fail2ban │ │ │ │ │ └── jail.d │ │ │ │ │ └── apache-auth-freedombox.conf │ │ │ │ └── modules-enabled │ │ │ │ └── apache │ │ ├── privileged.py │ │ ├── tests │ │ │ ├── __init__.py │ │ │ ├── test_components.py │ │ │ └── test_uws.py │ │ └── urls.py │ ├── api │ │ ├── __init__.py │ │ ├── data │ │ │ └── usr │ │ │ │ └── share │ │ │ │ └── freedombox │ │ │ │ └── modules-enabled │ │ │ │ └── api │ │ ├── test │ │ │ └── __init__.py │ │ ├── urls.py │ │ └── views.py │ ├── avahi │ │ ├── __init__.py │ │ ├── data │ │ │ └── usr │ │ │ │ ├── lib │ │ │ │ └── systemd │ │ │ │ │ └── system │ │ │ │ │ └── avahi-daemon.service.d │ │ │ │ │ └── freedombox.conf │ │ │ │ └── share │ │ │ │ └── freedombox │ │ │ │ └── modules-enabled │ │ │ │ └── avahi │ │ ├── manifest.py │ │ ├── tests │ │ │ ├── __init__.py │ │ │ └── test_functional.py │ │ └── urls.py │ ├── backups │ │ ├── __init__.py │ │ ├── api.py │ │ ├── components.py │ │ ├── data │ │ │ └── usr │ │ │ │ └── share │ │ │ │ └── freedombox │ │ │ │ └── modules-enabled │ │ │ │ └── backups │ │ ├── decorators.py │ │ ├── errors.py │ │ ├── forms.py │ │ ├── manifest.py │ │ ├── privileged.py │ │ ├── repository.py │ │ ├── schedule.py │ │ ├── static │ │ │ └── backups.css │ │ ├── store.py │ │ ├── templates │ │ │ ├── backups.html │ │ │ ├── backups_add_remote_repository.html │ │ │ ├── backups_add_repository.html │ │ │ ├── backups_delete.html │ │ │ ├── backups_repository.html │ │ │ ├── backups_repository_remove.html │ │ │ ├── backups_restore.html │ │ │ ├── backups_upload.html │ │ │ └── verify_ssh_hostkey.html │ │ ├── tests │ │ │ ├── __init__.py │ │ │ ├── backup_data │ │ │ │ └── sample_file.txt │ │ │ ├── test_api.py │ │ │ ├── test_backups.py │ │ │ ├── test_components.py │ │ │ ├── test_functional.py │ │ │ ├── test_schedule.py │ │ │ ├── test_ssh_remotes.py │ │ │ ├── test_store.py │ │ │ └── test_validators.py │ │ ├── urls.py │ │ └── views.py │ ├── bepasty │ │ ├── __init__.py │ │ ├── data │ │ │ └── usr │ │ │ │ └── share │ │ │ │ └── freedombox │ │ │ │ ├── etc │ │ │ │ ├── apache2 │ │ │ │ │ └── conf-available │ │ │ │ │ │ └── bepasty-freedombox.conf │ │ │ │ └── uwsgi │ │ │ │ │ └── apps-available │ │ │ │ │ └── bepasty-freedombox.ini │ │ │ │ └── modules-enabled │ │ │ │ └── bepasty │ │ ├── forms.py │ │ ├── manifest.py │ │ ├── privileged.py │ │ ├── static │ │ │ └── icons │ │ │ │ ├── bepasty.png │ │ │ │ └── bepasty.svg │ │ ├── templates │ │ │ └── bepasty.html │ │ ├── tests │ │ │ ├── __init__.py │ │ │ └── test_functional.py │ │ ├── urls.py │ │ └── views.py │ ├── bind │ │ ├── __init__.py │ │ ├── data │ │ │ └── usr │ │ │ │ ├── lib │ │ │ │ └── systemd │ │ │ │ │ └── system │ │ │ │ │ └── bind9.service.d │ │ │ │ │ └── freedombox.conf │ │ │ │ └── share │ │ │ │ └── freedombox │ │ │ │ └── modules-enabled │ │ │ │ └── bind │ │ ├── forms.py │ │ ├── manifest.py │ │ ├── privileged.py │ │ ├── templates │ │ │ └── bind.html │ │ ├── tests │ │ │ ├── __init__.py │ │ │ ├── test_bind.py │ │ │ └── test_functional.py │ │ ├── urls.py │ │ └── views.py │ ├── calibre │ │ ├── __init__.py │ │ ├── data │ │ │ └── usr │ │ │ │ ├── lib │ │ │ │ └── systemd │ │ │ │ │ └── system │ │ │ │ │ └── calibre-server-freedombox.service │ │ │ │ └── share │ │ │ │ └── freedombox │ │ │ │ ├── etc │ │ │ │ └── apache2 │ │ │ │ │ └── conf-available │ │ │ │ │ └── calibre-freedombox.conf │ │ │ │ └── modules-enabled │ │ │ │ └── calibre │ │ ├── forms.py │ │ ├── manifest.py │ │ ├── privileged.py │ │ ├── static │ │ │ └── icons │ │ │ │ ├── calibre.png │ │ │ │ └── calibre.svg │ │ ├── templates │ │ │ ├── calibre-delete-library.html │ │ │ └── calibre.html │ │ ├── tests │ │ │ ├── __init__.py │ │ │ ├── data │ │ │ │ └── sample.txt │ │ │ ├── test_functional.py │ │ │ ├── test_privileged.py │ │ │ └── test_views.py │ │ ├── urls.py │ │ └── views.py │ ├── cockpit │ │ ├── __init__.py │ │ ├── data │ │ │ └── usr │ │ │ │ └── share │ │ │ │ └── freedombox │ │ │ │ ├── etc │ │ │ │ └── apache2 │ │ │ │ │ └── conf-available │ │ │ │ │ └── cockpit-freedombox.conf │ │ │ │ └── modules-enabled │ │ │ │ └── cockpit │ │ ├── manifest.py │ │ ├── privileged.py │ │ ├── static │ │ │ └── icons │ │ │ │ ├── cockpit.png │ │ │ │ └── cockpit.svg │ │ ├── tests │ │ │ ├── __init__.py │ │ │ └── test_functional.py │ │ └── urls.py │ ├── config │ │ ├── __init__.py │ │ ├── data │ │ │ └── usr │ │ │ │ ├── lib │ │ │ │ └── systemd │ │ │ │ │ ├── journald.conf.d │ │ │ │ │ └── freedombox.conf │ │ │ │ │ └── system │ │ │ │ │ └── zramswap.service.d │ │ │ │ │ └── freedombox.conf │ │ │ │ └── share │ │ │ │ └── freedombox │ │ │ │ └── modules-enabled │ │ │ │ └── config │ │ ├── forms.py │ │ ├── manifest.py │ │ ├── privileged.py │ │ ├── tests │ │ │ ├── __init__.py │ │ │ ├── test_config.py │ │ │ └── test_functional.py │ │ ├── urls.py │ │ └── views.py │ ├── coturn │ │ ├── __init__.py │ │ ├── components.py │ │ ├── data │ │ │ └── usr │ │ │ │ ├── lib │ │ │ │ ├── firewalld │ │ │ │ │ └── services │ │ │ │ │ │ └── coturn-freedombox.xml │ │ │ │ └── systemd │ │ │ │ │ └── system │ │ │ │ │ └── coturn.service.d │ │ │ │ │ └── freedombox.conf │ │ │ │ └── share │ │ │ │ └── freedombox │ │ │ │ └── modules-enabled │ │ │ │ └── coturn │ │ ├── forms.py │ │ ├── manifest.py │ │ ├── privileged.py │ │ ├── static │ │ │ └── icons │ │ │ │ ├── coturn.png │ │ │ │ └── coturn.svg │ │ ├── templates │ │ │ └── coturn.html │ │ ├── tests │ │ │ ├── __init__.py │ │ │ ├── test_components.py │ │ │ └── test_functional.py │ │ ├── urls.py │ │ └── views.py │ ├── datetime │ │ ├── __init__.py │ │ ├── data │ │ │ └── usr │ │ │ │ └── share │ │ │ │ └── freedombox │ │ │ │ └── modules-enabled │ │ │ │ └── datetime │ │ ├── forms.py │ │ ├── manifest.py │ │ ├── privileged.py │ │ ├── tests │ │ │ ├── __init__.py │ │ │ └── test_functional.py │ │ ├── urls.py │ │ └── views.py │ ├── deluge │ │ ├── __init__.py │ │ ├── data │ │ │ └── usr │ │ │ │ ├── lib │ │ │ │ └── systemd │ │ │ │ │ └── system │ │ │ │ │ ├── deluge-web.service.d │ │ │ │ │ └── freedombox.conf │ │ │ │ │ └── deluged.service.d │ │ │ │ │ └── freedombox.conf │ │ │ │ └── share │ │ │ │ └── freedombox │ │ │ │ ├── etc │ │ │ │ └── apache2 │ │ │ │ │ └── conf-available │ │ │ │ │ └── deluge-plinth.conf │ │ │ │ └── modules-enabled │ │ │ │ └── deluge │ │ ├── forms.py │ │ ├── manifest.py │ │ ├── privileged.py │ │ ├── static │ │ │ └── icons │ │ │ │ ├── deluge.png │ │ │ │ └── deluge.svg │ │ ├── tests │ │ │ ├── __init__.py │ │ │ ├── data │ │ │ │ └── sample.torrent │ │ │ ├── test_functional.py │ │ │ └── test_utils.py │ │ ├── urls.py │ │ ├── utils.py │ │ └── views.py │ ├── diagnostics │ │ ├── __init__.py │ │ ├── data │ │ │ └── usr │ │ │ │ └── share │ │ │ │ └── freedombox │ │ │ │ └── modules-enabled │ │ │ │ └── diagnostics │ │ ├── forms.py │ │ ├── manifest.py │ │ ├── templates │ │ │ ├── diagnostics.html │ │ │ ├── diagnostics_app.html │ │ │ ├── diagnostics_button.html │ │ │ ├── diagnostics_full.html │ │ │ └── diagnostics_results.html │ │ ├── tests │ │ │ ├── __init__.py │ │ │ └── test_diagnostics.py │ │ ├── urls.py │ │ └── views.py │ ├── dynamicdns │ │ ├── __init__.py │ │ ├── data │ │ │ └── usr │ │ │ │ └── share │ │ │ │ └── freedombox │ │ │ │ └── modules-enabled │ │ │ │ └── dynamicdns │ │ ├── forms.py │ │ ├── gnudip.py │ │ ├── manifest.py │ │ ├── privileged.py │ │ ├── static │ │ │ └── dynamicdns.js │ │ ├── templates │ │ │ ├── dynamicdns-domain-delete.html │ │ │ ├── dynamicdns-domain.html │ │ │ └── dynamicdns.html │ │ ├── tests │ │ │ ├── __init__.py │ │ │ ├── test_functional.py │ │ │ └── test_gnudip.py │ │ ├── urls.py │ │ └── views.py │ ├── ejabberd │ │ ├── __init__.py │ │ ├── data │ │ │ └── usr │ │ │ │ └── share │ │ │ │ └── freedombox │ │ │ │ ├── etc │ │ │ │ ├── apache2 │ │ │ │ │ └── conf-available │ │ │ │ │ │ └── jwchat-plinth.conf │ │ │ │ └── avahi │ │ │ │ │ └── services │ │ │ │ │ └── xmpp-server.service │ │ │ │ └── modules-enabled │ │ │ │ └── ejabberd │ │ ├── forms.py │ │ ├── manifest.py │ │ ├── privileged.py │ │ ├── static │ │ │ ├── ejabberd.js │ │ │ └── icons │ │ │ │ ├── ejabberd.png │ │ │ │ └── ejabberd.svg │ │ ├── templates │ │ │ └── ejabberd.html │ │ ├── tests │ │ │ ├── __init__.py │ │ │ ├── data │ │ │ │ └── ejabberd.yml.example │ │ │ ├── test_functional.py │ │ │ └── test_turn_config.py │ │ ├── urls.py │ │ └── views.py │ ├── email │ │ ├── __init__.py │ │ ├── aliases.py │ │ ├── data │ │ │ └── usr │ │ │ │ └── share │ │ │ │ └── freedombox │ │ │ │ ├── etc │ │ │ │ ├── apache2 │ │ │ │ │ └── conf-available │ │ │ │ │ │ └── email-freedombox.conf │ │ │ │ ├── dovecot │ │ │ │ │ ├── conf.d │ │ │ │ │ │ ├── 2.3 │ │ │ │ │ │ │ ├── 05-freedombox-passdb.conf │ │ │ │ │ │ │ ├── 05-freedombox-userdb.conf │ │ │ │ │ │ │ ├── 15-freedombox-auth.conf │ │ │ │ │ │ │ ├── 15-freedombox-mail.conf │ │ │ │ │ │ │ ├── 90-freedombox-imap.conf │ │ │ │ │ │ │ ├── 90-freedombox-lmtp.conf │ │ │ │ │ │ │ ├── 90-freedombox-mailboxes.conf │ │ │ │ │ │ │ ├── 90-freedombox-master.conf │ │ │ │ │ │ │ ├── 90-freedombox-tls.conf │ │ │ │ │ │ │ ├── 95-freedombox-fts.conf │ │ │ │ │ │ │ ├── 95-freedombox-sieve.conf │ │ │ │ │ │ │ └── freedombox-ldap.conf.ext │ │ │ │ │ │ └── 2.4 │ │ │ │ │ │ │ ├── 05-freedombox-passdb.conf │ │ │ │ │ │ │ ├── 05-freedombox-userdb.conf │ │ │ │ │ │ │ ├── 15-freedombox-auth.conf │ │ │ │ │ │ │ ├── 15-freedombox-mail.conf │ │ │ │ │ │ │ ├── 90-freedombox-imap.conf │ │ │ │ │ │ │ ├── 90-freedombox-lmtp.conf │ │ │ │ │ │ │ ├── 90-freedombox-mailboxes.conf │ │ │ │ │ │ │ ├── 90-freedombox-master.conf │ │ │ │ │ │ │ ├── 90-freedombox-tls.conf │ │ │ │ │ │ │ ├── 95-freedombox-fts.conf │ │ │ │ │ │ │ ├── 95-freedombox-sieve.conf │ │ │ │ │ │ │ └── freedombox-ldap.conf.ext │ │ │ │ │ ├── freedombox-sieve-after │ │ │ │ │ │ └── sort-spam.sieve │ │ │ │ │ └── freedombox-sieve │ │ │ │ │ │ ├── learn-ham.sieve │ │ │ │ │ │ └── learn-spam.sieve │ │ │ │ ├── fail2ban │ │ │ │ │ └── jail.d │ │ │ │ │ │ └── dovecot-freedombox.conf │ │ │ │ ├── postfix │ │ │ │ │ └── freedombox-aliases.cf │ │ │ │ └── rspamd │ │ │ │ │ └── local.d │ │ │ │ │ ├── freedombox-dkim-signing.conf │ │ │ │ │ ├── freedombox-logging.inc │ │ │ │ │ ├── freedombox-milter-headers.conf │ │ │ │ │ └── freedombox-redis.conf │ │ │ │ └── modules-enabled │ │ │ │ └── email │ │ ├── dns.py │ │ ├── dovecot.py │ │ ├── forms.py │ │ ├── manifest.py │ │ ├── postfix.py │ │ ├── privileged │ │ │ ├── __init__.py │ │ │ ├── aliases.py │ │ │ ├── dkim.py │ │ │ ├── domain.py │ │ │ ├── home.py │ │ │ ├── postfix.py │ │ │ ├── spam.py │ │ │ └── tls.py │ │ ├── static │ │ │ └── icons │ │ │ │ ├── email.png │ │ │ │ └── email.svg │ │ ├── templates │ │ │ ├── email-aliases.html │ │ │ ├── email-autoconfig.xml │ │ │ ├── email-dns.html │ │ │ └── email.html │ │ ├── tests │ │ │ ├── __init__.py │ │ │ └── test_functional.py │ │ ├── urls.py │ │ └── views.py │ ├── featherwiki │ │ ├── __init__.py │ │ ├── data │ │ │ └── usr │ │ │ │ └── share │ │ │ │ └── freedombox │ │ │ │ ├── etc │ │ │ │ └── apache2 │ │ │ │ │ └── conf-available │ │ │ │ │ └── featherwiki-freedombox.conf │ │ │ │ └── modules-enabled │ │ │ │ └── featherwiki │ │ ├── forms.py │ │ ├── manifest.py │ │ ├── privileged.py │ │ ├── static │ │ │ └── icons │ │ │ │ ├── featherwiki.png │ │ │ │ └── featherwiki.svg │ │ ├── templates │ │ │ ├── featherwiki_configure.html │ │ │ ├── featherwiki_delete.html │ │ │ └── featherwiki_upload_file.html │ │ ├── tests │ │ │ ├── __init__.py │ │ │ ├── data │ │ │ │ └── dummy_wiki.html │ │ │ └── test_functional.py │ │ ├── urls.py │ │ └── views.py │ ├── firewall │ │ ├── __init__.py │ │ ├── components.py │ │ ├── data │ │ │ └── usr │ │ │ │ └── share │ │ │ │ ├── freedombox │ │ │ │ └── modules-enabled │ │ │ │ │ └── firewall │ │ │ │ └── polkit-1 │ │ │ │ └── rules.d │ │ │ │ └── 50-freedombox-firewalld.rules │ │ ├── manifest.py │ │ ├── privileged.py │ │ ├── static │ │ │ └── firewall.css │ │ ├── templates │ │ │ └── firewall.html │ │ ├── tests │ │ │ ├── __init__.py │ │ │ └── test_components.py │ │ ├── urls.py │ │ └── views.py │ ├── first_boot │ │ ├── __init__.py │ │ ├── data │ │ │ └── usr │ │ │ │ └── share │ │ │ │ └── freedombox │ │ │ │ └── modules-enabled │ │ │ │ └── first_boot │ │ ├── forms.py │ │ ├── middleware.py │ │ ├── templates │ │ │ ├── base_firstboot.html │ │ │ ├── firstboot_complete.html │ │ │ ├── firstboot_navbar.html │ │ │ └── firstboot_welcome.html │ │ ├── templatetags │ │ │ ├── __init__.py │ │ │ └── firstboot_extras.py │ │ ├── tests │ │ │ └── __init__.py │ │ ├── urls.py │ │ └── views.py │ ├── gitweb │ │ ├── __init__.py │ │ ├── data │ │ │ └── usr │ │ │ │ └── share │ │ │ │ └── freedombox │ │ │ │ ├── etc │ │ │ │ ├── apache2 │ │ │ │ │ └── conf-available │ │ │ │ │ │ ├── gitweb-freedombox-auth.conf │ │ │ │ │ │ └── gitweb-freedombox.conf │ │ │ │ └── gitweb-freedombox.conf │ │ │ │ └── modules-enabled │ │ │ │ └── gitweb │ │ ├── forms.py │ │ ├── manifest.py │ │ ├── privileged.py │ │ ├── static │ │ │ └── icons │ │ │ │ ├── gitweb.png │ │ │ │ └── gitweb.svg │ │ ├── templates │ │ │ ├── gitweb_configure.html │ │ │ └── gitweb_delete.html │ │ ├── tests │ │ │ ├── __init__.py │ │ │ ├── test_functional.py │ │ │ ├── test_privileged.py │ │ │ └── test_views.py │ │ ├── urls.py │ │ └── views.py │ ├── gnome │ │ ├── __init__.py │ │ ├── data │ │ │ └── usr │ │ │ │ └── share │ │ │ │ └── freedombox │ │ │ │ └── modules-enabled │ │ │ │ └── gnome │ │ ├── manifest.py │ │ ├── static │ │ │ └── icons │ │ │ │ ├── gnome.png │ │ │ │ └── gnome.svg │ │ └── urls.py │ ├── help │ │ ├── __init__.py │ │ ├── data │ │ │ └── usr │ │ │ │ └── share │ │ │ │ └── freedombox │ │ │ │ └── modules-enabled │ │ │ │ └── help │ │ ├── static │ │ │ └── help.css │ │ ├── templates │ │ │ ├── help_about.html │ │ │ ├── help_base.html │ │ │ ├── help_contribute.html │ │ │ ├── help_feedback.html │ │ │ ├── help_index.html │ │ │ ├── help_manual.html │ │ │ └── help_support.html │ │ ├── tests │ │ │ ├── __init__.py │ │ │ └── test_views.py │ │ ├── urls.py │ │ └── views.py │ ├── homeassistant │ │ ├── __init__.py │ │ ├── data │ │ │ └── usr │ │ │ │ └── share │ │ │ │ └── freedombox │ │ │ │ ├── etc │ │ │ │ └── apache2 │ │ │ │ │ └── includes │ │ │ │ │ └── home-assistant-freedombox.conf │ │ │ │ └── modules-enabled │ │ │ │ └── homeassistant │ │ ├── manifest.py │ │ ├── privileged.py │ │ ├── static │ │ │ └── icons │ │ │ │ ├── homeassistant.png │ │ │ │ └── homeassistant.svg │ │ ├── templates │ │ │ └── homeassistant.html │ │ ├── tests │ │ │ ├── __init__.py │ │ │ └── test_functional.py │ │ ├── urls.py │ │ └── views.py │ ├── ikiwiki │ │ ├── __init__.py │ │ ├── data │ │ │ └── usr │ │ │ │ └── share │ │ │ │ └── freedombox │ │ │ │ ├── etc │ │ │ │ ├── apache2 │ │ │ │ │ └── conf-available │ │ │ │ │ │ └── ikiwiki-plinth.conf │ │ │ │ └── ikiwiki │ │ │ │ │ ├── plinth-blog.setup │ │ │ │ │ └── plinth-wiki.setup │ │ │ │ └── modules-enabled │ │ │ │ └── ikiwiki │ │ ├── forms.py │ │ ├── manifest.py │ │ ├── privileged.py │ │ ├── static │ │ │ └── icons │ │ │ │ ├── ikiwiki.png │ │ │ │ └── ikiwiki.svg │ │ ├── templates │ │ │ ├── ikiwiki_configure.html │ │ │ ├── ikiwiki_create.html │ │ │ └── ikiwiki_delete.html │ │ ├── tests │ │ │ ├── __init__.py │ │ │ └── test_functional.py │ │ ├── urls.py │ │ └── views.py │ ├── infinoted │ │ ├── __init__.py │ │ ├── data │ │ │ └── usr │ │ │ │ ├── lib │ │ │ │ └── firewalld │ │ │ │ │ └── services │ │ │ │ │ └── infinoted-plinth.xml │ │ │ │ └── share │ │ │ │ └── freedombox │ │ │ │ └── modules-enabled │ │ │ │ └── infinoted │ │ ├── manifest.py │ │ ├── privileged.py │ │ ├── static │ │ │ └── icons │ │ │ │ ├── infinoted.png │ │ │ │ └── infinoted.svg │ │ ├── tests │ │ │ ├── __init__.py │ │ │ └── test_functional.py │ │ └── urls.py │ ├── janus │ │ ├── __init__.py │ │ ├── data │ │ │ └── usr │ │ │ │ ├── lib │ │ │ │ ├── firewalld │ │ │ │ │ └── services │ │ │ │ │ │ └── janus-freedombox.xml │ │ │ │ └── systemd │ │ │ │ │ └── system │ │ │ │ │ └── janus.service.d │ │ │ │ │ └── freedombox.conf │ │ │ │ └── share │ │ │ │ └── freedombox │ │ │ │ ├── etc │ │ │ │ └── apache2 │ │ │ │ │ └── conf-available │ │ │ │ │ └── janus-freedombox.conf │ │ │ │ └── modules-enabled │ │ │ │ └── janus │ │ ├── manifest.py │ │ ├── privileged.py │ │ ├── static │ │ │ ├── icons │ │ │ │ ├── janus.png │ │ │ │ └── janus.svg │ │ │ ├── janus-freedombox-config.js │ │ │ ├── janus-video-room.css │ │ │ └── janus-video-room.js │ │ ├── templates │ │ │ └── janus_video_room.html │ │ ├── tests │ │ │ ├── __init__.py │ │ │ └── test_functional.py │ │ ├── urls.py │ │ └── views.py │ ├── jsxc │ │ ├── __init__.py │ │ ├── data │ │ │ └── usr │ │ │ │ └── share │ │ │ │ └── freedombox │ │ │ │ └── modules-enabled │ │ │ │ └── jsxc │ │ ├── manifest.py │ │ ├── static │ │ │ ├── icons │ │ │ │ ├── jsxc.png │ │ │ │ └── jsxc.svg │ │ │ ├── jsxc-plinth.css │ │ │ └── jsxc-plinth.js │ │ ├── templates │ │ │ └── jsxc_launch.html │ │ ├── tests │ │ │ ├── __init__.py │ │ │ └── test_functional.py │ │ ├── urls.py │ │ └── views.py │ ├── kiwix │ │ ├── __init__.py │ │ ├── data │ │ │ └── usr │ │ │ │ ├── lib │ │ │ │ └── systemd │ │ │ │ │ └── system │ │ │ │ │ └── kiwix-server-freedombox.service │ │ │ │ └── share │ │ │ │ └── freedombox │ │ │ │ ├── etc │ │ │ │ └── apache2 │ │ │ │ │ └── conf-available │ │ │ │ │ └── kiwix-freedombox.conf │ │ │ │ └── modules-enabled │ │ │ │ └── kiwix │ │ ├── forms.py │ │ ├── manifest.py │ │ ├── privileged.py │ │ ├── static │ │ │ └── icons │ │ │ │ ├── kiwix.png │ │ │ │ └── kiwix.svg │ │ ├── templates │ │ │ ├── kiwix-add-package.html │ │ │ ├── kiwix-delete-package.html │ │ │ └── kiwix.html │ │ ├── tests │ │ │ ├── __init__.py │ │ │ ├── data │ │ │ │ ├── FreedomBox.zim │ │ │ │ ├── invalid.zim │ │ │ │ └── sample_library_zim.xml │ │ │ ├── test_functional.py │ │ │ ├── test_privileged.py │ │ │ ├── test_validations.py │ │ │ └── test_views.py │ │ ├── urls.py │ │ └── views.py │ ├── letsencrypt │ │ ├── __init__.py │ │ ├── components.py │ │ ├── data │ │ │ └── usr │ │ │ │ └── share │ │ │ │ └── freedombox │ │ │ │ ├── etc │ │ │ │ └── letsencrypt │ │ │ │ │ └── renewal-hooks │ │ │ │ │ └── deploy │ │ │ │ │ └── 50-freedombox │ │ │ │ └── modules-enabled │ │ │ │ └── letsencrypt │ │ ├── dbus.py │ │ ├── manifest.py │ │ ├── privileged.py │ │ ├── static │ │ │ └── letsencrypt.css │ │ ├── templates │ │ │ └── letsencrypt.html │ │ ├── tests │ │ │ ├── __init__.py │ │ │ ├── test_components.py │ │ │ └── test_domain_name_changes.py │ │ ├── urls.py │ │ └── views.py │ ├── matrixsynapse │ │ ├── __init__.py │ │ ├── data │ │ │ └── usr │ │ │ │ ├── lib │ │ │ │ ├── firewalld │ │ │ │ │ └── services │ │ │ │ │ │ └── matrix-synapse-plinth.xml │ │ │ │ └── systemd │ │ │ │ │ └── system │ │ │ │ │ └── matrix-synapse.service.d │ │ │ │ │ └── freedombox.conf │ │ │ │ └── share │ │ │ │ └── freedombox │ │ │ │ ├── etc │ │ │ │ ├── apache2 │ │ │ │ │ └── conf-available │ │ │ │ │ │ └── matrix-synapse-plinth.conf │ │ │ │ └── fail2ban │ │ │ │ │ ├── filter.d │ │ │ │ │ └── matrix-auth-freedombox.conf │ │ │ │ │ └── jail.d │ │ │ │ │ └── matrix-auth-freedombox.conf │ │ │ │ └── modules-enabled │ │ │ │ └── matrixsynapse │ │ ├── forms.py │ │ ├── manifest.py │ │ ├── privileged.py │ │ ├── static │ │ │ ├── icons │ │ │ │ ├── matrixsynapse.png │ │ │ │ └── matrixsynapse.svg │ │ │ └── matrixsynapse.js │ │ ├── templates │ │ │ ├── matrix-synapse-pre-setup.html │ │ │ └── matrix-synapse.html │ │ ├── tests │ │ │ ├── __init__.py │ │ │ ├── test_functional.py │ │ │ └── test_turn_config.py │ │ ├── urls.py │ │ └── views.py │ ├── mediawiki │ │ ├── __init__.py │ │ ├── data │ │ │ └── usr │ │ │ │ ├── lib │ │ │ │ └── systemd │ │ │ │ │ └── system │ │ │ │ │ └── mediawiki-jobrunner.service.d │ │ │ │ │ └── freedombox.conf │ │ │ │ └── share │ │ │ │ ├── freedombox │ │ │ │ ├── etc │ │ │ │ │ ├── apache2 │ │ │ │ │ │ └── conf-available │ │ │ │ │ │ │ └── mediawiki-freedombox.conf │ │ │ │ │ └── mediawiki │ │ │ │ │ │ └── FreedomBoxStaticSettings.php │ │ │ │ └── modules-enabled │ │ │ │ │ └── mediawiki │ │ │ │ └── mediawiki │ │ │ │ └── resources │ │ │ │ └── assets │ │ │ │ └── freedombox │ │ │ │ └── poweredby_freedombox.svg │ │ ├── forms.py │ │ ├── manifest.py │ │ ├── privileged.py │ │ ├── static │ │ │ ├── icons │ │ │ │ ├── mediawiki.png │ │ │ │ └── mediawiki.svg │ │ │ └── mediawiki.js │ │ ├── templates │ │ │ └── mediawiki.html │ │ ├── tests │ │ │ ├── __init__.py │ │ │ ├── test_functional.py │ │ │ └── test_settings.py │ │ ├── urls.py │ │ └── views.py │ ├── minetest │ │ ├── __init__.py │ │ ├── data │ │ │ └── usr │ │ │ │ ├── lib │ │ │ │ ├── firewalld │ │ │ │ │ └── services │ │ │ │ │ │ └── minetest-plinth.xml │ │ │ │ └── systemd │ │ │ │ │ └── system │ │ │ │ │ └── minetest-server.service.d │ │ │ │ │ └── freedombox.conf │ │ │ │ └── share │ │ │ │ └── freedombox │ │ │ │ └── modules-enabled │ │ │ │ └── minetest │ │ ├── forms.py │ │ ├── manifest.py │ │ ├── privileged.py │ │ ├── static │ │ │ └── icons │ │ │ │ ├── minetest.png │ │ │ │ └── minetest.svg │ │ ├── templates │ │ │ └── minetest.html │ │ ├── tests │ │ │ ├── __init__.py │ │ │ └── test_functional.py │ │ ├── urls.py │ │ └── views.py │ ├── minidlna │ │ ├── __init__.py │ │ ├── data │ │ │ └── usr │ │ │ │ └── share │ │ │ │ └── freedombox │ │ │ │ └── modules-enabled │ │ │ │ └── minidlna │ │ ├── forms.py │ │ ├── manifest.py │ │ ├── privileged.py │ │ ├── static │ │ │ └── icons │ │ │ │ ├── minidlna.png │ │ │ │ └── minidlna.svg │ │ ├── tests │ │ │ ├── __init__.py │ │ │ └── test_functional.py │ │ ├── urls.py │ │ └── views.py │ ├── miniflux │ │ ├── __init__.py │ │ ├── data │ │ │ └── usr │ │ │ │ ├── lib │ │ │ │ └── systemd │ │ │ │ │ └── system │ │ │ │ │ └── miniflux.service.d │ │ │ │ │ └── freedombox.conf │ │ │ │ └── share │ │ │ │ └── freedombox │ │ │ │ ├── etc │ │ │ │ └── apache2 │ │ │ │ │ └── conf-available │ │ │ │ │ └── miniflux-freedombox.conf │ │ │ │ └── modules-enabled │ │ │ │ └── miniflux │ │ ├── forms.py │ │ ├── manifest.py │ │ ├── privileged.py │ │ ├── static │ │ │ └── icons │ │ │ │ ├── miniflux.png │ │ │ │ └── miniflux.svg │ │ ├── templates │ │ │ └── miniflux.html │ │ ├── tests │ │ │ ├── __init__.py │ │ │ ├── test_functional.py │ │ │ └── test_views.py │ │ ├── urls.py │ │ └── views.py │ ├── mumble │ │ ├── __init__.py │ │ ├── data │ │ │ └── usr │ │ │ │ ├── lib │ │ │ │ └── firewalld │ │ │ │ │ └── services │ │ │ │ │ └── mumble-plinth.xml │ │ │ │ └── share │ │ │ │ └── freedombox │ │ │ │ └── modules-enabled │ │ │ │ └── mumble │ │ ├── forms.py │ │ ├── manifest.py │ │ ├── privileged.py │ │ ├── static │ │ │ └── icons │ │ │ │ ├── mumble.png │ │ │ │ └── mumble.svg │ │ ├── tests │ │ │ ├── __init__.py │ │ │ └── test_functional.py │ │ ├── urls.py │ │ └── views.py │ ├── names │ │ ├── __init__.py │ │ ├── components.py │ │ ├── data │ │ │ └── usr │ │ │ │ ├── lib │ │ │ │ └── systemd │ │ │ │ │ └── resolved.conf.d │ │ │ │ │ └── freedombox.conf │ │ │ │ └── share │ │ │ │ └── freedombox │ │ │ │ ├── etc │ │ │ │ └── systemd │ │ │ │ │ └── resolved.conf.d │ │ │ │ │ └── freedombox-fallback.conf │ │ │ │ └── modules-enabled │ │ │ │ └── names │ │ ├── forms.py │ │ ├── manifest.py │ │ ├── privileged.py │ │ ├── resolved.py │ │ ├── templates │ │ │ ├── names-domain-add.html │ │ │ ├── names-domain-delete.html │ │ │ └── names.html │ │ ├── tests │ │ │ ├── __init__.py │ │ │ ├── test_components.py │ │ │ ├── test_forms.py │ │ │ ├── test_functional.py │ │ │ └── test_names.py │ │ ├── urls.py │ │ └── views.py │ ├── networks │ │ ├── __init__.py │ │ ├── data │ │ │ └── usr │ │ │ │ └── share │ │ │ │ ├── freedombox │ │ │ │ ├── etc │ │ │ │ │ └── NetworkManager │ │ │ │ │ │ └── dispatcher.d │ │ │ │ │ │ └── 10-freedombox-batman │ │ │ │ └── modules-enabled │ │ │ │ │ └── networks │ │ │ │ └── polkit-1 │ │ │ │ └── rules.d │ │ │ │ └── 50-freedombox-network-manager.rules │ │ ├── forms.py │ │ ├── manifest.py │ │ ├── privileged.py │ │ ├── static │ │ │ ├── networks.css │ │ │ └── networks.js │ │ ├── templates │ │ │ ├── connection_show.html │ │ │ ├── connections_create.html │ │ │ ├── connections_delete.html │ │ │ ├── connections_diagram.html │ │ │ ├── connections_edit.html │ │ │ ├── connections_fields.html │ │ │ ├── connections_fields_pppoe.html │ │ │ ├── connections_fields_privacy.html │ │ │ ├── connections_fields_wifi.html │ │ │ ├── connections_list.html │ │ │ ├── connections_type_select.html │ │ │ ├── internet_connectivity_content.html │ │ │ ├── internet_connectivity_main.html │ │ │ ├── internet_connectivity_type.html │ │ │ ├── network_topology_content.html │ │ │ ├── network_topology_main.html │ │ │ ├── network_topology_update.html │ │ │ ├── networks_configuration.html │ │ │ ├── router_configuration_content.html │ │ │ ├── router_configuration_update.html │ │ │ └── wifi_scan.html │ │ ├── tests │ │ │ ├── __init__.py │ │ │ └── test_privileged.py │ │ ├── urls.py │ │ └── views.py │ ├── nextcloud │ │ ├── __init__.py │ │ ├── data │ │ │ └── usr │ │ │ │ ├── lib │ │ │ │ └── systemd │ │ │ │ │ └── system │ │ │ │ │ ├── nextcloud-cron-freedombox.service │ │ │ │ │ └── nextcloud-cron-freedombox.timer │ │ │ │ └── share │ │ │ │ └── freedombox │ │ │ │ ├── etc │ │ │ │ ├── apache2 │ │ │ │ │ └── conf-available │ │ │ │ │ │ └── nextcloud-freedombox.conf │ │ │ │ └── redis │ │ │ │ │ └── conf.d │ │ │ │ │ └── freedombox.conf │ │ │ │ └── modules-enabled │ │ │ │ └── nextcloud │ │ ├── forms.py │ │ ├── manifest.py │ │ ├── privileged.py │ │ ├── static │ │ │ └── icons │ │ │ │ ├── nextcloud.png │ │ │ │ └── nextcloud.svg │ │ ├── tests │ │ │ ├── __init__.py │ │ │ └── test_functional.py │ │ ├── urls.py │ │ └── views.py │ ├── openvpn │ │ ├── __init__.py │ │ ├── data │ │ │ └── usr │ │ │ │ └── share │ │ │ │ └── freedombox │ │ │ │ └── modules-enabled │ │ │ │ └── openvpn │ │ ├── manifest.py │ │ ├── privileged.py │ │ ├── static │ │ │ └── icons │ │ │ │ ├── openvpn.png │ │ │ │ └── openvpn.svg │ │ ├── templates │ │ │ └── openvpn.html │ │ ├── tests │ │ │ ├── __init__.py │ │ │ └── test_functional.py │ │ ├── urls.py │ │ └── views.py │ ├── pagekite │ │ ├── __init__.py │ │ ├── data │ │ │ └── usr │ │ │ │ └── share │ │ │ │ ├── augeas │ │ │ │ └── lenses │ │ │ │ │ ├── pagekite.aug │ │ │ │ │ └── tests │ │ │ │ │ └── test_pagekite.aug │ │ │ │ └── freedombox │ │ │ │ └── modules-enabled │ │ │ │ └── pagekite │ │ ├── forms.py │ │ ├── manifest.py │ │ ├── privileged.py │ │ ├── templates │ │ │ ├── pagekite_configure.html │ │ │ └── pagekite_custom_services.html │ │ ├── tests │ │ │ ├── __init__.py │ │ │ ├── test_functional.py │ │ │ └── test_pagekite.py │ │ ├── urls.py │ │ ├── utils.py │ │ └── views.py │ ├── performance │ │ ├── __init__.py │ │ ├── data │ │ │ └── usr │ │ │ │ └── share │ │ │ │ └── freedombox │ │ │ │ └── modules-enabled │ │ │ │ └── performance │ │ ├── manifest.py │ │ ├── tests │ │ │ ├── __init__.py │ │ │ └── test_functional.py │ │ └── urls.py │ ├── power │ │ ├── __init__.py │ │ ├── data │ │ │ └── usr │ │ │ │ ├── lib │ │ │ │ └── systemd │ │ │ │ │ ├── login.conf.d │ │ │ │ │ └── 50-freedombox.conf │ │ │ │ │ └── sleep.conf.d │ │ │ │ │ └── 50-freedombox.conf │ │ │ │ └── share │ │ │ │ └── freedombox │ │ │ │ └── modules-enabled │ │ │ │ └── power │ │ ├── manifest.py │ │ ├── privileged.py │ │ ├── templates │ │ │ ├── power.html │ │ │ ├── power_busy_warning.html │ │ │ ├── power_restart.html │ │ │ └── power_shutdown.html │ │ ├── tests │ │ │ └── __init__.py │ │ ├── urls.py │ │ └── views.py │ ├── privacy │ │ ├── __init__.py │ │ ├── data │ │ │ └── usr │ │ │ │ └── share │ │ │ │ └── freedombox │ │ │ │ ├── etc │ │ │ │ └── dpkg │ │ │ │ │ └── origins │ │ │ │ │ └── freedombox │ │ │ │ └── modules-enabled │ │ │ │ └── privacy │ │ ├── forms.py │ │ ├── manifest.py │ │ ├── privileged.py │ │ ├── tests │ │ │ ├── __init__.py │ │ │ └── test_functional.py │ │ ├── urls.py │ │ └── views.py │ ├── privoxy │ │ ├── __init__.py │ │ ├── data │ │ │ └── usr │ │ │ │ └── share │ │ │ │ └── freedombox │ │ │ │ └── modules-enabled │ │ │ │ └── privoxy │ │ ├── manifest.py │ │ ├── privileged.py │ │ ├── static │ │ │ └── icons │ │ │ │ ├── privoxy.png │ │ │ │ └── privoxy.svg │ │ ├── tests │ │ │ ├── __init__.py │ │ │ └── test_functional.py │ │ └── urls.py │ ├── quassel │ │ ├── __init__.py │ │ ├── data │ │ │ └── usr │ │ │ │ ├── lib │ │ │ │ ├── firewalld │ │ │ │ │ └── services │ │ │ │ │ │ └── quassel-plinth.xml │ │ │ │ └── systemd │ │ │ │ │ └── system │ │ │ │ │ └── quasselcore.service.d │ │ │ │ │ └── freedombox.conf │ │ │ │ └── share │ │ │ │ └── freedombox │ │ │ │ └── modules-enabled │ │ │ │ └── quassel │ │ ├── manifest.py │ │ ├── privileged.py │ │ ├── static │ │ │ └── icons │ │ │ │ ├── quassel.png │ │ │ │ └── quassel.svg │ │ ├── tests │ │ │ ├── __init__.py │ │ │ └── test_functional.py │ │ ├── urls.py │ │ └── views.py │ ├── radicale │ │ ├── __init__.py │ │ ├── data │ │ │ └── usr │ │ │ │ └── share │ │ │ │ └── freedombox │ │ │ │ ├── etc │ │ │ │ └── apache2 │ │ │ │ │ └── conf-available │ │ │ │ │ └── radicale2-freedombox.conf │ │ │ │ └── modules-enabled │ │ │ │ └── radicale │ │ ├── forms.py │ │ ├── manifest.py │ │ ├── privileged.py │ │ ├── static │ │ │ └── icons │ │ │ │ ├── radicale.png │ │ │ │ └── radicale.svg │ │ ├── tests │ │ │ ├── __init__.py │ │ │ └── test_functional.py │ │ ├── urls.py │ │ └── views.py │ ├── roundcube │ │ ├── __init__.py │ │ ├── data │ │ │ └── usr │ │ │ │ └── share │ │ │ │ └── freedombox │ │ │ │ ├── etc │ │ │ │ ├── apache2 │ │ │ │ │ └── conf-available │ │ │ │ │ │ └── roundcube-freedombox.conf │ │ │ │ └── fail2ban │ │ │ │ │ └── jail.d │ │ │ │ │ └── roundcube-auth-freedombox.conf │ │ │ │ └── modules-enabled │ │ │ │ └── roundcube │ │ ├── forms.py │ │ ├── manifest.py │ │ ├── privileged.py │ │ ├── static │ │ │ └── icons │ │ │ │ ├── roundcube.png │ │ │ │ └── roundcube.svg │ │ ├── tests │ │ │ ├── __init__.py │ │ │ └── test_functional.py │ │ ├── urls.py │ │ └── views.py │ ├── rssbridge │ │ ├── __init__.py │ │ ├── data │ │ │ └── usr │ │ │ │ └── share │ │ │ │ └── freedombox │ │ │ │ ├── etc │ │ │ │ └── apache2 │ │ │ │ │ └── conf-available │ │ │ │ │ └── rss-bridge.conf │ │ │ │ └── modules-enabled │ │ │ │ └── rssbridge │ │ ├── forms.py │ │ ├── manifest.py │ │ ├── privileged.py │ │ ├── static │ │ │ └── icons │ │ │ │ ├── rssbridge.png │ │ │ │ └── rssbridge.svg │ │ ├── tests │ │ │ ├── __init__.py │ │ │ └── test_functional.py │ │ ├── urls.py │ │ └── views.py │ ├── samba │ │ ├── __init__.py │ │ ├── data │ │ │ └── usr │ │ │ │ ├── lib │ │ │ │ └── systemd │ │ │ │ │ └── system │ │ │ │ │ └── smbd.service.d │ │ │ │ │ └── freedombox.conf │ │ │ │ └── share │ │ │ │ └── freedombox │ │ │ │ └── modules-enabled │ │ │ │ └── samba │ │ ├── manifest.py │ │ ├── privileged.py │ │ ├── static │ │ │ ├── icons │ │ │ │ ├── samba.png │ │ │ │ └── samba.svg │ │ │ └── samba.css │ │ ├── templates │ │ │ └── samba.html │ │ ├── tests │ │ │ ├── __init__.py │ │ │ ├── test_functional.py │ │ │ └── test_views.py │ │ ├── urls.py │ │ └── views.py │ ├── searx │ │ ├── __init__.py │ │ ├── data │ │ │ └── usr │ │ │ │ └── share │ │ │ │ └── freedombox │ │ │ │ ├── etc │ │ │ │ └── apache2 │ │ │ │ │ └── conf-available │ │ │ │ │ ├── searx-freedombox-auth.conf │ │ │ │ │ └── searx-freedombox.conf │ │ │ │ └── modules-enabled │ │ │ │ └── searx │ │ ├── forms.py │ │ ├── manifest.py │ │ ├── privileged.py │ │ ├── static │ │ │ └── icons │ │ │ │ ├── searx.png │ │ │ │ └── searx.svg │ │ ├── tests │ │ │ ├── __init__.py │ │ │ └── test_functional.py │ │ ├── urls.py │ │ └── views.py │ ├── security │ │ ├── __init__.py │ │ ├── data │ │ │ └── usr │ │ │ │ └── share │ │ │ │ └── freedombox │ │ │ │ ├── etc │ │ │ │ └── fail2ban │ │ │ │ │ ├── fail2ban.d │ │ │ │ │ └── freedombox.conf │ │ │ │ │ └── jail.d │ │ │ │ │ └── freedombox.conf │ │ │ │ └── modules-enabled │ │ │ │ └── security │ │ ├── forms.py │ │ ├── manifest.py │ │ ├── privileged.py │ │ ├── templates │ │ │ ├── security.html │ │ │ └── security_report.html │ │ ├── tests │ │ │ ├── __init__.py │ │ │ └── test_functional.py │ │ ├── urls.py │ │ └── views.py │ ├── shaarli │ │ ├── __init__.py │ │ ├── data │ │ │ └── usr │ │ │ │ └── share │ │ │ │ └── freedombox │ │ │ │ └── modules-enabled │ │ │ │ └── shaarli │ │ ├── manifest.py │ │ ├── static │ │ │ └── icons │ │ │ │ ├── shaarli.png │ │ │ │ └── shaarli.svg │ │ ├── tests │ │ │ ├── __init__.py │ │ │ └── test_functional.py │ │ └── urls.py │ ├── shadowsocks │ │ ├── __init__.py │ │ ├── data │ │ │ └── usr │ │ │ │ ├── lib │ │ │ │ ├── firewalld │ │ │ │ │ └── services │ │ │ │ │ │ └── shadowsocks-local-plinth.xml │ │ │ │ └── systemd │ │ │ │ │ └── system │ │ │ │ │ └── shadowsocks-libev-local@.service.d │ │ │ │ │ └── freedombox.conf │ │ │ │ └── share │ │ │ │ └── freedombox │ │ │ │ └── modules-enabled │ │ │ │ └── shadowsocks │ │ ├── forms.py │ │ ├── manifest.py │ │ ├── privileged.py │ │ ├── static │ │ │ └── icons │ │ │ │ ├── shadowsocks.png │ │ │ │ └── shadowsocks.svg │ │ ├── tests │ │ │ ├── __init__.py │ │ │ └── test_functional.py │ │ ├── urls.py │ │ └── views.py │ ├── shadowsocksserver │ │ ├── __init__.py │ │ ├── data │ │ │ └── usr │ │ │ │ ├── lib │ │ │ │ ├── firewalld │ │ │ │ │ └── services │ │ │ │ │ │ └── shadowsocks-server-freedombox.xml │ │ │ │ └── systemd │ │ │ │ │ └── system │ │ │ │ │ └── shadowsocks-libev-server@.service.d │ │ │ │ │ └── freedombox.conf │ │ │ │ └── share │ │ │ │ └── freedombox │ │ │ │ └── modules-enabled │ │ │ │ └── shadowsocksserver │ │ ├── forms.py │ │ ├── manifest.py │ │ ├── privileged.py │ │ ├── static │ │ │ └── icons │ │ │ │ ├── shadowsocks.png │ │ │ │ └── shadowsocks.svg │ │ ├── tests │ │ │ ├── __init__.py │ │ │ └── test_functional.py │ │ ├── urls.py │ │ └── views.py │ ├── sharing │ │ ├── __init__.py │ │ ├── data │ │ │ └── usr │ │ │ │ └── share │ │ │ │ └── freedombox │ │ │ │ ├── etc │ │ │ │ └── apache2 │ │ │ │ │ └── includes │ │ │ │ │ └── freedombox-sharing.conf │ │ │ │ └── modules-enabled │ │ │ │ └── sharing │ │ ├── forms.py │ │ ├── manifest.py │ │ ├── privileged.py │ │ ├── static │ │ │ ├── icons │ │ │ │ ├── sharing.png │ │ │ │ └── sharing.svg │ │ │ ├── sharing.css │ │ │ └── sharing_add_edit.js │ │ ├── templates │ │ │ ├── sharing.html │ │ │ └── sharing_add_edit.html │ │ ├── tests │ │ │ ├── __init__.py │ │ │ └── test_functional.py │ │ ├── urls.py │ │ └── views.py │ ├── snapshot │ │ ├── __init__.py │ │ ├── data │ │ │ └── usr │ │ │ │ └── share │ │ │ │ └── freedombox │ │ │ │ └── modules-enabled │ │ │ │ └── snapshot │ │ ├── forms.py │ │ ├── manifest.py │ │ ├── privileged.py │ │ ├── static │ │ │ └── snapshot.js │ │ ├── templates │ │ │ ├── snapshot.html │ │ │ ├── snapshot_delete_selected.html │ │ │ ├── snapshot_manage.html │ │ │ ├── snapshot_not_supported.html │ │ │ └── snapshot_rollback.html │ │ ├── tests │ │ │ ├── __init__.py │ │ │ ├── test_functional.py │ │ │ └── test_privileged.py │ │ ├── urls.py │ │ └── views.py │ ├── sogo │ │ ├── __init__.py │ │ ├── data │ │ │ └── usr │ │ │ │ ├── lib │ │ │ │ └── systemd │ │ │ │ │ └── system │ │ │ │ │ └── sogo.service.d │ │ │ │ │ └── freedombox.conf │ │ │ │ └── share │ │ │ │ └── freedombox │ │ │ │ ├── etc │ │ │ │ └── apache2 │ │ │ │ │ └── conf-available │ │ │ │ │ └── sogo-freedombox.conf │ │ │ │ └── modules-enabled │ │ │ │ └── sogo │ │ ├── forms.py │ │ ├── manifest.py │ │ ├── privileged.py │ │ ├── static │ │ │ └── icons │ │ │ │ ├── sogo.png │ │ │ │ └── sogo.svg │ │ ├── tests │ │ │ ├── __init__.py │ │ │ └── test_functional.py │ │ ├── urls.py │ │ └── views.py │ ├── ssh │ │ ├── __init__.py │ │ ├── data │ │ │ └── usr │ │ │ │ ├── lib │ │ │ │ └── systemd │ │ │ │ │ └── system │ │ │ │ │ └── ssh.service.d │ │ │ │ │ └── freedombox.conf │ │ │ │ └── share │ │ │ │ └── freedombox │ │ │ │ ├── etc │ │ │ │ ├── avahi │ │ │ │ │ └── services │ │ │ │ │ │ ├── sftp-ssh.service │ │ │ │ │ │ └── ssh.service │ │ │ │ └── fail2ban │ │ │ │ │ └── jail.d │ │ │ │ │ └── ssh-freedombox.conf │ │ │ │ └── modules-enabled │ │ │ │ └── ssh │ │ ├── forms.py │ │ ├── manifest.py │ │ ├── privileged.py │ │ ├── templates │ │ │ └── ssh.html │ │ ├── tests │ │ │ ├── __init__.py │ │ │ └── test_functional.py │ │ ├── urls.py │ │ └── views.py │ ├── sso │ │ ├── __init__.py │ │ ├── data │ │ │ └── usr │ │ │ │ └── share │ │ │ │ └── freedombox │ │ │ │ ├── etc │ │ │ │ └── apache2 │ │ │ │ │ └── includes │ │ │ │ │ └── freedombox-single-sign-on.conf │ │ │ │ └── modules-enabled │ │ │ │ └── sso │ │ ├── forms.py │ │ ├── privileged.py │ │ ├── templates │ │ │ ├── captcha.html │ │ │ └── login.html │ │ ├── tests │ │ │ ├── __init__.py │ │ │ ├── test_functional.py │ │ │ └── test_privileged.py │ │ ├── urls.py │ │ └── views.py │ ├── storage │ │ ├── __init__.py │ │ ├── data │ │ │ └── usr │ │ │ │ └── share │ │ │ │ ├── freedombox │ │ │ │ └── modules-enabled │ │ │ │ │ └── storage │ │ │ │ └── polkit-1 │ │ │ │ └── rules.d │ │ │ │ └── 50-freedombox-udisks2.rules │ │ ├── forms.py │ │ ├── manifest.py │ │ ├── privileged.py │ │ ├── static │ │ │ └── storage.css │ │ ├── templates │ │ │ ├── storage.html │ │ │ └── storage_expand.html │ │ ├── tests │ │ │ ├── __init__.py │ │ │ ├── test_functional.py │ │ │ └── test_storage.py │ │ ├── udisks2.py │ │ ├── urls.py │ │ └── views.py │ ├── syncthing │ │ ├── __init__.py │ │ ├── data │ │ │ └── usr │ │ │ │ ├── lib │ │ │ │ └── systemd │ │ │ │ │ └── system │ │ │ │ │ └── syncthing@syncthing.service.d │ │ │ │ │ └── freedombox.conf │ │ │ │ └── share │ │ │ │ └── freedombox │ │ │ │ ├── etc │ │ │ │ └── apache2 │ │ │ │ │ └── conf-available │ │ │ │ │ └── syncthing-plinth.conf │ │ │ │ └── modules-enabled │ │ │ │ └── syncthing │ │ ├── manifest.py │ │ ├── privileged.py │ │ ├── static │ │ │ └── icons │ │ │ │ ├── syncthing.png │ │ │ │ └── syncthing.svg │ │ ├── tests │ │ │ ├── __init__.py │ │ │ └── test_functional.py │ │ └── urls.py │ ├── tiddlywiki │ │ ├── __init__.py │ │ ├── data │ │ │ └── usr │ │ │ │ └── share │ │ │ │ └── freedombox │ │ │ │ ├── etc │ │ │ │ └── apache2 │ │ │ │ │ └── conf-available │ │ │ │ │ └── tiddlywiki-freedombox.conf │ │ │ │ └── modules-enabled │ │ │ │ └── tiddlywiki │ │ ├── forms.py │ │ ├── manifest.py │ │ ├── privileged.py │ │ ├── static │ │ │ └── icons │ │ │ │ ├── tiddlywiki.png │ │ │ │ └── tiddlywiki.svg │ │ ├── templates │ │ │ ├── tiddlywiki_configure.html │ │ │ ├── tiddlywiki_delete.html │ │ │ └── tiddlywiki_upload_file.html │ │ ├── tests │ │ │ ├── __init__.py │ │ │ ├── data │ │ │ │ └── dummy_wiki.html │ │ │ └── test_functional.py │ │ ├── urls.py │ │ └── views.py │ ├── tor │ │ ├── __init__.py │ │ ├── data │ │ │ └── usr │ │ │ │ └── share │ │ │ │ ├── augeas │ │ │ │ └── lenses │ │ │ │ │ ├── tests │ │ │ │ │ └── test_tor.aug │ │ │ │ │ └── tor.aug │ │ │ │ └── freedombox │ │ │ │ └── modules-enabled │ │ │ │ └── tor │ │ ├── forms.py │ │ ├── manifest.py │ │ ├── privileged.py │ │ ├── static │ │ │ ├── icons │ │ │ │ ├── tor.png │ │ │ │ └── tor.svg │ │ │ └── tor.js │ │ ├── templates │ │ │ └── tor.html │ │ ├── tests │ │ │ ├── __init__.py │ │ │ ├── test_functional.py │ │ │ └── test_tor.py │ │ ├── urls.py │ │ ├── utils.py │ │ └── views.py │ ├── torproxy │ │ ├── __init__.py │ │ ├── data │ │ │ └── usr │ │ │ │ └── share │ │ │ │ └── freedombox │ │ │ │ └── modules-enabled │ │ │ │ └── torproxy │ │ ├── forms.py │ │ ├── manifest.py │ │ ├── privileged.py │ │ ├── static │ │ │ ├── icons │ │ │ │ ├── torproxy.png │ │ │ │ └── torproxy.svg │ │ │ └── torproxy.js │ │ ├── templates │ │ │ └── torproxy.html │ │ ├── tests │ │ │ ├── __init__.py │ │ │ ├── test_functional.py │ │ │ └── test_torproxy.py │ │ ├── urls.py │ │ ├── utils.py │ │ └── views.py │ ├── transmission │ │ ├── __init__.py │ │ ├── data │ │ │ └── usr │ │ │ │ ├── lib │ │ │ │ └── systemd │ │ │ │ │ └── system │ │ │ │ │ └── transmission-daemon.service.d │ │ │ │ │ └── freedombox.conf │ │ │ │ └── share │ │ │ │ └── freedombox │ │ │ │ ├── etc │ │ │ │ └── apache2 │ │ │ │ │ └── conf-available │ │ │ │ │ └── transmission-plinth.conf │ │ │ │ └── modules-enabled │ │ │ │ └── transmission │ │ ├── forms.py │ │ ├── manifest.py │ │ ├── privileged.py │ │ ├── static │ │ │ └── icons │ │ │ │ ├── transmission.png │ │ │ │ └── transmission.svg │ │ ├── tests │ │ │ ├── __init__.py │ │ │ ├── data │ │ │ │ └── sample.torrent │ │ │ └── test_functional.py │ │ ├── urls.py │ │ └── views.py │ ├── upgrades │ │ ├── __init__.py │ │ ├── data │ │ │ └── usr │ │ │ │ ├── lib │ │ │ │ └── systemd │ │ │ │ │ └── system │ │ │ │ │ └── freedombox-manual-upgrade.service │ │ │ │ └── share │ │ │ │ ├── augeas │ │ │ │ └── lenses │ │ │ │ │ ├── aptsources.aug │ │ │ │ │ ├── aptsources822.aug │ │ │ │ │ └── tests │ │ │ │ │ ├── test_aptsources.aug │ │ │ │ │ └── test_aptsources822.aug │ │ │ │ └── freedombox │ │ │ │ ├── etc │ │ │ │ ├── apt │ │ │ │ │ └── apt.conf.d │ │ │ │ │ │ ├── 20freedombox │ │ │ │ │ │ ├── 20freedombox-allow-release-info-change │ │ │ │ │ │ └── 60unattended-upgrades │ │ │ │ └── needrestart │ │ │ │ │ └── conf.d │ │ │ │ │ └── freedombox.conf │ │ │ │ └── modules-enabled │ │ │ │ └── upgrades │ │ ├── distupgrade.py │ │ ├── forms.py │ │ ├── manifest.py │ │ ├── privileged.py │ │ ├── templates │ │ │ ├── backports-firstboot.html │ │ │ ├── upgrades-dist-upgrade-confirm.html │ │ │ ├── upgrades-dist-upgrade-notification.html │ │ │ ├── upgrades-dist-upgrade.html │ │ │ ├── upgrades-new-release.html │ │ │ └── upgrades_configure.html │ │ ├── tests │ │ │ ├── __init__.py │ │ │ ├── test_distupgrade.py │ │ │ ├── test_functional.py │ │ │ └── test_utils.py │ │ ├── urls.py │ │ ├── utils.py │ │ └── views.py │ ├── users │ │ ├── __init__.py │ │ ├── components.py │ │ ├── data │ │ │ └── usr │ │ │ │ └── share │ │ │ │ ├── freedombox │ │ │ │ ├── etc │ │ │ │ │ └── apache2 │ │ │ │ │ │ └── includes │ │ │ │ │ │ └── freedombox-auth-ldap.conf │ │ │ │ └── modules-enabled │ │ │ │ │ └── users │ │ │ │ └── pam-configs │ │ │ │ └── mkhomedir-freedombox │ │ ├── forms.py │ │ ├── manifest.py │ │ ├── privileged.py │ │ ├── static │ │ │ └── users.js │ │ ├── templates │ │ │ ├── users_change_password.html │ │ │ ├── users_create.html │ │ │ ├── users_firstboot.html │ │ │ ├── users_list.html │ │ │ └── users_update.html │ │ ├── tests │ │ │ ├── __init__.py │ │ │ ├── test_components.py │ │ │ ├── test_functional.py │ │ │ ├── test_privileged.py │ │ │ └── test_views.py │ │ ├── urls.py │ │ └── views.py │ ├── wireguard │ │ ├── __init__.py │ │ ├── data │ │ │ └── usr │ │ │ │ ├── lib │ │ │ │ └── firewalld │ │ │ │ │ └── services │ │ │ │ │ └── wireguard-freedombox.xml │ │ │ │ └── share │ │ │ │ └── freedombox │ │ │ │ └── modules-enabled │ │ │ │ └── wireguard │ │ ├── forms.py │ │ ├── manifest.py │ │ ├── privileged.py │ │ ├── static │ │ │ └── icons │ │ │ │ ├── wireguard.png │ │ │ │ └── wireguard.svg │ │ ├── templates │ │ │ ├── wireguard.html │ │ │ ├── wireguard_add_client.html │ │ │ ├── wireguard_add_server.html │ │ │ ├── wireguard_delete_client.html │ │ │ ├── wireguard_delete_server.html │ │ │ ├── wireguard_edit_client.html │ │ │ ├── wireguard_edit_server.html │ │ │ ├── wireguard_show_client.html │ │ │ └── wireguard_show_server.html │ │ ├── tests │ │ │ ├── __init__.py │ │ │ ├── test_forms.py │ │ │ └── test_functional.py │ │ ├── urls.py │ │ ├── utils.py │ │ └── views.py │ ├── wordpress │ │ ├── __init__.py │ │ ├── data │ │ │ └── usr │ │ │ │ ├── lib │ │ │ │ └── systemd │ │ │ │ │ └── system │ │ │ │ │ ├── wordpress-freedombox.service │ │ │ │ │ └── wordpress-freedombox.timer │ │ │ │ └── share │ │ │ │ └── freedombox │ │ │ │ ├── etc │ │ │ │ ├── apache2 │ │ │ │ │ └── conf-available │ │ │ │ │ │ └── wordpress-freedombox.conf │ │ │ │ ├── fail2ban │ │ │ │ │ ├── filter.d │ │ │ │ │ │ └── wordpress-freedombox.conf │ │ │ │ │ └── jail.d │ │ │ │ │ │ └── wordpress-freedombox.conf │ │ │ │ └── wordpress │ │ │ │ │ └── freedombox-static.php │ │ │ │ └── modules-enabled │ │ │ │ └── wordpress │ │ ├── forms.py │ │ ├── manifest.py │ │ ├── privileged.py │ │ ├── static │ │ │ └── icons │ │ │ │ ├── wordpress.png │ │ │ │ └── wordpress.svg │ │ ├── tests │ │ │ ├── __init__.py │ │ │ └── test_functional.py │ │ ├── urls.py │ │ └── views.py │ └── zoph │ │ ├── __init__.py │ │ ├── data │ │ └── usr │ │ │ └── share │ │ │ └── freedombox │ │ │ ├── etc │ │ │ └── apache2 │ │ │ │ └── conf-available │ │ │ │ └── zoph-freedombox.conf │ │ │ └── modules-enabled │ │ │ └── zoph │ │ ├── forms.py │ │ ├── manifest.py │ │ ├── privileged.py │ │ ├── static │ │ └── icons │ │ │ ├── zoph.png │ │ │ └── zoph.svg │ │ ├── templates │ │ └── zoph-pre-setup.html │ │ ├── tests │ │ ├── __init__.py │ │ └── test_functional.py │ │ ├── urls.py │ │ └── views.py ├── network.py ├── notification.py ├── operation.py ├── package.py ├── privileged │ ├── __init__.py │ ├── config.py │ ├── container.py │ ├── packages.py │ └── service.py ├── privileged_daemon.py ├── settings.py ├── setup.py ├── signals.py ├── templates │ ├── 403.html │ ├── 404.html │ ├── 500.html │ ├── app-header.html │ ├── app-logs.html │ ├── app-operations.html │ ├── app.html │ ├── apps.html │ ├── base.html │ ├── breadcrumbs.html │ ├── card.html │ ├── cards.html │ ├── clients-button.html │ ├── clients.html │ ├── error.html │ ├── first_setup.html │ ├── form.html │ ├── help-menu.html │ ├── index.html │ ├── internal-zone.html │ ├── language-selection.html │ ├── messages.html │ ├── notifications-dropdown.html │ ├── notifications.html │ ├── operation-notification.html │ ├── operations.html │ ├── port-forwarding-info.html │ ├── setup.html │ ├── subsubmenu.html │ ├── system.html │ ├── tags.html │ ├── toolbar.html │ └── uninstall.html ├── templatetags │ ├── __init__.py │ └── plinth_extras.py ├── tests │ ├── __init__.py │ ├── config.py │ ├── conftest.py │ ├── data │ │ ├── __init__.py │ │ ├── configs │ │ │ ├── freedombox.config │ │ │ ├── freedombox.config.d │ │ │ │ ├── 01_first.config │ │ │ │ ├── 02_second.config │ │ │ │ └── 03_third.foo │ │ │ ├── freedombox.config.with_missing_options │ │ │ └── freedombox.config.with_missing_sections │ │ ├── django_test_settings.py │ │ ├── shortcuts │ │ │ ├── blank.json │ │ │ ├── dotd.json │ │ │ ├── dotd.json.d │ │ │ │ └── 01_extra.json │ │ │ ├── empty.json │ │ │ └── nextcloud.json │ │ ├── templates │ │ │ └── test-notification.html │ │ └── urls.py │ ├── functional │ │ ├── __init__.py │ │ ├── config.ini │ │ ├── enable-all-apps │ │ └── install.sh │ ├── tags │ │ ├── __init__.py │ │ └── test_functional.py │ ├── test_action_utils.py │ ├── test_actions.py │ ├── test_app.py │ ├── test_cfg.py │ ├── test_clients.py │ ├── test_config.py │ ├── test_container.py │ ├── test_context_processors.py │ ├── test_custom_shortcuts.py │ ├── test_daemon.py │ ├── test_db.py │ ├── test_diagnostic_check.py │ ├── test_frontpage.py │ ├── test_kvstore.py │ ├── test_menu.py │ ├── test_middleware.py │ ├── test_module_loader.py │ ├── test_network.py │ ├── test_notification.py │ ├── test_operation.py │ ├── test_package.py │ ├── test_setup.py │ ├── test_templatetags.py │ ├── test_utils.py │ ├── test_version.py │ ├── test_views.py │ └── test_web_server.py ├── translation.py ├── urls.py ├── utils.py ├── version.py ├── views.py ├── web_framework.py └── web_server.py ├── preseed └── preseed-stretch.dat ├── pyproject.toml ├── run └── static ├── jslicense.html ├── tags.js ├── theme └── themes └── default ├── css └── main.css ├── icons ├── app-store.png ├── app-store.svg ├── f-droid.png ├── f-droid.svg ├── gnu-linux.png ├── google-play.png ├── google-play.svg ├── macos.png ├── macos.svg ├── windows.png └── windows.svg ├── img ├── apple-touch-icon-114px-precomposed.png ├── apple-touch-icon-57px-precomposed.png ├── apple-touch-icon-72px-precomposed.png ├── favicon.ico ├── freedombox-logo-250px.png ├── freedombox-logo-32px.png ├── freedombox-logo-powered.svg ├── freedombox-logo-standard.svg ├── network-computer.svg ├── network-connection-vertical.svg ├── network-connection.svg ├── network-ethernet.svg ├── network-freedombox.svg ├── network-internet.svg ├── network-spacing.svg └── network-wireless.svg └── js └── main.js /.ci/Containerfile.gitlabci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/.ci/Containerfile.gitlabci -------------------------------------------------------------------------------- /.ci/functional-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/.ci/functional-tests.yml -------------------------------------------------------------------------------- /.ci/gitlab-runner/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/.ci/gitlab-runner/config.toml -------------------------------------------------------------------------------- /.ci/update-container-image.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/.ci/update-container-image.sh -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /.style.yapf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/.style.yapf -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /COPYING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/COPYING.md -------------------------------------------------------------------------------- /HACKING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/HACKING.md -------------------------------------------------------------------------------- /INSTALL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/INSTALL.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/README.md -------------------------------------------------------------------------------- /Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/Vagrantfile -------------------------------------------------------------------------------- /bin/freedombox-cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/bin/freedombox-cmd -------------------------------------------------------------------------------- /bin/freedombox-privileged: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/bin/freedombox-privileged -------------------------------------------------------------------------------- /bin/plinth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/bin/plinth -------------------------------------------------------------------------------- /conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/conftest.py -------------------------------------------------------------------------------- /container: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/container -------------------------------------------------------------------------------- /data/etc/issue.d/01freedombox.issue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/data/etc/issue.d/01freedombox.issue -------------------------------------------------------------------------------- /data/etc/sudoers.d/plinth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/data/etc/sudoers.d/plinth -------------------------------------------------------------------------------- /debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/debian/changelog -------------------------------------------------------------------------------- /debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/debian/control -------------------------------------------------------------------------------- /debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/debian/copyright -------------------------------------------------------------------------------- /debian/freedombox-doc-en.doc-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/debian/freedombox-doc-en.doc-base -------------------------------------------------------------------------------- /debian/freedombox-doc-en.install: -------------------------------------------------------------------------------- 1 | usr/share/freedombox/manual/en/ 2 | -------------------------------------------------------------------------------- /debian/freedombox-doc-en.links: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/debian/freedombox-doc-en.links -------------------------------------------------------------------------------- /debian/freedombox-doc-es.doc-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/debian/freedombox-doc-es.doc-base -------------------------------------------------------------------------------- /debian/freedombox-doc-es.install: -------------------------------------------------------------------------------- 1 | usr/share/freedombox/manual/es/ 2 | -------------------------------------------------------------------------------- /debian/freedombox-doc-es.links: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/debian/freedombox-doc-es.links -------------------------------------------------------------------------------- /debian/freedombox.docs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/debian/freedombox.docs -------------------------------------------------------------------------------- /debian/freedombox.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/debian/freedombox.install -------------------------------------------------------------------------------- /debian/freedombox.lintian-overrides: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/debian/freedombox.lintian-overrides -------------------------------------------------------------------------------- /debian/freedombox.maintscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/debian/freedombox.maintscript -------------------------------------------------------------------------------- /debian/freedombox.manpages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/debian/freedombox.manpages -------------------------------------------------------------------------------- /debian/freedombox.postinst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/debian/freedombox.postinst -------------------------------------------------------------------------------- /debian/freedombox.postrm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/debian/freedombox.postrm -------------------------------------------------------------------------------- /debian/freedombox.preinst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/debian/freedombox.preinst -------------------------------------------------------------------------------- /debian/freedombox.templates: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/debian/freedombox.templates -------------------------------------------------------------------------------- /debian/gbp.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/debian/gbp.conf -------------------------------------------------------------------------------- /debian/po/POTFILES.in: -------------------------------------------------------------------------------- 1 | [type: gettext/rfc822deb] freedombox.templates -------------------------------------------------------------------------------- /debian/po/ca.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/debian/po/ca.po -------------------------------------------------------------------------------- /debian/po/de.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/debian/po/de.po -------------------------------------------------------------------------------- /debian/po/es.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/debian/po/es.po -------------------------------------------------------------------------------- /debian/po/fr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/debian/po/fr.po -------------------------------------------------------------------------------- /debian/po/it.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/debian/po/it.po -------------------------------------------------------------------------------- /debian/po/nl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/debian/po/nl.po -------------------------------------------------------------------------------- /debian/po/pt.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/debian/po/pt.po -------------------------------------------------------------------------------- /debian/po/pt_BR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/debian/po/pt_BR.po -------------------------------------------------------------------------------- /debian/po/ru.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/debian/po/ru.po -------------------------------------------------------------------------------- /debian/po/sq.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/debian/po/sq.po -------------------------------------------------------------------------------- /debian/po/sv.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/debian/po/sv.po -------------------------------------------------------------------------------- /debian/po/templates.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/debian/po/templates.pot -------------------------------------------------------------------------------- /debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/debian/rules -------------------------------------------------------------------------------- /debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (native) 2 | -------------------------------------------------------------------------------- /debian/source/lintian-overrides: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/debian/source/lintian-overrides -------------------------------------------------------------------------------- /debian/tests/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/debian/tests/control -------------------------------------------------------------------------------- /doc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/doc/Makefile -------------------------------------------------------------------------------- /doc/dev/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/doc/dev/Makefile -------------------------------------------------------------------------------- /doc/dev/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/doc/dev/README.rst -------------------------------------------------------------------------------- /doc/dev/_static/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/dev/_static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/doc/dev/_static/favicon.ico -------------------------------------------------------------------------------- /doc/dev/_templates/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/doc/dev/_templates/layout.html -------------------------------------------------------------------------------- /doc/dev/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/doc/dev/conf.py -------------------------------------------------------------------------------- /doc/dev/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/doc/dev/index.rst -------------------------------------------------------------------------------- /doc/dev/reference/action_utils.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/doc/dev/reference/action_utils.rst -------------------------------------------------------------------------------- /doc/dev/reference/actions.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/doc/dev/reference/actions.rst -------------------------------------------------------------------------------- /doc/dev/reference/app.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/doc/dev/reference/app.rst -------------------------------------------------------------------------------- /doc/dev/reference/forms.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/doc/dev/reference/forms.rst -------------------------------------------------------------------------------- /doc/dev/reference/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/doc/dev/reference/index.rst -------------------------------------------------------------------------------- /doc/dev/reference/notifications.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/doc/dev/reference/notifications.rst -------------------------------------------------------------------------------- /doc/dev/reference/views.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/doc/dev/reference/views.rst -------------------------------------------------------------------------------- /doc/dev/tutorial/beginning.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/doc/dev/tutorial/beginning.rst -------------------------------------------------------------------------------- /doc/dev/tutorial/code.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/doc/dev/tutorial/code.rst -------------------------------------------------------------------------------- /doc/dev/tutorial/components.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/doc/dev/tutorial/components.rst -------------------------------------------------------------------------------- /doc/dev/tutorial/customizing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/doc/dev/tutorial/customizing.rst -------------------------------------------------------------------------------- /doc/dev/tutorial/finishing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/doc/dev/tutorial/finishing.rst -------------------------------------------------------------------------------- /doc/dev/tutorial/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/doc/dev/tutorial/index.rst -------------------------------------------------------------------------------- /doc/dev/tutorial/other.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/doc/dev/tutorial/other.rst -------------------------------------------------------------------------------- /doc/dev/tutorial/setup.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/doc/dev/tutorial/setup.rst -------------------------------------------------------------------------------- /doc/dev/tutorial/skeleton.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/doc/dev/tutorial/skeleton.rst -------------------------------------------------------------------------------- /doc/dev/tutorial/view.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/doc/dev/tutorial/view.rst -------------------------------------------------------------------------------- /doc/freedombox-cmd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/doc/freedombox-cmd.xml -------------------------------------------------------------------------------- /doc/manual/en/APU.raw.wiki: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/doc/manual/en/APU.raw.wiki -------------------------------------------------------------------------------- /doc/manual/en/Backups.raw.wiki: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/doc/manual/en/Backups.raw.wiki -------------------------------------------------------------------------------- /doc/manual/en/BananaPro.raw.wiki: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/doc/manual/en/BananaPro.raw.wiki -------------------------------------------------------------------------------- /doc/manual/en/BeagleBone.raw.wiki: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/doc/manual/en/BeagleBone.raw.wiki -------------------------------------------------------------------------------- /doc/manual/en/Bind.raw.wiki: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/doc/manual/en/Bind.raw.wiki -------------------------------------------------------------------------------- /doc/manual/en/Calibre.raw.wiki: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/doc/manual/en/Calibre.raw.wiki -------------------------------------------------------------------------------- /doc/manual/en/Cockpit.raw.wiki: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/doc/manual/en/Cockpit.raw.wiki -------------------------------------------------------------------------------- /doc/manual/en/Configure.raw.wiki: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/doc/manual/en/Configure.raw.wiki -------------------------------------------------------------------------------- /doc/manual/en/Contribute.raw.wiki: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/doc/manual/en/Contribute.raw.wiki -------------------------------------------------------------------------------- /doc/manual/en/Coturn.raw.wiki: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/doc/manual/en/Coturn.raw.wiki -------------------------------------------------------------------------------- /doc/manual/en/Cubieboard2.raw.wiki: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/doc/manual/en/Cubieboard2.raw.wiki -------------------------------------------------------------------------------- /doc/manual/en/Cubietruck.raw.wiki: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/doc/manual/en/Cubietruck.raw.wiki -------------------------------------------------------------------------------- /doc/manual/en/DateTime.raw.wiki: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/doc/manual/en/DateTime.raw.wiki -------------------------------------------------------------------------------- /doc/manual/en/Debian.raw.wiki: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/doc/manual/en/Debian.raw.wiki -------------------------------------------------------------------------------- /doc/manual/en/Deluge.raw.wiki: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/doc/manual/en/Deluge.raw.wiki -------------------------------------------------------------------------------- /doc/manual/en/Developer.raw.wiki: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/doc/manual/en/Developer.raw.wiki -------------------------------------------------------------------------------- /doc/manual/en/Diagnostics.raw.wiki: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/doc/manual/en/Diagnostics.raw.wiki -------------------------------------------------------------------------------- /doc/manual/en/Download.raw.wiki: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/doc/manual/en/Download.raw.wiki -------------------------------------------------------------------------------- /doc/manual/en/DynamicDNS.raw.wiki: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/doc/manual/en/DynamicDNS.raw.wiki -------------------------------------------------------------------------------- /doc/manual/en/Email.raw.wiki: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/doc/manual/en/Email.raw.wiki -------------------------------------------------------------------------------- /doc/manual/en/FeatherWiki.raw.wiki: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/doc/manual/en/FeatherWiki.raw.wiki -------------------------------------------------------------------------------- /doc/manual/en/Firewall.raw.wiki: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/doc/manual/en/Firewall.raw.wiki -------------------------------------------------------------------------------- /doc/manual/en/GettingHelp.raw.wiki: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/doc/manual/en/GettingHelp.raw.wiki -------------------------------------------------------------------------------- /doc/manual/en/GitWeb.raw.wiki: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/doc/manual/en/GitWeb.raw.wiki -------------------------------------------------------------------------------- /doc/manual/en/Hardware.raw.wiki: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/doc/manual/en/Hardware.raw.wiki -------------------------------------------------------------------------------- /doc/manual/en/Ikiwiki.raw.wiki: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/doc/manual/en/Ikiwiki.raw.wiki -------------------------------------------------------------------------------- /doc/manual/en/Infinoted.raw.wiki: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/doc/manual/en/Infinoted.raw.wiki -------------------------------------------------------------------------------- /doc/manual/en/Introduction.raw.wiki: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/doc/manual/en/Introduction.raw.wiki -------------------------------------------------------------------------------- /doc/manual/en/JSXC.raw.wiki: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/doc/manual/en/JSXC.raw.wiki -------------------------------------------------------------------------------- /doc/manual/en/Janus.raw.wiki: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/doc/manual/en/Janus.raw.wiki -------------------------------------------------------------------------------- /doc/manual/en/Kiwix.raw.wiki: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/doc/manual/en/Kiwix.raw.wiki -------------------------------------------------------------------------------- /doc/manual/en/LetsEncrypt.raw.wiki: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/doc/manual/en/LetsEncrypt.raw.wiki -------------------------------------------------------------------------------- /doc/manual/en/Maker.raw.wiki: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/doc/manual/en/Maker.raw.wiki -------------------------------------------------------------------------------- /doc/manual/en/MediaWiki.raw.wiki: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/doc/manual/en/MediaWiki.raw.wiki -------------------------------------------------------------------------------- /doc/manual/en/Minetest.raw.wiki: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/doc/manual/en/Minetest.raw.wiki -------------------------------------------------------------------------------- /doc/manual/en/MiniDLNA.raw.wiki: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/doc/manual/en/MiniDLNA.raw.wiki -------------------------------------------------------------------------------- /doc/manual/en/Miniflux.raw.wiki: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/doc/manual/en/Miniflux.raw.wiki -------------------------------------------------------------------------------- /doc/manual/en/Mumble.raw.wiki: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/doc/manual/en/Mumble.raw.wiki -------------------------------------------------------------------------------- /doc/manual/en/NameServices.raw.wiki: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/doc/manual/en/NameServices.raw.wiki -------------------------------------------------------------------------------- /doc/manual/en/Networks.raw.wiki: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/doc/manual/en/Networks.raw.wiki -------------------------------------------------------------------------------- /doc/manual/en/Nextcloud.raw.wiki: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/doc/manual/en/Nextcloud.raw.wiki -------------------------------------------------------------------------------- /doc/manual/en/OpenVPN.raw.wiki: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/doc/manual/en/OpenVPN.raw.wiki -------------------------------------------------------------------------------- /doc/manual/en/OrangePiZero.raw.wiki: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/doc/manual/en/OrangePiZero.raw.wiki -------------------------------------------------------------------------------- /doc/manual/en/PageKite.raw.wiki: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/doc/manual/en/PageKite.raw.wiki -------------------------------------------------------------------------------- /doc/manual/en/Performance.raw.wiki: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/doc/manual/en/Performance.raw.wiki -------------------------------------------------------------------------------- /doc/manual/en/PineA64+.raw.wiki: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/doc/manual/en/PineA64+.raw.wiki -------------------------------------------------------------------------------- /doc/manual/en/Plinth.raw.wiki: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/doc/manual/en/Plinth.raw.wiki -------------------------------------------------------------------------------- /doc/manual/en/Power.raw.wiki: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/doc/manual/en/Power.raw.wiki -------------------------------------------------------------------------------- /doc/manual/en/Privoxy.raw.wiki: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/doc/manual/en/Privoxy.raw.wiki -------------------------------------------------------------------------------- /doc/manual/en/Quassel.raw.wiki: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/doc/manual/en/Quassel.raw.wiki -------------------------------------------------------------------------------- /doc/manual/en/QuickStart.raw.wiki: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/doc/manual/en/QuickStart.raw.wiki -------------------------------------------------------------------------------- /doc/manual/en/RSSBridge.raw.wiki: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/doc/manual/en/RSSBridge.raw.wiki -------------------------------------------------------------------------------- /doc/manual/en/Radicale.raw.wiki: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/doc/manual/en/Radicale.raw.wiki -------------------------------------------------------------------------------- /doc/manual/en/RaspberryPi2.raw.wiki: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/doc/manual/en/RaspberryPi2.raw.wiki -------------------------------------------------------------------------------- /doc/manual/en/ReleaseNotes.raw.wiki: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/doc/manual/en/ReleaseNotes.raw.wiki -------------------------------------------------------------------------------- /doc/manual/en/Rock64.raw.wiki: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/doc/manual/en/Rock64.raw.wiki -------------------------------------------------------------------------------- /doc/manual/en/RockPro64.raw.wiki: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/doc/manual/en/RockPro64.raw.wiki -------------------------------------------------------------------------------- /doc/manual/en/Roundcube.raw.wiki: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/doc/manual/en/Roundcube.raw.wiki -------------------------------------------------------------------------------- /doc/manual/en/Samba.raw.wiki: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/doc/manual/en/Samba.raw.wiki -------------------------------------------------------------------------------- /doc/manual/en/Searx.raw.wiki: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/doc/manual/en/Searx.raw.wiki -------------------------------------------------------------------------------- /doc/manual/en/SecureShell.raw.wiki: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/doc/manual/en/SecureShell.raw.wiki -------------------------------------------------------------------------------- /doc/manual/en/Security.raw.wiki: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/doc/manual/en/Security.raw.wiki -------------------------------------------------------------------------------- /doc/manual/en/Shaarli.raw.wiki: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/doc/manual/en/Shaarli.raw.wiki -------------------------------------------------------------------------------- /doc/manual/en/Shadowsocks.raw.wiki: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/doc/manual/en/Shadowsocks.raw.wiki -------------------------------------------------------------------------------- /doc/manual/en/Sharing.raw.wiki: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/doc/manual/en/Sharing.raw.wiki -------------------------------------------------------------------------------- /doc/manual/en/Snapshots.raw.wiki: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/doc/manual/en/Snapshots.raw.wiki -------------------------------------------------------------------------------- /doc/manual/en/Storage.raw.wiki: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/doc/manual/en/Storage.raw.wiki -------------------------------------------------------------------------------- /doc/manual/en/Syncthing.raw.wiki: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/doc/manual/en/Syncthing.raw.wiki -------------------------------------------------------------------------------- /doc/manual/en/TiddlyWiki.raw.wiki: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/doc/manual/en/TiddlyWiki.raw.wiki -------------------------------------------------------------------------------- /doc/manual/en/TinyTinyRSS.raw.wiki: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/doc/manual/en/TinyTinyRSS.raw.wiki -------------------------------------------------------------------------------- /doc/manual/en/Tor.raw.wiki: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/doc/manual/en/Tor.raw.wiki -------------------------------------------------------------------------------- /doc/manual/en/TorProxy.raw.wiki: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/doc/manual/en/TorProxy.raw.wiki -------------------------------------------------------------------------------- /doc/manual/en/Transmission.raw.wiki: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/doc/manual/en/Transmission.raw.wiki -------------------------------------------------------------------------------- /doc/manual/en/USBWiFi.raw.wiki: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/doc/manual/en/USBWiFi.raw.wiki -------------------------------------------------------------------------------- /doc/manual/en/Upgrades.raw.wiki: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/doc/manual/en/Upgrades.raw.wiki -------------------------------------------------------------------------------- /doc/manual/en/Users.raw.wiki: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/doc/manual/en/Users.raw.wiki -------------------------------------------------------------------------------- /doc/manual/en/VirtualBox.raw.wiki: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/doc/manual/en/VirtualBox.raw.wiki -------------------------------------------------------------------------------- /doc/manual/en/WireGuard.raw.wiki: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/doc/manual/en/WireGuard.raw.wiki -------------------------------------------------------------------------------- /doc/manual/en/WordPress.raw.wiki: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/doc/manual/en/WordPress.raw.wiki -------------------------------------------------------------------------------- /doc/manual/en/Zoph.raw.wiki: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/doc/manual/en/Zoph.raw.wiki -------------------------------------------------------------------------------- /doc/manual/en/bepasty.raw.wiki: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/doc/manual/en/bepasty.raw.wiki -------------------------------------------------------------------------------- /doc/manual/en/ejabberd.raw.wiki: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/doc/manual/en/ejabberd.raw.wiki -------------------------------------------------------------------------------- /doc/manual/en/images/DateTime.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/doc/manual/en/images/DateTime.png -------------------------------------------------------------------------------- /doc/manual/en/images/Firewall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/doc/manual/en/images/Firewall.png -------------------------------------------------------------------------------- /doc/manual/en/images/OPML.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/doc/manual/en/images/OPML.png -------------------------------------------------------------------------------- /doc/manual/en/images/Security.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/doc/manual/en/images/Security.png -------------------------------------------------------------------------------- /doc/manual/en/images/Storage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/doc/manual/en/images/Storage.png -------------------------------------------------------------------------------- /doc/manual/en/images/apu1d.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/doc/manual/en/images/apu1d.jpg -------------------------------------------------------------------------------- /doc/manual/en/images/banana-pro.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/doc/manual/en/images/banana-pro.jpg -------------------------------------------------------------------------------- /doc/manual/en/images/checkmark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/doc/manual/en/images/checkmark.png -------------------------------------------------------------------------------- /doc/manual/en/images/copy_url.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/doc/manual/en/images/copy_url.png -------------------------------------------------------------------------------- /doc/manual/en/images/deluge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/doc/manual/en/images/deluge.png -------------------------------------------------------------------------------- /doc/manual/en/images/dino-login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/doc/manual/en/images/dino-login.png -------------------------------------------------------------------------------- /doc/manual/en/images/icon-error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/doc/manual/en/images/icon-error.png -------------------------------------------------------------------------------- /doc/manual/en/images/kiwix-tile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/doc/manual/en/images/kiwix-tile.png -------------------------------------------------------------------------------- /doc/manual/en/images/nextcloud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/doc/manual/en/images/nextcloud.png -------------------------------------------------------------------------------- /doc/manual/en/images/pcduino3s.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/doc/manual/en/images/pcduino3s.jpg -------------------------------------------------------------------------------- /doc/manual/en/images/rock64.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/doc/manual/en/images/rock64.jpg -------------------------------------------------------------------------------- /doc/manual/en/images/rockpro64.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/doc/manual/en/images/rockpro64.jpg -------------------------------------------------------------------------------- /doc/manual/en/images/show_more.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/doc/manual/en/images/show_more.png -------------------------------------------------------------------------------- /doc/manual/en/images/star_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/doc/manual/en/images/star_off.png -------------------------------------------------------------------------------- /doc/manual/en/images/star_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/doc/manual/en/images/star_on.png -------------------------------------------------------------------------------- /doc/manual/en/images/ttrss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/doc/manual/en/images/ttrss.png -------------------------------------------------------------------------------- /doc/manual/en/images/ttrssapp1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/doc/manual/en/images/ttrssapp1.png -------------------------------------------------------------------------------- /doc/manual/en/images/ttrssapp2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/doc/manual/en/images/ttrssapp2.png -------------------------------------------------------------------------------- /doc/manual/en/images/ttrssapp3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/doc/manual/en/images/ttrssapp3.png -------------------------------------------------------------------------------- /doc/manual/en/images/ttrssapp4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/doc/manual/en/images/ttrssapp4.png -------------------------------------------------------------------------------- /doc/manual/en/images/ttrssapp5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/doc/manual/en/images/ttrssapp5.png -------------------------------------------------------------------------------- /doc/manual/en/images/ui_apps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/doc/manual/en/images/ui_apps.png -------------------------------------------------------------------------------- /doc/manual/en/images/ui_help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/doc/manual/en/images/ui_help.png -------------------------------------------------------------------------------- /doc/manual/en/images/ui_system.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/doc/manual/en/images/ui_system.png -------------------------------------------------------------------------------- /doc/manual/en/images/update.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/doc/manual/en/images/update.png -------------------------------------------------------------------------------- /doc/manual/en/images/virtualbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/doc/manual/en/images/virtualbox.png -------------------------------------------------------------------------------- /doc/manual/en/images/zoph-home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/doc/manual/en/images/zoph-home.png -------------------------------------------------------------------------------- /doc/manual/en/images/zoph-prefs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/doc/manual/en/images/zoph-prefs.png -------------------------------------------------------------------------------- /doc/manual/en/pcDuino3.raw.wiki: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/doc/manual/en/pcDuino3.raw.wiki -------------------------------------------------------------------------------- /doc/manual/es/APU.raw.wiki: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/doc/manual/es/APU.raw.wiki -------------------------------------------------------------------------------- /doc/manual/es/Backups.raw.wiki: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/doc/manual/es/Backups.raw.wiki -------------------------------------------------------------------------------- /doc/manual/es/BananaPro.raw.wiki: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/doc/manual/es/BananaPro.raw.wiki -------------------------------------------------------------------------------- /doc/manual/es/BeagleBone.raw.wiki: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/doc/manual/es/BeagleBone.raw.wiki -------------------------------------------------------------------------------- /doc/manual/es/Bind.raw.wiki: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/doc/manual/es/Bind.raw.wiki -------------------------------------------------------------------------------- /doc/manual/es/Calibre.raw.wiki: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/doc/manual/es/Calibre.raw.wiki -------------------------------------------------------------------------------- /doc/manual/es/Cockpit.raw.wiki: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/doc/manual/es/Cockpit.raw.wiki -------------------------------------------------------------------------------- /doc/manual/es/Configure.raw.wiki: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/doc/manual/es/Configure.raw.wiki -------------------------------------------------------------------------------- /doc/manual/es/Contribute.raw.wiki: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/doc/manual/es/Contribute.raw.wiki -------------------------------------------------------------------------------- /doc/manual/es/Coturn.raw.wiki: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/doc/manual/es/Coturn.raw.wiki -------------------------------------------------------------------------------- /doc/manual/es/Cubieboard2.raw.wiki: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/doc/manual/es/Cubieboard2.raw.wiki -------------------------------------------------------------------------------- /doc/manual/es/Cubietruck.raw.wiki: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/doc/manual/es/Cubietruck.raw.wiki -------------------------------------------------------------------------------- /doc/manual/es/DateTime.raw.wiki: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/doc/manual/es/DateTime.raw.wiki -------------------------------------------------------------------------------- /doc/manual/es/Debian.raw.wiki: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/doc/manual/es/Debian.raw.wiki -------------------------------------------------------------------------------- /doc/manual/es/Deluge.raw.wiki: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/doc/manual/es/Deluge.raw.wiki -------------------------------------------------------------------------------- /doc/manual/es/Developer.raw.wiki: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/doc/manual/es/Developer.raw.wiki -------------------------------------------------------------------------------- /doc/manual/es/Diagnostics.raw.wiki: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/doc/manual/es/Diagnostics.raw.wiki -------------------------------------------------------------------------------- /doc/manual/es/Download.raw.wiki: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/doc/manual/es/Download.raw.wiki -------------------------------------------------------------------------------- /doc/manual/es/DynamicDNS.raw.wiki: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/doc/manual/es/DynamicDNS.raw.wiki -------------------------------------------------------------------------------- /doc/manual/es/Email.raw.wiki: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/doc/manual/es/Email.raw.wiki -------------------------------------------------------------------------------- /doc/manual/es/Firewall.raw.wiki: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/doc/manual/es/Firewall.raw.wiki -------------------------------------------------------------------------------- /doc/manual/es/GettingHelp.raw.wiki: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/doc/manual/es/GettingHelp.raw.wiki -------------------------------------------------------------------------------- /doc/manual/es/GitWeb.raw.wiki: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/doc/manual/es/GitWeb.raw.wiki -------------------------------------------------------------------------------- /doc/manual/es/Hardware.raw.wiki: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/doc/manual/es/Hardware.raw.wiki -------------------------------------------------------------------------------- /doc/manual/es/Ikiwiki.raw.wiki: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/doc/manual/es/Ikiwiki.raw.wiki -------------------------------------------------------------------------------- /doc/manual/es/Infinoted.raw.wiki: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/doc/manual/es/Infinoted.raw.wiki -------------------------------------------------------------------------------- /doc/manual/es/Introduction.raw.wiki: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/doc/manual/es/Introduction.raw.wiki -------------------------------------------------------------------------------- /doc/manual/es/JSXC.raw.wiki: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/doc/manual/es/JSXC.raw.wiki -------------------------------------------------------------------------------- /doc/manual/es/Janus.raw.wiki: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/doc/manual/es/Janus.raw.wiki -------------------------------------------------------------------------------- /doc/manual/es/Kiwix.raw.wiki: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/doc/manual/es/Kiwix.raw.wiki -------------------------------------------------------------------------------- /doc/manual/es/LetsEncrypt.raw.wiki: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/doc/manual/es/LetsEncrypt.raw.wiki -------------------------------------------------------------------------------- /doc/manual/es/Maker.raw.wiki: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/doc/manual/es/Maker.raw.wiki -------------------------------------------------------------------------------- /doc/manual/es/Manual.raw.wiki: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/doc/manual/es/Manual.raw.wiki -------------------------------------------------------------------------------- /doc/manual/es/MediaWiki.raw.wiki: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/doc/manual/es/MediaWiki.raw.wiki -------------------------------------------------------------------------------- /doc/manual/es/Minetest.raw.wiki: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/doc/manual/es/Minetest.raw.wiki -------------------------------------------------------------------------------- /doc/manual/es/MiniDLNA.raw.wiki: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/doc/manual/es/MiniDLNA.raw.wiki -------------------------------------------------------------------------------- /doc/manual/es/Miniflux.raw.wiki: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/doc/manual/es/Miniflux.raw.wiki -------------------------------------------------------------------------------- /doc/manual/es/Mumble.raw.wiki: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/doc/manual/es/Mumble.raw.wiki -------------------------------------------------------------------------------- /doc/manual/es/NameServices.raw.wiki: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/doc/manual/es/NameServices.raw.wiki -------------------------------------------------------------------------------- /doc/manual/es/Networks.raw.wiki: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/doc/manual/es/Networks.raw.wiki -------------------------------------------------------------------------------- /doc/manual/es/OpenVPN.raw.wiki: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/doc/manual/es/OpenVPN.raw.wiki -------------------------------------------------------------------------------- /doc/manual/es/OrangePiZero.raw.wiki: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/doc/manual/es/OrangePiZero.raw.wiki -------------------------------------------------------------------------------- /doc/manual/es/PageKite.raw.wiki: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/doc/manual/es/PageKite.raw.wiki -------------------------------------------------------------------------------- /doc/manual/es/Performance.raw.wiki: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/doc/manual/es/Performance.raw.wiki -------------------------------------------------------------------------------- /doc/manual/es/PineA64+.raw.wiki: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/doc/manual/es/PineA64+.raw.wiki -------------------------------------------------------------------------------- /doc/manual/es/Plinth.raw.wiki: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/doc/manual/es/Plinth.raw.wiki -------------------------------------------------------------------------------- /doc/manual/es/Power.raw.wiki: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/doc/manual/es/Power.raw.wiki -------------------------------------------------------------------------------- /doc/manual/es/Privoxy.raw.wiki: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/doc/manual/es/Privoxy.raw.wiki -------------------------------------------------------------------------------- /doc/manual/es/Quassel.raw.wiki: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/doc/manual/es/Quassel.raw.wiki -------------------------------------------------------------------------------- /doc/manual/es/QuickStart.raw.wiki: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/doc/manual/es/QuickStart.raw.wiki -------------------------------------------------------------------------------- /doc/manual/es/RSSBridge.raw.wiki: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/doc/manual/es/RSSBridge.raw.wiki -------------------------------------------------------------------------------- /doc/manual/es/Radicale.raw.wiki: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/doc/manual/es/Radicale.raw.wiki -------------------------------------------------------------------------------- /doc/manual/es/RaspberryPi2.raw.wiki: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/doc/manual/es/RaspberryPi2.raw.wiki -------------------------------------------------------------------------------- /doc/manual/es/ReleaseNotes.raw.wiki: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/doc/manual/es/ReleaseNotes.raw.wiki -------------------------------------------------------------------------------- /doc/manual/es/Rock64.raw.wiki: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/doc/manual/es/Rock64.raw.wiki -------------------------------------------------------------------------------- /doc/manual/es/RockPro64.raw.wiki: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/doc/manual/es/RockPro64.raw.wiki -------------------------------------------------------------------------------- /doc/manual/es/Roundcube.raw.wiki: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/doc/manual/es/Roundcube.raw.wiki -------------------------------------------------------------------------------- /doc/manual/es/Samba.raw.wiki: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/doc/manual/es/Samba.raw.wiki -------------------------------------------------------------------------------- /doc/manual/es/Searx.raw.wiki: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/doc/manual/es/Searx.raw.wiki -------------------------------------------------------------------------------- /doc/manual/es/SecureShell.raw.wiki: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/doc/manual/es/SecureShell.raw.wiki -------------------------------------------------------------------------------- /doc/manual/es/Security.raw.wiki: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/doc/manual/es/Security.raw.wiki -------------------------------------------------------------------------------- /doc/manual/es/Shaarli.raw.wiki: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/doc/manual/es/Shaarli.raw.wiki -------------------------------------------------------------------------------- /doc/manual/es/Shadowsocks.raw.wiki: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/doc/manual/es/Shadowsocks.raw.wiki -------------------------------------------------------------------------------- /doc/manual/es/Sharing.raw.wiki: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/doc/manual/es/Sharing.raw.wiki -------------------------------------------------------------------------------- /doc/manual/es/Snapshots.raw.wiki: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/doc/manual/es/Snapshots.raw.wiki -------------------------------------------------------------------------------- /doc/manual/es/Storage.raw.wiki: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/doc/manual/es/Storage.raw.wiki -------------------------------------------------------------------------------- /doc/manual/es/Syncthing.raw.wiki: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/doc/manual/es/Syncthing.raw.wiki -------------------------------------------------------------------------------- /doc/manual/es/TiddlyWiki.raw.wiki: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/doc/manual/es/TiddlyWiki.raw.wiki -------------------------------------------------------------------------------- /doc/manual/es/TinyTinyRSS.raw.wiki: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/doc/manual/es/TinyTinyRSS.raw.wiki -------------------------------------------------------------------------------- /doc/manual/es/Tor.raw.wiki: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/doc/manual/es/Tor.raw.wiki -------------------------------------------------------------------------------- /doc/manual/es/TorProxy.raw.wiki: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/doc/manual/es/TorProxy.raw.wiki -------------------------------------------------------------------------------- /doc/manual/es/Transmission.raw.wiki: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/doc/manual/es/Transmission.raw.wiki -------------------------------------------------------------------------------- /doc/manual/es/USBWiFi.raw.wiki: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/doc/manual/es/USBWiFi.raw.wiki -------------------------------------------------------------------------------- /doc/manual/es/Upgrades.raw.wiki: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/doc/manual/es/Upgrades.raw.wiki -------------------------------------------------------------------------------- /doc/manual/es/Users.raw.wiki: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/doc/manual/es/Users.raw.wiki -------------------------------------------------------------------------------- /doc/manual/es/VirtualBox.raw.wiki: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/doc/manual/es/VirtualBox.raw.wiki -------------------------------------------------------------------------------- /doc/manual/es/WireGuard.raw.wiki: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/doc/manual/es/WireGuard.raw.wiki -------------------------------------------------------------------------------- /doc/manual/es/WordPress.raw.wiki: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/doc/manual/es/WordPress.raw.wiki -------------------------------------------------------------------------------- /doc/manual/es/Zoph.raw.wiki: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/doc/manual/es/Zoph.raw.wiki -------------------------------------------------------------------------------- /doc/manual/es/bepasty.raw.wiki: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/doc/manual/es/bepasty.raw.wiki -------------------------------------------------------------------------------- /doc/manual/es/ejabberd.raw.wiki: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/doc/manual/es/ejabberd.raw.wiki -------------------------------------------------------------------------------- /doc/manual/es/images/OPML.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/doc/manual/es/images/OPML.png -------------------------------------------------------------------------------- /doc/manual/es/images/Storage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/doc/manual/es/images/Storage.png -------------------------------------------------------------------------------- /doc/manual/es/images/apu1d.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/doc/manual/es/images/apu1d.jpg -------------------------------------------------------------------------------- /doc/manual/es/images/banana-pro.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/doc/manual/es/images/banana-pro.jpg -------------------------------------------------------------------------------- /doc/manual/es/images/checkmark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/doc/manual/es/images/checkmark.png -------------------------------------------------------------------------------- /doc/manual/es/images/copy_url.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/doc/manual/es/images/copy_url.png -------------------------------------------------------------------------------- /doc/manual/es/images/deluge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/doc/manual/es/images/deluge.png -------------------------------------------------------------------------------- /doc/manual/es/images/dino-login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/doc/manual/es/images/dino-login.png -------------------------------------------------------------------------------- /doc/manual/es/images/icon-error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/doc/manual/es/images/icon-error.png -------------------------------------------------------------------------------- /doc/manual/es/images/icons: -------------------------------------------------------------------------------- 1 | ../../en/images/icons/ -------------------------------------------------------------------------------- /doc/manual/es/images/kiwix-tile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/doc/manual/es/images/kiwix-tile.png -------------------------------------------------------------------------------- /doc/manual/es/images/pcduino3s.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/doc/manual/es/images/pcduino3s.jpg -------------------------------------------------------------------------------- /doc/manual/es/images/rock64.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/doc/manual/es/images/rock64.jpg -------------------------------------------------------------------------------- /doc/manual/es/images/rockpro64.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/doc/manual/es/images/rockpro64.jpg -------------------------------------------------------------------------------- /doc/manual/es/images/show_more.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/doc/manual/es/images/show_more.png -------------------------------------------------------------------------------- /doc/manual/es/images/star_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/doc/manual/es/images/star_off.png -------------------------------------------------------------------------------- /doc/manual/es/images/star_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/doc/manual/es/images/star_on.png -------------------------------------------------------------------------------- /doc/manual/es/images/ttrss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/doc/manual/es/images/ttrss.png -------------------------------------------------------------------------------- /doc/manual/es/images/ttrssapp1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/doc/manual/es/images/ttrssapp1.png -------------------------------------------------------------------------------- /doc/manual/es/images/ttrssapp2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/doc/manual/es/images/ttrssapp2.png -------------------------------------------------------------------------------- /doc/manual/es/images/ttrssapp3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/doc/manual/es/images/ttrssapp3.png -------------------------------------------------------------------------------- /doc/manual/es/images/ttrssapp4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/doc/manual/es/images/ttrssapp4.png -------------------------------------------------------------------------------- /doc/manual/es/images/ttrssapp5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/doc/manual/es/images/ttrssapp5.png -------------------------------------------------------------------------------- /doc/manual/es/images/ui_apps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/doc/manual/es/images/ui_apps.png -------------------------------------------------------------------------------- /doc/manual/es/images/ui_help-es.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/doc/manual/es/images/ui_help-es.png -------------------------------------------------------------------------------- /doc/manual/es/images/ui_system.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/doc/manual/es/images/ui_system.png -------------------------------------------------------------------------------- /doc/manual/es/images/virtualbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/doc/manual/es/images/virtualbox.png -------------------------------------------------------------------------------- /doc/manual/es/images/zoph-home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/doc/manual/es/images/zoph-home.png -------------------------------------------------------------------------------- /doc/manual/es/images/zoph-prefs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/doc/manual/es/images/zoph-prefs.png -------------------------------------------------------------------------------- /doc/manual/es/pcDuino3.raw.wiki: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/doc/manual/es/pcDuino3.raw.wiki -------------------------------------------------------------------------------- /doc/plinth.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/doc/plinth.xml -------------------------------------------------------------------------------- /doc/scripts/fetch-images.xslt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/doc/scripts/fetch-images.xslt -------------------------------------------------------------------------------- /doc/scripts/test-wikiparser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/doc/scripts/test-wikiparser -------------------------------------------------------------------------------- /doc/scripts/wikiparser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/doc/scripts/wikiparser.py -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/manage.py -------------------------------------------------------------------------------- /plinth/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/__init__.py -------------------------------------------------------------------------------- /plinth/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/__main__.py -------------------------------------------------------------------------------- /plinth/action_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/action_utils.py -------------------------------------------------------------------------------- /plinth/actions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/actions.py -------------------------------------------------------------------------------- /plinth/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/app.py -------------------------------------------------------------------------------- /plinth/cfg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/cfg.py -------------------------------------------------------------------------------- /plinth/clients.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/clients.py -------------------------------------------------------------------------------- /plinth/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/config.py -------------------------------------------------------------------------------- /plinth/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/conftest.py -------------------------------------------------------------------------------- /plinth/container.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/container.py -------------------------------------------------------------------------------- /plinth/context_processors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/context_processors.py -------------------------------------------------------------------------------- /plinth/daemon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/daemon.py -------------------------------------------------------------------------------- /plinth/db/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/db/__init__.py -------------------------------------------------------------------------------- /plinth/db/mariadb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/db/mariadb.py -------------------------------------------------------------------------------- /plinth/db/postgres.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/db/postgres.py -------------------------------------------------------------------------------- /plinth/dbus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/dbus.py -------------------------------------------------------------------------------- /plinth/develop.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/develop.config -------------------------------------------------------------------------------- /plinth/diagnostic_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/diagnostic_check.py -------------------------------------------------------------------------------- /plinth/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/errors.py -------------------------------------------------------------------------------- /plinth/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/forms.py -------------------------------------------------------------------------------- /plinth/frontpage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/frontpage.py -------------------------------------------------------------------------------- /plinth/glib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/glib.py -------------------------------------------------------------------------------- /plinth/hashers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/hashers.py -------------------------------------------------------------------------------- /plinth/kvstore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/kvstore.py -------------------------------------------------------------------------------- /plinth/locale/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/locale/README -------------------------------------------------------------------------------- /plinth/locale/django.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/locale/django.pot -------------------------------------------------------------------------------- /plinth/log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/log.py -------------------------------------------------------------------------------- /plinth/menu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/menu.py -------------------------------------------------------------------------------- /plinth/middleware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/middleware.py -------------------------------------------------------------------------------- /plinth/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/migrations/0001_initial.py -------------------------------------------------------------------------------- /plinth/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plinth/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/models.py -------------------------------------------------------------------------------- /plinth/module_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/module_loader.py -------------------------------------------------------------------------------- /plinth/modules/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plinth/modules/apache/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/apache/__init__.py -------------------------------------------------------------------------------- /plinth/modules/apache/components.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/apache/components.py -------------------------------------------------------------------------------- /plinth/modules/apache/data/usr/share/freedombox/modules-enabled/apache: -------------------------------------------------------------------------------- 1 | plinth.modules.apache 2 | -------------------------------------------------------------------------------- /plinth/modules/apache/privileged.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/apache/privileged.py -------------------------------------------------------------------------------- /plinth/modules/apache/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plinth/modules/apache/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/apache/urls.py -------------------------------------------------------------------------------- /plinth/modules/api/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/api/__init__.py -------------------------------------------------------------------------------- /plinth/modules/api/data/usr/share/freedombox/modules-enabled/api: -------------------------------------------------------------------------------- 1 | plinth.modules.api 2 | -------------------------------------------------------------------------------- /plinth/modules/api/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plinth/modules/api/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/api/urls.py -------------------------------------------------------------------------------- /plinth/modules/api/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/api/views.py -------------------------------------------------------------------------------- /plinth/modules/avahi/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/avahi/__init__.py -------------------------------------------------------------------------------- /plinth/modules/avahi/data/usr/share/freedombox/modules-enabled/avahi: -------------------------------------------------------------------------------- 1 | plinth.modules.avahi 2 | -------------------------------------------------------------------------------- /plinth/modules/avahi/manifest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/avahi/manifest.py -------------------------------------------------------------------------------- /plinth/modules/avahi/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plinth/modules/avahi/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/avahi/urls.py -------------------------------------------------------------------------------- /plinth/modules/backups/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/backups/__init__.py -------------------------------------------------------------------------------- /plinth/modules/backups/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/backups/api.py -------------------------------------------------------------------------------- /plinth/modules/backups/data/usr/share/freedombox/modules-enabled/backups: -------------------------------------------------------------------------------- 1 | plinth.modules.backups 2 | -------------------------------------------------------------------------------- /plinth/modules/backups/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/backups/errors.py -------------------------------------------------------------------------------- /plinth/modules/backups/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/backups/forms.py -------------------------------------------------------------------------------- /plinth/modules/backups/manifest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/backups/manifest.py -------------------------------------------------------------------------------- /plinth/modules/backups/schedule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/backups/schedule.py -------------------------------------------------------------------------------- /plinth/modules/backups/store.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/backups/store.py -------------------------------------------------------------------------------- /plinth/modules/backups/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plinth/modules/backups/tests/backup_data/sample_file.txt: -------------------------------------------------------------------------------- 1 | sample file content 2 | -------------------------------------------------------------------------------- /plinth/modules/backups/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/backups/urls.py -------------------------------------------------------------------------------- /plinth/modules/backups/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/backups/views.py -------------------------------------------------------------------------------- /plinth/modules/bepasty/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/bepasty/__init__.py -------------------------------------------------------------------------------- /plinth/modules/bepasty/data/usr/share/freedombox/modules-enabled/bepasty: -------------------------------------------------------------------------------- 1 | plinth.modules.bepasty 2 | -------------------------------------------------------------------------------- /plinth/modules/bepasty/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/bepasty/forms.py -------------------------------------------------------------------------------- /plinth/modules/bepasty/manifest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/bepasty/manifest.py -------------------------------------------------------------------------------- /plinth/modules/bepasty/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plinth/modules/bepasty/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/bepasty/urls.py -------------------------------------------------------------------------------- /plinth/modules/bepasty/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/bepasty/views.py -------------------------------------------------------------------------------- /plinth/modules/bind/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/bind/__init__.py -------------------------------------------------------------------------------- /plinth/modules/bind/data/usr/share/freedombox/modules-enabled/bind: -------------------------------------------------------------------------------- 1 | plinth.modules.bind 2 | -------------------------------------------------------------------------------- /plinth/modules/bind/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/bind/forms.py -------------------------------------------------------------------------------- /plinth/modules/bind/manifest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/bind/manifest.py -------------------------------------------------------------------------------- /plinth/modules/bind/privileged.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/bind/privileged.py -------------------------------------------------------------------------------- /plinth/modules/bind/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plinth/modules/bind/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/bind/urls.py -------------------------------------------------------------------------------- /plinth/modules/bind/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/bind/views.py -------------------------------------------------------------------------------- /plinth/modules/calibre/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/calibre/__init__.py -------------------------------------------------------------------------------- /plinth/modules/calibre/data/usr/share/freedombox/modules-enabled/calibre: -------------------------------------------------------------------------------- 1 | plinth.modules.calibre 2 | -------------------------------------------------------------------------------- /plinth/modules/calibre/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/calibre/forms.py -------------------------------------------------------------------------------- /plinth/modules/calibre/manifest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/calibre/manifest.py -------------------------------------------------------------------------------- /plinth/modules/calibre/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plinth/modules/calibre/tests/data/sample.txt: -------------------------------------------------------------------------------- 1 | Testing 2 | -------------------------------------------------------------------------------- /plinth/modules/calibre/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/calibre/urls.py -------------------------------------------------------------------------------- /plinth/modules/calibre/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/calibre/views.py -------------------------------------------------------------------------------- /plinth/modules/cockpit/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/cockpit/__init__.py -------------------------------------------------------------------------------- /plinth/modules/cockpit/data/usr/share/freedombox/modules-enabled/cockpit: -------------------------------------------------------------------------------- 1 | plinth.modules.cockpit 2 | -------------------------------------------------------------------------------- /plinth/modules/cockpit/manifest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/cockpit/manifest.py -------------------------------------------------------------------------------- /plinth/modules/cockpit/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plinth/modules/cockpit/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/cockpit/urls.py -------------------------------------------------------------------------------- /plinth/modules/config/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/config/__init__.py -------------------------------------------------------------------------------- /plinth/modules/config/data/usr/share/freedombox/modules-enabled/config: -------------------------------------------------------------------------------- 1 | plinth.modules.config 2 | -------------------------------------------------------------------------------- /plinth/modules/config/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/config/forms.py -------------------------------------------------------------------------------- /plinth/modules/config/manifest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/config/manifest.py -------------------------------------------------------------------------------- /plinth/modules/config/privileged.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/config/privileged.py -------------------------------------------------------------------------------- /plinth/modules/config/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plinth/modules/config/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/config/urls.py -------------------------------------------------------------------------------- /plinth/modules/config/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/config/views.py -------------------------------------------------------------------------------- /plinth/modules/coturn/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/coturn/__init__.py -------------------------------------------------------------------------------- /plinth/modules/coturn/components.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/coturn/components.py -------------------------------------------------------------------------------- /plinth/modules/coturn/data/usr/share/freedombox/modules-enabled/coturn: -------------------------------------------------------------------------------- 1 | plinth.modules.coturn 2 | -------------------------------------------------------------------------------- /plinth/modules/coturn/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/coturn/forms.py -------------------------------------------------------------------------------- /plinth/modules/coturn/manifest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/coturn/manifest.py -------------------------------------------------------------------------------- /plinth/modules/coturn/privileged.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/coturn/privileged.py -------------------------------------------------------------------------------- /plinth/modules/coturn/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plinth/modules/coturn/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/coturn/urls.py -------------------------------------------------------------------------------- /plinth/modules/coturn/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/coturn/views.py -------------------------------------------------------------------------------- /plinth/modules/datetime/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/datetime/__init__.py -------------------------------------------------------------------------------- /plinth/modules/datetime/data/usr/share/freedombox/modules-enabled/datetime: -------------------------------------------------------------------------------- 1 | plinth.modules.datetime 2 | -------------------------------------------------------------------------------- /plinth/modules/datetime/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/datetime/forms.py -------------------------------------------------------------------------------- /plinth/modules/datetime/manifest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/datetime/manifest.py -------------------------------------------------------------------------------- /plinth/modules/datetime/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plinth/modules/datetime/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/datetime/urls.py -------------------------------------------------------------------------------- /plinth/modules/datetime/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/datetime/views.py -------------------------------------------------------------------------------- /plinth/modules/deluge/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/deluge/__init__.py -------------------------------------------------------------------------------- /plinth/modules/deluge/data/usr/share/freedombox/modules-enabled/deluge: -------------------------------------------------------------------------------- 1 | plinth.modules.deluge 2 | -------------------------------------------------------------------------------- /plinth/modules/deluge/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/deluge/forms.py -------------------------------------------------------------------------------- /plinth/modules/deluge/manifest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/deluge/manifest.py -------------------------------------------------------------------------------- /plinth/modules/deluge/privileged.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/deluge/privileged.py -------------------------------------------------------------------------------- /plinth/modules/deluge/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plinth/modules/deluge/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/deluge/urls.py -------------------------------------------------------------------------------- /plinth/modules/deluge/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/deluge/utils.py -------------------------------------------------------------------------------- /plinth/modules/deluge/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/deluge/views.py -------------------------------------------------------------------------------- /plinth/modules/diagnostics/data/usr/share/freedombox/modules-enabled/diagnostics: -------------------------------------------------------------------------------- 1 | plinth.modules.diagnostics 2 | -------------------------------------------------------------------------------- /plinth/modules/diagnostics/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/diagnostics/forms.py -------------------------------------------------------------------------------- /plinth/modules/diagnostics/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plinth/modules/diagnostics/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/diagnostics/urls.py -------------------------------------------------------------------------------- /plinth/modules/diagnostics/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/diagnostics/views.py -------------------------------------------------------------------------------- /plinth/modules/dynamicdns/data/usr/share/freedombox/modules-enabled/dynamicdns: -------------------------------------------------------------------------------- 1 | plinth.modules.dynamicdns 2 | -------------------------------------------------------------------------------- /plinth/modules/dynamicdns/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/dynamicdns/forms.py -------------------------------------------------------------------------------- /plinth/modules/dynamicdns/gnudip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/dynamicdns/gnudip.py -------------------------------------------------------------------------------- /plinth/modules/dynamicdns/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plinth/modules/dynamicdns/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/dynamicdns/urls.py -------------------------------------------------------------------------------- /plinth/modules/dynamicdns/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/dynamicdns/views.py -------------------------------------------------------------------------------- /plinth/modules/ejabberd/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/ejabberd/__init__.py -------------------------------------------------------------------------------- /plinth/modules/ejabberd/data/usr/share/freedombox/modules-enabled/ejabberd: -------------------------------------------------------------------------------- 1 | plinth.modules.ejabberd 2 | -------------------------------------------------------------------------------- /plinth/modules/ejabberd/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/ejabberd/forms.py -------------------------------------------------------------------------------- /plinth/modules/ejabberd/manifest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/ejabberd/manifest.py -------------------------------------------------------------------------------- /plinth/modules/ejabberd/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plinth/modules/ejabberd/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/ejabberd/urls.py -------------------------------------------------------------------------------- /plinth/modules/ejabberd/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/ejabberd/views.py -------------------------------------------------------------------------------- /plinth/modules/email/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/email/__init__.py -------------------------------------------------------------------------------- /plinth/modules/email/aliases.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/email/aliases.py -------------------------------------------------------------------------------- /plinth/modules/email/data/usr/share/freedombox/etc/rspamd/local.d/freedombox-logging.inc: -------------------------------------------------------------------------------- 1 | type=syslog 2 | -------------------------------------------------------------------------------- /plinth/modules/email/data/usr/share/freedombox/modules-enabled/email: -------------------------------------------------------------------------------- 1 | plinth.modules.email 2 | -------------------------------------------------------------------------------- /plinth/modules/email/dns.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/email/dns.py -------------------------------------------------------------------------------- /plinth/modules/email/dovecot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/email/dovecot.py -------------------------------------------------------------------------------- /plinth/modules/email/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/email/forms.py -------------------------------------------------------------------------------- /plinth/modules/email/manifest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/email/manifest.py -------------------------------------------------------------------------------- /plinth/modules/email/postfix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/email/postfix.py -------------------------------------------------------------------------------- /plinth/modules/email/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plinth/modules/email/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/email/urls.py -------------------------------------------------------------------------------- /plinth/modules/email/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/email/views.py -------------------------------------------------------------------------------- /plinth/modules/featherwiki/data/usr/share/freedombox/modules-enabled/featherwiki: -------------------------------------------------------------------------------- 1 | plinth.modules.featherwiki 2 | -------------------------------------------------------------------------------- /plinth/modules/featherwiki/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/featherwiki/forms.py -------------------------------------------------------------------------------- /plinth/modules/featherwiki/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plinth/modules/featherwiki/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/featherwiki/urls.py -------------------------------------------------------------------------------- /plinth/modules/featherwiki/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/featherwiki/views.py -------------------------------------------------------------------------------- /plinth/modules/firewall/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/firewall/__init__.py -------------------------------------------------------------------------------- /plinth/modules/firewall/data/usr/share/freedombox/modules-enabled/firewall: -------------------------------------------------------------------------------- 1 | plinth.modules.firewall 2 | -------------------------------------------------------------------------------- /plinth/modules/firewall/manifest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/firewall/manifest.py -------------------------------------------------------------------------------- /plinth/modules/firewall/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plinth/modules/firewall/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/firewall/urls.py -------------------------------------------------------------------------------- /plinth/modules/firewall/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/firewall/views.py -------------------------------------------------------------------------------- /plinth/modules/first_boot/data/usr/share/freedombox/modules-enabled/first_boot: -------------------------------------------------------------------------------- 1 | plinth.modules.first_boot 2 | -------------------------------------------------------------------------------- /plinth/modules/first_boot/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/first_boot/forms.py -------------------------------------------------------------------------------- /plinth/modules/first_boot/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plinth/modules/first_boot/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plinth/modules/first_boot/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/first_boot/urls.py -------------------------------------------------------------------------------- /plinth/modules/first_boot/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/first_boot/views.py -------------------------------------------------------------------------------- /plinth/modules/gitweb/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/gitweb/__init__.py -------------------------------------------------------------------------------- /plinth/modules/gitweb/data/usr/share/freedombox/modules-enabled/gitweb: -------------------------------------------------------------------------------- 1 | plinth.modules.gitweb 2 | -------------------------------------------------------------------------------- /plinth/modules/gitweb/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/gitweb/forms.py -------------------------------------------------------------------------------- /plinth/modules/gitweb/manifest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/gitweb/manifest.py -------------------------------------------------------------------------------- /plinth/modules/gitweb/privileged.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/gitweb/privileged.py -------------------------------------------------------------------------------- /plinth/modules/gitweb/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plinth/modules/gitweb/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/gitweb/urls.py -------------------------------------------------------------------------------- /plinth/modules/gitweb/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/gitweb/views.py -------------------------------------------------------------------------------- /plinth/modules/gnome/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/gnome/__init__.py -------------------------------------------------------------------------------- /plinth/modules/gnome/data/usr/share/freedombox/modules-enabled/gnome: -------------------------------------------------------------------------------- 1 | plinth.modules.gnome 2 | -------------------------------------------------------------------------------- /plinth/modules/gnome/manifest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/gnome/manifest.py -------------------------------------------------------------------------------- /plinth/modules/gnome/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/gnome/urls.py -------------------------------------------------------------------------------- /plinth/modules/help/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/help/__init__.py -------------------------------------------------------------------------------- /plinth/modules/help/data/usr/share/freedombox/modules-enabled/help: -------------------------------------------------------------------------------- 1 | plinth.modules.help 2 | -------------------------------------------------------------------------------- /plinth/modules/help/static/help.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/help/static/help.css -------------------------------------------------------------------------------- /plinth/modules/help/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plinth/modules/help/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/help/urls.py -------------------------------------------------------------------------------- /plinth/modules/help/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/help/views.py -------------------------------------------------------------------------------- /plinth/modules/homeassistant/data/usr/share/freedombox/modules-enabled/homeassistant: -------------------------------------------------------------------------------- 1 | plinth.modules.homeassistant 2 | -------------------------------------------------------------------------------- /plinth/modules/homeassistant/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plinth/modules/ikiwiki/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/ikiwiki/__init__.py -------------------------------------------------------------------------------- /plinth/modules/ikiwiki/data/usr/share/freedombox/modules-enabled/ikiwiki: -------------------------------------------------------------------------------- 1 | plinth.modules.ikiwiki 2 | -------------------------------------------------------------------------------- /plinth/modules/ikiwiki/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/ikiwiki/forms.py -------------------------------------------------------------------------------- /plinth/modules/ikiwiki/manifest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/ikiwiki/manifest.py -------------------------------------------------------------------------------- /plinth/modules/ikiwiki/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plinth/modules/ikiwiki/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/ikiwiki/urls.py -------------------------------------------------------------------------------- /plinth/modules/ikiwiki/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/ikiwiki/views.py -------------------------------------------------------------------------------- /plinth/modules/infinoted/data/usr/share/freedombox/modules-enabled/infinoted: -------------------------------------------------------------------------------- 1 | plinth.modules.infinoted 2 | -------------------------------------------------------------------------------- /plinth/modules/infinoted/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plinth/modules/infinoted/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/infinoted/urls.py -------------------------------------------------------------------------------- /plinth/modules/janus/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/janus/__init__.py -------------------------------------------------------------------------------- /plinth/modules/janus/data/usr/share/freedombox/modules-enabled/janus: -------------------------------------------------------------------------------- 1 | plinth.modules.janus 2 | -------------------------------------------------------------------------------- /plinth/modules/janus/manifest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/janus/manifest.py -------------------------------------------------------------------------------- /plinth/modules/janus/privileged.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/janus/privileged.py -------------------------------------------------------------------------------- /plinth/modules/janus/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plinth/modules/janus/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/janus/urls.py -------------------------------------------------------------------------------- /plinth/modules/janus/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/janus/views.py -------------------------------------------------------------------------------- /plinth/modules/jsxc/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/jsxc/__init__.py -------------------------------------------------------------------------------- /plinth/modules/jsxc/data/usr/share/freedombox/modules-enabled/jsxc: -------------------------------------------------------------------------------- 1 | plinth.modules.jsxc 2 | -------------------------------------------------------------------------------- /plinth/modules/jsxc/manifest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/jsxc/manifest.py -------------------------------------------------------------------------------- /plinth/modules/jsxc/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plinth/modules/jsxc/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/jsxc/urls.py -------------------------------------------------------------------------------- /plinth/modules/jsxc/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/jsxc/views.py -------------------------------------------------------------------------------- /plinth/modules/kiwix/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/kiwix/__init__.py -------------------------------------------------------------------------------- /plinth/modules/kiwix/data/usr/share/freedombox/modules-enabled/kiwix: -------------------------------------------------------------------------------- 1 | plinth.modules.kiwix 2 | -------------------------------------------------------------------------------- /plinth/modules/kiwix/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/kiwix/forms.py -------------------------------------------------------------------------------- /plinth/modules/kiwix/manifest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/kiwix/manifest.py -------------------------------------------------------------------------------- /plinth/modules/kiwix/privileged.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/kiwix/privileged.py -------------------------------------------------------------------------------- /plinth/modules/kiwix/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plinth/modules/kiwix/tests/data/invalid.zim: -------------------------------------------------------------------------------- 1 | Nothing to see here. 2 | -------------------------------------------------------------------------------- /plinth/modules/kiwix/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/kiwix/urls.py -------------------------------------------------------------------------------- /plinth/modules/kiwix/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/kiwix/views.py -------------------------------------------------------------------------------- /plinth/modules/letsencrypt/data/usr/share/freedombox/modules-enabled/letsencrypt: -------------------------------------------------------------------------------- 1 | plinth.modules.letsencrypt 2 | -------------------------------------------------------------------------------- /plinth/modules/letsencrypt/dbus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/letsencrypt/dbus.py -------------------------------------------------------------------------------- /plinth/modules/letsencrypt/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plinth/modules/letsencrypt/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/letsencrypt/urls.py -------------------------------------------------------------------------------- /plinth/modules/letsencrypt/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/letsencrypt/views.py -------------------------------------------------------------------------------- /plinth/modules/matrixsynapse/data/usr/share/freedombox/modules-enabled/matrixsynapse: -------------------------------------------------------------------------------- 1 | plinth.modules.matrixsynapse 2 | -------------------------------------------------------------------------------- /plinth/modules/matrixsynapse/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plinth/modules/mediawiki/data/usr/share/freedombox/modules-enabled/mediawiki: -------------------------------------------------------------------------------- 1 | plinth.modules.mediawiki 2 | -------------------------------------------------------------------------------- /plinth/modules/mediawiki/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/mediawiki/forms.py -------------------------------------------------------------------------------- /plinth/modules/mediawiki/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plinth/modules/mediawiki/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/mediawiki/urls.py -------------------------------------------------------------------------------- /plinth/modules/mediawiki/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/mediawiki/views.py -------------------------------------------------------------------------------- /plinth/modules/minetest/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/minetest/__init__.py -------------------------------------------------------------------------------- /plinth/modules/minetest/data/usr/share/freedombox/modules-enabled/minetest: -------------------------------------------------------------------------------- 1 | plinth.modules.minetest 2 | -------------------------------------------------------------------------------- /plinth/modules/minetest/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/minetest/forms.py -------------------------------------------------------------------------------- /plinth/modules/minetest/manifest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/minetest/manifest.py -------------------------------------------------------------------------------- /plinth/modules/minetest/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plinth/modules/minetest/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/minetest/urls.py -------------------------------------------------------------------------------- /plinth/modules/minetest/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/minetest/views.py -------------------------------------------------------------------------------- /plinth/modules/minidlna/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/minidlna/__init__.py -------------------------------------------------------------------------------- /plinth/modules/minidlna/data/usr/share/freedombox/modules-enabled/minidlna: -------------------------------------------------------------------------------- 1 | plinth.modules.minidlna 2 | -------------------------------------------------------------------------------- /plinth/modules/minidlna/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/minidlna/forms.py -------------------------------------------------------------------------------- /plinth/modules/minidlna/manifest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/minidlna/manifest.py -------------------------------------------------------------------------------- /plinth/modules/minidlna/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plinth/modules/minidlna/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/minidlna/urls.py -------------------------------------------------------------------------------- /plinth/modules/minidlna/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/minidlna/views.py -------------------------------------------------------------------------------- /plinth/modules/miniflux/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/miniflux/__init__.py -------------------------------------------------------------------------------- /plinth/modules/miniflux/data/usr/share/freedombox/modules-enabled/miniflux: -------------------------------------------------------------------------------- 1 | plinth.modules.miniflux 2 | -------------------------------------------------------------------------------- /plinth/modules/miniflux/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/miniflux/forms.py -------------------------------------------------------------------------------- /plinth/modules/miniflux/manifest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/miniflux/manifest.py -------------------------------------------------------------------------------- /plinth/modules/miniflux/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plinth/modules/miniflux/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/miniflux/urls.py -------------------------------------------------------------------------------- /plinth/modules/miniflux/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/miniflux/views.py -------------------------------------------------------------------------------- /plinth/modules/mumble/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/mumble/__init__.py -------------------------------------------------------------------------------- /plinth/modules/mumble/data/usr/share/freedombox/modules-enabled/mumble: -------------------------------------------------------------------------------- 1 | plinth.modules.mumble 2 | -------------------------------------------------------------------------------- /plinth/modules/mumble/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/mumble/forms.py -------------------------------------------------------------------------------- /plinth/modules/mumble/manifest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/mumble/manifest.py -------------------------------------------------------------------------------- /plinth/modules/mumble/privileged.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/mumble/privileged.py -------------------------------------------------------------------------------- /plinth/modules/mumble/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plinth/modules/mumble/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/mumble/urls.py -------------------------------------------------------------------------------- /plinth/modules/mumble/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/mumble/views.py -------------------------------------------------------------------------------- /plinth/modules/names/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/names/__init__.py -------------------------------------------------------------------------------- /plinth/modules/names/components.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/names/components.py -------------------------------------------------------------------------------- /plinth/modules/names/data/usr/share/freedombox/modules-enabled/names: -------------------------------------------------------------------------------- 1 | plinth.modules.names 2 | -------------------------------------------------------------------------------- /plinth/modules/names/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/names/forms.py -------------------------------------------------------------------------------- /plinth/modules/names/manifest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/names/manifest.py -------------------------------------------------------------------------------- /plinth/modules/names/privileged.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/names/privileged.py -------------------------------------------------------------------------------- /plinth/modules/names/resolved.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/names/resolved.py -------------------------------------------------------------------------------- /plinth/modules/names/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plinth/modules/names/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/names/urls.py -------------------------------------------------------------------------------- /plinth/modules/names/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/names/views.py -------------------------------------------------------------------------------- /plinth/modules/networks/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/networks/__init__.py -------------------------------------------------------------------------------- /plinth/modules/networks/data/usr/share/freedombox/modules-enabled/networks: -------------------------------------------------------------------------------- 1 | plinth.modules.networks -------------------------------------------------------------------------------- /plinth/modules/networks/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/networks/forms.py -------------------------------------------------------------------------------- /plinth/modules/networks/manifest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/networks/manifest.py -------------------------------------------------------------------------------- /plinth/modules/networks/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plinth/modules/networks/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/networks/urls.py -------------------------------------------------------------------------------- /plinth/modules/networks/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/networks/views.py -------------------------------------------------------------------------------- /plinth/modules/nextcloud/data/usr/share/freedombox/modules-enabled/nextcloud: -------------------------------------------------------------------------------- 1 | plinth.modules.nextcloud 2 | -------------------------------------------------------------------------------- /plinth/modules/nextcloud/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/nextcloud/forms.py -------------------------------------------------------------------------------- /plinth/modules/nextcloud/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plinth/modules/nextcloud/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/nextcloud/urls.py -------------------------------------------------------------------------------- /plinth/modules/nextcloud/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/nextcloud/views.py -------------------------------------------------------------------------------- /plinth/modules/openvpn/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/openvpn/__init__.py -------------------------------------------------------------------------------- /plinth/modules/openvpn/data/usr/share/freedombox/modules-enabled/openvpn: -------------------------------------------------------------------------------- 1 | plinth.modules.openvpn 2 | -------------------------------------------------------------------------------- /plinth/modules/openvpn/manifest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/openvpn/manifest.py -------------------------------------------------------------------------------- /plinth/modules/openvpn/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plinth/modules/openvpn/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/openvpn/urls.py -------------------------------------------------------------------------------- /plinth/modules/openvpn/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/openvpn/views.py -------------------------------------------------------------------------------- /plinth/modules/pagekite/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/pagekite/__init__.py -------------------------------------------------------------------------------- /plinth/modules/pagekite/data/usr/share/freedombox/modules-enabled/pagekite: -------------------------------------------------------------------------------- 1 | plinth.modules.pagekite 2 | -------------------------------------------------------------------------------- /plinth/modules/pagekite/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/pagekite/forms.py -------------------------------------------------------------------------------- /plinth/modules/pagekite/manifest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/pagekite/manifest.py -------------------------------------------------------------------------------- /plinth/modules/pagekite/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plinth/modules/pagekite/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/pagekite/urls.py -------------------------------------------------------------------------------- /plinth/modules/pagekite/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/pagekite/utils.py -------------------------------------------------------------------------------- /plinth/modules/pagekite/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/pagekite/views.py -------------------------------------------------------------------------------- /plinth/modules/performance/data/usr/share/freedombox/modules-enabled/performance: -------------------------------------------------------------------------------- 1 | plinth.modules.performance 2 | -------------------------------------------------------------------------------- /plinth/modules/performance/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plinth/modules/performance/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/performance/urls.py -------------------------------------------------------------------------------- /plinth/modules/power/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/power/__init__.py -------------------------------------------------------------------------------- /plinth/modules/power/data/usr/share/freedombox/modules-enabled/power: -------------------------------------------------------------------------------- 1 | plinth.modules.power 2 | -------------------------------------------------------------------------------- /plinth/modules/power/manifest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/power/manifest.py -------------------------------------------------------------------------------- /plinth/modules/power/privileged.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/power/privileged.py -------------------------------------------------------------------------------- /plinth/modules/power/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plinth/modules/power/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/power/urls.py -------------------------------------------------------------------------------- /plinth/modules/power/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/power/views.py -------------------------------------------------------------------------------- /plinth/modules/privacy/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/privacy/__init__.py -------------------------------------------------------------------------------- /plinth/modules/privacy/data/usr/share/freedombox/modules-enabled/privacy: -------------------------------------------------------------------------------- 1 | plinth.modules.privacy 2 | -------------------------------------------------------------------------------- /plinth/modules/privacy/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/privacy/forms.py -------------------------------------------------------------------------------- /plinth/modules/privacy/manifest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/privacy/manifest.py -------------------------------------------------------------------------------- /plinth/modules/privacy/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plinth/modules/privacy/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/privacy/urls.py -------------------------------------------------------------------------------- /plinth/modules/privacy/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/privacy/views.py -------------------------------------------------------------------------------- /plinth/modules/privoxy/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/privoxy/__init__.py -------------------------------------------------------------------------------- /plinth/modules/privoxy/data/usr/share/freedombox/modules-enabled/privoxy: -------------------------------------------------------------------------------- 1 | plinth.modules.privoxy 2 | -------------------------------------------------------------------------------- /plinth/modules/privoxy/manifest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/privoxy/manifest.py -------------------------------------------------------------------------------- /plinth/modules/privoxy/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plinth/modules/privoxy/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/privoxy/urls.py -------------------------------------------------------------------------------- /plinth/modules/quassel/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/quassel/__init__.py -------------------------------------------------------------------------------- /plinth/modules/quassel/data/usr/share/freedombox/modules-enabled/quassel: -------------------------------------------------------------------------------- 1 | plinth.modules.quassel 2 | -------------------------------------------------------------------------------- /plinth/modules/quassel/manifest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/quassel/manifest.py -------------------------------------------------------------------------------- /plinth/modules/quassel/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plinth/modules/quassel/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/quassel/urls.py -------------------------------------------------------------------------------- /plinth/modules/quassel/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/quassel/views.py -------------------------------------------------------------------------------- /plinth/modules/radicale/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/radicale/__init__.py -------------------------------------------------------------------------------- /plinth/modules/radicale/data/usr/share/freedombox/modules-enabled/radicale: -------------------------------------------------------------------------------- 1 | plinth.modules.radicale 2 | -------------------------------------------------------------------------------- /plinth/modules/radicale/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/radicale/forms.py -------------------------------------------------------------------------------- /plinth/modules/radicale/manifest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/radicale/manifest.py -------------------------------------------------------------------------------- /plinth/modules/radicale/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plinth/modules/radicale/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/radicale/urls.py -------------------------------------------------------------------------------- /plinth/modules/radicale/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/radicale/views.py -------------------------------------------------------------------------------- /plinth/modules/roundcube/data/usr/share/freedombox/modules-enabled/roundcube: -------------------------------------------------------------------------------- 1 | plinth.modules.roundcube 2 | -------------------------------------------------------------------------------- /plinth/modules/roundcube/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/roundcube/forms.py -------------------------------------------------------------------------------- /plinth/modules/roundcube/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plinth/modules/roundcube/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/roundcube/urls.py -------------------------------------------------------------------------------- /plinth/modules/roundcube/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/roundcube/views.py -------------------------------------------------------------------------------- /plinth/modules/rssbridge/data/usr/share/freedombox/modules-enabled/rssbridge: -------------------------------------------------------------------------------- 1 | plinth.modules.rssbridge 2 | -------------------------------------------------------------------------------- /plinth/modules/rssbridge/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/rssbridge/forms.py -------------------------------------------------------------------------------- /plinth/modules/rssbridge/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plinth/modules/rssbridge/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/rssbridge/urls.py -------------------------------------------------------------------------------- /plinth/modules/rssbridge/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/rssbridge/views.py -------------------------------------------------------------------------------- /plinth/modules/samba/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/samba/__init__.py -------------------------------------------------------------------------------- /plinth/modules/samba/data/usr/share/freedombox/modules-enabled/samba: -------------------------------------------------------------------------------- 1 | plinth.modules.samba 2 | -------------------------------------------------------------------------------- /plinth/modules/samba/manifest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/samba/manifest.py -------------------------------------------------------------------------------- /plinth/modules/samba/privileged.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/samba/privileged.py -------------------------------------------------------------------------------- /plinth/modules/samba/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plinth/modules/samba/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/samba/urls.py -------------------------------------------------------------------------------- /plinth/modules/samba/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/samba/views.py -------------------------------------------------------------------------------- /plinth/modules/searx/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/searx/__init__.py -------------------------------------------------------------------------------- /plinth/modules/searx/data/usr/share/freedombox/modules-enabled/searx: -------------------------------------------------------------------------------- 1 | plinth.modules.searx 2 | -------------------------------------------------------------------------------- /plinth/modules/searx/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/searx/forms.py -------------------------------------------------------------------------------- /plinth/modules/searx/manifest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/searx/manifest.py -------------------------------------------------------------------------------- /plinth/modules/searx/privileged.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/searx/privileged.py -------------------------------------------------------------------------------- /plinth/modules/searx/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plinth/modules/searx/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/searx/urls.py -------------------------------------------------------------------------------- /plinth/modules/searx/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/searx/views.py -------------------------------------------------------------------------------- /plinth/modules/security/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/security/__init__.py -------------------------------------------------------------------------------- /plinth/modules/security/data/usr/share/freedombox/etc/fail2ban/fail2ban.d/freedombox.conf: -------------------------------------------------------------------------------- 1 | [DEFAULT] 2 | logtarget = sysout 3 | -------------------------------------------------------------------------------- /plinth/modules/security/data/usr/share/freedombox/modules-enabled/security: -------------------------------------------------------------------------------- 1 | plinth.modules.security 2 | -------------------------------------------------------------------------------- /plinth/modules/security/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/security/forms.py -------------------------------------------------------------------------------- /plinth/modules/security/manifest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/security/manifest.py -------------------------------------------------------------------------------- /plinth/modules/security/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plinth/modules/security/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/security/urls.py -------------------------------------------------------------------------------- /plinth/modules/security/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/security/views.py -------------------------------------------------------------------------------- /plinth/modules/shaarli/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/shaarli/__init__.py -------------------------------------------------------------------------------- /plinth/modules/shaarli/data/usr/share/freedombox/modules-enabled/shaarli: -------------------------------------------------------------------------------- 1 | plinth.modules.shaarli 2 | -------------------------------------------------------------------------------- /plinth/modules/shaarli/manifest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/shaarli/manifest.py -------------------------------------------------------------------------------- /plinth/modules/shaarli/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plinth/modules/shaarli/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/shaarli/urls.py -------------------------------------------------------------------------------- /plinth/modules/shadowsocks/data/usr/share/freedombox/modules-enabled/shadowsocks: -------------------------------------------------------------------------------- 1 | plinth.modules.shadowsocks 2 | -------------------------------------------------------------------------------- /plinth/modules/shadowsocks/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/shadowsocks/forms.py -------------------------------------------------------------------------------- /plinth/modules/shadowsocks/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plinth/modules/shadowsocks/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/shadowsocks/urls.py -------------------------------------------------------------------------------- /plinth/modules/shadowsocks/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/shadowsocks/views.py -------------------------------------------------------------------------------- /plinth/modules/shadowsocksserver/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plinth/modules/sharing/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/sharing/__init__.py -------------------------------------------------------------------------------- /plinth/modules/sharing/data/usr/share/freedombox/modules-enabled/sharing: -------------------------------------------------------------------------------- 1 | plinth.modules.sharing 2 | -------------------------------------------------------------------------------- /plinth/modules/sharing/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/sharing/forms.py -------------------------------------------------------------------------------- /plinth/modules/sharing/manifest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/sharing/manifest.py -------------------------------------------------------------------------------- /plinth/modules/sharing/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plinth/modules/sharing/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/sharing/urls.py -------------------------------------------------------------------------------- /plinth/modules/sharing/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/sharing/views.py -------------------------------------------------------------------------------- /plinth/modules/snapshot/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/snapshot/__init__.py -------------------------------------------------------------------------------- /plinth/modules/snapshot/data/usr/share/freedombox/modules-enabled/snapshot: -------------------------------------------------------------------------------- 1 | plinth.modules.snapshot 2 | -------------------------------------------------------------------------------- /plinth/modules/snapshot/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/snapshot/forms.py -------------------------------------------------------------------------------- /plinth/modules/snapshot/manifest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/snapshot/manifest.py -------------------------------------------------------------------------------- /plinth/modules/snapshot/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plinth/modules/snapshot/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/snapshot/urls.py -------------------------------------------------------------------------------- /plinth/modules/snapshot/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/snapshot/views.py -------------------------------------------------------------------------------- /plinth/modules/sogo/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/sogo/__init__.py -------------------------------------------------------------------------------- /plinth/modules/sogo/data/usr/share/freedombox/modules-enabled/sogo: -------------------------------------------------------------------------------- 1 | plinth.modules.sogo 2 | -------------------------------------------------------------------------------- /plinth/modules/sogo/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/sogo/forms.py -------------------------------------------------------------------------------- /plinth/modules/sogo/manifest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/sogo/manifest.py -------------------------------------------------------------------------------- /plinth/modules/sogo/privileged.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/sogo/privileged.py -------------------------------------------------------------------------------- /plinth/modules/sogo/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plinth/modules/sogo/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/sogo/urls.py -------------------------------------------------------------------------------- /plinth/modules/sogo/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/sogo/views.py -------------------------------------------------------------------------------- /plinth/modules/ssh/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/ssh/__init__.py -------------------------------------------------------------------------------- /plinth/modules/ssh/data/usr/share/freedombox/etc/fail2ban/jail.d/ssh-freedombox.conf: -------------------------------------------------------------------------------- 1 | [sshd] 2 | enabled = true 3 | -------------------------------------------------------------------------------- /plinth/modules/ssh/data/usr/share/freedombox/modules-enabled/ssh: -------------------------------------------------------------------------------- 1 | plinth.modules.ssh 2 | -------------------------------------------------------------------------------- /plinth/modules/ssh/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/ssh/forms.py -------------------------------------------------------------------------------- /plinth/modules/ssh/manifest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/ssh/manifest.py -------------------------------------------------------------------------------- /plinth/modules/ssh/privileged.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/ssh/privileged.py -------------------------------------------------------------------------------- /plinth/modules/ssh/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plinth/modules/ssh/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/ssh/urls.py -------------------------------------------------------------------------------- /plinth/modules/ssh/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/ssh/views.py -------------------------------------------------------------------------------- /plinth/modules/sso/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/sso/__init__.py -------------------------------------------------------------------------------- /plinth/modules/sso/data/usr/share/freedombox/modules-enabled/sso: -------------------------------------------------------------------------------- 1 | plinth.modules.sso 2 | -------------------------------------------------------------------------------- /plinth/modules/sso/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/sso/forms.py -------------------------------------------------------------------------------- /plinth/modules/sso/privileged.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/sso/privileged.py -------------------------------------------------------------------------------- /plinth/modules/sso/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plinth/modules/sso/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/sso/urls.py -------------------------------------------------------------------------------- /plinth/modules/sso/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/sso/views.py -------------------------------------------------------------------------------- /plinth/modules/storage/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/storage/__init__.py -------------------------------------------------------------------------------- /plinth/modules/storage/data/usr/share/freedombox/modules-enabled/storage: -------------------------------------------------------------------------------- 1 | plinth.modules.storage 2 | -------------------------------------------------------------------------------- /plinth/modules/storage/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/storage/forms.py -------------------------------------------------------------------------------- /plinth/modules/storage/manifest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/storage/manifest.py -------------------------------------------------------------------------------- /plinth/modules/storage/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plinth/modules/storage/udisks2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/storage/udisks2.py -------------------------------------------------------------------------------- /plinth/modules/storage/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/storage/urls.py -------------------------------------------------------------------------------- /plinth/modules/storage/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/storage/views.py -------------------------------------------------------------------------------- /plinth/modules/syncthing/data/usr/share/freedombox/modules-enabled/syncthing: -------------------------------------------------------------------------------- 1 | plinth.modules.syncthing 2 | -------------------------------------------------------------------------------- /plinth/modules/syncthing/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plinth/modules/syncthing/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/syncthing/urls.py -------------------------------------------------------------------------------- /plinth/modules/tiddlywiki/data/usr/share/freedombox/modules-enabled/tiddlywiki: -------------------------------------------------------------------------------- 1 | plinth.modules.tiddlywiki 2 | -------------------------------------------------------------------------------- /plinth/modules/tiddlywiki/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/tiddlywiki/forms.py -------------------------------------------------------------------------------- /plinth/modules/tiddlywiki/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plinth/modules/tiddlywiki/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/tiddlywiki/urls.py -------------------------------------------------------------------------------- /plinth/modules/tiddlywiki/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/tiddlywiki/views.py -------------------------------------------------------------------------------- /plinth/modules/tor/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/tor/__init__.py -------------------------------------------------------------------------------- /plinth/modules/tor/data/usr/share/freedombox/modules-enabled/tor: -------------------------------------------------------------------------------- 1 | plinth.modules.tor 2 | -------------------------------------------------------------------------------- /plinth/modules/tor/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/tor/forms.py -------------------------------------------------------------------------------- /plinth/modules/tor/manifest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/tor/manifest.py -------------------------------------------------------------------------------- /plinth/modules/tor/privileged.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/tor/privileged.py -------------------------------------------------------------------------------- /plinth/modules/tor/static/tor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/tor/static/tor.js -------------------------------------------------------------------------------- /plinth/modules/tor/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plinth/modules/tor/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/tor/urls.py -------------------------------------------------------------------------------- /plinth/modules/tor/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/tor/utils.py -------------------------------------------------------------------------------- /plinth/modules/tor/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/tor/views.py -------------------------------------------------------------------------------- /plinth/modules/torproxy/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/torproxy/__init__.py -------------------------------------------------------------------------------- /plinth/modules/torproxy/data/usr/share/freedombox/modules-enabled/torproxy: -------------------------------------------------------------------------------- 1 | plinth.modules.torproxy 2 | -------------------------------------------------------------------------------- /plinth/modules/torproxy/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/torproxy/forms.py -------------------------------------------------------------------------------- /plinth/modules/torproxy/manifest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/torproxy/manifest.py -------------------------------------------------------------------------------- /plinth/modules/torproxy/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plinth/modules/torproxy/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/torproxy/urls.py -------------------------------------------------------------------------------- /plinth/modules/torproxy/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/torproxy/utils.py -------------------------------------------------------------------------------- /plinth/modules/torproxy/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/torproxy/views.py -------------------------------------------------------------------------------- /plinth/modules/transmission/data/usr/share/freedombox/modules-enabled/transmission: -------------------------------------------------------------------------------- 1 | plinth.modules.transmission 2 | -------------------------------------------------------------------------------- /plinth/modules/transmission/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plinth/modules/transmission/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/transmission/urls.py -------------------------------------------------------------------------------- /plinth/modules/upgrades/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/upgrades/__init__.py -------------------------------------------------------------------------------- /plinth/modules/upgrades/data/usr/share/freedombox/modules-enabled/upgrades: -------------------------------------------------------------------------------- 1 | plinth.modules.upgrades 2 | -------------------------------------------------------------------------------- /plinth/modules/upgrades/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/upgrades/forms.py -------------------------------------------------------------------------------- /plinth/modules/upgrades/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plinth/modules/upgrades/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/upgrades/urls.py -------------------------------------------------------------------------------- /plinth/modules/upgrades/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/upgrades/utils.py -------------------------------------------------------------------------------- /plinth/modules/upgrades/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/upgrades/views.py -------------------------------------------------------------------------------- /plinth/modules/users/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/users/__init__.py -------------------------------------------------------------------------------- /plinth/modules/users/data/usr/share/freedombox/modules-enabled/users: -------------------------------------------------------------------------------- 1 | plinth.modules.users 2 | -------------------------------------------------------------------------------- /plinth/modules/users/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/users/forms.py -------------------------------------------------------------------------------- /plinth/modules/users/manifest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/users/manifest.py -------------------------------------------------------------------------------- /plinth/modules/users/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plinth/modules/users/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/users/urls.py -------------------------------------------------------------------------------- /plinth/modules/users/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/users/views.py -------------------------------------------------------------------------------- /plinth/modules/wireguard/data/usr/share/freedombox/modules-enabled/wireguard: -------------------------------------------------------------------------------- 1 | plinth.modules.wireguard 2 | -------------------------------------------------------------------------------- /plinth/modules/wireguard/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/wireguard/forms.py -------------------------------------------------------------------------------- /plinth/modules/wireguard/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plinth/modules/wireguard/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/wireguard/urls.py -------------------------------------------------------------------------------- /plinth/modules/wireguard/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/wireguard/utils.py -------------------------------------------------------------------------------- /plinth/modules/wireguard/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/wireguard/views.py -------------------------------------------------------------------------------- /plinth/modules/wordpress/data/usr/share/freedombox/modules-enabled/wordpress: -------------------------------------------------------------------------------- 1 | plinth.modules.wordpress 2 | -------------------------------------------------------------------------------- /plinth/modules/wordpress/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/wordpress/forms.py -------------------------------------------------------------------------------- /plinth/modules/wordpress/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plinth/modules/wordpress/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/wordpress/urls.py -------------------------------------------------------------------------------- /plinth/modules/wordpress/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/wordpress/views.py -------------------------------------------------------------------------------- /plinth/modules/zoph/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/zoph/__init__.py -------------------------------------------------------------------------------- /plinth/modules/zoph/data/usr/share/freedombox/modules-enabled/zoph: -------------------------------------------------------------------------------- 1 | plinth.modules.zoph 2 | -------------------------------------------------------------------------------- /plinth/modules/zoph/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/zoph/forms.py -------------------------------------------------------------------------------- /plinth/modules/zoph/manifest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/zoph/manifest.py -------------------------------------------------------------------------------- /plinth/modules/zoph/privileged.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/zoph/privileged.py -------------------------------------------------------------------------------- /plinth/modules/zoph/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plinth/modules/zoph/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/zoph/urls.py -------------------------------------------------------------------------------- /plinth/modules/zoph/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/modules/zoph/views.py -------------------------------------------------------------------------------- /plinth/network.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/network.py -------------------------------------------------------------------------------- /plinth/notification.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/notification.py -------------------------------------------------------------------------------- /plinth/operation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/operation.py -------------------------------------------------------------------------------- /plinth/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/package.py -------------------------------------------------------------------------------- /plinth/privileged/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/privileged/__init__.py -------------------------------------------------------------------------------- /plinth/privileged/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/privileged/config.py -------------------------------------------------------------------------------- /plinth/privileged/container.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/privileged/container.py -------------------------------------------------------------------------------- /plinth/privileged/packages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/privileged/packages.py -------------------------------------------------------------------------------- /plinth/privileged/service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/privileged/service.py -------------------------------------------------------------------------------- /plinth/privileged_daemon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/privileged_daemon.py -------------------------------------------------------------------------------- /plinth/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/settings.py -------------------------------------------------------------------------------- /plinth/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/setup.py -------------------------------------------------------------------------------- /plinth/signals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/signals.py -------------------------------------------------------------------------------- /plinth/templates/403.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/templates/403.html -------------------------------------------------------------------------------- /plinth/templates/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/templates/404.html -------------------------------------------------------------------------------- /plinth/templates/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/templates/500.html -------------------------------------------------------------------------------- /plinth/templates/app-header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/templates/app-header.html -------------------------------------------------------------------------------- /plinth/templates/app-logs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/templates/app-logs.html -------------------------------------------------------------------------------- /plinth/templates/app.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/templates/app.html -------------------------------------------------------------------------------- /plinth/templates/apps.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/templates/apps.html -------------------------------------------------------------------------------- /plinth/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/templates/base.html -------------------------------------------------------------------------------- /plinth/templates/breadcrumbs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/templates/breadcrumbs.html -------------------------------------------------------------------------------- /plinth/templates/card.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/templates/card.html -------------------------------------------------------------------------------- /plinth/templates/cards.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/templates/cards.html -------------------------------------------------------------------------------- /plinth/templates/clients.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/templates/clients.html -------------------------------------------------------------------------------- /plinth/templates/error.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/templates/error.html -------------------------------------------------------------------------------- /plinth/templates/first_setup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/templates/first_setup.html -------------------------------------------------------------------------------- /plinth/templates/form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/templates/form.html -------------------------------------------------------------------------------- /plinth/templates/help-menu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/templates/help-menu.html -------------------------------------------------------------------------------- /plinth/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/templates/index.html -------------------------------------------------------------------------------- /plinth/templates/messages.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/templates/messages.html -------------------------------------------------------------------------------- /plinth/templates/operations.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/templates/operations.html -------------------------------------------------------------------------------- /plinth/templates/setup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/templates/setup.html -------------------------------------------------------------------------------- /plinth/templates/subsubmenu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/templates/subsubmenu.html -------------------------------------------------------------------------------- /plinth/templates/system.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/templates/system.html -------------------------------------------------------------------------------- /plinth/templates/tags.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/templates/tags.html -------------------------------------------------------------------------------- /plinth/templates/toolbar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/templates/toolbar.html -------------------------------------------------------------------------------- /plinth/templates/uninstall.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/templates/uninstall.html -------------------------------------------------------------------------------- /plinth/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plinth/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plinth/tests/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/tests/config.py -------------------------------------------------------------------------------- /plinth/tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/tests/conftest.py -------------------------------------------------------------------------------- /plinth/tests/data/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plinth/tests/data/configs/freedombox.config.d/01_first.config: -------------------------------------------------------------------------------- 1 | [Misc] 2 | box_name = FreedomBox01 3 | -------------------------------------------------------------------------------- /plinth/tests/data/configs/freedombox.config.d/02_second.config: -------------------------------------------------------------------------------- 1 | [Misc] 2 | box_name = FreedomBox02 3 | -------------------------------------------------------------------------------- /plinth/tests/data/configs/freedombox.config.d/03_third.foo: -------------------------------------------------------------------------------- 1 | [Misc] 2 | box_name = FreedomBox03 3 | -------------------------------------------------------------------------------- /plinth/tests/data/configs/freedombox.config.with_missing_sections: -------------------------------------------------------------------------------- 1 | [Misc] 2 | box_name = FreedomBoxTestMissingSections 3 | -------------------------------------------------------------------------------- /plinth/tests/data/shortcuts/blank.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plinth/tests/data/shortcuts/empty.json: -------------------------------------------------------------------------------- 1 | {'shortcuts': []} 2 | -------------------------------------------------------------------------------- /plinth/tests/data/templates/test-notification.html: -------------------------------------------------------------------------------- 1 | Test notification body {{request.path}} 2 | -------------------------------------------------------------------------------- /plinth/tests/data/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/tests/data/urls.py -------------------------------------------------------------------------------- /plinth/tests/tags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plinth/tests/test_action_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/tests/test_action_utils.py -------------------------------------------------------------------------------- /plinth/tests/test_actions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/tests/test_actions.py -------------------------------------------------------------------------------- /plinth/tests/test_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/tests/test_app.py -------------------------------------------------------------------------------- /plinth/tests/test_cfg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/tests/test_cfg.py -------------------------------------------------------------------------------- /plinth/tests/test_clients.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/tests/test_clients.py -------------------------------------------------------------------------------- /plinth/tests/test_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/tests/test_config.py -------------------------------------------------------------------------------- /plinth/tests/test_container.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/tests/test_container.py -------------------------------------------------------------------------------- /plinth/tests/test_daemon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/tests/test_daemon.py -------------------------------------------------------------------------------- /plinth/tests/test_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/tests/test_db.py -------------------------------------------------------------------------------- /plinth/tests/test_frontpage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/tests/test_frontpage.py -------------------------------------------------------------------------------- /plinth/tests/test_kvstore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/tests/test_kvstore.py -------------------------------------------------------------------------------- /plinth/tests/test_menu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/tests/test_menu.py -------------------------------------------------------------------------------- /plinth/tests/test_middleware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/tests/test_middleware.py -------------------------------------------------------------------------------- /plinth/tests/test_network.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/tests/test_network.py -------------------------------------------------------------------------------- /plinth/tests/test_notification.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/tests/test_notification.py -------------------------------------------------------------------------------- /plinth/tests/test_operation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/tests/test_operation.py -------------------------------------------------------------------------------- /plinth/tests/test_package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/tests/test_package.py -------------------------------------------------------------------------------- /plinth/tests/test_setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/tests/test_setup.py -------------------------------------------------------------------------------- /plinth/tests/test_templatetags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/tests/test_templatetags.py -------------------------------------------------------------------------------- /plinth/tests/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/tests/test_utils.py -------------------------------------------------------------------------------- /plinth/tests/test_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/tests/test_version.py -------------------------------------------------------------------------------- /plinth/tests/test_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/tests/test_views.py -------------------------------------------------------------------------------- /plinth/tests/test_web_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/tests/test_web_server.py -------------------------------------------------------------------------------- /plinth/translation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/translation.py -------------------------------------------------------------------------------- /plinth/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/urls.py -------------------------------------------------------------------------------- /plinth/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/utils.py -------------------------------------------------------------------------------- /plinth/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/version.py -------------------------------------------------------------------------------- /plinth/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/views.py -------------------------------------------------------------------------------- /plinth/web_framework.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/web_framework.py -------------------------------------------------------------------------------- /plinth/web_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/plinth/web_server.py -------------------------------------------------------------------------------- /preseed/preseed-stretch.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/preseed/preseed-stretch.dat -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/pyproject.toml -------------------------------------------------------------------------------- /run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/run -------------------------------------------------------------------------------- /static/jslicense.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/static/jslicense.html -------------------------------------------------------------------------------- /static/tags.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/static/tags.js -------------------------------------------------------------------------------- /static/theme: -------------------------------------------------------------------------------- 1 | themes/default/ -------------------------------------------------------------------------------- /static/themes/default/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freedombox/FreedomBox/HEAD/static/themes/default/js/main.js --------------------------------------------------------------------------------