├── .gitignore ├── .gitlab-ci.yml ├── .gitlab └── issue_templates │ └── Bug.md ├── .weblate ├── CONTRIBUTING.md ├── LICENSE ├── MANIFEST.in ├── Makefile ├── README.md ├── babel.cfg ├── docs ├── Makefile ├── assets │ ├── reforis_logo.png │ └── reforis_screenshot.png ├── make.bat └── source │ ├── api.rst │ ├── api_blueprint.rst │ ├── application_factory.rst │ ├── auth.rst │ ├── backend.rst │ ├── conf.py │ ├── guide_blueprint.html │ ├── guide_blueprint.rst │ ├── http_directive_patch.py │ ├── import_mock.py │ ├── index.rst │ ├── locale.rst │ ├── plugins.rst │ └── views.rst ├── js ├── .eslintignore ├── .eslintrc.js ├── .prettierrc ├── babel.config.js ├── docs │ └── introduction.md ├── jest.config.js ├── package-lock.json ├── package.json ├── src │ ├── __mocks__ │ │ ├── axios.js │ │ └── styleMock.js │ ├── about │ │ ├── About.js │ │ └── __tests__ │ │ │ └── About.test.js │ ├── app.css │ ├── app.js │ ├── common │ │ ├── API.js │ │ ├── FactoryResetButton.js │ │ ├── RebootButton.js │ │ ├── ScrollToTopArrow.css │ │ ├── ScrollToTopArrow.js │ │ └── network │ │ │ ├── DHCP6ClientsList.js │ │ │ ├── DHCPClientForm.js │ │ │ ├── DHCPClientsList.js │ │ │ ├── DHCPServerForm.js │ │ │ ├── DHCPValidators.js │ │ │ ├── StaticIPForm.js │ │ │ ├── __tests__ │ │ │ ├── DHCPClientsList.test.js │ │ │ ├── __fixtures__ │ │ │ │ └── DHCPClientsList.js │ │ │ └── __snapshots__ │ │ │ │ └── DHCPClientsList.test.js.snap │ │ │ ├── utils.js │ │ │ └── validators.js │ ├── connectionTest │ │ ├── ConnectionTest.js │ │ ├── ConnectionTestButton.js │ │ ├── ConnectionTestResult.js │ │ ├── __tests__ │ │ │ ├── ConnectionTest.test.js │ │ │ ├── __fixtures__ │ │ │ │ └── testResults.js │ │ │ └── __snapshots__ │ │ │ │ └── ConnectionTest.test.js.snap │ │ └── hooks.js │ ├── dns │ │ ├── DNS.js │ │ ├── DNSForm.js │ │ ├── DNSSECDisableModal.js │ │ ├── Forwarders │ │ │ ├── Forwarder │ │ │ │ ├── ForwarderForm.js │ │ │ │ ├── ForwarderModal.js │ │ │ │ ├── IPAddressesForm.js │ │ │ │ ├── hooks.js │ │ │ │ └── validator.js │ │ │ ├── Forwarders.js │ │ │ ├── ForwardersTable.js │ │ │ ├── hooks.js │ │ │ └── propTypes.js │ │ ├── __tests__ │ │ │ ├── DNS.test.js │ │ │ ├── ForwarderForm.test.js │ │ │ ├── Forwarders.test.js │ │ │ ├── __fixtures__ │ │ │ │ ├── dns.js │ │ │ │ └── forwarders.js │ │ │ └── __snapshots__ │ │ │ │ ├── DNS.test.js.snap │ │ │ │ └── ForwarderForm.test.js.snap │ │ └── constants.js │ ├── docsUtils │ │ └── setup.js │ ├── guestNetwork │ │ ├── GuestNetwork.js │ │ ├── GuestNetworkDHCPClientsList.js │ │ ├── GuestNetworkForm.js │ │ ├── GuestNetworkNotification.js │ │ └── __tests__ │ │ │ ├── GuestNetwork.test.js │ │ │ ├── __fixtures__ │ │ │ └── guestNetwork.js │ │ │ └── __snapshots__ │ │ │ └── GuestNetwork.test.js.snap │ ├── guide │ │ ├── Guide.css │ │ ├── Guide.js │ │ ├── GuideControls │ │ │ ├── GuideControls.css │ │ │ ├── GuideControls.js │ │ │ ├── NextStepButton.js │ │ │ └── SkipGuideButton.js │ │ ├── GuideHelper.js │ │ ├── GuideNavigation │ │ │ ├── GuideNavigation.js │ │ │ └── GuideNavigationItem.js │ │ ├── GuidePage.js │ │ ├── GuidePages │ │ │ ├── GuideFinish.js │ │ │ └── WorkflowSelect.js │ │ ├── GuideRouter.js │ │ ├── __tests__ │ │ │ ├── Guide.test.js │ │ │ ├── GuideFinish.test.js │ │ │ ├── GuideHelper.test.js │ │ │ ├── GuideNavigation.test.js │ │ │ ├── WorkflowSelect.test.js │ │ │ ├── __fixtures__ │ │ │ │ ├── guide.js │ │ │ │ └── workflowSelect.js │ │ │ └── __snapshots__ │ │ │ │ ├── Guide.test.js.snap │ │ │ │ ├── GuideFinish.test.js.snap │ │ │ │ ├── GuideHelper.test.js.snap │ │ │ │ ├── GuideNavigation.test.js.snap │ │ │ │ └── WorkflowSelect.test.js.snap │ │ ├── constants.js │ │ ├── hooks.js │ │ └── steps.js │ ├── hostname │ │ ├── Hostname.js │ │ ├── HostnameForm.js │ │ └── __tests__ │ │ │ ├── Hostname.test.js │ │ │ └── __snapshots__ │ │ │ └── Hostname.test.js.snap │ ├── interfaces │ │ ├── Interface.js │ │ ├── Interfaces.css │ │ ├── Interfaces.js │ │ ├── InterfacesForm.js │ │ ├── Network.js │ │ ├── SelectedInterface.js │ │ ├── __tests__ │ │ │ ├── Interfaces.test.js │ │ │ ├── InterfacesForm.test.js │ │ │ ├── __fixtures__ │ │ │ │ └── interfaces.js │ │ │ └── __snapshots__ │ │ │ │ └── Interfaces.test.js.snap │ │ └── constants.js │ ├── lan │ │ ├── LAN.js │ │ ├── LANForm.js │ │ ├── LANManagedForm.js │ │ ├── LANUnmanagedForm.js │ │ ├── LAN_DHCP_ClientsList.js │ │ └── __tests__ │ │ │ ├── LAN.test.js │ │ │ ├── __fixtures__ │ │ │ └── lanSettings.js │ │ │ └── __snapshots__ │ │ │ └── LAN.test.js.snap │ ├── main │ │ ├── Main.js │ │ ├── TopBar │ │ │ ├── LogoutButton.js │ │ │ ├── NotificationsDropdown │ │ │ │ ├── NotificationsDropdown.css │ │ │ │ ├── NotificationsDropdown.js │ │ │ │ ├── NotificationsDropdownButton.css │ │ │ │ ├── NotificationsDropdownButton.js │ │ │ │ ├── NotificationsDropdownItem.css │ │ │ │ ├── NotificationsDropdownItem.js │ │ │ │ ├── NotificationsDropdownMenu.css │ │ │ │ └── NotificationsDropdownMenu.js │ │ │ ├── TopBar.css │ │ │ ├── TopBar.js │ │ │ ├── languagesDropdown │ │ │ │ ├── LanguagesDropdown.css │ │ │ │ ├── LanguagesDropdown.js │ │ │ │ └── hooks.js │ │ │ ├── rebootDropdown │ │ │ │ ├── RebootDropdown.css │ │ │ │ ├── RebootDropdown.js │ │ │ │ └── __tests__ │ │ │ │ │ ├── RebootDropdown.test.js │ │ │ │ │ └── __snapshots__ │ │ │ │ │ └── RebootDropdown.test.js.snap │ │ │ └── updatesDropdown │ │ │ │ ├── UpdatesDropdown.js │ │ │ │ └── __tests__ │ │ │ │ ├── UpdatesDropdown.test.js │ │ │ │ └── __snapshots__ │ │ │ │ └── UpdatesDropdown.test.js.snap │ │ ├── __tests__ │ │ │ ├── Main.test.js │ │ │ ├── __fixtures__ │ │ │ │ ├── pages.js │ │ │ │ └── plugins.js │ │ │ ├── __snapshots__ │ │ │ │ └── Main.test.js.snap │ │ │ ├── pages.test.js │ │ │ └── utils.test.js │ │ ├── constants.js │ │ ├── customizationContext.js │ │ ├── pages.js │ │ ├── routing.js │ │ └── utils.js │ ├── maintenance │ │ ├── FactoryReset.js │ │ ├── Maintenance.js │ │ ├── Reboot.js │ │ └── Syslog │ │ │ ├── Syslog.js │ │ │ ├── SyslogForm.js │ │ │ └── __tests__ │ │ │ ├── Syslog.test.js │ │ │ ├── __fixtures__ │ │ │ └── syslog.js │ │ │ └── __snapshots__ │ │ │ └── Syslog.test.js.snap │ ├── navigation │ │ ├── FaIcon.js │ │ ├── Navigation.js │ │ ├── NavigationItem.js │ │ ├── NavigationMainItem.js │ │ ├── NavigationToggle.js │ │ └── utils.js │ ├── notifications │ │ ├── NotificationIcon.js │ │ ├── Notifications │ │ │ ├── DismissAllButton.js │ │ │ ├── Notifications.css │ │ │ ├── Notifications.js │ │ │ ├── NotificationsList.js │ │ │ ├── TruncatedText.css │ │ │ └── TruncatedText.js │ │ ├── __tests__ │ │ │ ├── NotificationsCenter.test.js │ │ │ ├── NotificationsDropdown.test.js │ │ │ ├── TruncatedText.test.js │ │ │ ├── __fixtures__ │ │ │ │ └── notifications.js │ │ │ ├── __snapshots__ │ │ │ │ ├── NotificationsCenter.test.js.snap │ │ │ │ ├── NotificationsDropdown.test.js.snap │ │ │ │ └── TruncatedText.test.js.snap │ │ │ └── hooks.test.js │ │ ├── constants.js │ │ ├── hooks.js │ │ └── utils.js │ ├── notificationsSettings │ │ ├── CommonForm.js │ │ ├── NotificationsEmailSettingsForm.js │ │ ├── NotificationsSettings.js │ │ ├── SMTPCustomForm.js │ │ ├── SMTPTurrisForm.js │ │ ├── TestNotification.js │ │ ├── __tests__ │ │ │ ├── NotificationSettings.test.js │ │ │ ├── __fixtures__ │ │ │ │ └── notificationsSettings.js │ │ │ └── __snapshots__ │ │ │ │ └── NotificationSettings.test.js.snap │ │ ├── helpTexts.js │ │ └── validator.js │ ├── overview │ │ ├── Cards │ │ │ ├── AutomaticUpdatesCard.js │ │ │ ├── DataCollectionCard.js │ │ │ ├── DynamicFirewallCard.js │ │ │ ├── NetmetrCard.css │ │ │ ├── NetmetrCard.js │ │ │ ├── OpenVPNClientsCard.js │ │ │ └── __tests__ │ │ │ │ ├── Cards.test.js │ │ │ │ └── __snapshots__ │ │ │ │ └── Cards.test.js.snap │ │ ├── Overview.css │ │ ├── Overview.js │ │ ├── __tests__ │ │ │ ├── Overview.test.js │ │ │ ├── __fixtures__ │ │ │ │ └── overview.js │ │ │ └── __snapshots__ │ │ │ │ └── Overview.test.js.snap │ │ └── utils.js │ ├── packageManagement │ │ ├── languages │ │ │ ├── Languages.js │ │ │ ├── LanguagesForm.js │ │ │ └── __tests__ │ │ │ │ ├── Languages.test.js │ │ │ │ ├── __fixtures__ │ │ │ │ └── languages.js │ │ │ │ └── __snapshots__ │ │ │ │ └── Languages.test.js.snap │ │ ├── packages │ │ │ ├── Labels │ │ │ │ ├── Label.css │ │ │ │ ├── Label.js │ │ │ │ └── Labels.js │ │ │ ├── Package.js │ │ │ ├── PackageCheckBox.js │ │ │ ├── Packages.js │ │ │ ├── PackagesForm.css │ │ │ ├── PackagesForm.js │ │ │ ├── UserOptions │ │ │ │ ├── UserOption.js │ │ │ │ └── UserOptions.js │ │ │ └── __tests__ │ │ │ │ ├── Packages.test.js │ │ │ │ ├── __fixtures__ │ │ │ │ └── packages.js │ │ │ │ └── __snapshots__ │ │ │ │ └── Packages.test.js.snap │ │ ├── updateSettings │ │ │ ├── LicenceModal.js │ │ │ ├── UpdateSettings.js │ │ │ ├── __tests__ │ │ │ │ ├── UpdateSettings.test.js │ │ │ │ ├── __fixtures__ │ │ │ │ │ └── updates.js │ │ │ │ └── __snapshots__ │ │ │ │ │ └── UpdateSettings.test.js.snap │ │ │ └── forms │ │ │ │ ├── RestartAfterUpdateForm.js │ │ │ │ ├── UpdateApprovalForm.js │ │ │ │ └── UpdatesForm.js │ │ ├── updates │ │ │ ├── UpdateApproval.js │ │ │ ├── UpdateChecker.js │ │ │ ├── UpdateManager.js │ │ │ ├── Updates.js │ │ │ ├── __tests__ │ │ │ │ ├── UpdateApproval.test.js │ │ │ │ ├── UpdateChecker.test.js │ │ │ │ ├── Updates.test.js │ │ │ │ ├── __fixtures__ │ │ │ │ │ └── updates.js │ │ │ │ └── __snapshots__ │ │ │ │ │ ├── UpdateApproval.test.js.snap │ │ │ │ │ ├── UpdateChecker.test.js.snap │ │ │ │ │ └── Updates.test.js.snap │ │ │ └── hooks.js │ │ └── utils │ │ │ ├── DisableIfUpdaterIsDisabled.js │ │ │ └── DisabledUpdaterAlert.js │ ├── password │ │ ├── ForisPasswordForm.js │ │ ├── Password.js │ │ ├── RootPasswordForm.js │ │ └── __tests__ │ │ │ ├── Password.test.js │ │ │ └── __snapshots__ │ │ │ └── Password.test.js.snap │ ├── regionAndTime │ │ ├── RegionAndTime.js │ │ ├── RegionForm.js │ │ ├── TimeForm.css │ │ ├── TimeForm.js │ │ ├── __tests__ │ │ │ ├── RegionAndTime.test.js │ │ │ ├── __fixtures__ │ │ │ │ └── regionAndTime.js │ │ │ └── __snapshots__ │ │ │ │ └── RegionAndTime.test.js.snap │ │ └── hooks.js │ ├── routerStateHandler │ │ ├── NetworkRestartHandler.js │ │ ├── RebootHandler.js │ │ ├── RouterStateHandler.js │ │ ├── hooks.js │ │ └── utils.js │ ├── styles │ │ ├── content.css │ │ ├── dropdown.css │ │ ├── login.css │ │ ├── navigation.css │ │ └── sidebar.css │ ├── utils │ │ ├── ErrorBoundary.css │ │ ├── ErrorBoundary.js │ │ ├── __tests__ │ │ │ ├── ErrorBoundary.test.js │ │ │ └── __snapshots__ │ │ │ │ └── ErrorBoundary.test.js.snap │ │ ├── constants.js │ │ └── timezones.js │ ├── wan │ │ ├── MACForm.js │ │ ├── WAN.js │ │ ├── WAN6Form.js │ │ ├── WANForm.js │ │ └── __tests__ │ │ │ ├── WAN.test.js │ │ │ ├── __fixtures__ │ │ │ └── wanSettings.js │ │ │ └── __snapshots__ │ │ │ └── WAN.test.js.snap │ └── wifi │ │ ├── WiFi.js │ │ └── __tests__ │ │ ├── WiFi.test.js │ │ ├── __fixtures__ │ │ └── WiFiFixtures.js │ │ └── __snapshots__ │ │ └── WiFi.test.js.snap ├── styleguide.config.js └── webpack.config.js ├── pycodestyle ├── pylintrc ├── reforis ├── __init__.py ├── __main__.py ├── api │ └── __init__.py ├── auth.py ├── backend.py ├── cli.py ├── config │ ├── __init__.py │ ├── dev.py │ ├── prod.py │ └── test.py ├── foris_controller_api │ ├── __init__.py │ ├── modules │ │ ├── __init__.py │ │ ├── about.py │ │ ├── dns.py │ │ ├── guest.py │ │ ├── haas.py │ │ ├── lan.py │ │ ├── maintain.py │ │ ├── networks.py │ │ ├── password.py │ │ ├── router_notifications.py │ │ ├── system.py │ │ ├── time.py │ │ ├── updater.py │ │ ├── utils.py │ │ ├── wan.py │ │ ├── web.py │ │ └── wifi.py │ └── utils.py ├── guide.py ├── locale.py ├── plugins.py ├── sessions │ ├── LICENSE │ ├── __init__.py │ └── sessions.py ├── templates │ ├── base.html │ ├── errors │ │ ├── 400.html │ │ ├── 401.html │ │ ├── 404.html │ │ └── 500.html │ ├── guide.html │ ├── includes │ │ ├── locale.html │ │ ├── navigation.html │ │ ├── plugins.html │ │ └── top-bar.html │ ├── index.html │ └── login.html ├── test_utils │ ├── __init__.py │ ├── fixtures.py │ └── mocked_send.py ├── translations │ ├── cs │ │ └── LC_MESSAGES │ │ │ └── messages.po │ ├── da │ │ └── LC_MESSAGES │ │ │ └── messages.po │ ├── de │ │ └── LC_MESSAGES │ │ │ └── messages.po │ ├── el │ │ └── LC_MESSAGES │ │ │ └── messages.po │ ├── en │ │ └── LC_MESSAGES │ │ │ └── messages.po │ ├── es │ │ └── LC_MESSAGES │ │ │ └── messages.po │ ├── fi │ │ └── LC_MESSAGES │ │ │ └── messages.po │ ├── fo │ │ └── LC_MESSAGES │ │ │ └── messages.po │ ├── fr │ │ └── LC_MESSAGES │ │ │ └── messages.po │ ├── hr │ │ └── LC_MESSAGES │ │ │ └── messages.po │ ├── hu │ │ └── LC_MESSAGES │ │ │ └── messages.po │ ├── it │ │ └── LC_MESSAGES │ │ │ └── messages.po │ ├── ja │ │ └── LC_MESSAGES │ │ │ └── messages.po │ ├── ko │ │ └── LC_MESSAGES │ │ │ └── messages.po │ ├── lt │ │ └── LC_MESSAGES │ │ │ └── messages.po │ ├── messages.pot │ ├── nb_NO │ │ └── LC_MESSAGES │ │ │ └── messages.po │ ├── nl │ │ └── LC_MESSAGES │ │ │ └── messages.po │ ├── pl │ │ └── LC_MESSAGES │ │ │ └── messages.po │ ├── ro │ │ └── LC_MESSAGES │ │ │ └── messages.po │ ├── ru │ │ └── LC_MESSAGES │ │ │ └── messages.po │ ├── sk │ │ └── LC_MESSAGES │ │ │ └── messages.po │ ├── sv │ │ └── LC_MESSAGES │ │ │ └── messages.po │ └── zh_Hant │ │ └── LC_MESSAGES │ │ └── messages.po ├── utils.py └── views.py ├── reforis_static ├── __init__.py └── reforis │ ├── imgs │ ├── QR_icon.svg │ ├── favicon.ico │ ├── favicon.png │ ├── favicon.svg │ ├── logo-turris-white.svg │ ├── logo-turris.svg │ ├── workflow-bridge.svg │ ├── workflow-min.svg │ └── workflow-router.svg │ └── js │ └── babel.js ├── scripts └── make_timezones.py ├── setup.py └── tests ├── conftest.py ├── foris_controller_api ├── test_foris_controller_api.py ├── test_packages_and_languages.py ├── test_password.py └── test_updates.py ├── test_api.py ├── test_auth.py └── test_timeout.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /.gitlab/issue_templates/Bug.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/.gitlab/issue_templates/Bug.md -------------------------------------------------------------------------------- /.weblate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/.weblate -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/README.md -------------------------------------------------------------------------------- /babel.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/babel.cfg -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/assets/reforis_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/docs/assets/reforis_logo.png -------------------------------------------------------------------------------- /docs/assets/reforis_screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/docs/assets/reforis_screenshot.png -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/source/api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/docs/source/api.rst -------------------------------------------------------------------------------- /docs/source/api_blueprint.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/docs/source/api_blueprint.rst -------------------------------------------------------------------------------- /docs/source/application_factory.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/docs/source/application_factory.rst -------------------------------------------------------------------------------- /docs/source/auth.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/docs/source/auth.rst -------------------------------------------------------------------------------- /docs/source/backend.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/docs/source/backend.rst -------------------------------------------------------------------------------- /docs/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/docs/source/conf.py -------------------------------------------------------------------------------- /docs/source/guide_blueprint.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/docs/source/guide_blueprint.html -------------------------------------------------------------------------------- /docs/source/guide_blueprint.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/docs/source/guide_blueprint.rst -------------------------------------------------------------------------------- /docs/source/http_directive_patch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/docs/source/http_directive_patch.py -------------------------------------------------------------------------------- /docs/source/import_mock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/docs/source/import_mock.py -------------------------------------------------------------------------------- /docs/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/docs/source/index.rst -------------------------------------------------------------------------------- /docs/source/locale.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/docs/source/locale.rst -------------------------------------------------------------------------------- /docs/source/plugins.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/docs/source/plugins.rst -------------------------------------------------------------------------------- /docs/source/views.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/docs/source/views.rst -------------------------------------------------------------------------------- /js/.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/.eslintignore -------------------------------------------------------------------------------- /js/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/.eslintrc.js -------------------------------------------------------------------------------- /js/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/.prettierrc -------------------------------------------------------------------------------- /js/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/babel.config.js -------------------------------------------------------------------------------- /js/docs/introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/docs/introduction.md -------------------------------------------------------------------------------- /js/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/jest.config.js -------------------------------------------------------------------------------- /js/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/package-lock.json -------------------------------------------------------------------------------- /js/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/package.json -------------------------------------------------------------------------------- /js/src/__mocks__/axios.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/__mocks__/axios.js -------------------------------------------------------------------------------- /js/src/__mocks__/styleMock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/__mocks__/styleMock.js -------------------------------------------------------------------------------- /js/src/about/About.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/about/About.js -------------------------------------------------------------------------------- /js/src/about/__tests__/About.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/about/__tests__/About.test.js -------------------------------------------------------------------------------- /js/src/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/app.css -------------------------------------------------------------------------------- /js/src/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/app.js -------------------------------------------------------------------------------- /js/src/common/API.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/common/API.js -------------------------------------------------------------------------------- /js/src/common/FactoryResetButton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/common/FactoryResetButton.js -------------------------------------------------------------------------------- /js/src/common/RebootButton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/common/RebootButton.js -------------------------------------------------------------------------------- /js/src/common/ScrollToTopArrow.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/common/ScrollToTopArrow.css -------------------------------------------------------------------------------- /js/src/common/ScrollToTopArrow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/common/ScrollToTopArrow.js -------------------------------------------------------------------------------- /js/src/common/network/DHCP6ClientsList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/common/network/DHCP6ClientsList.js -------------------------------------------------------------------------------- /js/src/common/network/DHCPClientForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/common/network/DHCPClientForm.js -------------------------------------------------------------------------------- /js/src/common/network/DHCPClientsList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/common/network/DHCPClientsList.js -------------------------------------------------------------------------------- /js/src/common/network/DHCPServerForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/common/network/DHCPServerForm.js -------------------------------------------------------------------------------- /js/src/common/network/DHCPValidators.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/common/network/DHCPValidators.js -------------------------------------------------------------------------------- /js/src/common/network/StaticIPForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/common/network/StaticIPForm.js -------------------------------------------------------------------------------- /js/src/common/network/__tests__/DHCPClientsList.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/common/network/__tests__/DHCPClientsList.test.js -------------------------------------------------------------------------------- /js/src/common/network/__tests__/__fixtures__/DHCPClientsList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/common/network/__tests__/__fixtures__/DHCPClientsList.js -------------------------------------------------------------------------------- /js/src/common/network/__tests__/__snapshots__/DHCPClientsList.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/common/network/__tests__/__snapshots__/DHCPClientsList.test.js.snap -------------------------------------------------------------------------------- /js/src/common/network/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/common/network/utils.js -------------------------------------------------------------------------------- /js/src/common/network/validators.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/common/network/validators.js -------------------------------------------------------------------------------- /js/src/connectionTest/ConnectionTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/connectionTest/ConnectionTest.js -------------------------------------------------------------------------------- /js/src/connectionTest/ConnectionTestButton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/connectionTest/ConnectionTestButton.js -------------------------------------------------------------------------------- /js/src/connectionTest/ConnectionTestResult.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/connectionTest/ConnectionTestResult.js -------------------------------------------------------------------------------- /js/src/connectionTest/__tests__/ConnectionTest.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/connectionTest/__tests__/ConnectionTest.test.js -------------------------------------------------------------------------------- /js/src/connectionTest/__tests__/__fixtures__/testResults.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/connectionTest/__tests__/__fixtures__/testResults.js -------------------------------------------------------------------------------- /js/src/connectionTest/__tests__/__snapshots__/ConnectionTest.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/connectionTest/__tests__/__snapshots__/ConnectionTest.test.js.snap -------------------------------------------------------------------------------- /js/src/connectionTest/hooks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/connectionTest/hooks.js -------------------------------------------------------------------------------- /js/src/dns/DNS.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/dns/DNS.js -------------------------------------------------------------------------------- /js/src/dns/DNSForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/dns/DNSForm.js -------------------------------------------------------------------------------- /js/src/dns/DNSSECDisableModal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/dns/DNSSECDisableModal.js -------------------------------------------------------------------------------- /js/src/dns/Forwarders/Forwarder/ForwarderForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/dns/Forwarders/Forwarder/ForwarderForm.js -------------------------------------------------------------------------------- /js/src/dns/Forwarders/Forwarder/ForwarderModal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/dns/Forwarders/Forwarder/ForwarderModal.js -------------------------------------------------------------------------------- /js/src/dns/Forwarders/Forwarder/IPAddressesForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/dns/Forwarders/Forwarder/IPAddressesForm.js -------------------------------------------------------------------------------- /js/src/dns/Forwarders/Forwarder/hooks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/dns/Forwarders/Forwarder/hooks.js -------------------------------------------------------------------------------- /js/src/dns/Forwarders/Forwarder/validator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/dns/Forwarders/Forwarder/validator.js -------------------------------------------------------------------------------- /js/src/dns/Forwarders/Forwarders.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/dns/Forwarders/Forwarders.js -------------------------------------------------------------------------------- /js/src/dns/Forwarders/ForwardersTable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/dns/Forwarders/ForwardersTable.js -------------------------------------------------------------------------------- /js/src/dns/Forwarders/hooks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/dns/Forwarders/hooks.js -------------------------------------------------------------------------------- /js/src/dns/Forwarders/propTypes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/dns/Forwarders/propTypes.js -------------------------------------------------------------------------------- /js/src/dns/__tests__/DNS.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/dns/__tests__/DNS.test.js -------------------------------------------------------------------------------- /js/src/dns/__tests__/ForwarderForm.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/dns/__tests__/ForwarderForm.test.js -------------------------------------------------------------------------------- /js/src/dns/__tests__/Forwarders.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/dns/__tests__/Forwarders.test.js -------------------------------------------------------------------------------- /js/src/dns/__tests__/__fixtures__/dns.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/dns/__tests__/__fixtures__/dns.js -------------------------------------------------------------------------------- /js/src/dns/__tests__/__fixtures__/forwarders.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/dns/__tests__/__fixtures__/forwarders.js -------------------------------------------------------------------------------- /js/src/dns/__tests__/__snapshots__/DNS.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/dns/__tests__/__snapshots__/DNS.test.js.snap -------------------------------------------------------------------------------- /js/src/dns/__tests__/__snapshots__/ForwarderForm.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/dns/__tests__/__snapshots__/ForwarderForm.test.js.snap -------------------------------------------------------------------------------- /js/src/dns/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/dns/constants.js -------------------------------------------------------------------------------- /js/src/docsUtils/setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/docsUtils/setup.js -------------------------------------------------------------------------------- /js/src/guestNetwork/GuestNetwork.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/guestNetwork/GuestNetwork.js -------------------------------------------------------------------------------- /js/src/guestNetwork/GuestNetworkDHCPClientsList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/guestNetwork/GuestNetworkDHCPClientsList.js -------------------------------------------------------------------------------- /js/src/guestNetwork/GuestNetworkForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/guestNetwork/GuestNetworkForm.js -------------------------------------------------------------------------------- /js/src/guestNetwork/GuestNetworkNotification.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/guestNetwork/GuestNetworkNotification.js -------------------------------------------------------------------------------- /js/src/guestNetwork/__tests__/GuestNetwork.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/guestNetwork/__tests__/GuestNetwork.test.js -------------------------------------------------------------------------------- /js/src/guestNetwork/__tests__/__fixtures__/guestNetwork.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/guestNetwork/__tests__/__fixtures__/guestNetwork.js -------------------------------------------------------------------------------- /js/src/guestNetwork/__tests__/__snapshots__/GuestNetwork.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/guestNetwork/__tests__/__snapshots__/GuestNetwork.test.js.snap -------------------------------------------------------------------------------- /js/src/guide/Guide.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/guide/Guide.css -------------------------------------------------------------------------------- /js/src/guide/Guide.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/guide/Guide.js -------------------------------------------------------------------------------- /js/src/guide/GuideControls/GuideControls.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/guide/GuideControls/GuideControls.css -------------------------------------------------------------------------------- /js/src/guide/GuideControls/GuideControls.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/guide/GuideControls/GuideControls.js -------------------------------------------------------------------------------- /js/src/guide/GuideControls/NextStepButton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/guide/GuideControls/NextStepButton.js -------------------------------------------------------------------------------- /js/src/guide/GuideControls/SkipGuideButton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/guide/GuideControls/SkipGuideButton.js -------------------------------------------------------------------------------- /js/src/guide/GuideHelper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/guide/GuideHelper.js -------------------------------------------------------------------------------- /js/src/guide/GuideNavigation/GuideNavigation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/guide/GuideNavigation/GuideNavigation.js -------------------------------------------------------------------------------- /js/src/guide/GuideNavigation/GuideNavigationItem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/guide/GuideNavigation/GuideNavigationItem.js -------------------------------------------------------------------------------- /js/src/guide/GuidePage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/guide/GuidePage.js -------------------------------------------------------------------------------- /js/src/guide/GuidePages/GuideFinish.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/guide/GuidePages/GuideFinish.js -------------------------------------------------------------------------------- /js/src/guide/GuidePages/WorkflowSelect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/guide/GuidePages/WorkflowSelect.js -------------------------------------------------------------------------------- /js/src/guide/GuideRouter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/guide/GuideRouter.js -------------------------------------------------------------------------------- /js/src/guide/__tests__/Guide.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/guide/__tests__/Guide.test.js -------------------------------------------------------------------------------- /js/src/guide/__tests__/GuideFinish.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/guide/__tests__/GuideFinish.test.js -------------------------------------------------------------------------------- /js/src/guide/__tests__/GuideHelper.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/guide/__tests__/GuideHelper.test.js -------------------------------------------------------------------------------- /js/src/guide/__tests__/GuideNavigation.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/guide/__tests__/GuideNavigation.test.js -------------------------------------------------------------------------------- /js/src/guide/__tests__/WorkflowSelect.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/guide/__tests__/WorkflowSelect.test.js -------------------------------------------------------------------------------- /js/src/guide/__tests__/__fixtures__/guide.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/guide/__tests__/__fixtures__/guide.js -------------------------------------------------------------------------------- /js/src/guide/__tests__/__fixtures__/workflowSelect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/guide/__tests__/__fixtures__/workflowSelect.js -------------------------------------------------------------------------------- /js/src/guide/__tests__/__snapshots__/Guide.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/guide/__tests__/__snapshots__/Guide.test.js.snap -------------------------------------------------------------------------------- /js/src/guide/__tests__/__snapshots__/GuideFinish.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/guide/__tests__/__snapshots__/GuideFinish.test.js.snap -------------------------------------------------------------------------------- /js/src/guide/__tests__/__snapshots__/GuideHelper.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/guide/__tests__/__snapshots__/GuideHelper.test.js.snap -------------------------------------------------------------------------------- /js/src/guide/__tests__/__snapshots__/GuideNavigation.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/guide/__tests__/__snapshots__/GuideNavigation.test.js.snap -------------------------------------------------------------------------------- /js/src/guide/__tests__/__snapshots__/WorkflowSelect.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/guide/__tests__/__snapshots__/WorkflowSelect.test.js.snap -------------------------------------------------------------------------------- /js/src/guide/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/guide/constants.js -------------------------------------------------------------------------------- /js/src/guide/hooks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/guide/hooks.js -------------------------------------------------------------------------------- /js/src/guide/steps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/guide/steps.js -------------------------------------------------------------------------------- /js/src/hostname/Hostname.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/hostname/Hostname.js -------------------------------------------------------------------------------- /js/src/hostname/HostnameForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/hostname/HostnameForm.js -------------------------------------------------------------------------------- /js/src/hostname/__tests__/Hostname.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/hostname/__tests__/Hostname.test.js -------------------------------------------------------------------------------- /js/src/hostname/__tests__/__snapshots__/Hostname.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/hostname/__tests__/__snapshots__/Hostname.test.js.snap -------------------------------------------------------------------------------- /js/src/interfaces/Interface.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/interfaces/Interface.js -------------------------------------------------------------------------------- /js/src/interfaces/Interfaces.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/interfaces/Interfaces.css -------------------------------------------------------------------------------- /js/src/interfaces/Interfaces.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/interfaces/Interfaces.js -------------------------------------------------------------------------------- /js/src/interfaces/InterfacesForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/interfaces/InterfacesForm.js -------------------------------------------------------------------------------- /js/src/interfaces/Network.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/interfaces/Network.js -------------------------------------------------------------------------------- /js/src/interfaces/SelectedInterface.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/interfaces/SelectedInterface.js -------------------------------------------------------------------------------- /js/src/interfaces/__tests__/Interfaces.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/interfaces/__tests__/Interfaces.test.js -------------------------------------------------------------------------------- /js/src/interfaces/__tests__/InterfacesForm.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/interfaces/__tests__/InterfacesForm.test.js -------------------------------------------------------------------------------- /js/src/interfaces/__tests__/__fixtures__/interfaces.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/interfaces/__tests__/__fixtures__/interfaces.js -------------------------------------------------------------------------------- /js/src/interfaces/__tests__/__snapshots__/Interfaces.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/interfaces/__tests__/__snapshots__/Interfaces.test.js.snap -------------------------------------------------------------------------------- /js/src/interfaces/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/interfaces/constants.js -------------------------------------------------------------------------------- /js/src/lan/LAN.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/lan/LAN.js -------------------------------------------------------------------------------- /js/src/lan/LANForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/lan/LANForm.js -------------------------------------------------------------------------------- /js/src/lan/LANManagedForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/lan/LANManagedForm.js -------------------------------------------------------------------------------- /js/src/lan/LANUnmanagedForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/lan/LANUnmanagedForm.js -------------------------------------------------------------------------------- /js/src/lan/LAN_DHCP_ClientsList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/lan/LAN_DHCP_ClientsList.js -------------------------------------------------------------------------------- /js/src/lan/__tests__/LAN.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/lan/__tests__/LAN.test.js -------------------------------------------------------------------------------- /js/src/lan/__tests__/__fixtures__/lanSettings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/lan/__tests__/__fixtures__/lanSettings.js -------------------------------------------------------------------------------- /js/src/lan/__tests__/__snapshots__/LAN.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/lan/__tests__/__snapshots__/LAN.test.js.snap -------------------------------------------------------------------------------- /js/src/main/Main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/main/Main.js -------------------------------------------------------------------------------- /js/src/main/TopBar/LogoutButton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/main/TopBar/LogoutButton.js -------------------------------------------------------------------------------- /js/src/main/TopBar/NotificationsDropdown/NotificationsDropdown.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/main/TopBar/NotificationsDropdown/NotificationsDropdown.css -------------------------------------------------------------------------------- /js/src/main/TopBar/NotificationsDropdown/NotificationsDropdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/main/TopBar/NotificationsDropdown/NotificationsDropdown.js -------------------------------------------------------------------------------- /js/src/main/TopBar/NotificationsDropdown/NotificationsDropdownButton.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/main/TopBar/NotificationsDropdown/NotificationsDropdownButton.css -------------------------------------------------------------------------------- /js/src/main/TopBar/NotificationsDropdown/NotificationsDropdownButton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/main/TopBar/NotificationsDropdown/NotificationsDropdownButton.js -------------------------------------------------------------------------------- /js/src/main/TopBar/NotificationsDropdown/NotificationsDropdownItem.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/main/TopBar/NotificationsDropdown/NotificationsDropdownItem.css -------------------------------------------------------------------------------- /js/src/main/TopBar/NotificationsDropdown/NotificationsDropdownItem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/main/TopBar/NotificationsDropdown/NotificationsDropdownItem.js -------------------------------------------------------------------------------- /js/src/main/TopBar/NotificationsDropdown/NotificationsDropdownMenu.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/main/TopBar/NotificationsDropdown/NotificationsDropdownMenu.css -------------------------------------------------------------------------------- /js/src/main/TopBar/NotificationsDropdown/NotificationsDropdownMenu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/main/TopBar/NotificationsDropdown/NotificationsDropdownMenu.js -------------------------------------------------------------------------------- /js/src/main/TopBar/TopBar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/main/TopBar/TopBar.css -------------------------------------------------------------------------------- /js/src/main/TopBar/TopBar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/main/TopBar/TopBar.js -------------------------------------------------------------------------------- /js/src/main/TopBar/languagesDropdown/LanguagesDropdown.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/main/TopBar/languagesDropdown/LanguagesDropdown.css -------------------------------------------------------------------------------- /js/src/main/TopBar/languagesDropdown/LanguagesDropdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/main/TopBar/languagesDropdown/LanguagesDropdown.js -------------------------------------------------------------------------------- /js/src/main/TopBar/languagesDropdown/hooks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/main/TopBar/languagesDropdown/hooks.js -------------------------------------------------------------------------------- /js/src/main/TopBar/rebootDropdown/RebootDropdown.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/main/TopBar/rebootDropdown/RebootDropdown.css -------------------------------------------------------------------------------- /js/src/main/TopBar/rebootDropdown/RebootDropdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/main/TopBar/rebootDropdown/RebootDropdown.js -------------------------------------------------------------------------------- /js/src/main/TopBar/rebootDropdown/__tests__/RebootDropdown.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/main/TopBar/rebootDropdown/__tests__/RebootDropdown.test.js -------------------------------------------------------------------------------- /js/src/main/TopBar/rebootDropdown/__tests__/__snapshots__/RebootDropdown.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/main/TopBar/rebootDropdown/__tests__/__snapshots__/RebootDropdown.test.js.snap -------------------------------------------------------------------------------- /js/src/main/TopBar/updatesDropdown/UpdatesDropdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/main/TopBar/updatesDropdown/UpdatesDropdown.js -------------------------------------------------------------------------------- /js/src/main/TopBar/updatesDropdown/__tests__/UpdatesDropdown.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/main/TopBar/updatesDropdown/__tests__/UpdatesDropdown.test.js -------------------------------------------------------------------------------- /js/src/main/TopBar/updatesDropdown/__tests__/__snapshots__/UpdatesDropdown.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/main/TopBar/updatesDropdown/__tests__/__snapshots__/UpdatesDropdown.test.js.snap -------------------------------------------------------------------------------- /js/src/main/__tests__/Main.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/main/__tests__/Main.test.js -------------------------------------------------------------------------------- /js/src/main/__tests__/__fixtures__/pages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/main/__tests__/__fixtures__/pages.js -------------------------------------------------------------------------------- /js/src/main/__tests__/__fixtures__/plugins.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/main/__tests__/__fixtures__/plugins.js -------------------------------------------------------------------------------- /js/src/main/__tests__/__snapshots__/Main.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/main/__tests__/__snapshots__/Main.test.js.snap -------------------------------------------------------------------------------- /js/src/main/__tests__/pages.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/main/__tests__/pages.test.js -------------------------------------------------------------------------------- /js/src/main/__tests__/utils.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/main/__tests__/utils.test.js -------------------------------------------------------------------------------- /js/src/main/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/main/constants.js -------------------------------------------------------------------------------- /js/src/main/customizationContext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/main/customizationContext.js -------------------------------------------------------------------------------- /js/src/main/pages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/main/pages.js -------------------------------------------------------------------------------- /js/src/main/routing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/main/routing.js -------------------------------------------------------------------------------- /js/src/main/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/main/utils.js -------------------------------------------------------------------------------- /js/src/maintenance/FactoryReset.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/maintenance/FactoryReset.js -------------------------------------------------------------------------------- /js/src/maintenance/Maintenance.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/maintenance/Maintenance.js -------------------------------------------------------------------------------- /js/src/maintenance/Reboot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/maintenance/Reboot.js -------------------------------------------------------------------------------- /js/src/maintenance/Syslog/Syslog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/maintenance/Syslog/Syslog.js -------------------------------------------------------------------------------- /js/src/maintenance/Syslog/SyslogForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/maintenance/Syslog/SyslogForm.js -------------------------------------------------------------------------------- /js/src/maintenance/Syslog/__tests__/Syslog.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/maintenance/Syslog/__tests__/Syslog.test.js -------------------------------------------------------------------------------- /js/src/maintenance/Syslog/__tests__/__fixtures__/syslog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/maintenance/Syslog/__tests__/__fixtures__/syslog.js -------------------------------------------------------------------------------- /js/src/maintenance/Syslog/__tests__/__snapshots__/Syslog.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/maintenance/Syslog/__tests__/__snapshots__/Syslog.test.js.snap -------------------------------------------------------------------------------- /js/src/navigation/FaIcon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/navigation/FaIcon.js -------------------------------------------------------------------------------- /js/src/navigation/Navigation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/navigation/Navigation.js -------------------------------------------------------------------------------- /js/src/navigation/NavigationItem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/navigation/NavigationItem.js -------------------------------------------------------------------------------- /js/src/navigation/NavigationMainItem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/navigation/NavigationMainItem.js -------------------------------------------------------------------------------- /js/src/navigation/NavigationToggle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/navigation/NavigationToggle.js -------------------------------------------------------------------------------- /js/src/navigation/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/navigation/utils.js -------------------------------------------------------------------------------- /js/src/notifications/NotificationIcon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/notifications/NotificationIcon.js -------------------------------------------------------------------------------- /js/src/notifications/Notifications/DismissAllButton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/notifications/Notifications/DismissAllButton.js -------------------------------------------------------------------------------- /js/src/notifications/Notifications/Notifications.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/notifications/Notifications/Notifications.css -------------------------------------------------------------------------------- /js/src/notifications/Notifications/Notifications.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/notifications/Notifications/Notifications.js -------------------------------------------------------------------------------- /js/src/notifications/Notifications/NotificationsList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/notifications/Notifications/NotificationsList.js -------------------------------------------------------------------------------- /js/src/notifications/Notifications/TruncatedText.css: -------------------------------------------------------------------------------- 1 | .toggle-collapse { 2 | padding: 0; 3 | } 4 | -------------------------------------------------------------------------------- /js/src/notifications/Notifications/TruncatedText.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/notifications/Notifications/TruncatedText.js -------------------------------------------------------------------------------- /js/src/notifications/__tests__/NotificationsCenter.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/notifications/__tests__/NotificationsCenter.test.js -------------------------------------------------------------------------------- /js/src/notifications/__tests__/NotificationsDropdown.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/notifications/__tests__/NotificationsDropdown.test.js -------------------------------------------------------------------------------- /js/src/notifications/__tests__/TruncatedText.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/notifications/__tests__/TruncatedText.test.js -------------------------------------------------------------------------------- /js/src/notifications/__tests__/__fixtures__/notifications.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/notifications/__tests__/__fixtures__/notifications.js -------------------------------------------------------------------------------- /js/src/notifications/__tests__/__snapshots__/NotificationsCenter.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/notifications/__tests__/__snapshots__/NotificationsCenter.test.js.snap -------------------------------------------------------------------------------- /js/src/notifications/__tests__/__snapshots__/NotificationsDropdown.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/notifications/__tests__/__snapshots__/NotificationsDropdown.test.js.snap -------------------------------------------------------------------------------- /js/src/notifications/__tests__/__snapshots__/TruncatedText.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/notifications/__tests__/__snapshots__/TruncatedText.test.js.snap -------------------------------------------------------------------------------- /js/src/notifications/__tests__/hooks.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/notifications/__tests__/hooks.test.js -------------------------------------------------------------------------------- /js/src/notifications/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/notifications/constants.js -------------------------------------------------------------------------------- /js/src/notifications/hooks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/notifications/hooks.js -------------------------------------------------------------------------------- /js/src/notifications/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/notifications/utils.js -------------------------------------------------------------------------------- /js/src/notificationsSettings/CommonForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/notificationsSettings/CommonForm.js -------------------------------------------------------------------------------- /js/src/notificationsSettings/NotificationsEmailSettingsForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/notificationsSettings/NotificationsEmailSettingsForm.js -------------------------------------------------------------------------------- /js/src/notificationsSettings/NotificationsSettings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/notificationsSettings/NotificationsSettings.js -------------------------------------------------------------------------------- /js/src/notificationsSettings/SMTPCustomForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/notificationsSettings/SMTPCustomForm.js -------------------------------------------------------------------------------- /js/src/notificationsSettings/SMTPTurrisForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/notificationsSettings/SMTPTurrisForm.js -------------------------------------------------------------------------------- /js/src/notificationsSettings/TestNotification.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/notificationsSettings/TestNotification.js -------------------------------------------------------------------------------- /js/src/notificationsSettings/__tests__/NotificationSettings.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/notificationsSettings/__tests__/NotificationSettings.test.js -------------------------------------------------------------------------------- /js/src/notificationsSettings/__tests__/__fixtures__/notificationsSettings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/notificationsSettings/__tests__/__fixtures__/notificationsSettings.js -------------------------------------------------------------------------------- /js/src/notificationsSettings/__tests__/__snapshots__/NotificationSettings.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/notificationsSettings/__tests__/__snapshots__/NotificationSettings.test.js.snap -------------------------------------------------------------------------------- /js/src/notificationsSettings/helpTexts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/notificationsSettings/helpTexts.js -------------------------------------------------------------------------------- /js/src/notificationsSettings/validator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/notificationsSettings/validator.js -------------------------------------------------------------------------------- /js/src/overview/Cards/AutomaticUpdatesCard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/overview/Cards/AutomaticUpdatesCard.js -------------------------------------------------------------------------------- /js/src/overview/Cards/DataCollectionCard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/overview/Cards/DataCollectionCard.js -------------------------------------------------------------------------------- /js/src/overview/Cards/DynamicFirewallCard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/overview/Cards/DynamicFirewallCard.js -------------------------------------------------------------------------------- /js/src/overview/Cards/NetmetrCard.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/overview/Cards/NetmetrCard.css -------------------------------------------------------------------------------- /js/src/overview/Cards/NetmetrCard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/overview/Cards/NetmetrCard.js -------------------------------------------------------------------------------- /js/src/overview/Cards/OpenVPNClientsCard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/overview/Cards/OpenVPNClientsCard.js -------------------------------------------------------------------------------- /js/src/overview/Cards/__tests__/Cards.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/overview/Cards/__tests__/Cards.test.js -------------------------------------------------------------------------------- /js/src/overview/Cards/__tests__/__snapshots__/Cards.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/overview/Cards/__tests__/__snapshots__/Cards.test.js.snap -------------------------------------------------------------------------------- /js/src/overview/Overview.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/overview/Overview.css -------------------------------------------------------------------------------- /js/src/overview/Overview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/overview/Overview.js -------------------------------------------------------------------------------- /js/src/overview/__tests__/Overview.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/overview/__tests__/Overview.test.js -------------------------------------------------------------------------------- /js/src/overview/__tests__/__fixtures__/overview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/overview/__tests__/__fixtures__/overview.js -------------------------------------------------------------------------------- /js/src/overview/__tests__/__snapshots__/Overview.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/overview/__tests__/__snapshots__/Overview.test.js.snap -------------------------------------------------------------------------------- /js/src/overview/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/overview/utils.js -------------------------------------------------------------------------------- /js/src/packageManagement/languages/Languages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/packageManagement/languages/Languages.js -------------------------------------------------------------------------------- /js/src/packageManagement/languages/LanguagesForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/packageManagement/languages/LanguagesForm.js -------------------------------------------------------------------------------- /js/src/packageManagement/languages/__tests__/Languages.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/packageManagement/languages/__tests__/Languages.test.js -------------------------------------------------------------------------------- /js/src/packageManagement/languages/__tests__/__fixtures__/languages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/packageManagement/languages/__tests__/__fixtures__/languages.js -------------------------------------------------------------------------------- /js/src/packageManagement/languages/__tests__/__snapshots__/Languages.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/packageManagement/languages/__tests__/__snapshots__/Languages.test.js.snap -------------------------------------------------------------------------------- /js/src/packageManagement/packages/Labels/Label.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/packageManagement/packages/Labels/Label.css -------------------------------------------------------------------------------- /js/src/packageManagement/packages/Labels/Label.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/packageManagement/packages/Labels/Label.js -------------------------------------------------------------------------------- /js/src/packageManagement/packages/Labels/Labels.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/packageManagement/packages/Labels/Labels.js -------------------------------------------------------------------------------- /js/src/packageManagement/packages/Package.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/packageManagement/packages/Package.js -------------------------------------------------------------------------------- /js/src/packageManagement/packages/PackageCheckBox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/packageManagement/packages/PackageCheckBox.js -------------------------------------------------------------------------------- /js/src/packageManagement/packages/Packages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/packageManagement/packages/Packages.js -------------------------------------------------------------------------------- /js/src/packageManagement/packages/PackagesForm.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/packageManagement/packages/PackagesForm.css -------------------------------------------------------------------------------- /js/src/packageManagement/packages/PackagesForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/packageManagement/packages/PackagesForm.js -------------------------------------------------------------------------------- /js/src/packageManagement/packages/UserOptions/UserOption.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/packageManagement/packages/UserOptions/UserOption.js -------------------------------------------------------------------------------- /js/src/packageManagement/packages/UserOptions/UserOptions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/packageManagement/packages/UserOptions/UserOptions.js -------------------------------------------------------------------------------- /js/src/packageManagement/packages/__tests__/Packages.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/packageManagement/packages/__tests__/Packages.test.js -------------------------------------------------------------------------------- /js/src/packageManagement/packages/__tests__/__fixtures__/packages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/packageManagement/packages/__tests__/__fixtures__/packages.js -------------------------------------------------------------------------------- /js/src/packageManagement/packages/__tests__/__snapshots__/Packages.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/packageManagement/packages/__tests__/__snapshots__/Packages.test.js.snap -------------------------------------------------------------------------------- /js/src/packageManagement/updateSettings/LicenceModal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/packageManagement/updateSettings/LicenceModal.js -------------------------------------------------------------------------------- /js/src/packageManagement/updateSettings/UpdateSettings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/packageManagement/updateSettings/UpdateSettings.js -------------------------------------------------------------------------------- /js/src/packageManagement/updateSettings/__tests__/UpdateSettings.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/packageManagement/updateSettings/__tests__/UpdateSettings.test.js -------------------------------------------------------------------------------- /js/src/packageManagement/updateSettings/__tests__/__fixtures__/updates.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/packageManagement/updateSettings/__tests__/__fixtures__/updates.js -------------------------------------------------------------------------------- /js/src/packageManagement/updateSettings/__tests__/__snapshots__/UpdateSettings.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/packageManagement/updateSettings/__tests__/__snapshots__/UpdateSettings.test.js.snap -------------------------------------------------------------------------------- /js/src/packageManagement/updateSettings/forms/RestartAfterUpdateForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/packageManagement/updateSettings/forms/RestartAfterUpdateForm.js -------------------------------------------------------------------------------- /js/src/packageManagement/updateSettings/forms/UpdateApprovalForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/packageManagement/updateSettings/forms/UpdateApprovalForm.js -------------------------------------------------------------------------------- /js/src/packageManagement/updateSettings/forms/UpdatesForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/packageManagement/updateSettings/forms/UpdatesForm.js -------------------------------------------------------------------------------- /js/src/packageManagement/updates/UpdateApproval.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/packageManagement/updates/UpdateApproval.js -------------------------------------------------------------------------------- /js/src/packageManagement/updates/UpdateChecker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/packageManagement/updates/UpdateChecker.js -------------------------------------------------------------------------------- /js/src/packageManagement/updates/UpdateManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/packageManagement/updates/UpdateManager.js -------------------------------------------------------------------------------- /js/src/packageManagement/updates/Updates.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/packageManagement/updates/Updates.js -------------------------------------------------------------------------------- /js/src/packageManagement/updates/__tests__/UpdateApproval.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/packageManagement/updates/__tests__/UpdateApproval.test.js -------------------------------------------------------------------------------- /js/src/packageManagement/updates/__tests__/UpdateChecker.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/packageManagement/updates/__tests__/UpdateChecker.test.js -------------------------------------------------------------------------------- /js/src/packageManagement/updates/__tests__/Updates.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/packageManagement/updates/__tests__/Updates.test.js -------------------------------------------------------------------------------- /js/src/packageManagement/updates/__tests__/__fixtures__/updates.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/packageManagement/updates/__tests__/__fixtures__/updates.js -------------------------------------------------------------------------------- /js/src/packageManagement/updates/__tests__/__snapshots__/UpdateApproval.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/packageManagement/updates/__tests__/__snapshots__/UpdateApproval.test.js.snap -------------------------------------------------------------------------------- /js/src/packageManagement/updates/__tests__/__snapshots__/UpdateChecker.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/packageManagement/updates/__tests__/__snapshots__/UpdateChecker.test.js.snap -------------------------------------------------------------------------------- /js/src/packageManagement/updates/__tests__/__snapshots__/Updates.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/packageManagement/updates/__tests__/__snapshots__/Updates.test.js.snap -------------------------------------------------------------------------------- /js/src/packageManagement/updates/hooks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/packageManagement/updates/hooks.js -------------------------------------------------------------------------------- /js/src/packageManagement/utils/DisableIfUpdaterIsDisabled.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/packageManagement/utils/DisableIfUpdaterIsDisabled.js -------------------------------------------------------------------------------- /js/src/packageManagement/utils/DisabledUpdaterAlert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/packageManagement/utils/DisabledUpdaterAlert.js -------------------------------------------------------------------------------- /js/src/password/ForisPasswordForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/password/ForisPasswordForm.js -------------------------------------------------------------------------------- /js/src/password/Password.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/password/Password.js -------------------------------------------------------------------------------- /js/src/password/RootPasswordForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/password/RootPasswordForm.js -------------------------------------------------------------------------------- /js/src/password/__tests__/Password.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/password/__tests__/Password.test.js -------------------------------------------------------------------------------- /js/src/password/__tests__/__snapshots__/Password.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/password/__tests__/__snapshots__/Password.test.js.snap -------------------------------------------------------------------------------- /js/src/regionAndTime/RegionAndTime.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/regionAndTime/RegionAndTime.js -------------------------------------------------------------------------------- /js/src/regionAndTime/RegionForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/regionAndTime/RegionForm.js -------------------------------------------------------------------------------- /js/src/regionAndTime/TimeForm.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/regionAndTime/TimeForm.css -------------------------------------------------------------------------------- /js/src/regionAndTime/TimeForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/regionAndTime/TimeForm.js -------------------------------------------------------------------------------- /js/src/regionAndTime/__tests__/RegionAndTime.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/regionAndTime/__tests__/RegionAndTime.test.js -------------------------------------------------------------------------------- /js/src/regionAndTime/__tests__/__fixtures__/regionAndTime.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/regionAndTime/__tests__/__fixtures__/regionAndTime.js -------------------------------------------------------------------------------- /js/src/regionAndTime/__tests__/__snapshots__/RegionAndTime.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/regionAndTime/__tests__/__snapshots__/RegionAndTime.test.js.snap -------------------------------------------------------------------------------- /js/src/regionAndTime/hooks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/regionAndTime/hooks.js -------------------------------------------------------------------------------- /js/src/routerStateHandler/NetworkRestartHandler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/routerStateHandler/NetworkRestartHandler.js -------------------------------------------------------------------------------- /js/src/routerStateHandler/RebootHandler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/routerStateHandler/RebootHandler.js -------------------------------------------------------------------------------- /js/src/routerStateHandler/RouterStateHandler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/routerStateHandler/RouterStateHandler.js -------------------------------------------------------------------------------- /js/src/routerStateHandler/hooks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/routerStateHandler/hooks.js -------------------------------------------------------------------------------- /js/src/routerStateHandler/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/routerStateHandler/utils.js -------------------------------------------------------------------------------- /js/src/styles/content.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/styles/content.css -------------------------------------------------------------------------------- /js/src/styles/dropdown.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/styles/dropdown.css -------------------------------------------------------------------------------- /js/src/styles/login.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/styles/login.css -------------------------------------------------------------------------------- /js/src/styles/navigation.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/styles/navigation.css -------------------------------------------------------------------------------- /js/src/styles/sidebar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/styles/sidebar.css -------------------------------------------------------------------------------- /js/src/utils/ErrorBoundary.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/utils/ErrorBoundary.css -------------------------------------------------------------------------------- /js/src/utils/ErrorBoundary.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/utils/ErrorBoundary.js -------------------------------------------------------------------------------- /js/src/utils/__tests__/ErrorBoundary.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/utils/__tests__/ErrorBoundary.test.js -------------------------------------------------------------------------------- /js/src/utils/__tests__/__snapshots__/ErrorBoundary.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/utils/__tests__/__snapshots__/ErrorBoundary.test.js.snap -------------------------------------------------------------------------------- /js/src/utils/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/utils/constants.js -------------------------------------------------------------------------------- /js/src/utils/timezones.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/utils/timezones.js -------------------------------------------------------------------------------- /js/src/wan/MACForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/wan/MACForm.js -------------------------------------------------------------------------------- /js/src/wan/WAN.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/wan/WAN.js -------------------------------------------------------------------------------- /js/src/wan/WAN6Form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/wan/WAN6Form.js -------------------------------------------------------------------------------- /js/src/wan/WANForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/wan/WANForm.js -------------------------------------------------------------------------------- /js/src/wan/__tests__/WAN.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/wan/__tests__/WAN.test.js -------------------------------------------------------------------------------- /js/src/wan/__tests__/__fixtures__/wanSettings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/wan/__tests__/__fixtures__/wanSettings.js -------------------------------------------------------------------------------- /js/src/wan/__tests__/__snapshots__/WAN.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/wan/__tests__/__snapshots__/WAN.test.js.snap -------------------------------------------------------------------------------- /js/src/wifi/WiFi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/wifi/WiFi.js -------------------------------------------------------------------------------- /js/src/wifi/__tests__/WiFi.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/wifi/__tests__/WiFi.test.js -------------------------------------------------------------------------------- /js/src/wifi/__tests__/__fixtures__/WiFiFixtures.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/wifi/__tests__/__fixtures__/WiFiFixtures.js -------------------------------------------------------------------------------- /js/src/wifi/__tests__/__snapshots__/WiFi.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/src/wifi/__tests__/__snapshots__/WiFi.test.js.snap -------------------------------------------------------------------------------- /js/styleguide.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/styleguide.config.js -------------------------------------------------------------------------------- /js/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/js/webpack.config.js -------------------------------------------------------------------------------- /pycodestyle: -------------------------------------------------------------------------------- 1 | [pycodestyle] 2 | max-line-length=120 3 | -------------------------------------------------------------------------------- /pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/pylintrc -------------------------------------------------------------------------------- /reforis/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/reforis/__init__.py -------------------------------------------------------------------------------- /reforis/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/reforis/__main__.py -------------------------------------------------------------------------------- /reforis/api/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/reforis/api/__init__.py -------------------------------------------------------------------------------- /reforis/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/reforis/auth.py -------------------------------------------------------------------------------- /reforis/backend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/reforis/backend.py -------------------------------------------------------------------------------- /reforis/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/reforis/cli.py -------------------------------------------------------------------------------- /reforis/config/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/reforis/config/__init__.py -------------------------------------------------------------------------------- /reforis/config/dev.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/reforis/config/dev.py -------------------------------------------------------------------------------- /reforis/config/prod.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/reforis/config/prod.py -------------------------------------------------------------------------------- /reforis/config/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/reforis/config/test.py -------------------------------------------------------------------------------- /reforis/foris_controller_api/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/reforis/foris_controller_api/__init__.py -------------------------------------------------------------------------------- /reforis/foris_controller_api/modules/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/reforis/foris_controller_api/modules/__init__.py -------------------------------------------------------------------------------- /reforis/foris_controller_api/modules/about.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/reforis/foris_controller_api/modules/about.py -------------------------------------------------------------------------------- /reforis/foris_controller_api/modules/dns.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/reforis/foris_controller_api/modules/dns.py -------------------------------------------------------------------------------- /reforis/foris_controller_api/modules/guest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/reforis/foris_controller_api/modules/guest.py -------------------------------------------------------------------------------- /reforis/foris_controller_api/modules/haas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/reforis/foris_controller_api/modules/haas.py -------------------------------------------------------------------------------- /reforis/foris_controller_api/modules/lan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/reforis/foris_controller_api/modules/lan.py -------------------------------------------------------------------------------- /reforis/foris_controller_api/modules/maintain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/reforis/foris_controller_api/modules/maintain.py -------------------------------------------------------------------------------- /reforis/foris_controller_api/modules/networks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/reforis/foris_controller_api/modules/networks.py -------------------------------------------------------------------------------- /reforis/foris_controller_api/modules/password.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/reforis/foris_controller_api/modules/password.py -------------------------------------------------------------------------------- /reforis/foris_controller_api/modules/router_notifications.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/reforis/foris_controller_api/modules/router_notifications.py -------------------------------------------------------------------------------- /reforis/foris_controller_api/modules/system.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/reforis/foris_controller_api/modules/system.py -------------------------------------------------------------------------------- /reforis/foris_controller_api/modules/time.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/reforis/foris_controller_api/modules/time.py -------------------------------------------------------------------------------- /reforis/foris_controller_api/modules/updater.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/reforis/foris_controller_api/modules/updater.py -------------------------------------------------------------------------------- /reforis/foris_controller_api/modules/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/reforis/foris_controller_api/modules/utils.py -------------------------------------------------------------------------------- /reforis/foris_controller_api/modules/wan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/reforis/foris_controller_api/modules/wan.py -------------------------------------------------------------------------------- /reforis/foris_controller_api/modules/web.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/reforis/foris_controller_api/modules/web.py -------------------------------------------------------------------------------- /reforis/foris_controller_api/modules/wifi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/reforis/foris_controller_api/modules/wifi.py -------------------------------------------------------------------------------- /reforis/foris_controller_api/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/reforis/foris_controller_api/utils.py -------------------------------------------------------------------------------- /reforis/guide.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/reforis/guide.py -------------------------------------------------------------------------------- /reforis/locale.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/reforis/locale.py -------------------------------------------------------------------------------- /reforis/plugins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/reforis/plugins.py -------------------------------------------------------------------------------- /reforis/sessions/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/reforis/sessions/LICENSE -------------------------------------------------------------------------------- /reforis/sessions/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/reforis/sessions/__init__.py -------------------------------------------------------------------------------- /reforis/sessions/sessions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/reforis/sessions/sessions.py -------------------------------------------------------------------------------- /reforis/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/reforis/templates/base.html -------------------------------------------------------------------------------- /reforis/templates/errors/400.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/reforis/templates/errors/400.html -------------------------------------------------------------------------------- /reforis/templates/errors/401.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/reforis/templates/errors/401.html -------------------------------------------------------------------------------- /reforis/templates/errors/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/reforis/templates/errors/404.html -------------------------------------------------------------------------------- /reforis/templates/errors/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/reforis/templates/errors/500.html -------------------------------------------------------------------------------- /reforis/templates/guide.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/reforis/templates/guide.html -------------------------------------------------------------------------------- /reforis/templates/includes/locale.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/reforis/templates/includes/locale.html -------------------------------------------------------------------------------- /reforis/templates/includes/navigation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/reforis/templates/includes/navigation.html -------------------------------------------------------------------------------- /reforis/templates/includes/plugins.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/reforis/templates/includes/plugins.html -------------------------------------------------------------------------------- /reforis/templates/includes/top-bar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/reforis/templates/includes/top-bar.html -------------------------------------------------------------------------------- /reforis/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/reforis/templates/index.html -------------------------------------------------------------------------------- /reforis/templates/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/reforis/templates/login.html -------------------------------------------------------------------------------- /reforis/test_utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/reforis/test_utils/__init__.py -------------------------------------------------------------------------------- /reforis/test_utils/fixtures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/reforis/test_utils/fixtures.py -------------------------------------------------------------------------------- /reforis/test_utils/mocked_send.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/reforis/test_utils/mocked_send.py -------------------------------------------------------------------------------- /reforis/translations/cs/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/reforis/translations/cs/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /reforis/translations/da/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/reforis/translations/da/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /reforis/translations/de/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/reforis/translations/de/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /reforis/translations/el/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/reforis/translations/el/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /reforis/translations/en/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/reforis/translations/en/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /reforis/translations/es/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/reforis/translations/es/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /reforis/translations/fi/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/reforis/translations/fi/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /reforis/translations/fo/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/reforis/translations/fo/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /reforis/translations/fr/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/reforis/translations/fr/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /reforis/translations/hr/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/reforis/translations/hr/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /reforis/translations/hu/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/reforis/translations/hu/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /reforis/translations/it/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/reforis/translations/it/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /reforis/translations/ja/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/reforis/translations/ja/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /reforis/translations/ko/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/reforis/translations/ko/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /reforis/translations/lt/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/reforis/translations/lt/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /reforis/translations/messages.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/reforis/translations/messages.pot -------------------------------------------------------------------------------- /reforis/translations/nb_NO/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/reforis/translations/nb_NO/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /reforis/translations/nl/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/reforis/translations/nl/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /reforis/translations/pl/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/reforis/translations/pl/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /reforis/translations/ro/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/reforis/translations/ro/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /reforis/translations/ru/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/reforis/translations/ru/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /reforis/translations/sk/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/reforis/translations/sk/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /reforis/translations/sv/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/reforis/translations/sv/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /reforis/translations/zh_Hant/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/reforis/translations/zh_Hant/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /reforis/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/reforis/utils.py -------------------------------------------------------------------------------- /reforis/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/reforis/views.py -------------------------------------------------------------------------------- /reforis_static/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/reforis_static/__init__.py -------------------------------------------------------------------------------- /reforis_static/reforis/imgs/QR_icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/reforis_static/reforis/imgs/QR_icon.svg -------------------------------------------------------------------------------- /reforis_static/reforis/imgs/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/reforis_static/reforis/imgs/favicon.ico -------------------------------------------------------------------------------- /reforis_static/reforis/imgs/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/reforis_static/reforis/imgs/favicon.png -------------------------------------------------------------------------------- /reforis_static/reforis/imgs/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/reforis_static/reforis/imgs/favicon.svg -------------------------------------------------------------------------------- /reforis_static/reforis/imgs/logo-turris-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/reforis_static/reforis/imgs/logo-turris-white.svg -------------------------------------------------------------------------------- /reforis_static/reforis/imgs/logo-turris.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/reforis_static/reforis/imgs/logo-turris.svg -------------------------------------------------------------------------------- /reforis_static/reforis/imgs/workflow-bridge.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/reforis_static/reforis/imgs/workflow-bridge.svg -------------------------------------------------------------------------------- /reforis_static/reforis/imgs/workflow-min.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/reforis_static/reforis/imgs/workflow-min.svg -------------------------------------------------------------------------------- /reforis_static/reforis/imgs/workflow-router.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/reforis_static/reforis/imgs/workflow-router.svg -------------------------------------------------------------------------------- /reforis_static/reforis/js/babel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/reforis_static/reforis/js/babel.js -------------------------------------------------------------------------------- /scripts/make_timezones.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/scripts/make_timezones.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/setup.py -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/foris_controller_api/test_foris_controller_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/tests/foris_controller_api/test_foris_controller_api.py -------------------------------------------------------------------------------- /tests/foris_controller_api/test_packages_and_languages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/tests/foris_controller_api/test_packages_and_languages.py -------------------------------------------------------------------------------- /tests/foris_controller_api/test_password.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/tests/foris_controller_api/test_password.py -------------------------------------------------------------------------------- /tests/foris_controller_api/test_updates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/tests/foris_controller_api/test_updates.py -------------------------------------------------------------------------------- /tests/test_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/tests/test_api.py -------------------------------------------------------------------------------- /tests/test_auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/tests/test_auth.py -------------------------------------------------------------------------------- /tests/test_timeout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CZ-NIC/reforis/HEAD/tests/test_timeout.py --------------------------------------------------------------------------------