├── .gitattributes ├── .github └── workflows │ └── manage_release.yml ├── .gitignore ├── .gitlab-ci.yml ├── LICENCE ├── README.md ├── compose_project ├── .gitignore ├── README.md ├── compose.dev.yaml ├── compose.prod.yaml ├── compose.source.yaml ├── compose.staging_prod.yaml ├── compose.yaml ├── proxy │ ├── Dockerfile │ └── _.env ├── source-me.sh ├── sso │ ├── Dockerfile │ └── template.realm.json └── template.env ├── docs ├── get_started │ ├── first_host.rst │ ├── first_policy.rst │ ├── first_pool.rst │ └── index.rst ├── index.rst ├── installation │ ├── index.rst │ └── installation.rst └── introduction │ ├── architecture.rst │ ├── concept.rst │ └── index.rst ├── documentation ├── developers_setup.md └── miscellaneous.md ├── release ├── .gitignore └── make_quickstart.sh ├── snap ├── hooks │ ├── configure │ └── default-configure └── snapcraft.yaml ├── snap_project ├── install.sh ├── output │ ├── .gitignore │ └── pack │ │ └── .gitignore └── src │ ├── commands │ └── snap.sh │ └── configuration │ ├── .gitignore │ ├── default.env │ └── main.sh ├── src ├── .gitignore ├── core │ ├── Dockerfile │ ├── commands │ │ ├── api.sh │ │ ├── beat.sh │ │ ├── docker.sh │ │ ├── flower.sh │ │ ├── worker_one.sh │ │ └── worker_two.sh │ └── python_project │ │ ├── .gitignore │ │ ├── app │ │ ├── __init__.py │ │ ├── auth │ │ │ ├── __init__.py │ │ │ ├── openid.py │ │ │ └── password.py │ │ ├── backup_tasks │ │ │ ├── manage_backup.py │ │ │ ├── pool_backup.py │ │ │ └── single_backup.py │ │ ├── borg │ │ │ ├── borg_core.py │ │ │ └── borg_misc.py │ │ ├── cloudstack │ │ │ ├── endpoint.py │ │ │ └── virtual_machine.py │ │ ├── database.py │ │ ├── environment.py │ │ ├── events.py │ │ ├── finalized.py │ │ ├── hooks │ │ │ ├── __init__.py │ │ │ ├── hook_client.py │ │ │ ├── notification_sender.py │ │ │ └── slack.py │ │ ├── initialized.py │ │ ├── kvm │ │ │ ├── __init__.py │ │ │ ├── kvm_check.py │ │ │ ├── kvm_connection.py │ │ │ ├── kvm_get_uuid.py │ │ │ ├── kvm_list_disk.py │ │ │ ├── kvm_manage_snapshot.py │ │ │ └── kvm_manage_vm.py │ │ ├── logging.py │ │ ├── patch.py │ │ ├── redis.py │ │ ├── restore.py │ │ ├── routes │ │ │ ├── auth │ │ │ │ ├── openid.py │ │ │ │ └── password.py │ │ │ ├── backup_policy.py │ │ │ ├── connectors.py │ │ │ ├── external_hooks.py │ │ │ ├── host.py │ │ │ ├── job.py │ │ │ ├── kickstart_backup.py │ │ │ ├── pool.py │ │ │ ├── storage.py │ │ │ ├── task.py │ │ │ └── virtual_machine.py │ │ ├── scheduler │ │ │ ├── __init__.py │ │ │ └── retrieve_tasks.py │ │ ├── shell.py │ │ ├── ssh.py │ │ ├── task_handler.py │ │ ├── task_helper.py │ │ └── virtual_machine_helper.py │ │ ├── flower_config.py │ │ ├── lib64 │ │ ├── pyproject.toml │ │ └── requirements.txt ├── env │ ├── get_default.sh │ ├── get_local.sh │ └── get_read_only.sh ├── package-lock.json ├── server │ ├── _nginx.conf │ ├── containers.conf │ └── localhost.conf └── ui │ ├── .dockerignore │ ├── .editorconfig │ ├── .env.production │ ├── .eslintignore │ ├── .eslintrc.js │ ├── .gitignore │ ├── Dockerfile │ ├── LICENSE │ ├── babel.config.js │ ├── config │ ├── dev.env.js │ ├── index.js │ └── prod.env.js │ ├── dev.Dockerfile │ ├── dev.entrypoint.sh │ ├── entrypoint.sh │ ├── jest.config.js │ ├── nginx.conf │ ├── package-lock.json │ ├── package.json │ ├── public │ ├── android-chrome-192x192.png │ ├── android-chrome-512x512.png │ ├── apple-touch-icon.png │ ├── favicon-16x16.png │ ├── favicon-32x32.png │ ├── favicon.ico │ ├── img │ │ ├── dimsi-group-logo.svg │ │ ├── logo-backroll.svg │ │ ├── logo2-deg-backroll-cropped.svg │ │ └── vendor │ │ │ └── leaflet │ │ │ ├── marker-icon-2x.png │ │ │ ├── marker-icon.png │ │ │ └── marker-shadow.png │ ├── index.html │ └── site.webmanifest │ ├── src │ ├── .eslintrc.js │ ├── App.vue │ ├── components │ │ ├── forms │ │ │ └── FormHeader.vue │ │ ├── icons │ │ │ ├── VaIconCleanCode.vue │ │ │ ├── VaIconColor_adelete.vue │ │ │ ├── VaIconFaster.vue │ │ │ ├── VaIconFree.vue │ │ │ ├── VaIconFresh.vue │ │ │ ├── VaIconMenu.vue │ │ │ ├── VaIconMenuCollapsed.vue │ │ │ ├── VaIconMessage.vue │ │ │ ├── VaIconNotification.vue │ │ │ ├── VaIconResponsive.vue │ │ │ ├── VaIconRich.vue │ │ │ ├── VaIconSlower.vue │ │ │ ├── VaIconVue.vue │ │ │ ├── VaIconVuestic.demo.vue │ │ │ └── VaIconVuestic.vue │ │ ├── lists │ │ │ └── ListHeader.vue │ │ ├── modals │ │ │ └── ErrorModal.vue │ │ ├── navbar-logo.vue │ │ ├── navbar │ │ │ ├── Navbar.vue │ │ │ └── components │ │ │ │ ├── AppNavbarActions.vue │ │ │ │ ├── DarkModeSelector.vue │ │ │ │ └── dropdowns │ │ │ │ ├── LanguageDropdown.vue │ │ │ │ ├── NotificationDropdown.vue │ │ │ │ ├── ProfileDropdown.vue │ │ │ │ └── SettingsDropdown.vue │ │ ├── sidebar │ │ │ ├── NavigationRoutes.js │ │ │ ├── Sidebar.vue │ │ │ └── menu │ │ │ │ ├── MenuAccordion.vue │ │ │ │ └── MenuMinimized.vue │ │ ├── tasks │ │ │ ├── TaskPage.vue │ │ │ └── TaskTable.vue │ │ ├── va-charts │ │ │ ├── VaChart.vue │ │ │ ├── VaChartConfigs.js │ │ │ └── chart-types │ │ │ │ ├── BubbleChart.js │ │ │ │ ├── DonutChart.js │ │ │ │ ├── HorizontalBarChart.js │ │ │ │ ├── LineChart.js │ │ │ │ ├── PieChart.js │ │ │ │ ├── VerticalBarChart.js │ │ │ │ └── chartMixin.js │ │ ├── va-medium-editor │ │ │ ├── _variables.scss │ │ │ └── va-medium-editor.vue │ │ └── virtualmachines │ │ │ ├── BackupSelector.vue │ │ │ ├── StorageSelector.vue │ │ │ └── VirtualMachineSelector.vue │ ├── data │ │ ├── CountriesList.ts │ │ ├── charts │ │ │ ├── BubbleChartData.ts │ │ │ ├── DonutChartData.ts │ │ │ ├── HorizontalBarChartData.ts │ │ │ ├── LineChartData.ts │ │ │ ├── PieChartData.ts │ │ │ ├── VerticalBarChartData.ts │ │ │ └── types │ │ │ │ └── index.ts │ │ ├── tables │ │ │ └── markup-table │ │ │ │ └── data.json │ │ └── users.json │ ├── i18n │ │ ├── en.json │ │ └── fr.json │ ├── layout │ │ └── app-layout.vue │ ├── main.ts │ ├── pages │ │ ├── 404-pages │ │ │ ├── CategoriesConfig.ts │ │ │ ├── VaPageNotFound.vue │ │ │ ├── VaPageNotFoundSimple.vue │ │ │ └── Wallpaper.vue │ │ ├── admin │ │ │ ├── configuration │ │ │ │ ├── connectors │ │ │ │ │ ├── ConnectorForm.vue │ │ │ │ │ └── ConnectorList.vue │ │ │ │ ├── externalhooks │ │ │ │ │ ├── ExternalHookForm.vue │ │ │ │ │ └── ExternalHookList.vue │ │ │ │ ├── policies │ │ │ │ │ ├── PolicyForm.vue │ │ │ │ │ ├── PolicyList.vue │ │ │ │ │ └── dayOfWeek.js │ │ │ │ └── storage │ │ │ │ │ ├── StorageForm.vue │ │ │ │ │ └── StorageList.vue │ │ │ ├── dashboard │ │ │ │ ├── Dashboard.vue │ │ │ │ ├── DashboardCharts.vue │ │ │ │ ├── DashboardContributorsList.vue │ │ │ │ ├── DashboardInfoBlock.vue │ │ │ │ ├── DashboardTable.vue │ │ │ │ └── dashboard-tabs │ │ │ │ │ ├── BankDetailsTab.vue │ │ │ │ │ ├── BillingAddressTab.vue │ │ │ │ │ └── OverviewTab.vue │ │ │ ├── forms.js │ │ │ ├── forms │ │ │ │ ├── data │ │ │ │ │ └── CountriesList.js │ │ │ │ ├── form-elements │ │ │ │ │ └── FormElements.vue │ │ │ │ ├── form-wizard │ │ │ │ │ └── FormWizard.vue │ │ │ │ └── medium-editor │ │ │ │ │ └── MediumEditor.vue │ │ │ ├── resources │ │ │ │ ├── hypervisors │ │ │ │ │ ├── HypervisorForm.vue │ │ │ │ │ └── HypervisorList.vue │ │ │ │ ├── pools │ │ │ │ │ ├── PoolForm.vue │ │ │ │ │ └── PoolList.vue │ │ │ │ └── virtualmachines │ │ │ │ │ ├── VirtualMachineDetails.vue │ │ │ │ │ └── VirtualMachineList.vue │ │ │ ├── statistics │ │ │ │ ├── charts │ │ │ │ │ └── Charts.vue │ │ │ │ └── progress-bars │ │ │ │ │ ├── ProgressBars.vue │ │ │ │ │ └── Widgets │ │ │ │ │ ├── BarsState.vue │ │ │ │ │ ├── CircleBars.vue │ │ │ │ │ ├── ColorfulBars.vue │ │ │ │ │ └── HorizontalBars.vue │ │ │ ├── tasks │ │ │ │ ├── Kickstart.vue │ │ │ │ ├── backup │ │ │ │ │ └── Backup.vue │ │ │ │ └── restore │ │ │ │ │ └── Restore.vue │ │ │ └── ui │ │ │ │ ├── buttons │ │ │ │ └── Buttons.vue │ │ │ │ ├── cards │ │ │ │ └── Cards.vue │ │ │ │ ├── chat │ │ │ │ ├── Chat.demo.vue │ │ │ │ ├── Chat.vue │ │ │ │ ├── ChatPage.vue │ │ │ │ ├── SetupProfileTab.vue │ │ │ │ └── StickyScroll.ts │ │ │ │ ├── chips │ │ │ │ └── Chips.vue │ │ │ │ ├── collapse │ │ │ │ └── Collapses.vue │ │ │ │ ├── color-pickers │ │ │ │ └── ColorPickers.vue │ │ │ │ ├── colors │ │ │ │ ├── Colors.vue │ │ │ │ └── color-presentation │ │ │ │ │ ├── ColorPresentation.demo.vue │ │ │ │ │ ├── ColorPresentation.vue │ │ │ │ │ └── colorsData.ts │ │ │ │ ├── file-upload │ │ │ │ └── FileUpload.vue │ │ │ │ ├── grid │ │ │ │ └── Grid.vue │ │ │ │ ├── icons │ │ │ │ ├── IconSet.vue │ │ │ │ ├── Icons.vue │ │ │ │ ├── SetsList.vue │ │ │ │ └── sets │ │ │ │ │ ├── brandico.json │ │ │ │ │ ├── entypo.json │ │ │ │ │ ├── font-awesome.json │ │ │ │ │ ├── fontelico.json │ │ │ │ │ ├── glyphicons.json │ │ │ │ │ ├── iconic-stroke.json │ │ │ │ │ ├── ionicons.json │ │ │ │ │ ├── maki.json │ │ │ │ │ ├── material-icons.json │ │ │ │ │ ├── openweb.json │ │ │ │ │ ├── typicons.json │ │ │ │ │ └── vuestic.json │ │ │ │ ├── lists │ │ │ │ ├── Lists.vue │ │ │ │ └── data.json │ │ │ │ ├── modals │ │ │ │ └── Modals.vue │ │ │ │ ├── notifications │ │ │ │ ├── Notifications.vue │ │ │ │ └── ToastPositionPicker.vue │ │ │ │ ├── popovers │ │ │ │ └── Popovers.vue │ │ │ │ ├── rating │ │ │ │ └── Rating.vue │ │ │ │ ├── route.ts │ │ │ │ ├── sliders │ │ │ │ └── Sliders.vue │ │ │ │ ├── spacing │ │ │ │ ├── Spacing.vue │ │ │ │ └── SpacingPlaygroud.vue │ │ │ │ ├── spinners │ │ │ │ └── Spinners.vue │ │ │ │ ├── tabs │ │ │ │ └── Tabs.vue │ │ │ │ ├── timelines │ │ │ │ └── Timelines.vue │ │ │ │ ├── tree-view │ │ │ │ ├── TreeView.vue │ │ │ │ ├── TreeViewAdvancedPreview.vue │ │ │ │ ├── TreeViewBasicPreview.vue │ │ │ │ ├── TreeViewEditablePreview.vue │ │ │ │ ├── TreeViewIconsPreview.vue │ │ │ │ └── TreeViewSelectablePreview.vue │ │ │ │ └── typography │ │ │ │ └── Typography.vue │ │ └── auth │ │ │ ├── ChangePassword.vue │ │ │ └── Login.vue │ ├── registerServiceWorker.ts │ ├── router │ │ ├── index.ts │ │ └── route-view.vue │ ├── sass │ │ ├── icon-fonts │ │ │ ├── brandico │ │ │ │ ├── brandico.eot │ │ │ │ ├── brandico.scss │ │ │ │ ├── brandico.svg │ │ │ │ ├── brandico.ttf │ │ │ │ └── brandico.woff │ │ │ ├── entypo │ │ │ │ ├── entypo.eot │ │ │ │ ├── entypo.scss │ │ │ │ ├── entypo.svg │ │ │ │ ├── entypo.ttf │ │ │ │ └── entypo.woff │ │ │ ├── font-awesome │ │ │ │ └── font-awesome.scss │ │ │ ├── fontelico │ │ │ │ ├── fontelico.eot │ │ │ │ ├── fontelico.scss │ │ │ │ ├── fontelico.svg │ │ │ │ ├── fontelico.ttf │ │ │ │ └── fontelico.woff │ │ │ ├── glyphicons │ │ │ │ ├── glyphicons.eot │ │ │ │ ├── glyphicons.scss │ │ │ │ ├── glyphicons.svg │ │ │ │ ├── glyphicons.ttf │ │ │ │ ├── glyphicons.woff │ │ │ │ └── glyphicons.woff2 │ │ │ ├── iconicfill │ │ │ │ ├── iconicfill.eot │ │ │ │ ├── iconicfill.scss │ │ │ │ ├── iconicfill.svg │ │ │ │ ├── iconicfill.ttf │ │ │ │ └── iconicfill.woff │ │ │ ├── iconicstroke │ │ │ │ ├── iconicstroke.eot │ │ │ │ ├── iconicstroke.scss │ │ │ │ ├── iconicstroke.svg │ │ │ │ ├── iconicstroke.ttf │ │ │ │ └── iconicstroke.woff │ │ │ ├── index.scss │ │ │ ├── ionicons │ │ │ │ └── ionicons.scss │ │ │ ├── maki │ │ │ │ ├── maki.eot │ │ │ │ ├── maki.scss │ │ │ │ ├── maki.svg │ │ │ │ ├── maki.ttf │ │ │ │ └── maki.woff │ │ │ ├── openwebicons │ │ │ │ ├── openwebicons.eot │ │ │ │ ├── openwebicons.scss │ │ │ │ ├── openwebicons.svg │ │ │ │ ├── openwebicons.ttf │ │ │ │ └── openwebicons.woff │ │ │ ├── typicons │ │ │ │ ├── typicons-regular-webfont.eot │ │ │ │ ├── typicons-regular-webfont.svg │ │ │ │ ├── typicons-regular-webfont.ttf │ │ │ │ ├── typicons-regular-webfont.woff │ │ │ │ └── typicons.scss │ │ │ ├── vuestic-icons │ │ │ │ ├── vuestic-icons.eot │ │ │ │ ├── vuestic-icons.scss │ │ │ │ ├── vuestic-icons.svg │ │ │ │ ├── vuestic-icons.ttf │ │ │ │ └── vuestic-icons.woff │ │ │ └── zocial │ │ │ │ ├── zocial-regular-webfont.eot │ │ │ │ ├── zocial-regular-webfont.svg │ │ │ │ ├── zocial-regular-webfont.ttf │ │ │ │ ├── zocial-regular-webfont.woff │ │ │ │ └── zocial.scss │ │ ├── main.scss │ │ └── vuestic-sass │ │ │ └── index.scss │ ├── service-worker.js │ ├── services │ │ └── vuestic-ui │ │ │ ├── components │ │ │ ├── va-button.ts │ │ │ ├── va-icon.ts │ │ │ └── va-toast.ts │ │ │ ├── global-config.ts │ │ │ ├── icons-config │ │ │ ├── aliases.ts │ │ │ └── icons-config.ts │ │ │ └── themes.ts │ ├── shims-vue.d.ts │ └── store │ │ └── index.ts │ ├── tsconfig.json │ ├── vue.config.js │ └── yarn.lock └── test └── selenium └── main.py /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/manage_release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/.github/workflows/manage_release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/LICENCE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/README.md -------------------------------------------------------------------------------- /compose_project/.gitignore: -------------------------------------------------------------------------------- 1 | @* 2 | .env 3 | -------------------------------------------------------------------------------- /compose_project/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/compose_project/README.md -------------------------------------------------------------------------------- /compose_project/compose.dev.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/compose_project/compose.dev.yaml -------------------------------------------------------------------------------- /compose_project/compose.prod.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/compose_project/compose.prod.yaml -------------------------------------------------------------------------------- /compose_project/compose.source.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/compose_project/compose.source.yaml -------------------------------------------------------------------------------- /compose_project/compose.staging_prod.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/compose_project/compose.staging_prod.yaml -------------------------------------------------------------------------------- /compose_project/compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/compose_project/compose.yaml -------------------------------------------------------------------------------- /compose_project/proxy/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/compose_project/proxy/Dockerfile -------------------------------------------------------------------------------- /compose_project/proxy/_.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/compose_project/proxy/_.env -------------------------------------------------------------------------------- /compose_project/source-me.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/compose_project/source-me.sh -------------------------------------------------------------------------------- /compose_project/sso/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/compose_project/sso/Dockerfile -------------------------------------------------------------------------------- /compose_project/sso/template.realm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/compose_project/sso/template.realm.json -------------------------------------------------------------------------------- /compose_project/template.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/compose_project/template.env -------------------------------------------------------------------------------- /docs/get_started/first_host.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/docs/get_started/first_host.rst -------------------------------------------------------------------------------- /docs/get_started/first_policy.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/docs/get_started/first_policy.rst -------------------------------------------------------------------------------- /docs/get_started/first_pool.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/docs/get_started/first_pool.rst -------------------------------------------------------------------------------- /docs/get_started/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/docs/get_started/index.rst -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/installation/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/docs/installation/index.rst -------------------------------------------------------------------------------- /docs/installation/installation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/docs/installation/installation.rst -------------------------------------------------------------------------------- /docs/introduction/architecture.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/docs/introduction/architecture.rst -------------------------------------------------------------------------------- /docs/introduction/concept.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/docs/introduction/concept.rst -------------------------------------------------------------------------------- /docs/introduction/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/docs/introduction/index.rst -------------------------------------------------------------------------------- /documentation/developers_setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/documentation/developers_setup.md -------------------------------------------------------------------------------- /documentation/miscellaneous.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/documentation/miscellaneous.md -------------------------------------------------------------------------------- /release/.gitignore: -------------------------------------------------------------------------------- 1 | quickstart.sh 2 | -------------------------------------------------------------------------------- /release/make_quickstart.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/release/make_quickstart.sh -------------------------------------------------------------------------------- /snap/hooks/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/snap/hooks/configure -------------------------------------------------------------------------------- /snap/hooks/default-configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/snap/hooks/default-configure -------------------------------------------------------------------------------- /snap/snapcraft.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/snap/snapcraft.yaml -------------------------------------------------------------------------------- /snap_project/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/snap_project/install.sh -------------------------------------------------------------------------------- /snap_project/output/.gitignore: -------------------------------------------------------------------------------- 1 | *.snap 2 | -------------------------------------------------------------------------------- /snap_project/output/pack/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /snap_project/src/commands/snap.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/snap_project/src/commands/snap.sh -------------------------------------------------------------------------------- /snap_project/src/configuration/.gitignore: -------------------------------------------------------------------------------- 1 | *_base.env 2 | -------------------------------------------------------------------------------- /snap_project/src/configuration/default.env: -------------------------------------------------------------------------------- 1 | FLOWER_ADDRESS=127.0.0.1 2 | -------------------------------------------------------------------------------- /snap_project/src/configuration/main.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/snap_project/src/configuration/main.sh -------------------------------------------------------------------------------- /src/.gitignore: -------------------------------------------------------------------------------- 1 | ui-ng/* 2 | -------------------------------------------------------------------------------- /src/core/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/core/Dockerfile -------------------------------------------------------------------------------- /src/core/commands/api.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/core/commands/api.sh -------------------------------------------------------------------------------- /src/core/commands/beat.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/core/commands/beat.sh -------------------------------------------------------------------------------- /src/core/commands/docker.sh: -------------------------------------------------------------------------------- 1 | cd python_project 2 | bash "../commands/$1.sh" 3 | -------------------------------------------------------------------------------- /src/core/commands/flower.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/core/commands/flower.sh -------------------------------------------------------------------------------- /src/core/commands/worker_one.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/core/commands/worker_one.sh -------------------------------------------------------------------------------- /src/core/commands/worker_two.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/core/commands/worker_two.sh -------------------------------------------------------------------------------- /src/core/python_project/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/core/python_project/.gitignore -------------------------------------------------------------------------------- /src/core/python_project/app/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/core/python_project/app/auth/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/core/python_project/app/auth/__init__.py -------------------------------------------------------------------------------- /src/core/python_project/app/auth/openid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/core/python_project/app/auth/openid.py -------------------------------------------------------------------------------- /src/core/python_project/app/auth/password.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/core/python_project/app/auth/password.py -------------------------------------------------------------------------------- /src/core/python_project/app/backup_tasks/manage_backup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/core/python_project/app/backup_tasks/manage_backup.py -------------------------------------------------------------------------------- /src/core/python_project/app/backup_tasks/pool_backup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/core/python_project/app/backup_tasks/pool_backup.py -------------------------------------------------------------------------------- /src/core/python_project/app/backup_tasks/single_backup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/core/python_project/app/backup_tasks/single_backup.py -------------------------------------------------------------------------------- /src/core/python_project/app/borg/borg_core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/core/python_project/app/borg/borg_core.py -------------------------------------------------------------------------------- /src/core/python_project/app/borg/borg_misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/core/python_project/app/borg/borg_misc.py -------------------------------------------------------------------------------- /src/core/python_project/app/cloudstack/endpoint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/core/python_project/app/cloudstack/endpoint.py -------------------------------------------------------------------------------- /src/core/python_project/app/cloudstack/virtual_machine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/core/python_project/app/cloudstack/virtual_machine.py -------------------------------------------------------------------------------- /src/core/python_project/app/database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/core/python_project/app/database.py -------------------------------------------------------------------------------- /src/core/python_project/app/environment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/core/python_project/app/environment.py -------------------------------------------------------------------------------- /src/core/python_project/app/events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/core/python_project/app/events.py -------------------------------------------------------------------------------- /src/core/python_project/app/finalized.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/core/python_project/app/finalized.py -------------------------------------------------------------------------------- /src/core/python_project/app/hooks/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/core/python_project/app/hooks/hook_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/core/python_project/app/hooks/hook_client.py -------------------------------------------------------------------------------- /src/core/python_project/app/hooks/notification_sender.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/core/python_project/app/hooks/notification_sender.py -------------------------------------------------------------------------------- /src/core/python_project/app/hooks/slack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/core/python_project/app/hooks/slack.py -------------------------------------------------------------------------------- /src/core/python_project/app/initialized.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/core/python_project/app/initialized.py -------------------------------------------------------------------------------- /src/core/python_project/app/kvm/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/core/python_project/app/kvm/kvm_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/core/python_project/app/kvm/kvm_check.py -------------------------------------------------------------------------------- /src/core/python_project/app/kvm/kvm_connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/core/python_project/app/kvm/kvm_connection.py -------------------------------------------------------------------------------- /src/core/python_project/app/kvm/kvm_get_uuid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/core/python_project/app/kvm/kvm_get_uuid.py -------------------------------------------------------------------------------- /src/core/python_project/app/kvm/kvm_list_disk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/core/python_project/app/kvm/kvm_list_disk.py -------------------------------------------------------------------------------- /src/core/python_project/app/kvm/kvm_manage_snapshot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/core/python_project/app/kvm/kvm_manage_snapshot.py -------------------------------------------------------------------------------- /src/core/python_project/app/kvm/kvm_manage_vm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/core/python_project/app/kvm/kvm_manage_vm.py -------------------------------------------------------------------------------- /src/core/python_project/app/logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/core/python_project/app/logging.py -------------------------------------------------------------------------------- /src/core/python_project/app/patch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/core/python_project/app/patch.py -------------------------------------------------------------------------------- /src/core/python_project/app/redis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/core/python_project/app/redis.py -------------------------------------------------------------------------------- /src/core/python_project/app/restore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/core/python_project/app/restore.py -------------------------------------------------------------------------------- /src/core/python_project/app/routes/auth/openid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/core/python_project/app/routes/auth/openid.py -------------------------------------------------------------------------------- /src/core/python_project/app/routes/auth/password.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/core/python_project/app/routes/auth/password.py -------------------------------------------------------------------------------- /src/core/python_project/app/routes/backup_policy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/core/python_project/app/routes/backup_policy.py -------------------------------------------------------------------------------- /src/core/python_project/app/routes/connectors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/core/python_project/app/routes/connectors.py -------------------------------------------------------------------------------- /src/core/python_project/app/routes/external_hooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/core/python_project/app/routes/external_hooks.py -------------------------------------------------------------------------------- /src/core/python_project/app/routes/host.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/core/python_project/app/routes/host.py -------------------------------------------------------------------------------- /src/core/python_project/app/routes/job.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/core/python_project/app/routes/job.py -------------------------------------------------------------------------------- /src/core/python_project/app/routes/kickstart_backup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/core/python_project/app/routes/kickstart_backup.py -------------------------------------------------------------------------------- /src/core/python_project/app/routes/pool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/core/python_project/app/routes/pool.py -------------------------------------------------------------------------------- /src/core/python_project/app/routes/storage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/core/python_project/app/routes/storage.py -------------------------------------------------------------------------------- /src/core/python_project/app/routes/task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/core/python_project/app/routes/task.py -------------------------------------------------------------------------------- /src/core/python_project/app/routes/virtual_machine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/core/python_project/app/routes/virtual_machine.py -------------------------------------------------------------------------------- /src/core/python_project/app/scheduler/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/core/python_project/app/scheduler/retrieve_tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/core/python_project/app/scheduler/retrieve_tasks.py -------------------------------------------------------------------------------- /src/core/python_project/app/shell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/core/python_project/app/shell.py -------------------------------------------------------------------------------- /src/core/python_project/app/ssh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/core/python_project/app/ssh.py -------------------------------------------------------------------------------- /src/core/python_project/app/task_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/core/python_project/app/task_handler.py -------------------------------------------------------------------------------- /src/core/python_project/app/task_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/core/python_project/app/task_helper.py -------------------------------------------------------------------------------- /src/core/python_project/app/virtual_machine_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/core/python_project/app/virtual_machine_helper.py -------------------------------------------------------------------------------- /src/core/python_project/flower_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/core/python_project/flower_config.py -------------------------------------------------------------------------------- /src/core/python_project/lib64: -------------------------------------------------------------------------------- 1 | lib -------------------------------------------------------------------------------- /src/core/python_project/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/core/python_project/pyproject.toml -------------------------------------------------------------------------------- /src/core/python_project/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/core/python_project/requirements.txt -------------------------------------------------------------------------------- /src/env/get_default.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/env/get_default.sh -------------------------------------------------------------------------------- /src/env/get_local.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/env/get_local.sh -------------------------------------------------------------------------------- /src/env/get_read_only.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/env/get_read_only.sh -------------------------------------------------------------------------------- /src/package-lock.json: -------------------------------------------------------------------------------- 1 | { 2 | "lockfileVersion": 1 3 | } 4 | -------------------------------------------------------------------------------- /src/server/_nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/server/_nginx.conf -------------------------------------------------------------------------------- /src/server/containers.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/server/containers.conf -------------------------------------------------------------------------------- /src/server/localhost.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/server/localhost.conf -------------------------------------------------------------------------------- /src/ui/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/.dockerignore -------------------------------------------------------------------------------- /src/ui/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/.editorconfig -------------------------------------------------------------------------------- /src/ui/.env.production: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/.env.production -------------------------------------------------------------------------------- /src/ui/.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/.eslintignore -------------------------------------------------------------------------------- /src/ui/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/.eslintrc.js -------------------------------------------------------------------------------- /src/ui/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/.gitignore -------------------------------------------------------------------------------- /src/ui/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/Dockerfile -------------------------------------------------------------------------------- /src/ui/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/LICENSE -------------------------------------------------------------------------------- /src/ui/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/babel.config.js -------------------------------------------------------------------------------- /src/ui/config/dev.env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/config/dev.env.js -------------------------------------------------------------------------------- /src/ui/config/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/config/index.js -------------------------------------------------------------------------------- /src/ui/config/prod.env.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | module.exports = { 3 | NODE_ENV: '"production"' 4 | } 5 | -------------------------------------------------------------------------------- /src/ui/dev.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/dev.Dockerfile -------------------------------------------------------------------------------- /src/ui/dev.entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/dev.entrypoint.sh -------------------------------------------------------------------------------- /src/ui/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/entrypoint.sh -------------------------------------------------------------------------------- /src/ui/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/jest.config.js -------------------------------------------------------------------------------- /src/ui/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/nginx.conf -------------------------------------------------------------------------------- /src/ui/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/package-lock.json -------------------------------------------------------------------------------- /src/ui/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/package.json -------------------------------------------------------------------------------- /src/ui/public/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/public/android-chrome-192x192.png -------------------------------------------------------------------------------- /src/ui/public/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/public/android-chrome-512x512.png -------------------------------------------------------------------------------- /src/ui/public/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/public/apple-touch-icon.png -------------------------------------------------------------------------------- /src/ui/public/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/public/favicon-16x16.png -------------------------------------------------------------------------------- /src/ui/public/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/public/favicon-32x32.png -------------------------------------------------------------------------------- /src/ui/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/public/favicon.ico -------------------------------------------------------------------------------- /src/ui/public/img/dimsi-group-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/public/img/dimsi-group-logo.svg -------------------------------------------------------------------------------- /src/ui/public/img/logo-backroll.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/public/img/logo-backroll.svg -------------------------------------------------------------------------------- /src/ui/public/img/logo2-deg-backroll-cropped.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/public/img/logo2-deg-backroll-cropped.svg -------------------------------------------------------------------------------- /src/ui/public/img/vendor/leaflet/marker-icon-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/public/img/vendor/leaflet/marker-icon-2x.png -------------------------------------------------------------------------------- /src/ui/public/img/vendor/leaflet/marker-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/public/img/vendor/leaflet/marker-icon.png -------------------------------------------------------------------------------- /src/ui/public/img/vendor/leaflet/marker-shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/public/img/vendor/leaflet/marker-shadow.png -------------------------------------------------------------------------------- /src/ui/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/public/index.html -------------------------------------------------------------------------------- /src/ui/public/site.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/public/site.webmanifest -------------------------------------------------------------------------------- /src/ui/src/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/src/.eslintrc.js -------------------------------------------------------------------------------- /src/ui/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/src/App.vue -------------------------------------------------------------------------------- /src/ui/src/components/forms/FormHeader.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/src/components/forms/FormHeader.vue -------------------------------------------------------------------------------- /src/ui/src/components/icons/VaIconCleanCode.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/src/components/icons/VaIconCleanCode.vue -------------------------------------------------------------------------------- /src/ui/src/components/icons/VaIconColor_adelete.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/src/components/icons/VaIconColor_adelete.vue -------------------------------------------------------------------------------- /src/ui/src/components/icons/VaIconFaster.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/src/components/icons/VaIconFaster.vue -------------------------------------------------------------------------------- /src/ui/src/components/icons/VaIconFree.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/src/components/icons/VaIconFree.vue -------------------------------------------------------------------------------- /src/ui/src/components/icons/VaIconFresh.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/src/components/icons/VaIconFresh.vue -------------------------------------------------------------------------------- /src/ui/src/components/icons/VaIconMenu.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/src/components/icons/VaIconMenu.vue -------------------------------------------------------------------------------- /src/ui/src/components/icons/VaIconMenuCollapsed.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/src/components/icons/VaIconMenuCollapsed.vue -------------------------------------------------------------------------------- /src/ui/src/components/icons/VaIconMessage.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/src/components/icons/VaIconMessage.vue -------------------------------------------------------------------------------- /src/ui/src/components/icons/VaIconNotification.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/src/components/icons/VaIconNotification.vue -------------------------------------------------------------------------------- /src/ui/src/components/icons/VaIconResponsive.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/src/components/icons/VaIconResponsive.vue -------------------------------------------------------------------------------- /src/ui/src/components/icons/VaIconRich.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/src/components/icons/VaIconRich.vue -------------------------------------------------------------------------------- /src/ui/src/components/icons/VaIconSlower.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/src/components/icons/VaIconSlower.vue -------------------------------------------------------------------------------- /src/ui/src/components/icons/VaIconVue.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/src/components/icons/VaIconVue.vue -------------------------------------------------------------------------------- /src/ui/src/components/icons/VaIconVuestic.demo.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/src/components/icons/VaIconVuestic.demo.vue -------------------------------------------------------------------------------- /src/ui/src/components/icons/VaIconVuestic.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/src/components/icons/VaIconVuestic.vue -------------------------------------------------------------------------------- /src/ui/src/components/lists/ListHeader.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/src/components/lists/ListHeader.vue -------------------------------------------------------------------------------- /src/ui/src/components/modals/ErrorModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/src/components/modals/ErrorModal.vue -------------------------------------------------------------------------------- /src/ui/src/components/navbar-logo.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/src/components/navbar-logo.vue -------------------------------------------------------------------------------- /src/ui/src/components/navbar/Navbar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/src/components/navbar/Navbar.vue -------------------------------------------------------------------------------- /src/ui/src/components/navbar/components/AppNavbarActions.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/src/components/navbar/components/AppNavbarActions.vue -------------------------------------------------------------------------------- /src/ui/src/components/navbar/components/DarkModeSelector.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/src/components/navbar/components/DarkModeSelector.vue -------------------------------------------------------------------------------- /src/ui/src/components/navbar/components/dropdowns/LanguageDropdown.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/src/components/navbar/components/dropdowns/LanguageDropdown.vue -------------------------------------------------------------------------------- /src/ui/src/components/navbar/components/dropdowns/NotificationDropdown.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/src/components/navbar/components/dropdowns/NotificationDropdown.vue -------------------------------------------------------------------------------- /src/ui/src/components/navbar/components/dropdowns/ProfileDropdown.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/src/components/navbar/components/dropdowns/ProfileDropdown.vue -------------------------------------------------------------------------------- /src/ui/src/components/navbar/components/dropdowns/SettingsDropdown.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/src/components/navbar/components/dropdowns/SettingsDropdown.vue -------------------------------------------------------------------------------- /src/ui/src/components/sidebar/NavigationRoutes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/src/components/sidebar/NavigationRoutes.js -------------------------------------------------------------------------------- /src/ui/src/components/sidebar/Sidebar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/src/components/sidebar/Sidebar.vue -------------------------------------------------------------------------------- /src/ui/src/components/sidebar/menu/MenuAccordion.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/src/components/sidebar/menu/MenuAccordion.vue -------------------------------------------------------------------------------- /src/ui/src/components/sidebar/menu/MenuMinimized.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/src/components/sidebar/menu/MenuMinimized.vue -------------------------------------------------------------------------------- /src/ui/src/components/tasks/TaskPage.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/src/components/tasks/TaskPage.vue -------------------------------------------------------------------------------- /src/ui/src/components/tasks/TaskTable.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/src/components/tasks/TaskTable.vue -------------------------------------------------------------------------------- /src/ui/src/components/va-charts/VaChart.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/src/components/va-charts/VaChart.vue -------------------------------------------------------------------------------- /src/ui/src/components/va-charts/VaChartConfigs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/src/components/va-charts/VaChartConfigs.js -------------------------------------------------------------------------------- /src/ui/src/components/va-charts/chart-types/BubbleChart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/src/components/va-charts/chart-types/BubbleChart.js -------------------------------------------------------------------------------- /src/ui/src/components/va-charts/chart-types/DonutChart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/src/components/va-charts/chart-types/DonutChart.js -------------------------------------------------------------------------------- /src/ui/src/components/va-charts/chart-types/HorizontalBarChart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/src/components/va-charts/chart-types/HorizontalBarChart.js -------------------------------------------------------------------------------- /src/ui/src/components/va-charts/chart-types/LineChart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/src/components/va-charts/chart-types/LineChart.js -------------------------------------------------------------------------------- /src/ui/src/components/va-charts/chart-types/PieChart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/src/components/va-charts/chart-types/PieChart.js -------------------------------------------------------------------------------- /src/ui/src/components/va-charts/chart-types/VerticalBarChart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/src/components/va-charts/chart-types/VerticalBarChart.js -------------------------------------------------------------------------------- /src/ui/src/components/va-charts/chart-types/chartMixin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/src/components/va-charts/chart-types/chartMixin.js -------------------------------------------------------------------------------- /src/ui/src/components/va-medium-editor/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/src/components/va-medium-editor/_variables.scss -------------------------------------------------------------------------------- /src/ui/src/components/va-medium-editor/va-medium-editor.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/src/components/va-medium-editor/va-medium-editor.vue -------------------------------------------------------------------------------- /src/ui/src/components/virtualmachines/BackupSelector.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/src/components/virtualmachines/BackupSelector.vue -------------------------------------------------------------------------------- /src/ui/src/components/virtualmachines/StorageSelector.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/src/components/virtualmachines/StorageSelector.vue -------------------------------------------------------------------------------- /src/ui/src/components/virtualmachines/VirtualMachineSelector.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/src/components/virtualmachines/VirtualMachineSelector.vue -------------------------------------------------------------------------------- /src/ui/src/data/CountriesList.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/src/data/CountriesList.ts -------------------------------------------------------------------------------- /src/ui/src/data/charts/BubbleChartData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/src/data/charts/BubbleChartData.ts -------------------------------------------------------------------------------- /src/ui/src/data/charts/DonutChartData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/src/data/charts/DonutChartData.ts -------------------------------------------------------------------------------- /src/ui/src/data/charts/HorizontalBarChartData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/src/data/charts/HorizontalBarChartData.ts -------------------------------------------------------------------------------- /src/ui/src/data/charts/LineChartData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/src/data/charts/LineChartData.ts -------------------------------------------------------------------------------- /src/ui/src/data/charts/PieChartData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/src/data/charts/PieChartData.ts -------------------------------------------------------------------------------- /src/ui/src/data/charts/VerticalBarChartData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/src/data/charts/VerticalBarChartData.ts -------------------------------------------------------------------------------- /src/ui/src/data/charts/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/src/data/charts/types/index.ts -------------------------------------------------------------------------------- /src/ui/src/data/tables/markup-table/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/src/data/tables/markup-table/data.json -------------------------------------------------------------------------------- /src/ui/src/data/users.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/src/data/users.json -------------------------------------------------------------------------------- /src/ui/src/i18n/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/src/i18n/en.json -------------------------------------------------------------------------------- /src/ui/src/i18n/fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/src/i18n/fr.json -------------------------------------------------------------------------------- /src/ui/src/layout/app-layout.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/src/layout/app-layout.vue -------------------------------------------------------------------------------- /src/ui/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/src/main.ts -------------------------------------------------------------------------------- /src/ui/src/pages/404-pages/CategoriesConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/src/pages/404-pages/CategoriesConfig.ts -------------------------------------------------------------------------------- /src/ui/src/pages/404-pages/VaPageNotFound.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/src/pages/404-pages/VaPageNotFound.vue -------------------------------------------------------------------------------- /src/ui/src/pages/404-pages/VaPageNotFoundSimple.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/src/pages/404-pages/VaPageNotFoundSimple.vue -------------------------------------------------------------------------------- /src/ui/src/pages/404-pages/Wallpaper.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/src/pages/404-pages/Wallpaper.vue -------------------------------------------------------------------------------- /src/ui/src/pages/admin/configuration/connectors/ConnectorForm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/src/pages/admin/configuration/connectors/ConnectorForm.vue -------------------------------------------------------------------------------- /src/ui/src/pages/admin/configuration/connectors/ConnectorList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/src/pages/admin/configuration/connectors/ConnectorList.vue -------------------------------------------------------------------------------- /src/ui/src/pages/admin/configuration/externalhooks/ExternalHookForm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/src/pages/admin/configuration/externalhooks/ExternalHookForm.vue -------------------------------------------------------------------------------- /src/ui/src/pages/admin/configuration/externalhooks/ExternalHookList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/src/pages/admin/configuration/externalhooks/ExternalHookList.vue -------------------------------------------------------------------------------- /src/ui/src/pages/admin/configuration/policies/PolicyForm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/src/pages/admin/configuration/policies/PolicyForm.vue -------------------------------------------------------------------------------- /src/ui/src/pages/admin/configuration/policies/PolicyList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/src/pages/admin/configuration/policies/PolicyList.vue -------------------------------------------------------------------------------- /src/ui/src/pages/admin/configuration/policies/dayOfWeek.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/src/pages/admin/configuration/policies/dayOfWeek.js -------------------------------------------------------------------------------- /src/ui/src/pages/admin/configuration/storage/StorageForm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/src/pages/admin/configuration/storage/StorageForm.vue -------------------------------------------------------------------------------- /src/ui/src/pages/admin/configuration/storage/StorageList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/src/pages/admin/configuration/storage/StorageList.vue -------------------------------------------------------------------------------- /src/ui/src/pages/admin/dashboard/Dashboard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/src/pages/admin/dashboard/Dashboard.vue -------------------------------------------------------------------------------- /src/ui/src/pages/admin/dashboard/DashboardCharts.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/src/pages/admin/dashboard/DashboardCharts.vue -------------------------------------------------------------------------------- /src/ui/src/pages/admin/dashboard/DashboardContributorsList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/src/pages/admin/dashboard/DashboardContributorsList.vue -------------------------------------------------------------------------------- /src/ui/src/pages/admin/dashboard/DashboardInfoBlock.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/src/pages/admin/dashboard/DashboardInfoBlock.vue -------------------------------------------------------------------------------- /src/ui/src/pages/admin/dashboard/DashboardTable.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/src/pages/admin/dashboard/DashboardTable.vue -------------------------------------------------------------------------------- /src/ui/src/pages/admin/dashboard/dashboard-tabs/BankDetailsTab.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/src/pages/admin/dashboard/dashboard-tabs/BankDetailsTab.vue -------------------------------------------------------------------------------- /src/ui/src/pages/admin/dashboard/dashboard-tabs/BillingAddressTab.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/src/pages/admin/dashboard/dashboard-tabs/BillingAddressTab.vue -------------------------------------------------------------------------------- /src/ui/src/pages/admin/dashboard/dashboard-tabs/OverviewTab.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/src/pages/admin/dashboard/dashboard-tabs/OverviewTab.vue -------------------------------------------------------------------------------- /src/ui/src/pages/admin/forms.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/src/pages/admin/forms.js -------------------------------------------------------------------------------- /src/ui/src/pages/admin/forms/data/CountriesList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/src/pages/admin/forms/data/CountriesList.js -------------------------------------------------------------------------------- /src/ui/src/pages/admin/forms/form-elements/FormElements.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/src/pages/admin/forms/form-elements/FormElements.vue -------------------------------------------------------------------------------- /src/ui/src/pages/admin/forms/form-wizard/FormWizard.vue: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/ui/src/pages/admin/forms/medium-editor/MediumEditor.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/src/pages/admin/forms/medium-editor/MediumEditor.vue -------------------------------------------------------------------------------- /src/ui/src/pages/admin/resources/hypervisors/HypervisorForm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/src/pages/admin/resources/hypervisors/HypervisorForm.vue -------------------------------------------------------------------------------- /src/ui/src/pages/admin/resources/hypervisors/HypervisorList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/src/pages/admin/resources/hypervisors/HypervisorList.vue -------------------------------------------------------------------------------- /src/ui/src/pages/admin/resources/pools/PoolForm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/src/pages/admin/resources/pools/PoolForm.vue -------------------------------------------------------------------------------- /src/ui/src/pages/admin/resources/pools/PoolList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/src/pages/admin/resources/pools/PoolList.vue -------------------------------------------------------------------------------- /src/ui/src/pages/admin/resources/virtualmachines/VirtualMachineDetails.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/src/pages/admin/resources/virtualmachines/VirtualMachineDetails.vue -------------------------------------------------------------------------------- /src/ui/src/pages/admin/resources/virtualmachines/VirtualMachineList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/src/pages/admin/resources/virtualmachines/VirtualMachineList.vue -------------------------------------------------------------------------------- /src/ui/src/pages/admin/statistics/charts/Charts.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/src/pages/admin/statistics/charts/Charts.vue -------------------------------------------------------------------------------- /src/ui/src/pages/admin/statistics/progress-bars/ProgressBars.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/src/pages/admin/statistics/progress-bars/ProgressBars.vue -------------------------------------------------------------------------------- /src/ui/src/pages/admin/statistics/progress-bars/Widgets/BarsState.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/src/pages/admin/statistics/progress-bars/Widgets/BarsState.vue -------------------------------------------------------------------------------- /src/ui/src/pages/admin/statistics/progress-bars/Widgets/CircleBars.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/src/pages/admin/statistics/progress-bars/Widgets/CircleBars.vue -------------------------------------------------------------------------------- /src/ui/src/pages/admin/statistics/progress-bars/Widgets/ColorfulBars.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/src/pages/admin/statistics/progress-bars/Widgets/ColorfulBars.vue -------------------------------------------------------------------------------- /src/ui/src/pages/admin/statistics/progress-bars/Widgets/HorizontalBars.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/src/pages/admin/statistics/progress-bars/Widgets/HorizontalBars.vue -------------------------------------------------------------------------------- /src/ui/src/pages/admin/tasks/Kickstart.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/src/pages/admin/tasks/Kickstart.vue -------------------------------------------------------------------------------- /src/ui/src/pages/admin/tasks/backup/Backup.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/src/pages/admin/tasks/backup/Backup.vue -------------------------------------------------------------------------------- /src/ui/src/pages/admin/tasks/restore/Restore.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/src/pages/admin/tasks/restore/Restore.vue -------------------------------------------------------------------------------- /src/ui/src/pages/admin/ui/buttons/Buttons.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/src/pages/admin/ui/buttons/Buttons.vue -------------------------------------------------------------------------------- /src/ui/src/pages/admin/ui/cards/Cards.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/src/pages/admin/ui/cards/Cards.vue -------------------------------------------------------------------------------- /src/ui/src/pages/admin/ui/chat/Chat.demo.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/src/pages/admin/ui/chat/Chat.demo.vue -------------------------------------------------------------------------------- /src/ui/src/pages/admin/ui/chat/Chat.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/src/pages/admin/ui/chat/Chat.vue -------------------------------------------------------------------------------- /src/ui/src/pages/admin/ui/chat/ChatPage.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/src/pages/admin/ui/chat/ChatPage.vue -------------------------------------------------------------------------------- /src/ui/src/pages/admin/ui/chat/SetupProfileTab.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/src/pages/admin/ui/chat/SetupProfileTab.vue -------------------------------------------------------------------------------- /src/ui/src/pages/admin/ui/chat/StickyScroll.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/src/pages/admin/ui/chat/StickyScroll.ts -------------------------------------------------------------------------------- /src/ui/src/pages/admin/ui/chips/Chips.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/src/pages/admin/ui/chips/Chips.vue -------------------------------------------------------------------------------- /src/ui/src/pages/admin/ui/collapse/Collapses.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/src/pages/admin/ui/collapse/Collapses.vue -------------------------------------------------------------------------------- /src/ui/src/pages/admin/ui/color-pickers/ColorPickers.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/src/pages/admin/ui/color-pickers/ColorPickers.vue -------------------------------------------------------------------------------- /src/ui/src/pages/admin/ui/colors/Colors.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/src/pages/admin/ui/colors/Colors.vue -------------------------------------------------------------------------------- /src/ui/src/pages/admin/ui/colors/color-presentation/ColorPresentation.demo.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/src/pages/admin/ui/colors/color-presentation/ColorPresentation.demo.vue -------------------------------------------------------------------------------- /src/ui/src/pages/admin/ui/colors/color-presentation/ColorPresentation.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/src/pages/admin/ui/colors/color-presentation/ColorPresentation.vue -------------------------------------------------------------------------------- /src/ui/src/pages/admin/ui/colors/color-presentation/colorsData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/src/pages/admin/ui/colors/color-presentation/colorsData.ts -------------------------------------------------------------------------------- /src/ui/src/pages/admin/ui/file-upload/FileUpload.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/src/pages/admin/ui/file-upload/FileUpload.vue -------------------------------------------------------------------------------- /src/ui/src/pages/admin/ui/grid/Grid.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/src/pages/admin/ui/grid/Grid.vue -------------------------------------------------------------------------------- /src/ui/src/pages/admin/ui/icons/IconSet.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/src/pages/admin/ui/icons/IconSet.vue -------------------------------------------------------------------------------- /src/ui/src/pages/admin/ui/icons/Icons.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/src/pages/admin/ui/icons/Icons.vue -------------------------------------------------------------------------------- /src/ui/src/pages/admin/ui/icons/SetsList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/src/pages/admin/ui/icons/SetsList.vue -------------------------------------------------------------------------------- /src/ui/src/pages/admin/ui/icons/sets/brandico.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/src/pages/admin/ui/icons/sets/brandico.json -------------------------------------------------------------------------------- /src/ui/src/pages/admin/ui/icons/sets/entypo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/src/pages/admin/ui/icons/sets/entypo.json -------------------------------------------------------------------------------- /src/ui/src/pages/admin/ui/icons/sets/font-awesome.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/src/pages/admin/ui/icons/sets/font-awesome.json -------------------------------------------------------------------------------- /src/ui/src/pages/admin/ui/icons/sets/fontelico.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/src/pages/admin/ui/icons/sets/fontelico.json -------------------------------------------------------------------------------- /src/ui/src/pages/admin/ui/icons/sets/glyphicons.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/src/pages/admin/ui/icons/sets/glyphicons.json -------------------------------------------------------------------------------- /src/ui/src/pages/admin/ui/icons/sets/iconic-stroke.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/src/pages/admin/ui/icons/sets/iconic-stroke.json -------------------------------------------------------------------------------- /src/ui/src/pages/admin/ui/icons/sets/ionicons.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/src/pages/admin/ui/icons/sets/ionicons.json -------------------------------------------------------------------------------- /src/ui/src/pages/admin/ui/icons/sets/maki.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/src/pages/admin/ui/icons/sets/maki.json -------------------------------------------------------------------------------- /src/ui/src/pages/admin/ui/icons/sets/material-icons.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/src/pages/admin/ui/icons/sets/material-icons.json -------------------------------------------------------------------------------- /src/ui/src/pages/admin/ui/icons/sets/openweb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/src/pages/admin/ui/icons/sets/openweb.json -------------------------------------------------------------------------------- /src/ui/src/pages/admin/ui/icons/sets/typicons.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/src/pages/admin/ui/icons/sets/typicons.json -------------------------------------------------------------------------------- /src/ui/src/pages/admin/ui/icons/sets/vuestic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/src/pages/admin/ui/icons/sets/vuestic.json -------------------------------------------------------------------------------- /src/ui/src/pages/admin/ui/lists/Lists.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/src/pages/admin/ui/lists/Lists.vue -------------------------------------------------------------------------------- /src/ui/src/pages/admin/ui/lists/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/src/pages/admin/ui/lists/data.json -------------------------------------------------------------------------------- /src/ui/src/pages/admin/ui/modals/Modals.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/src/pages/admin/ui/modals/Modals.vue -------------------------------------------------------------------------------- /src/ui/src/pages/admin/ui/notifications/Notifications.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/src/pages/admin/ui/notifications/Notifications.vue -------------------------------------------------------------------------------- /src/ui/src/pages/admin/ui/notifications/ToastPositionPicker.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/src/pages/admin/ui/notifications/ToastPositionPicker.vue -------------------------------------------------------------------------------- /src/ui/src/pages/admin/ui/popovers/Popovers.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/src/pages/admin/ui/popovers/Popovers.vue -------------------------------------------------------------------------------- /src/ui/src/pages/admin/ui/rating/Rating.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/src/pages/admin/ui/rating/Rating.vue -------------------------------------------------------------------------------- /src/ui/src/pages/admin/ui/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/src/pages/admin/ui/route.ts -------------------------------------------------------------------------------- /src/ui/src/pages/admin/ui/sliders/Sliders.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/src/pages/admin/ui/sliders/Sliders.vue -------------------------------------------------------------------------------- /src/ui/src/pages/admin/ui/spacing/Spacing.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/src/pages/admin/ui/spacing/Spacing.vue -------------------------------------------------------------------------------- /src/ui/src/pages/admin/ui/spacing/SpacingPlaygroud.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/src/pages/admin/ui/spacing/SpacingPlaygroud.vue -------------------------------------------------------------------------------- /src/ui/src/pages/admin/ui/spinners/Spinners.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/src/pages/admin/ui/spinners/Spinners.vue -------------------------------------------------------------------------------- /src/ui/src/pages/admin/ui/tabs/Tabs.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/src/pages/admin/ui/tabs/Tabs.vue -------------------------------------------------------------------------------- /src/ui/src/pages/admin/ui/timelines/Timelines.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/src/pages/admin/ui/timelines/Timelines.vue -------------------------------------------------------------------------------- /src/ui/src/pages/admin/ui/tree-view/TreeView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/src/pages/admin/ui/tree-view/TreeView.vue -------------------------------------------------------------------------------- /src/ui/src/pages/admin/ui/tree-view/TreeViewAdvancedPreview.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/src/pages/admin/ui/tree-view/TreeViewAdvancedPreview.vue -------------------------------------------------------------------------------- /src/ui/src/pages/admin/ui/tree-view/TreeViewBasicPreview.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/src/pages/admin/ui/tree-view/TreeViewBasicPreview.vue -------------------------------------------------------------------------------- /src/ui/src/pages/admin/ui/tree-view/TreeViewEditablePreview.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/src/pages/admin/ui/tree-view/TreeViewEditablePreview.vue -------------------------------------------------------------------------------- /src/ui/src/pages/admin/ui/tree-view/TreeViewIconsPreview.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/src/pages/admin/ui/tree-view/TreeViewIconsPreview.vue -------------------------------------------------------------------------------- /src/ui/src/pages/admin/ui/tree-view/TreeViewSelectablePreview.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/src/pages/admin/ui/tree-view/TreeViewSelectablePreview.vue -------------------------------------------------------------------------------- /src/ui/src/pages/admin/ui/typography/Typography.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/src/pages/admin/ui/typography/Typography.vue -------------------------------------------------------------------------------- /src/ui/src/pages/auth/ChangePassword.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/src/pages/auth/ChangePassword.vue -------------------------------------------------------------------------------- /src/ui/src/pages/auth/Login.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/src/pages/auth/Login.vue -------------------------------------------------------------------------------- /src/ui/src/registerServiceWorker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/src/registerServiceWorker.ts -------------------------------------------------------------------------------- /src/ui/src/router/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/src/router/index.ts -------------------------------------------------------------------------------- /src/ui/src/router/route-view.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/src/router/route-view.vue -------------------------------------------------------------------------------- /src/ui/src/sass/icon-fonts/brandico/brandico.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/src/sass/icon-fonts/brandico/brandico.eot -------------------------------------------------------------------------------- /src/ui/src/sass/icon-fonts/brandico/brandico.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/src/sass/icon-fonts/brandico/brandico.scss -------------------------------------------------------------------------------- /src/ui/src/sass/icon-fonts/brandico/brandico.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/src/sass/icon-fonts/brandico/brandico.svg -------------------------------------------------------------------------------- /src/ui/src/sass/icon-fonts/brandico/brandico.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/src/sass/icon-fonts/brandico/brandico.ttf -------------------------------------------------------------------------------- /src/ui/src/sass/icon-fonts/brandico/brandico.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/src/sass/icon-fonts/brandico/brandico.woff -------------------------------------------------------------------------------- /src/ui/src/sass/icon-fonts/entypo/entypo.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/src/sass/icon-fonts/entypo/entypo.eot -------------------------------------------------------------------------------- /src/ui/src/sass/icon-fonts/entypo/entypo.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/src/sass/icon-fonts/entypo/entypo.scss -------------------------------------------------------------------------------- /src/ui/src/sass/icon-fonts/entypo/entypo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/src/sass/icon-fonts/entypo/entypo.svg -------------------------------------------------------------------------------- /src/ui/src/sass/icon-fonts/entypo/entypo.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/src/sass/icon-fonts/entypo/entypo.ttf -------------------------------------------------------------------------------- /src/ui/src/sass/icon-fonts/entypo/entypo.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/src/sass/icon-fonts/entypo/entypo.woff -------------------------------------------------------------------------------- /src/ui/src/sass/icon-fonts/font-awesome/font-awesome.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/src/sass/icon-fonts/font-awesome/font-awesome.scss -------------------------------------------------------------------------------- /src/ui/src/sass/icon-fonts/fontelico/fontelico.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/src/sass/icon-fonts/fontelico/fontelico.eot -------------------------------------------------------------------------------- /src/ui/src/sass/icon-fonts/fontelico/fontelico.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/src/sass/icon-fonts/fontelico/fontelico.scss -------------------------------------------------------------------------------- /src/ui/src/sass/icon-fonts/fontelico/fontelico.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/src/sass/icon-fonts/fontelico/fontelico.svg -------------------------------------------------------------------------------- /src/ui/src/sass/icon-fonts/fontelico/fontelico.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/src/sass/icon-fonts/fontelico/fontelico.ttf -------------------------------------------------------------------------------- /src/ui/src/sass/icon-fonts/fontelico/fontelico.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/src/sass/icon-fonts/fontelico/fontelico.woff -------------------------------------------------------------------------------- /src/ui/src/sass/icon-fonts/glyphicons/glyphicons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/src/sass/icon-fonts/glyphicons/glyphicons.eot -------------------------------------------------------------------------------- /src/ui/src/sass/icon-fonts/glyphicons/glyphicons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/src/sass/icon-fonts/glyphicons/glyphicons.scss -------------------------------------------------------------------------------- /src/ui/src/sass/icon-fonts/glyphicons/glyphicons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/src/sass/icon-fonts/glyphicons/glyphicons.svg -------------------------------------------------------------------------------- /src/ui/src/sass/icon-fonts/glyphicons/glyphicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/src/sass/icon-fonts/glyphicons/glyphicons.ttf -------------------------------------------------------------------------------- /src/ui/src/sass/icon-fonts/glyphicons/glyphicons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/src/sass/icon-fonts/glyphicons/glyphicons.woff -------------------------------------------------------------------------------- /src/ui/src/sass/icon-fonts/glyphicons/glyphicons.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/src/sass/icon-fonts/glyphicons/glyphicons.woff2 -------------------------------------------------------------------------------- /src/ui/src/sass/icon-fonts/iconicfill/iconicfill.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/src/sass/icon-fonts/iconicfill/iconicfill.eot -------------------------------------------------------------------------------- /src/ui/src/sass/icon-fonts/iconicfill/iconicfill.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/src/sass/icon-fonts/iconicfill/iconicfill.scss -------------------------------------------------------------------------------- /src/ui/src/sass/icon-fonts/iconicfill/iconicfill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/src/sass/icon-fonts/iconicfill/iconicfill.svg -------------------------------------------------------------------------------- /src/ui/src/sass/icon-fonts/iconicfill/iconicfill.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/src/sass/icon-fonts/iconicfill/iconicfill.ttf -------------------------------------------------------------------------------- /src/ui/src/sass/icon-fonts/iconicfill/iconicfill.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/src/sass/icon-fonts/iconicfill/iconicfill.woff -------------------------------------------------------------------------------- /src/ui/src/sass/icon-fonts/iconicstroke/iconicstroke.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/src/sass/icon-fonts/iconicstroke/iconicstroke.eot -------------------------------------------------------------------------------- /src/ui/src/sass/icon-fonts/iconicstroke/iconicstroke.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/src/sass/icon-fonts/iconicstroke/iconicstroke.scss -------------------------------------------------------------------------------- /src/ui/src/sass/icon-fonts/iconicstroke/iconicstroke.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/src/sass/icon-fonts/iconicstroke/iconicstroke.svg -------------------------------------------------------------------------------- /src/ui/src/sass/icon-fonts/iconicstroke/iconicstroke.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/src/sass/icon-fonts/iconicstroke/iconicstroke.ttf -------------------------------------------------------------------------------- /src/ui/src/sass/icon-fonts/iconicstroke/iconicstroke.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/src/sass/icon-fonts/iconicstroke/iconicstroke.woff -------------------------------------------------------------------------------- /src/ui/src/sass/icon-fonts/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/src/sass/icon-fonts/index.scss -------------------------------------------------------------------------------- /src/ui/src/sass/icon-fonts/ionicons/ionicons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/src/sass/icon-fonts/ionicons/ionicons.scss -------------------------------------------------------------------------------- /src/ui/src/sass/icon-fonts/maki/maki.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/src/sass/icon-fonts/maki/maki.eot -------------------------------------------------------------------------------- /src/ui/src/sass/icon-fonts/maki/maki.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/src/sass/icon-fonts/maki/maki.scss -------------------------------------------------------------------------------- /src/ui/src/sass/icon-fonts/maki/maki.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/src/sass/icon-fonts/maki/maki.svg -------------------------------------------------------------------------------- /src/ui/src/sass/icon-fonts/maki/maki.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/src/sass/icon-fonts/maki/maki.ttf -------------------------------------------------------------------------------- /src/ui/src/sass/icon-fonts/maki/maki.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/src/sass/icon-fonts/maki/maki.woff -------------------------------------------------------------------------------- /src/ui/src/sass/icon-fonts/openwebicons/openwebicons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/src/sass/icon-fonts/openwebicons/openwebicons.eot -------------------------------------------------------------------------------- /src/ui/src/sass/icon-fonts/openwebicons/openwebicons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/src/sass/icon-fonts/openwebicons/openwebicons.scss -------------------------------------------------------------------------------- /src/ui/src/sass/icon-fonts/openwebicons/openwebicons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/src/sass/icon-fonts/openwebicons/openwebicons.svg -------------------------------------------------------------------------------- /src/ui/src/sass/icon-fonts/openwebicons/openwebicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/src/sass/icon-fonts/openwebicons/openwebicons.ttf -------------------------------------------------------------------------------- /src/ui/src/sass/icon-fonts/openwebicons/openwebicons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/src/sass/icon-fonts/openwebicons/openwebicons.woff -------------------------------------------------------------------------------- /src/ui/src/sass/icon-fonts/typicons/typicons-regular-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/src/sass/icon-fonts/typicons/typicons-regular-webfont.eot -------------------------------------------------------------------------------- /src/ui/src/sass/icon-fonts/typicons/typicons-regular-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/src/sass/icon-fonts/typicons/typicons-regular-webfont.svg -------------------------------------------------------------------------------- /src/ui/src/sass/icon-fonts/typicons/typicons-regular-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/src/sass/icon-fonts/typicons/typicons-regular-webfont.ttf -------------------------------------------------------------------------------- /src/ui/src/sass/icon-fonts/typicons/typicons-regular-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/src/sass/icon-fonts/typicons/typicons-regular-webfont.woff -------------------------------------------------------------------------------- /src/ui/src/sass/icon-fonts/typicons/typicons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/src/sass/icon-fonts/typicons/typicons.scss -------------------------------------------------------------------------------- /src/ui/src/sass/icon-fonts/vuestic-icons/vuestic-icons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/src/sass/icon-fonts/vuestic-icons/vuestic-icons.eot -------------------------------------------------------------------------------- /src/ui/src/sass/icon-fonts/vuestic-icons/vuestic-icons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/src/sass/icon-fonts/vuestic-icons/vuestic-icons.scss -------------------------------------------------------------------------------- /src/ui/src/sass/icon-fonts/vuestic-icons/vuestic-icons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/src/sass/icon-fonts/vuestic-icons/vuestic-icons.svg -------------------------------------------------------------------------------- /src/ui/src/sass/icon-fonts/vuestic-icons/vuestic-icons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/src/sass/icon-fonts/vuestic-icons/vuestic-icons.ttf -------------------------------------------------------------------------------- /src/ui/src/sass/icon-fonts/vuestic-icons/vuestic-icons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/src/sass/icon-fonts/vuestic-icons/vuestic-icons.woff -------------------------------------------------------------------------------- /src/ui/src/sass/icon-fonts/zocial/zocial-regular-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/src/sass/icon-fonts/zocial/zocial-regular-webfont.eot -------------------------------------------------------------------------------- /src/ui/src/sass/icon-fonts/zocial/zocial-regular-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/src/sass/icon-fonts/zocial/zocial-regular-webfont.svg -------------------------------------------------------------------------------- /src/ui/src/sass/icon-fonts/zocial/zocial-regular-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/src/sass/icon-fonts/zocial/zocial-regular-webfont.ttf -------------------------------------------------------------------------------- /src/ui/src/sass/icon-fonts/zocial/zocial-regular-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/src/sass/icon-fonts/zocial/zocial-regular-webfont.woff -------------------------------------------------------------------------------- /src/ui/src/sass/icon-fonts/zocial/zocial.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/src/sass/icon-fonts/zocial/zocial.scss -------------------------------------------------------------------------------- /src/ui/src/sass/main.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/src/sass/main.scss -------------------------------------------------------------------------------- /src/ui/src/sass/vuestic-sass/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/src/sass/vuestic-sass/index.scss -------------------------------------------------------------------------------- /src/ui/src/service-worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/src/service-worker.js -------------------------------------------------------------------------------- /src/ui/src/services/vuestic-ui/components/va-button.ts: -------------------------------------------------------------------------------- 1 | export default { 2 | color: 'primary' 3 | } -------------------------------------------------------------------------------- /src/ui/src/services/vuestic-ui/components/va-icon.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/src/services/vuestic-ui/components/va-icon.ts -------------------------------------------------------------------------------- /src/ui/src/services/vuestic-ui/components/va-toast.ts: -------------------------------------------------------------------------------- 1 | export default { 2 | color: 'primary' 3 | } -------------------------------------------------------------------------------- /src/ui/src/services/vuestic-ui/global-config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/src/services/vuestic-ui/global-config.ts -------------------------------------------------------------------------------- /src/ui/src/services/vuestic-ui/icons-config/aliases.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/src/services/vuestic-ui/icons-config/aliases.ts -------------------------------------------------------------------------------- /src/ui/src/services/vuestic-ui/icons-config/icons-config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/src/services/vuestic-ui/icons-config/icons-config.ts -------------------------------------------------------------------------------- /src/ui/src/services/vuestic-ui/themes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/src/services/vuestic-ui/themes.ts -------------------------------------------------------------------------------- /src/ui/src/shims-vue.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/src/shims-vue.d.ts -------------------------------------------------------------------------------- /src/ui/src/store/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/src/store/index.ts -------------------------------------------------------------------------------- /src/ui/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/tsconfig.json -------------------------------------------------------------------------------- /src/ui/vue.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/vue.config.js -------------------------------------------------------------------------------- /src/ui/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DIMSI-IS/BackROLL/HEAD/src/ui/yarn.lock -------------------------------------------------------------------------------- /test/selenium/main.py: -------------------------------------------------------------------------------- 1 | # UI / Unit tests are planned for future releases --------------------------------------------------------------------------------