├── .github └── workflows │ └── master.yml ├── .gitignore ├── LICENSE.txt ├── Makefile ├── README.md ├── doc ├── CodingGuidelines.md ├── DeveloperReadme.md ├── assets │ ├── logo.ai │ └── logo_with_name.ai ├── images │ ├── install_1.png │ ├── install_2.png │ └── logo_with_name.png └── licenses │ └── flaticon_license.pdf └── src ├── angular ├── .angular-cli.json ├── .editorconfig ├── .gitignore ├── e2e │ ├── app.e2e-spec.ts │ ├── app.po.ts │ └── tsconfig.e2e.json ├── karma.conf.js ├── package.json ├── protractor.conf.js ├── src │ ├── app │ │ ├── app.module.ts │ │ ├── common │ │ │ ├── _common.scss │ │ │ ├── cached-reuse-strategy.ts │ │ │ ├── capitalize.pipe.ts │ │ │ ├── click-stop-propagation.directive.ts │ │ │ ├── eta.pipe.ts │ │ │ ├── file-size.pipe.ts │ │ │ ├── localization.ts │ │ │ └── storage-keys.ts │ │ ├── pages │ │ │ ├── about │ │ │ │ ├── about-page.component.html │ │ │ │ ├── about-page.component.scss │ │ │ │ └── about-page.component.ts │ │ │ ├── autoqueue │ │ │ │ ├── autoqueue-page.component.html │ │ │ │ ├── autoqueue-page.component.scss │ │ │ │ └── autoqueue-page.component.ts │ │ │ ├── files │ │ │ │ ├── file-list.component.html │ │ │ │ ├── file-list.component.scss │ │ │ │ ├── file-list.component.ts │ │ │ │ ├── file-options.component.html │ │ │ │ ├── file-options.component.scss │ │ │ │ ├── file-options.component.ts │ │ │ │ ├── file.component.html │ │ │ │ ├── file.component.scss │ │ │ │ ├── file.component.ts │ │ │ │ ├── files-page.component.html │ │ │ │ └── files-page.component.ts │ │ │ ├── logs │ │ │ │ ├── logs-page.component.html │ │ │ │ ├── logs-page.component.scss │ │ │ │ └── logs-page.component.ts │ │ │ ├── main │ │ │ │ ├── app.component.html │ │ │ │ ├── app.component.scss │ │ │ │ ├── app.component.ts │ │ │ │ ├── header.component.html │ │ │ │ ├── header.component.scss │ │ │ │ ├── header.component.ts │ │ │ │ ├── sidebar.component.html │ │ │ │ ├── sidebar.component.scss │ │ │ │ └── sidebar.component.ts │ │ │ └── settings │ │ │ │ ├── option.component.html │ │ │ │ ├── option.component.scss │ │ │ │ ├── option.component.ts │ │ │ │ ├── options-list.ts │ │ │ │ ├── settings-page.component.html │ │ │ │ ├── settings-page.component.scss │ │ │ │ └── settings-page.component.ts │ │ ├── routes.ts │ │ ├── services │ │ │ ├── autoqueue │ │ │ │ ├── autoqueue-pattern.ts │ │ │ │ └── autoqueue.service.ts │ │ │ ├── base │ │ │ │ ├── base-stream.service.ts │ │ │ │ ├── base-web.service.ts │ │ │ │ └── stream-service.registry.ts │ │ │ ├── files │ │ │ │ ├── mock-model-files.ts │ │ │ │ ├── model-file.service.ts │ │ │ │ ├── model-file.ts │ │ │ │ ├── screenshot-model-files.ts │ │ │ │ ├── view-file-filter.service.ts │ │ │ │ ├── view-file-options.service.ts │ │ │ │ ├── view-file-options.ts │ │ │ │ ├── view-file-sort.service.ts │ │ │ │ ├── view-file.service.ts │ │ │ │ └── view-file.ts │ │ │ ├── logs │ │ │ │ ├── log-record.ts │ │ │ │ └── log.service.ts │ │ │ ├── server │ │ │ │ ├── server-command.service.ts │ │ │ │ ├── server-status.service.ts │ │ │ │ └── server-status.ts │ │ │ ├── settings │ │ │ │ ├── config.service.ts │ │ │ │ └── config.ts │ │ │ └── utils │ │ │ │ ├── connected.service.ts │ │ │ │ ├── dom.service.ts │ │ │ │ ├── logger.service.ts │ │ │ │ ├── notification.service.ts │ │ │ │ ├── notification.ts │ │ │ │ ├── rest.service.ts │ │ │ │ └── version-check.service.ts │ │ └── tests │ │ │ ├── mocks │ │ │ ├── mock-event-source.ts │ │ │ ├── mock-model-file.service.ts │ │ │ ├── mock-rest.service.ts │ │ │ ├── mock-storage.service.ts │ │ │ ├── mock-stream-service.registry.ts │ │ │ ├── mock-view-file-options.service.ts │ │ │ └── mock-view-file.service.ts │ │ │ └── unittests │ │ │ └── services │ │ │ ├── autoqueue │ │ │ └── autoqueue.service.spec.ts │ │ │ ├── base │ │ │ ├── base-stream.service.spec.ts │ │ │ ├── base-web.service.spec.ts │ │ │ └── stream-service.registry.spec.ts │ │ │ ├── files │ │ │ ├── model-file.service.spec.ts │ │ │ ├── model-file.spec.ts │ │ │ ├── view-file-filter.service.spec.ts │ │ │ ├── view-file-options.service.spec.ts │ │ │ ├── view-file-sort.service.spec.ts │ │ │ └── view-file.service.spec.ts │ │ │ ├── logs │ │ │ ├── log-record.spec.ts │ │ │ └── log.service.spec.ts │ │ │ ├── server │ │ │ ├── server-command.service.spec.ts │ │ │ ├── server-status.service.spec.ts │ │ │ └── server-status.spec.ts │ │ │ ├── settings │ │ │ ├── config.service.spec.ts │ │ │ └── config.spec.ts │ │ │ └── utils │ │ │ ├── connected.service.spec.ts │ │ │ ├── dom.service.spec.ts │ │ │ ├── notification.service.spec.ts │ │ │ ├── rest.service.spec.ts │ │ │ └── version-check.service.spec.ts │ ├── assets │ │ ├── .gitkeep │ │ ├── favicon.png │ │ ├── icons │ │ │ ├── about.svg │ │ │ ├── autoqueue.svg │ │ │ ├── dashboard.svg │ │ │ ├── default-remote.svg │ │ │ ├── delete-local.svg │ │ │ ├── delete-remote.svg │ │ │ ├── deleted.svg │ │ │ ├── directory-archive-light.svg │ │ │ ├── directory-archive.svg │ │ │ ├── directory-light.svg │ │ │ ├── directory.svg │ │ │ ├── downloaded.svg │ │ │ ├── downloading.svg │ │ │ ├── extract.svg │ │ │ ├── extracted.svg │ │ │ ├── extracting.svg │ │ │ ├── file-archive-light.svg │ │ │ ├── file-archive.svg │ │ │ ├── file-light.svg │ │ │ ├── file.svg │ │ │ ├── hamburger.svg │ │ │ ├── logs.svg │ │ │ ├── queue.svg │ │ │ ├── queued.svg │ │ │ ├── refresh.svg │ │ │ ├── search.svg │ │ │ ├── settings.svg │ │ │ ├── sort-asc.svg │ │ │ ├── sort-desc.svg │ │ │ ├── states.svg │ │ │ ├── stop.svg │ │ │ └── stopped.svg │ │ └── logo.png │ ├── environments │ │ ├── environment.prod.ts │ │ └── environment.ts │ ├── index.html │ ├── main.ts │ ├── polyfills.ts │ ├── styles.scss │ ├── test.ts │ ├── tsconfig.app.json │ ├── tsconfig.spec.json │ └── typings.d.ts ├── tsconfig.json └── tslint.json ├── debian ├── changelog ├── compat ├── config ├── control ├── postinst ├── postrm ├── rules ├── seedsync.service ├── source │ └── format └── templates ├── docker ├── build │ ├── deb │ │ ├── Dockerfile │ │ └── Dockerfile.dockerignore │ └── docker-image │ │ ├── Dockerfile │ │ ├── Dockerfile.dockerignore │ │ ├── run_as_user │ │ ├── scp │ │ ├── setup_default_config.sh │ │ └── ssh ├── stage │ ├── deb │ │ ├── Dockerfile │ │ ├── compose-ubu1604.yml │ │ ├── compose-ubu1804.yml │ │ ├── compose-ubu2004.yml │ │ ├── compose.yml │ │ ├── entrypoint.sh │ │ ├── expect_seedsync.exp │ │ ├── id_rsa │ │ ├── id_rsa.pub │ │ ├── install_seedsync.sh │ │ └── ubuntu-systemd │ │ │ ├── ubuntu-16.04-systemd │ │ │ ├── Dockerfile │ │ │ └── setup │ │ │ ├── ubuntu-18.04-systemd │ │ │ ├── Dockerfile │ │ │ └── setup │ │ │ └── ubuntu-20.04-systemd │ │ │ ├── Dockerfile │ │ │ └── setup │ └── docker-image │ │ └── compose.yml ├── test │ ├── angular │ │ ├── Dockerfile │ │ └── compose.yml │ ├── e2e │ │ ├── Dockerfile │ │ ├── chrome │ │ │ └── Dockerfile │ │ ├── compose-dev.yml │ │ ├── compose.yml │ │ ├── configure │ │ │ ├── Dockerfile │ │ │ └── setup_seedsync.sh │ │ ├── parse_seedsync_status.py │ │ ├── remote │ │ │ ├── Dockerfile │ │ │ ├── files │ │ │ │ ├── clients.jpg │ │ │ │ ├── crispycat │ │ │ │ │ └── cat.mp4 │ │ │ │ ├── documentation.png │ │ │ │ ├── goose │ │ │ │ │ └── goose.mp4 │ │ │ │ ├── illusion.jpg │ │ │ │ ├── joke │ │ │ │ │ └── joke.png │ │ │ │ ├── testing.gif │ │ │ │ ├── áßç déÀ.mp4 │ │ │ │ └── üæÒ │ │ │ │ │ └── µ®© ÷úƤ.png │ │ │ └── id_rsa.pub │ │ ├── run_tests.sh │ │ └── urls.ts │ └── python │ │ ├── Dockerfile │ │ ├── compose.yml │ │ └── entrypoint.sh └── wait-for-it.sh ├── e2e ├── .gitignore ├── README.md ├── conf.ts ├── package.json ├── tests │ ├── about.page.spec.ts │ ├── about.page.ts │ ├── app.spec.ts │ ├── app.ts │ ├── autoqueue.page.spec.ts │ ├── autoqueue.page.ts │ ├── dashboard.page.spec.ts │ ├── dashboard.page.ts │ ├── settings.page.spec.ts │ └── settings.page.ts ├── tsconfig.json └── urls.ts ├── pyinstaller_hooks └── hook-patoolib.py └── python ├── __init__.py ├── common ├── __init__.py ├── app_process.py ├── config.py ├── constants.py ├── context.py ├── error.py ├── job.py ├── localization.py ├── multiprocessing_logger.py ├── persist.py ├── status.py └── types.py ├── controller ├── __init__.py ├── auto_queue.py ├── controller.py ├── controller_job.py ├── controller_persist.py ├── delete │ ├── __init__.py │ └── delete_process.py ├── extract │ ├── __init__.py │ ├── dispatch.py │ ├── extract.py │ └── extract_process.py ├── model_builder.py └── scan │ ├── __init__.py │ ├── active_scanner.py │ ├── local_scanner.py │ ├── remote_scanner.py │ └── scanner_process.py ├── docs ├── faq.md ├── images │ ├── favicon.png │ └── logo.png ├── index.md ├── install.md └── usage.md ├── lftp ├── __init__.py ├── job_status.py ├── job_status_parser.py └── lftp.py ├── mkdocs.yml ├── model ├── __init__.py ├── diff.py ├── file.py └── model.py ├── poetry.lock ├── pyproject.toml ├── scan_fs.py ├── seedsync.py ├── ssh ├── __init__.py └── sshcp.py ├── system ├── __init__.py ├── file.py └── scanner.py ├── tests ├── __init__.py ├── integration │ ├── __init__.py │ ├── test_controller │ │ ├── __init__.py │ │ ├── test_controller.py │ │ └── test_extract │ │ │ ├── __init__.py │ │ │ └── test_extract.py │ ├── test_lftp │ │ ├── __init__.py │ │ └── test_lftp.py │ └── test_web │ │ ├── __init__.py │ │ ├── test_handler │ │ ├── __init__.py │ │ ├── test_auto_queue.py │ │ ├── test_config.py │ │ ├── test_controller.py │ │ ├── test_server.py │ │ ├── test_status.py │ │ ├── test_stream_log.py │ │ ├── test_stream_model.py │ │ └── test_stream_status.py │ │ └── test_web_app.py ├── unittests │ ├── __init__.py │ ├── test_common │ │ ├── __init__.py │ │ ├── test_app_process.py │ │ ├── test_config.py │ │ ├── test_job.py │ │ ├── test_multiprocessing_logger.py │ │ ├── test_persist.py │ │ └── test_status.py │ ├── test_controller │ │ ├── __init__.py │ │ ├── test_auto_queue.py │ │ ├── test_controller_persist.py │ │ ├── test_extract │ │ │ ├── __init__.py │ │ │ ├── test_dispatch.py │ │ │ └── test_extract_process.py │ │ ├── test_model_builder.py │ │ └── test_scan │ │ │ ├── __init__.py │ │ │ ├── test_remote_scanner.py │ │ │ └── test_scanner_process.py │ ├── test_lftp │ │ ├── __init__.py │ │ ├── test_job_status.py │ │ ├── test_job_status_parser.py │ │ └── test_lftp.py │ ├── test_model │ │ ├── __init__.py │ │ ├── test_diff.py │ │ ├── test_file.py │ │ └── test_model.py │ ├── test_seedsync.py │ ├── test_ssh │ │ ├── __init__.py │ │ └── test_sshcp.py │ ├── test_system │ │ ├── __init__.py │ │ ├── test_file.py │ │ └── test_scanner.py │ └── test_web │ │ ├── __init__.py │ │ ├── test_handler │ │ └── test_stream_log.py │ │ └── test_serialize │ │ ├── __init__.py │ │ ├── test_serialize.py │ │ ├── test_serialize_auto_queue.py │ │ ├── test_serialize_config.py │ │ ├── test_serialize_log_record.py │ │ ├── test_serialize_model.py │ │ └── test_serialize_status.py └── utils.py └── web ├── __init__.py ├── handler ├── __init__.py ├── auto_queue.py ├── config.py ├── controller.py ├── server.py ├── status.py ├── stream_log.py ├── stream_model.py └── stream_status.py ├── serialize ├── __init__.py ├── serialize.py ├── serialize_auto_queue.py ├── serialize_config.py ├── serialize_log_record.py ├── serialize_model.py └── serialize_status.py ├── utils.py ├── web_app.py ├── web_app_builder.py └── web_app_job.py /.github/workflows/master.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/.github/workflows/master.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/README.md -------------------------------------------------------------------------------- /doc/CodingGuidelines.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/doc/CodingGuidelines.md -------------------------------------------------------------------------------- /doc/DeveloperReadme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/doc/DeveloperReadme.md -------------------------------------------------------------------------------- /doc/assets/logo.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/doc/assets/logo.ai -------------------------------------------------------------------------------- /doc/assets/logo_with_name.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/doc/assets/logo_with_name.ai -------------------------------------------------------------------------------- /doc/images/install_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/doc/images/install_1.png -------------------------------------------------------------------------------- /doc/images/install_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/doc/images/install_2.png -------------------------------------------------------------------------------- /doc/images/logo_with_name.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/doc/images/logo_with_name.png -------------------------------------------------------------------------------- /doc/licenses/flaticon_license.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/doc/licenses/flaticon_license.pdf -------------------------------------------------------------------------------- /src/angular/.angular-cli.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/angular/.angular-cli.json -------------------------------------------------------------------------------- /src/angular/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/angular/.editorconfig -------------------------------------------------------------------------------- /src/angular/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/angular/.gitignore -------------------------------------------------------------------------------- /src/angular/e2e/app.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/angular/e2e/app.e2e-spec.ts -------------------------------------------------------------------------------- /src/angular/e2e/app.po.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/angular/e2e/app.po.ts -------------------------------------------------------------------------------- /src/angular/e2e/tsconfig.e2e.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/angular/e2e/tsconfig.e2e.json -------------------------------------------------------------------------------- /src/angular/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/angular/karma.conf.js -------------------------------------------------------------------------------- /src/angular/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/angular/package.json -------------------------------------------------------------------------------- /src/angular/protractor.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/angular/protractor.conf.js -------------------------------------------------------------------------------- /src/angular/src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/angular/src/app/app.module.ts -------------------------------------------------------------------------------- /src/angular/src/app/common/_common.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/angular/src/app/common/_common.scss -------------------------------------------------------------------------------- /src/angular/src/app/common/cached-reuse-strategy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/angular/src/app/common/cached-reuse-strategy.ts -------------------------------------------------------------------------------- /src/angular/src/app/common/capitalize.pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/angular/src/app/common/capitalize.pipe.ts -------------------------------------------------------------------------------- /src/angular/src/app/common/click-stop-propagation.directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/angular/src/app/common/click-stop-propagation.directive.ts -------------------------------------------------------------------------------- /src/angular/src/app/common/eta.pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/angular/src/app/common/eta.pipe.ts -------------------------------------------------------------------------------- /src/angular/src/app/common/file-size.pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/angular/src/app/common/file-size.pipe.ts -------------------------------------------------------------------------------- /src/angular/src/app/common/localization.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/angular/src/app/common/localization.ts -------------------------------------------------------------------------------- /src/angular/src/app/common/storage-keys.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/angular/src/app/common/storage-keys.ts -------------------------------------------------------------------------------- /src/angular/src/app/pages/about/about-page.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/angular/src/app/pages/about/about-page.component.html -------------------------------------------------------------------------------- /src/angular/src/app/pages/about/about-page.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/angular/src/app/pages/about/about-page.component.scss -------------------------------------------------------------------------------- /src/angular/src/app/pages/about/about-page.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/angular/src/app/pages/about/about-page.component.ts -------------------------------------------------------------------------------- /src/angular/src/app/pages/autoqueue/autoqueue-page.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/angular/src/app/pages/autoqueue/autoqueue-page.component.html -------------------------------------------------------------------------------- /src/angular/src/app/pages/autoqueue/autoqueue-page.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/angular/src/app/pages/autoqueue/autoqueue-page.component.scss -------------------------------------------------------------------------------- /src/angular/src/app/pages/autoqueue/autoqueue-page.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/angular/src/app/pages/autoqueue/autoqueue-page.component.ts -------------------------------------------------------------------------------- /src/angular/src/app/pages/files/file-list.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/angular/src/app/pages/files/file-list.component.html -------------------------------------------------------------------------------- /src/angular/src/app/pages/files/file-list.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/angular/src/app/pages/files/file-list.component.scss -------------------------------------------------------------------------------- /src/angular/src/app/pages/files/file-list.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/angular/src/app/pages/files/file-list.component.ts -------------------------------------------------------------------------------- /src/angular/src/app/pages/files/file-options.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/angular/src/app/pages/files/file-options.component.html -------------------------------------------------------------------------------- /src/angular/src/app/pages/files/file-options.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/angular/src/app/pages/files/file-options.component.scss -------------------------------------------------------------------------------- /src/angular/src/app/pages/files/file-options.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/angular/src/app/pages/files/file-options.component.ts -------------------------------------------------------------------------------- /src/angular/src/app/pages/files/file.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/angular/src/app/pages/files/file.component.html -------------------------------------------------------------------------------- /src/angular/src/app/pages/files/file.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/angular/src/app/pages/files/file.component.scss -------------------------------------------------------------------------------- /src/angular/src/app/pages/files/file.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/angular/src/app/pages/files/file.component.ts -------------------------------------------------------------------------------- /src/angular/src/app/pages/files/files-page.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/angular/src/app/pages/files/files-page.component.html -------------------------------------------------------------------------------- /src/angular/src/app/pages/files/files-page.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/angular/src/app/pages/files/files-page.component.ts -------------------------------------------------------------------------------- /src/angular/src/app/pages/logs/logs-page.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/angular/src/app/pages/logs/logs-page.component.html -------------------------------------------------------------------------------- /src/angular/src/app/pages/logs/logs-page.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/angular/src/app/pages/logs/logs-page.component.scss -------------------------------------------------------------------------------- /src/angular/src/app/pages/logs/logs-page.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/angular/src/app/pages/logs/logs-page.component.ts -------------------------------------------------------------------------------- /src/angular/src/app/pages/main/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/angular/src/app/pages/main/app.component.html -------------------------------------------------------------------------------- /src/angular/src/app/pages/main/app.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/angular/src/app/pages/main/app.component.scss -------------------------------------------------------------------------------- /src/angular/src/app/pages/main/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/angular/src/app/pages/main/app.component.ts -------------------------------------------------------------------------------- /src/angular/src/app/pages/main/header.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/angular/src/app/pages/main/header.component.html -------------------------------------------------------------------------------- /src/angular/src/app/pages/main/header.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/angular/src/app/pages/main/header.component.scss -------------------------------------------------------------------------------- /src/angular/src/app/pages/main/header.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/angular/src/app/pages/main/header.component.ts -------------------------------------------------------------------------------- /src/angular/src/app/pages/main/sidebar.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/angular/src/app/pages/main/sidebar.component.html -------------------------------------------------------------------------------- /src/angular/src/app/pages/main/sidebar.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/angular/src/app/pages/main/sidebar.component.scss -------------------------------------------------------------------------------- /src/angular/src/app/pages/main/sidebar.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/angular/src/app/pages/main/sidebar.component.ts -------------------------------------------------------------------------------- /src/angular/src/app/pages/settings/option.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/angular/src/app/pages/settings/option.component.html -------------------------------------------------------------------------------- /src/angular/src/app/pages/settings/option.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/angular/src/app/pages/settings/option.component.scss -------------------------------------------------------------------------------- /src/angular/src/app/pages/settings/option.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/angular/src/app/pages/settings/option.component.ts -------------------------------------------------------------------------------- /src/angular/src/app/pages/settings/options-list.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/angular/src/app/pages/settings/options-list.ts -------------------------------------------------------------------------------- /src/angular/src/app/pages/settings/settings-page.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/angular/src/app/pages/settings/settings-page.component.html -------------------------------------------------------------------------------- /src/angular/src/app/pages/settings/settings-page.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/angular/src/app/pages/settings/settings-page.component.scss -------------------------------------------------------------------------------- /src/angular/src/app/pages/settings/settings-page.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/angular/src/app/pages/settings/settings-page.component.ts -------------------------------------------------------------------------------- /src/angular/src/app/routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/angular/src/app/routes.ts -------------------------------------------------------------------------------- /src/angular/src/app/services/autoqueue/autoqueue-pattern.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/angular/src/app/services/autoqueue/autoqueue-pattern.ts -------------------------------------------------------------------------------- /src/angular/src/app/services/autoqueue/autoqueue.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/angular/src/app/services/autoqueue/autoqueue.service.ts -------------------------------------------------------------------------------- /src/angular/src/app/services/base/base-stream.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/angular/src/app/services/base/base-stream.service.ts -------------------------------------------------------------------------------- /src/angular/src/app/services/base/base-web.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/angular/src/app/services/base/base-web.service.ts -------------------------------------------------------------------------------- /src/angular/src/app/services/base/stream-service.registry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/angular/src/app/services/base/stream-service.registry.ts -------------------------------------------------------------------------------- /src/angular/src/app/services/files/mock-model-files.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/angular/src/app/services/files/mock-model-files.ts -------------------------------------------------------------------------------- /src/angular/src/app/services/files/model-file.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/angular/src/app/services/files/model-file.service.ts -------------------------------------------------------------------------------- /src/angular/src/app/services/files/model-file.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/angular/src/app/services/files/model-file.ts -------------------------------------------------------------------------------- /src/angular/src/app/services/files/screenshot-model-files.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/angular/src/app/services/files/screenshot-model-files.ts -------------------------------------------------------------------------------- /src/angular/src/app/services/files/view-file-filter.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/angular/src/app/services/files/view-file-filter.service.ts -------------------------------------------------------------------------------- /src/angular/src/app/services/files/view-file-options.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/angular/src/app/services/files/view-file-options.service.ts -------------------------------------------------------------------------------- /src/angular/src/app/services/files/view-file-options.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/angular/src/app/services/files/view-file-options.ts -------------------------------------------------------------------------------- /src/angular/src/app/services/files/view-file-sort.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/angular/src/app/services/files/view-file-sort.service.ts -------------------------------------------------------------------------------- /src/angular/src/app/services/files/view-file.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/angular/src/app/services/files/view-file.service.ts -------------------------------------------------------------------------------- /src/angular/src/app/services/files/view-file.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/angular/src/app/services/files/view-file.ts -------------------------------------------------------------------------------- /src/angular/src/app/services/logs/log-record.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/angular/src/app/services/logs/log-record.ts -------------------------------------------------------------------------------- /src/angular/src/app/services/logs/log.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/angular/src/app/services/logs/log.service.ts -------------------------------------------------------------------------------- /src/angular/src/app/services/server/server-command.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/angular/src/app/services/server/server-command.service.ts -------------------------------------------------------------------------------- /src/angular/src/app/services/server/server-status.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/angular/src/app/services/server/server-status.service.ts -------------------------------------------------------------------------------- /src/angular/src/app/services/server/server-status.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/angular/src/app/services/server/server-status.ts -------------------------------------------------------------------------------- /src/angular/src/app/services/settings/config.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/angular/src/app/services/settings/config.service.ts -------------------------------------------------------------------------------- /src/angular/src/app/services/settings/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/angular/src/app/services/settings/config.ts -------------------------------------------------------------------------------- /src/angular/src/app/services/utils/connected.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/angular/src/app/services/utils/connected.service.ts -------------------------------------------------------------------------------- /src/angular/src/app/services/utils/dom.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/angular/src/app/services/utils/dom.service.ts -------------------------------------------------------------------------------- /src/angular/src/app/services/utils/logger.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/angular/src/app/services/utils/logger.service.ts -------------------------------------------------------------------------------- /src/angular/src/app/services/utils/notification.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/angular/src/app/services/utils/notification.service.ts -------------------------------------------------------------------------------- /src/angular/src/app/services/utils/notification.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/angular/src/app/services/utils/notification.ts -------------------------------------------------------------------------------- /src/angular/src/app/services/utils/rest.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/angular/src/app/services/utils/rest.service.ts -------------------------------------------------------------------------------- /src/angular/src/app/services/utils/version-check.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/angular/src/app/services/utils/version-check.service.ts -------------------------------------------------------------------------------- /src/angular/src/app/tests/mocks/mock-event-source.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/angular/src/app/tests/mocks/mock-event-source.ts -------------------------------------------------------------------------------- /src/angular/src/app/tests/mocks/mock-model-file.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/angular/src/app/tests/mocks/mock-model-file.service.ts -------------------------------------------------------------------------------- /src/angular/src/app/tests/mocks/mock-rest.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/angular/src/app/tests/mocks/mock-rest.service.ts -------------------------------------------------------------------------------- /src/angular/src/app/tests/mocks/mock-storage.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/angular/src/app/tests/mocks/mock-storage.service.ts -------------------------------------------------------------------------------- /src/angular/src/app/tests/mocks/mock-stream-service.registry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/angular/src/app/tests/mocks/mock-stream-service.registry.ts -------------------------------------------------------------------------------- /src/angular/src/app/tests/mocks/mock-view-file-options.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/angular/src/app/tests/mocks/mock-view-file-options.service.ts -------------------------------------------------------------------------------- /src/angular/src/app/tests/mocks/mock-view-file.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/angular/src/app/tests/mocks/mock-view-file.service.ts -------------------------------------------------------------------------------- /src/angular/src/app/tests/unittests/services/autoqueue/autoqueue.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/angular/src/app/tests/unittests/services/autoqueue/autoqueue.service.spec.ts -------------------------------------------------------------------------------- /src/angular/src/app/tests/unittests/services/base/base-stream.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/angular/src/app/tests/unittests/services/base/base-stream.service.spec.ts -------------------------------------------------------------------------------- /src/angular/src/app/tests/unittests/services/base/base-web.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/angular/src/app/tests/unittests/services/base/base-web.service.spec.ts -------------------------------------------------------------------------------- /src/angular/src/app/tests/unittests/services/base/stream-service.registry.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/angular/src/app/tests/unittests/services/base/stream-service.registry.spec.ts -------------------------------------------------------------------------------- /src/angular/src/app/tests/unittests/services/files/model-file.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/angular/src/app/tests/unittests/services/files/model-file.service.spec.ts -------------------------------------------------------------------------------- /src/angular/src/app/tests/unittests/services/files/model-file.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/angular/src/app/tests/unittests/services/files/model-file.spec.ts -------------------------------------------------------------------------------- /src/angular/src/app/tests/unittests/services/files/view-file-filter.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/angular/src/app/tests/unittests/services/files/view-file-filter.service.spec.ts -------------------------------------------------------------------------------- /src/angular/src/app/tests/unittests/services/files/view-file-options.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/angular/src/app/tests/unittests/services/files/view-file-options.service.spec.ts -------------------------------------------------------------------------------- /src/angular/src/app/tests/unittests/services/files/view-file-sort.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/angular/src/app/tests/unittests/services/files/view-file-sort.service.spec.ts -------------------------------------------------------------------------------- /src/angular/src/app/tests/unittests/services/files/view-file.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/angular/src/app/tests/unittests/services/files/view-file.service.spec.ts -------------------------------------------------------------------------------- /src/angular/src/app/tests/unittests/services/logs/log-record.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/angular/src/app/tests/unittests/services/logs/log-record.spec.ts -------------------------------------------------------------------------------- /src/angular/src/app/tests/unittests/services/logs/log.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/angular/src/app/tests/unittests/services/logs/log.service.spec.ts -------------------------------------------------------------------------------- /src/angular/src/app/tests/unittests/services/server/server-command.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/angular/src/app/tests/unittests/services/server/server-command.service.spec.ts -------------------------------------------------------------------------------- /src/angular/src/app/tests/unittests/services/server/server-status.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/angular/src/app/tests/unittests/services/server/server-status.service.spec.ts -------------------------------------------------------------------------------- /src/angular/src/app/tests/unittests/services/server/server-status.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/angular/src/app/tests/unittests/services/server/server-status.spec.ts -------------------------------------------------------------------------------- /src/angular/src/app/tests/unittests/services/settings/config.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/angular/src/app/tests/unittests/services/settings/config.service.spec.ts -------------------------------------------------------------------------------- /src/angular/src/app/tests/unittests/services/settings/config.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/angular/src/app/tests/unittests/services/settings/config.spec.ts -------------------------------------------------------------------------------- /src/angular/src/app/tests/unittests/services/utils/connected.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/angular/src/app/tests/unittests/services/utils/connected.service.spec.ts -------------------------------------------------------------------------------- /src/angular/src/app/tests/unittests/services/utils/dom.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/angular/src/app/tests/unittests/services/utils/dom.service.spec.ts -------------------------------------------------------------------------------- /src/angular/src/app/tests/unittests/services/utils/notification.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/angular/src/app/tests/unittests/services/utils/notification.service.spec.ts -------------------------------------------------------------------------------- /src/angular/src/app/tests/unittests/services/utils/rest.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/angular/src/app/tests/unittests/services/utils/rest.service.spec.ts -------------------------------------------------------------------------------- /src/angular/src/app/tests/unittests/services/utils/version-check.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/angular/src/app/tests/unittests/services/utils/version-check.service.spec.ts -------------------------------------------------------------------------------- /src/angular/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/angular/src/assets/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/angular/src/assets/favicon.png -------------------------------------------------------------------------------- /src/angular/src/assets/icons/about.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/angular/src/assets/icons/about.svg -------------------------------------------------------------------------------- /src/angular/src/assets/icons/autoqueue.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/angular/src/assets/icons/autoqueue.svg -------------------------------------------------------------------------------- /src/angular/src/assets/icons/dashboard.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/angular/src/assets/icons/dashboard.svg -------------------------------------------------------------------------------- /src/angular/src/assets/icons/default-remote.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/angular/src/assets/icons/default-remote.svg -------------------------------------------------------------------------------- /src/angular/src/assets/icons/delete-local.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/angular/src/assets/icons/delete-local.svg -------------------------------------------------------------------------------- /src/angular/src/assets/icons/delete-remote.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/angular/src/assets/icons/delete-remote.svg -------------------------------------------------------------------------------- /src/angular/src/assets/icons/deleted.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/angular/src/assets/icons/deleted.svg -------------------------------------------------------------------------------- /src/angular/src/assets/icons/directory-archive-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/angular/src/assets/icons/directory-archive-light.svg -------------------------------------------------------------------------------- /src/angular/src/assets/icons/directory-archive.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/angular/src/assets/icons/directory-archive.svg -------------------------------------------------------------------------------- /src/angular/src/assets/icons/directory-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/angular/src/assets/icons/directory-light.svg -------------------------------------------------------------------------------- /src/angular/src/assets/icons/directory.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/angular/src/assets/icons/directory.svg -------------------------------------------------------------------------------- /src/angular/src/assets/icons/downloaded.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/angular/src/assets/icons/downloaded.svg -------------------------------------------------------------------------------- /src/angular/src/assets/icons/downloading.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/angular/src/assets/icons/downloading.svg -------------------------------------------------------------------------------- /src/angular/src/assets/icons/extract.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/angular/src/assets/icons/extract.svg -------------------------------------------------------------------------------- /src/angular/src/assets/icons/extracted.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/angular/src/assets/icons/extracted.svg -------------------------------------------------------------------------------- /src/angular/src/assets/icons/extracting.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/angular/src/assets/icons/extracting.svg -------------------------------------------------------------------------------- /src/angular/src/assets/icons/file-archive-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/angular/src/assets/icons/file-archive-light.svg -------------------------------------------------------------------------------- /src/angular/src/assets/icons/file-archive.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/angular/src/assets/icons/file-archive.svg -------------------------------------------------------------------------------- /src/angular/src/assets/icons/file-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/angular/src/assets/icons/file-light.svg -------------------------------------------------------------------------------- /src/angular/src/assets/icons/file.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/angular/src/assets/icons/file.svg -------------------------------------------------------------------------------- /src/angular/src/assets/icons/hamburger.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/angular/src/assets/icons/hamburger.svg -------------------------------------------------------------------------------- /src/angular/src/assets/icons/logs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/angular/src/assets/icons/logs.svg -------------------------------------------------------------------------------- /src/angular/src/assets/icons/queue.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/angular/src/assets/icons/queue.svg -------------------------------------------------------------------------------- /src/angular/src/assets/icons/queued.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/angular/src/assets/icons/queued.svg -------------------------------------------------------------------------------- /src/angular/src/assets/icons/refresh.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/angular/src/assets/icons/refresh.svg -------------------------------------------------------------------------------- /src/angular/src/assets/icons/search.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/angular/src/assets/icons/search.svg -------------------------------------------------------------------------------- /src/angular/src/assets/icons/settings.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/angular/src/assets/icons/settings.svg -------------------------------------------------------------------------------- /src/angular/src/assets/icons/sort-asc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/angular/src/assets/icons/sort-asc.svg -------------------------------------------------------------------------------- /src/angular/src/assets/icons/sort-desc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/angular/src/assets/icons/sort-desc.svg -------------------------------------------------------------------------------- /src/angular/src/assets/icons/states.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/angular/src/assets/icons/states.svg -------------------------------------------------------------------------------- /src/angular/src/assets/icons/stop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/angular/src/assets/icons/stop.svg -------------------------------------------------------------------------------- /src/angular/src/assets/icons/stopped.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/angular/src/assets/icons/stopped.svg -------------------------------------------------------------------------------- /src/angular/src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/angular/src/assets/logo.png -------------------------------------------------------------------------------- /src/angular/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/angular/src/environments/environment.prod.ts -------------------------------------------------------------------------------- /src/angular/src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/angular/src/environments/environment.ts -------------------------------------------------------------------------------- /src/angular/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/angular/src/index.html -------------------------------------------------------------------------------- /src/angular/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/angular/src/main.ts -------------------------------------------------------------------------------- /src/angular/src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/angular/src/polyfills.ts -------------------------------------------------------------------------------- /src/angular/src/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/angular/src/styles.scss -------------------------------------------------------------------------------- /src/angular/src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/angular/src/test.ts -------------------------------------------------------------------------------- /src/angular/src/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/angular/src/tsconfig.app.json -------------------------------------------------------------------------------- /src/angular/src/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/angular/src/tsconfig.spec.json -------------------------------------------------------------------------------- /src/angular/src/typings.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/angular/src/typings.d.ts -------------------------------------------------------------------------------- /src/angular/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/angular/tsconfig.json -------------------------------------------------------------------------------- /src/angular/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/angular/tslint.json -------------------------------------------------------------------------------- /src/debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/debian/changelog -------------------------------------------------------------------------------- /src/debian/compat: -------------------------------------------------------------------------------- 1 | 10 -------------------------------------------------------------------------------- /src/debian/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/debian/config -------------------------------------------------------------------------------- /src/debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/debian/control -------------------------------------------------------------------------------- /src/debian/postinst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/debian/postinst -------------------------------------------------------------------------------- /src/debian/postrm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/debian/postrm -------------------------------------------------------------------------------- /src/debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/debian/rules -------------------------------------------------------------------------------- /src/debian/seedsync.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/debian/seedsync.service -------------------------------------------------------------------------------- /src/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (native) -------------------------------------------------------------------------------- /src/debian/templates: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/debian/templates -------------------------------------------------------------------------------- /src/docker/build/deb/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/docker/build/deb/Dockerfile -------------------------------------------------------------------------------- /src/docker/build/deb/Dockerfile.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/docker/build/deb/Dockerfile.dockerignore -------------------------------------------------------------------------------- /src/docker/build/docker-image/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/docker/build/docker-image/Dockerfile -------------------------------------------------------------------------------- /src/docker/build/docker-image/Dockerfile.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/docker/build/docker-image/Dockerfile.dockerignore -------------------------------------------------------------------------------- /src/docker/build/docker-image/run_as_user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/docker/build/docker-image/run_as_user -------------------------------------------------------------------------------- /src/docker/build/docker-image/scp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/docker/build/docker-image/scp -------------------------------------------------------------------------------- /src/docker/build/docker-image/setup_default_config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/docker/build/docker-image/setup_default_config.sh -------------------------------------------------------------------------------- /src/docker/build/docker-image/ssh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/docker/build/docker-image/ssh -------------------------------------------------------------------------------- /src/docker/stage/deb/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/docker/stage/deb/Dockerfile -------------------------------------------------------------------------------- /src/docker/stage/deb/compose-ubu1604.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/docker/stage/deb/compose-ubu1604.yml -------------------------------------------------------------------------------- /src/docker/stage/deb/compose-ubu1804.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/docker/stage/deb/compose-ubu1804.yml -------------------------------------------------------------------------------- /src/docker/stage/deb/compose-ubu2004.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/docker/stage/deb/compose-ubu2004.yml -------------------------------------------------------------------------------- /src/docker/stage/deb/compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/docker/stage/deb/compose.yml -------------------------------------------------------------------------------- /src/docker/stage/deb/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/docker/stage/deb/entrypoint.sh -------------------------------------------------------------------------------- /src/docker/stage/deb/expect_seedsync.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/docker/stage/deb/expect_seedsync.exp -------------------------------------------------------------------------------- /src/docker/stage/deb/id_rsa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/docker/stage/deb/id_rsa -------------------------------------------------------------------------------- /src/docker/stage/deb/id_rsa.pub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/docker/stage/deb/id_rsa.pub -------------------------------------------------------------------------------- /src/docker/stage/deb/install_seedsync.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | dpkg -i /install/seedsync.deb 3 | -------------------------------------------------------------------------------- /src/docker/stage/deb/ubuntu-systemd/ubuntu-16.04-systemd/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/docker/stage/deb/ubuntu-systemd/ubuntu-16.04-systemd/Dockerfile -------------------------------------------------------------------------------- /src/docker/stage/deb/ubuntu-systemd/ubuntu-16.04-systemd/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/docker/stage/deb/ubuntu-systemd/ubuntu-16.04-systemd/setup -------------------------------------------------------------------------------- /src/docker/stage/deb/ubuntu-systemd/ubuntu-18.04-systemd/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/docker/stage/deb/ubuntu-systemd/ubuntu-18.04-systemd/Dockerfile -------------------------------------------------------------------------------- /src/docker/stage/deb/ubuntu-systemd/ubuntu-18.04-systemd/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/docker/stage/deb/ubuntu-systemd/ubuntu-18.04-systemd/setup -------------------------------------------------------------------------------- /src/docker/stage/deb/ubuntu-systemd/ubuntu-20.04-systemd/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/docker/stage/deb/ubuntu-systemd/ubuntu-20.04-systemd/Dockerfile -------------------------------------------------------------------------------- /src/docker/stage/deb/ubuntu-systemd/ubuntu-20.04-systemd/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/docker/stage/deb/ubuntu-systemd/ubuntu-20.04-systemd/setup -------------------------------------------------------------------------------- /src/docker/stage/docker-image/compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/docker/stage/docker-image/compose.yml -------------------------------------------------------------------------------- /src/docker/test/angular/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/docker/test/angular/Dockerfile -------------------------------------------------------------------------------- /src/docker/test/angular/compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/docker/test/angular/compose.yml -------------------------------------------------------------------------------- /src/docker/test/e2e/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/docker/test/e2e/Dockerfile -------------------------------------------------------------------------------- /src/docker/test/e2e/chrome/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/docker/test/e2e/chrome/Dockerfile -------------------------------------------------------------------------------- /src/docker/test/e2e/compose-dev.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/docker/test/e2e/compose-dev.yml -------------------------------------------------------------------------------- /src/docker/test/e2e/compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/docker/test/e2e/compose.yml -------------------------------------------------------------------------------- /src/docker/test/e2e/configure/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/docker/test/e2e/configure/Dockerfile -------------------------------------------------------------------------------- /src/docker/test/e2e/configure/setup_seedsync.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/docker/test/e2e/configure/setup_seedsync.sh -------------------------------------------------------------------------------- /src/docker/test/e2e/parse_seedsync_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/docker/test/e2e/parse_seedsync_status.py -------------------------------------------------------------------------------- /src/docker/test/e2e/remote/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/docker/test/e2e/remote/Dockerfile -------------------------------------------------------------------------------- /src/docker/test/e2e/remote/files/clients.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/docker/test/e2e/remote/files/clients.jpg -------------------------------------------------------------------------------- /src/docker/test/e2e/remote/files/crispycat/cat.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/docker/test/e2e/remote/files/crispycat/cat.mp4 -------------------------------------------------------------------------------- /src/docker/test/e2e/remote/files/documentation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/docker/test/e2e/remote/files/documentation.png -------------------------------------------------------------------------------- /src/docker/test/e2e/remote/files/goose/goose.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/docker/test/e2e/remote/files/goose/goose.mp4 -------------------------------------------------------------------------------- /src/docker/test/e2e/remote/files/illusion.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/docker/test/e2e/remote/files/illusion.jpg -------------------------------------------------------------------------------- /src/docker/test/e2e/remote/files/joke/joke.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/docker/test/e2e/remote/files/joke/joke.png -------------------------------------------------------------------------------- /src/docker/test/e2e/remote/files/testing.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/docker/test/e2e/remote/files/testing.gif -------------------------------------------------------------------------------- /src/docker/test/e2e/remote/files/áßç déÀ.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/docker/test/e2e/remote/files/áßç déÀ.mp4 -------------------------------------------------------------------------------- /src/docker/test/e2e/remote/files/üæÒ/µ®© ÷úƤ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/docker/test/e2e/remote/files/üæÒ/µ®© ÷úƤ.png -------------------------------------------------------------------------------- /src/docker/test/e2e/remote/id_rsa.pub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/docker/test/e2e/remote/id_rsa.pub -------------------------------------------------------------------------------- /src/docker/test/e2e/run_tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/docker/test/e2e/run_tests.sh -------------------------------------------------------------------------------- /src/docker/test/e2e/urls.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/docker/test/e2e/urls.ts -------------------------------------------------------------------------------- /src/docker/test/python/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/docker/test/python/Dockerfile -------------------------------------------------------------------------------- /src/docker/test/python/compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/docker/test/python/compose.yml -------------------------------------------------------------------------------- /src/docker/test/python/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/docker/test/python/entrypoint.sh -------------------------------------------------------------------------------- /src/docker/wait-for-it.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/docker/wait-for-it.sh -------------------------------------------------------------------------------- /src/e2e/.gitignore: -------------------------------------------------------------------------------- 1 | *.js 2 | node_modules 3 | tmp/ 4 | -------------------------------------------------------------------------------- /src/e2e/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/e2e/README.md -------------------------------------------------------------------------------- /src/e2e/conf.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/e2e/conf.ts -------------------------------------------------------------------------------- /src/e2e/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/e2e/package.json -------------------------------------------------------------------------------- /src/e2e/tests/about.page.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/e2e/tests/about.page.spec.ts -------------------------------------------------------------------------------- /src/e2e/tests/about.page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/e2e/tests/about.page.ts -------------------------------------------------------------------------------- /src/e2e/tests/app.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/e2e/tests/app.spec.ts -------------------------------------------------------------------------------- /src/e2e/tests/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/e2e/tests/app.ts -------------------------------------------------------------------------------- /src/e2e/tests/autoqueue.page.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/e2e/tests/autoqueue.page.spec.ts -------------------------------------------------------------------------------- /src/e2e/tests/autoqueue.page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/e2e/tests/autoqueue.page.ts -------------------------------------------------------------------------------- /src/e2e/tests/dashboard.page.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/e2e/tests/dashboard.page.spec.ts -------------------------------------------------------------------------------- /src/e2e/tests/dashboard.page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/e2e/tests/dashboard.page.ts -------------------------------------------------------------------------------- /src/e2e/tests/settings.page.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/e2e/tests/settings.page.spec.ts -------------------------------------------------------------------------------- /src/e2e/tests/settings.page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/e2e/tests/settings.page.ts -------------------------------------------------------------------------------- /src/e2e/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/e2e/tsconfig.json -------------------------------------------------------------------------------- /src/e2e/urls.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/e2e/urls.ts -------------------------------------------------------------------------------- /src/pyinstaller_hooks/hook-patoolib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/pyinstaller_hooks/hook-patoolib.py -------------------------------------------------------------------------------- /src/python/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/python/common/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/python/common/__init__.py -------------------------------------------------------------------------------- /src/python/common/app_process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/python/common/app_process.py -------------------------------------------------------------------------------- /src/python/common/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/python/common/config.py -------------------------------------------------------------------------------- /src/python/common/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/python/common/constants.py -------------------------------------------------------------------------------- /src/python/common/context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/python/common/context.py -------------------------------------------------------------------------------- /src/python/common/error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/python/common/error.py -------------------------------------------------------------------------------- /src/python/common/job.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/python/common/job.py -------------------------------------------------------------------------------- /src/python/common/localization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/python/common/localization.py -------------------------------------------------------------------------------- /src/python/common/multiprocessing_logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/python/common/multiprocessing_logger.py -------------------------------------------------------------------------------- /src/python/common/persist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/python/common/persist.py -------------------------------------------------------------------------------- /src/python/common/status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/python/common/status.py -------------------------------------------------------------------------------- /src/python/common/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/python/common/types.py -------------------------------------------------------------------------------- /src/python/controller/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/python/controller/__init__.py -------------------------------------------------------------------------------- /src/python/controller/auto_queue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/python/controller/auto_queue.py -------------------------------------------------------------------------------- /src/python/controller/controller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/python/controller/controller.py -------------------------------------------------------------------------------- /src/python/controller/controller_job.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/python/controller/controller_job.py -------------------------------------------------------------------------------- /src/python/controller/controller_persist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/python/controller/controller_persist.py -------------------------------------------------------------------------------- /src/python/controller/delete/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/python/controller/delete/__init__.py -------------------------------------------------------------------------------- /src/python/controller/delete/delete_process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/python/controller/delete/delete_process.py -------------------------------------------------------------------------------- /src/python/controller/extract/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/python/controller/extract/__init__.py -------------------------------------------------------------------------------- /src/python/controller/extract/dispatch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/python/controller/extract/dispatch.py -------------------------------------------------------------------------------- /src/python/controller/extract/extract.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/python/controller/extract/extract.py -------------------------------------------------------------------------------- /src/python/controller/extract/extract_process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/python/controller/extract/extract_process.py -------------------------------------------------------------------------------- /src/python/controller/model_builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/python/controller/model_builder.py -------------------------------------------------------------------------------- /src/python/controller/scan/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/python/controller/scan/__init__.py -------------------------------------------------------------------------------- /src/python/controller/scan/active_scanner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/python/controller/scan/active_scanner.py -------------------------------------------------------------------------------- /src/python/controller/scan/local_scanner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/python/controller/scan/local_scanner.py -------------------------------------------------------------------------------- /src/python/controller/scan/remote_scanner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/python/controller/scan/remote_scanner.py -------------------------------------------------------------------------------- /src/python/controller/scan/scanner_process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/python/controller/scan/scanner_process.py -------------------------------------------------------------------------------- /src/python/docs/faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/python/docs/faq.md -------------------------------------------------------------------------------- /src/python/docs/images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/python/docs/images/favicon.png -------------------------------------------------------------------------------- /src/python/docs/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/python/docs/images/logo.png -------------------------------------------------------------------------------- /src/python/docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/python/docs/index.md -------------------------------------------------------------------------------- /src/python/docs/install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/python/docs/install.md -------------------------------------------------------------------------------- /src/python/docs/usage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/python/docs/usage.md -------------------------------------------------------------------------------- /src/python/lftp/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/python/lftp/__init__.py -------------------------------------------------------------------------------- /src/python/lftp/job_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/python/lftp/job_status.py -------------------------------------------------------------------------------- /src/python/lftp/job_status_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/python/lftp/job_status_parser.py -------------------------------------------------------------------------------- /src/python/lftp/lftp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/python/lftp/lftp.py -------------------------------------------------------------------------------- /src/python/mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/python/mkdocs.yml -------------------------------------------------------------------------------- /src/python/model/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/python/model/__init__.py -------------------------------------------------------------------------------- /src/python/model/diff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/python/model/diff.py -------------------------------------------------------------------------------- /src/python/model/file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/python/model/file.py -------------------------------------------------------------------------------- /src/python/model/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/python/model/model.py -------------------------------------------------------------------------------- /src/python/poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/python/poetry.lock -------------------------------------------------------------------------------- /src/python/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/python/pyproject.toml -------------------------------------------------------------------------------- /src/python/scan_fs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/python/scan_fs.py -------------------------------------------------------------------------------- /src/python/seedsync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/python/seedsync.py -------------------------------------------------------------------------------- /src/python/ssh/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/python/ssh/__init__.py -------------------------------------------------------------------------------- /src/python/ssh/sshcp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/python/ssh/sshcp.py -------------------------------------------------------------------------------- /src/python/system/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/python/system/__init__.py -------------------------------------------------------------------------------- /src/python/system/file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/python/system/file.py -------------------------------------------------------------------------------- /src/python/system/scanner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/python/system/scanner.py -------------------------------------------------------------------------------- /src/python/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/python/tests/integration/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/python/tests/integration/test_controller/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/python/tests/integration/test_controller/test_controller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/python/tests/integration/test_controller/test_controller.py -------------------------------------------------------------------------------- /src/python/tests/integration/test_controller/test_extract/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/python/tests/integration/test_controller/test_extract/test_extract.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/python/tests/integration/test_controller/test_extract/test_extract.py -------------------------------------------------------------------------------- /src/python/tests/integration/test_lftp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/python/tests/integration/test_lftp/test_lftp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/python/tests/integration/test_lftp/test_lftp.py -------------------------------------------------------------------------------- /src/python/tests/integration/test_web/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/python/tests/integration/test_web/test_handler/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/python/tests/integration/test_web/test_handler/test_auto_queue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/python/tests/integration/test_web/test_handler/test_auto_queue.py -------------------------------------------------------------------------------- /src/python/tests/integration/test_web/test_handler/test_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/python/tests/integration/test_web/test_handler/test_config.py -------------------------------------------------------------------------------- /src/python/tests/integration/test_web/test_handler/test_controller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/python/tests/integration/test_web/test_handler/test_controller.py -------------------------------------------------------------------------------- /src/python/tests/integration/test_web/test_handler/test_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/python/tests/integration/test_web/test_handler/test_server.py -------------------------------------------------------------------------------- /src/python/tests/integration/test_web/test_handler/test_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/python/tests/integration/test_web/test_handler/test_status.py -------------------------------------------------------------------------------- /src/python/tests/integration/test_web/test_handler/test_stream_log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/python/tests/integration/test_web/test_handler/test_stream_log.py -------------------------------------------------------------------------------- /src/python/tests/integration/test_web/test_handler/test_stream_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/python/tests/integration/test_web/test_handler/test_stream_model.py -------------------------------------------------------------------------------- /src/python/tests/integration/test_web/test_handler/test_stream_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/python/tests/integration/test_web/test_handler/test_stream_status.py -------------------------------------------------------------------------------- /src/python/tests/integration/test_web/test_web_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/python/tests/integration/test_web/test_web_app.py -------------------------------------------------------------------------------- /src/python/tests/unittests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/python/tests/unittests/test_common/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/python/tests/unittests/test_common/test_app_process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/python/tests/unittests/test_common/test_app_process.py -------------------------------------------------------------------------------- /src/python/tests/unittests/test_common/test_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/python/tests/unittests/test_common/test_config.py -------------------------------------------------------------------------------- /src/python/tests/unittests/test_common/test_job.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/python/tests/unittests/test_common/test_job.py -------------------------------------------------------------------------------- /src/python/tests/unittests/test_common/test_multiprocessing_logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/python/tests/unittests/test_common/test_multiprocessing_logger.py -------------------------------------------------------------------------------- /src/python/tests/unittests/test_common/test_persist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/python/tests/unittests/test_common/test_persist.py -------------------------------------------------------------------------------- /src/python/tests/unittests/test_common/test_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/python/tests/unittests/test_common/test_status.py -------------------------------------------------------------------------------- /src/python/tests/unittests/test_controller/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/python/tests/unittests/test_controller/test_auto_queue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/python/tests/unittests/test_controller/test_auto_queue.py -------------------------------------------------------------------------------- /src/python/tests/unittests/test_controller/test_controller_persist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/python/tests/unittests/test_controller/test_controller_persist.py -------------------------------------------------------------------------------- /src/python/tests/unittests/test_controller/test_extract/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/python/tests/unittests/test_controller/test_extract/test_dispatch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/python/tests/unittests/test_controller/test_extract/test_dispatch.py -------------------------------------------------------------------------------- /src/python/tests/unittests/test_controller/test_extract/test_extract_process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/python/tests/unittests/test_controller/test_extract/test_extract_process.py -------------------------------------------------------------------------------- /src/python/tests/unittests/test_controller/test_model_builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/python/tests/unittests/test_controller/test_model_builder.py -------------------------------------------------------------------------------- /src/python/tests/unittests/test_controller/test_scan/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/python/tests/unittests/test_controller/test_scan/test_remote_scanner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/python/tests/unittests/test_controller/test_scan/test_remote_scanner.py -------------------------------------------------------------------------------- /src/python/tests/unittests/test_controller/test_scan/test_scanner_process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/python/tests/unittests/test_controller/test_scan/test_scanner_process.py -------------------------------------------------------------------------------- /src/python/tests/unittests/test_lftp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/python/tests/unittests/test_lftp/test_job_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/python/tests/unittests/test_lftp/test_job_status.py -------------------------------------------------------------------------------- /src/python/tests/unittests/test_lftp/test_job_status_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/python/tests/unittests/test_lftp/test_job_status_parser.py -------------------------------------------------------------------------------- /src/python/tests/unittests/test_lftp/test_lftp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/python/tests/unittests/test_lftp/test_lftp.py -------------------------------------------------------------------------------- /src/python/tests/unittests/test_model/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/python/tests/unittests/test_model/test_diff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/python/tests/unittests/test_model/test_diff.py -------------------------------------------------------------------------------- /src/python/tests/unittests/test_model/test_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/python/tests/unittests/test_model/test_file.py -------------------------------------------------------------------------------- /src/python/tests/unittests/test_model/test_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/python/tests/unittests/test_model/test_model.py -------------------------------------------------------------------------------- /src/python/tests/unittests/test_seedsync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/python/tests/unittests/test_seedsync.py -------------------------------------------------------------------------------- /src/python/tests/unittests/test_ssh/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/python/tests/unittests/test_ssh/test_sshcp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/python/tests/unittests/test_ssh/test_sshcp.py -------------------------------------------------------------------------------- /src/python/tests/unittests/test_system/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/python/tests/unittests/test_system/test_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/python/tests/unittests/test_system/test_file.py -------------------------------------------------------------------------------- /src/python/tests/unittests/test_system/test_scanner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/python/tests/unittests/test_system/test_scanner.py -------------------------------------------------------------------------------- /src/python/tests/unittests/test_web/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/python/tests/unittests/test_web/test_handler/test_stream_log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/python/tests/unittests/test_web/test_handler/test_stream_log.py -------------------------------------------------------------------------------- /src/python/tests/unittests/test_web/test_serialize/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/python/tests/unittests/test_web/test_serialize/test_serialize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/python/tests/unittests/test_web/test_serialize/test_serialize.py -------------------------------------------------------------------------------- /src/python/tests/unittests/test_web/test_serialize/test_serialize_auto_queue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/python/tests/unittests/test_web/test_serialize/test_serialize_auto_queue.py -------------------------------------------------------------------------------- /src/python/tests/unittests/test_web/test_serialize/test_serialize_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/python/tests/unittests/test_web/test_serialize/test_serialize_config.py -------------------------------------------------------------------------------- /src/python/tests/unittests/test_web/test_serialize/test_serialize_log_record.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/python/tests/unittests/test_web/test_serialize/test_serialize_log_record.py -------------------------------------------------------------------------------- /src/python/tests/unittests/test_web/test_serialize/test_serialize_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/python/tests/unittests/test_web/test_serialize/test_serialize_model.py -------------------------------------------------------------------------------- /src/python/tests/unittests/test_web/test_serialize/test_serialize_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/python/tests/unittests/test_web/test_serialize/test_serialize_status.py -------------------------------------------------------------------------------- /src/python/tests/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/python/tests/utils.py -------------------------------------------------------------------------------- /src/python/web/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/python/web/__init__.py -------------------------------------------------------------------------------- /src/python/web/handler/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/python/web/handler/auto_queue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/python/web/handler/auto_queue.py -------------------------------------------------------------------------------- /src/python/web/handler/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/python/web/handler/config.py -------------------------------------------------------------------------------- /src/python/web/handler/controller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/python/web/handler/controller.py -------------------------------------------------------------------------------- /src/python/web/handler/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/python/web/handler/server.py -------------------------------------------------------------------------------- /src/python/web/handler/status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/python/web/handler/status.py -------------------------------------------------------------------------------- /src/python/web/handler/stream_log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/python/web/handler/stream_log.py -------------------------------------------------------------------------------- /src/python/web/handler/stream_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/python/web/handler/stream_model.py -------------------------------------------------------------------------------- /src/python/web/handler/stream_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/python/web/handler/stream_status.py -------------------------------------------------------------------------------- /src/python/web/serialize/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/python/web/serialize/__init__.py -------------------------------------------------------------------------------- /src/python/web/serialize/serialize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/python/web/serialize/serialize.py -------------------------------------------------------------------------------- /src/python/web/serialize/serialize_auto_queue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/python/web/serialize/serialize_auto_queue.py -------------------------------------------------------------------------------- /src/python/web/serialize/serialize_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/python/web/serialize/serialize_config.py -------------------------------------------------------------------------------- /src/python/web/serialize/serialize_log_record.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/python/web/serialize/serialize_log_record.py -------------------------------------------------------------------------------- /src/python/web/serialize/serialize_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/python/web/serialize/serialize_model.py -------------------------------------------------------------------------------- /src/python/web/serialize/serialize_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/python/web/serialize/serialize_status.py -------------------------------------------------------------------------------- /src/python/web/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/python/web/utils.py -------------------------------------------------------------------------------- /src/python/web/web_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/python/web/web_app.py -------------------------------------------------------------------------------- /src/python/web/web_app_builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/python/web/web_app_builder.py -------------------------------------------------------------------------------- /src/python/web/web_app_job.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipsingh06/seedsync/HEAD/src/python/web/web_app_job.py --------------------------------------------------------------------------------