├── .gitignore ├── .gitmodules ├── CHANGELOG ├── LICENSE ├── README.md ├── requirements.txt ├── setup.cfg ├── setup.py └── src └── pydio ├── .gitignore ├── LICENSE ├── README.md ├── __init__.py ├── autostart.py ├── contextual ├── Share with Pydio....workflow │ └── Contents │ │ ├── Info.plist │ │ ├── QuickLook │ │ └── Preview.png │ │ └── document.wflow ├── __init__.py └── macosx_ext.py ├── job ├── EventLogger.py ├── __init__.py ├── change_processor.py ├── change_stores.py ├── change_utils.py ├── continous_merger.py ├── job_config.py ├── local_watcher.py ├── localdb.py └── scheduler.py ├── main.py ├── monkeypatch.py ├── res ├── cacert.pem ├── create.sql └── i18n │ ├── de.po │ ├── de │ └── LC_MESSAGES │ │ └── pydio.mo │ ├── fr.po │ ├── fr │ └── LC_MESSAGES │ │ └── pydio.mo │ ├── html_strings.py │ ├── it.mo │ ├── it.po │ ├── it │ └── LC_MESSAGES │ │ └── pydio.mo │ ├── nl.po │ ├── nl │ └── LC_MESSAGES │ │ └── pydio.mo │ └── pydio.pot ├── sdk └── mock.py ├── sdklocal ├── __init__.py ├── local.py └── tests.py ├── test ├── __init__.py ├── diagnostics.py ├── fs_state_checker.py └── sdktest.py ├── ui ├── __init__.py ├── authdigest.py ├── res │ ├── 01-Connection.html │ ├── 02-Workspace.html │ ├── 03-Advanced.html │ ├── 04-Launcher.html │ ├── about.html │ ├── advanced.html │ ├── angularjs │ │ ├── angular-resource.min.js │ │ ├── angular-route.min.js │ │ ├── angular.min.js │ │ └── progresscircle.js │ ├── bootstrap │ │ ├── css │ │ │ ├── bootstrap-theme.css │ │ │ ├── bootstrap-theme.css.map │ │ │ ├── bootstrap-theme.min.css │ │ │ ├── bootstrap.css │ │ │ ├── bootstrap.css.map │ │ │ ├── bootstrap.min.css │ │ │ ├── bootstrap_lumen.min.css │ │ │ ├── fontfaces.css │ │ │ ├── mdi.css │ │ │ └── pydio.css │ │ ├── fonts │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ ├── mdi │ │ │ │ ├── materialdesignicons-webfont.eot │ │ │ │ ├── materialdesignicons-webfont.ttf │ │ │ │ ├── materialdesignicons-webfont.woff │ │ │ │ └── materialdesignicons-webfont.woff2 │ │ │ └── roboto-font │ │ │ │ ├── Apache.txt │ │ │ │ ├── roboto-light.woff │ │ │ │ ├── roboto-light.woff2 │ │ │ │ ├── roboto-medium.woff │ │ │ │ ├── roboto-medium.woff2 │ │ │ │ ├── roboto.woff │ │ │ │ └── roboto.woff2 │ │ └── js │ │ │ ├── bootstrap.js │ │ │ ├── bootstrap.min.js │ │ │ └── ui-bootstrap-tpls-0.11.0.min.js │ ├── edit_job.html │ ├── feedback.html │ ├── general_configs.html │ ├── i18n.js │ ├── images │ │ ├── ServerURL.png │ │ ├── WelcomeScreen.png │ │ ├── desktop.png │ │ ├── earth.png │ │ ├── logo.png │ │ ├── pydio.png │ │ └── rocket.png │ ├── index.html │ ├── jsstrings.html │ ├── list.html │ ├── logs.html │ ├── moment-with-locales.js │ ├── project.js │ ├── share.html │ ├── share_response.html │ ├── tree_node.html │ └── welcome.html └── web_api.py ├── utils ├── __init__.py ├── arch │ ├── __init__.py │ ├── macos │ │ ├── __init__.py │ │ └── objc_wrapper.py │ └── win │ │ ├── __init__.py │ │ ├── expanduser.py │ │ └── favorites.py ├── check_sqlite.py ├── check_sync.py ├── config_ports.py ├── decompressresp.py ├── favorites_manager.py ├── functions.py ├── global_config.py ├── i18n.py ├── imagen.py └── pydio_profiler.py └── version.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydio/pydio-sync/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydio/pydio-sync/HEAD/.gitmodules -------------------------------------------------------------------------------- /CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydio/pydio-sync/HEAD/CHANGELOG -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydio/pydio-sync/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydio/pydio-sync/HEAD/README.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydio/pydio-sync/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydio/pydio-sync/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydio/pydio-sync/HEAD/setup.py -------------------------------------------------------------------------------- /src/pydio/.gitignore: -------------------------------------------------------------------------------- 1 | data/* 2 | .idea 3 | *.pyc 4 | .DS_Store -------------------------------------------------------------------------------- /src/pydio/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydio/pydio-sync/HEAD/src/pydio/LICENSE -------------------------------------------------------------------------------- /src/pydio/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydio/pydio-sync/HEAD/src/pydio/README.md -------------------------------------------------------------------------------- /src/pydio/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydio/pydio-sync/HEAD/src/pydio/__init__.py -------------------------------------------------------------------------------- /src/pydio/autostart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydio/pydio-sync/HEAD/src/pydio/autostart.py -------------------------------------------------------------------------------- /src/pydio/contextual/Share with Pydio....workflow/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydio/pydio-sync/HEAD/src/pydio/contextual/Share with Pydio....workflow/Contents/Info.plist -------------------------------------------------------------------------------- /src/pydio/contextual/Share with Pydio....workflow/Contents/QuickLook/Preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydio/pydio-sync/HEAD/src/pydio/contextual/Share with Pydio....workflow/Contents/QuickLook/Preview.png -------------------------------------------------------------------------------- /src/pydio/contextual/Share with Pydio....workflow/Contents/document.wflow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydio/pydio-sync/HEAD/src/pydio/contextual/Share with Pydio....workflow/Contents/document.wflow -------------------------------------------------------------------------------- /src/pydio/contextual/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydio/pydio-sync/HEAD/src/pydio/contextual/__init__.py -------------------------------------------------------------------------------- /src/pydio/contextual/macosx_ext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydio/pydio-sync/HEAD/src/pydio/contextual/macosx_ext.py -------------------------------------------------------------------------------- /src/pydio/job/EventLogger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydio/pydio-sync/HEAD/src/pydio/job/EventLogger.py -------------------------------------------------------------------------------- /src/pydio/job/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydio/pydio-sync/HEAD/src/pydio/job/__init__.py -------------------------------------------------------------------------------- /src/pydio/job/change_processor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydio/pydio-sync/HEAD/src/pydio/job/change_processor.py -------------------------------------------------------------------------------- /src/pydio/job/change_stores.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydio/pydio-sync/HEAD/src/pydio/job/change_stores.py -------------------------------------------------------------------------------- /src/pydio/job/change_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydio/pydio-sync/HEAD/src/pydio/job/change_utils.py -------------------------------------------------------------------------------- /src/pydio/job/continous_merger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydio/pydio-sync/HEAD/src/pydio/job/continous_merger.py -------------------------------------------------------------------------------- /src/pydio/job/job_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydio/pydio-sync/HEAD/src/pydio/job/job_config.py -------------------------------------------------------------------------------- /src/pydio/job/local_watcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydio/pydio-sync/HEAD/src/pydio/job/local_watcher.py -------------------------------------------------------------------------------- /src/pydio/job/localdb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydio/pydio-sync/HEAD/src/pydio/job/localdb.py -------------------------------------------------------------------------------- /src/pydio/job/scheduler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydio/pydio-sync/HEAD/src/pydio/job/scheduler.py -------------------------------------------------------------------------------- /src/pydio/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydio/pydio-sync/HEAD/src/pydio/main.py -------------------------------------------------------------------------------- /src/pydio/monkeypatch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydio/pydio-sync/HEAD/src/pydio/monkeypatch.py -------------------------------------------------------------------------------- /src/pydio/res/cacert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydio/pydio-sync/HEAD/src/pydio/res/cacert.pem -------------------------------------------------------------------------------- /src/pydio/res/create.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydio/pydio-sync/HEAD/src/pydio/res/create.sql -------------------------------------------------------------------------------- /src/pydio/res/i18n/de.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydio/pydio-sync/HEAD/src/pydio/res/i18n/de.po -------------------------------------------------------------------------------- /src/pydio/res/i18n/de/LC_MESSAGES/pydio.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydio/pydio-sync/HEAD/src/pydio/res/i18n/de/LC_MESSAGES/pydio.mo -------------------------------------------------------------------------------- /src/pydio/res/i18n/fr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydio/pydio-sync/HEAD/src/pydio/res/i18n/fr.po -------------------------------------------------------------------------------- /src/pydio/res/i18n/fr/LC_MESSAGES/pydio.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydio/pydio-sync/HEAD/src/pydio/res/i18n/fr/LC_MESSAGES/pydio.mo -------------------------------------------------------------------------------- /src/pydio/res/i18n/html_strings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydio/pydio-sync/HEAD/src/pydio/res/i18n/html_strings.py -------------------------------------------------------------------------------- /src/pydio/res/i18n/it.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydio/pydio-sync/HEAD/src/pydio/res/i18n/it.mo -------------------------------------------------------------------------------- /src/pydio/res/i18n/it.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydio/pydio-sync/HEAD/src/pydio/res/i18n/it.po -------------------------------------------------------------------------------- /src/pydio/res/i18n/it/LC_MESSAGES/pydio.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydio/pydio-sync/HEAD/src/pydio/res/i18n/it/LC_MESSAGES/pydio.mo -------------------------------------------------------------------------------- /src/pydio/res/i18n/nl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydio/pydio-sync/HEAD/src/pydio/res/i18n/nl.po -------------------------------------------------------------------------------- /src/pydio/res/i18n/nl/LC_MESSAGES/pydio.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydio/pydio-sync/HEAD/src/pydio/res/i18n/nl/LC_MESSAGES/pydio.mo -------------------------------------------------------------------------------- /src/pydio/res/i18n/pydio.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydio/pydio-sync/HEAD/src/pydio/res/i18n/pydio.pot -------------------------------------------------------------------------------- /src/pydio/sdk/mock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydio/pydio-sync/HEAD/src/pydio/sdk/mock.py -------------------------------------------------------------------------------- /src/pydio/sdklocal/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/pydio/sdklocal/local.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydio/pydio-sync/HEAD/src/pydio/sdklocal/local.py -------------------------------------------------------------------------------- /src/pydio/sdklocal/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydio/pydio-sync/HEAD/src/pydio/sdklocal/tests.py -------------------------------------------------------------------------------- /src/pydio/test/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydio/pydio-sync/HEAD/src/pydio/test/__init__.py -------------------------------------------------------------------------------- /src/pydio/test/diagnostics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydio/pydio-sync/HEAD/src/pydio/test/diagnostics.py -------------------------------------------------------------------------------- /src/pydio/test/fs_state_checker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydio/pydio-sync/HEAD/src/pydio/test/fs_state_checker.py -------------------------------------------------------------------------------- /src/pydio/test/sdktest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydio/pydio-sync/HEAD/src/pydio/test/sdktest.py -------------------------------------------------------------------------------- /src/pydio/ui/__init__.py: -------------------------------------------------------------------------------- 1 | __author__ = 'charles' 2 | -------------------------------------------------------------------------------- /src/pydio/ui/authdigest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydio/pydio-sync/HEAD/src/pydio/ui/authdigest.py -------------------------------------------------------------------------------- /src/pydio/ui/res/01-Connection.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydio/pydio-sync/HEAD/src/pydio/ui/res/01-Connection.html -------------------------------------------------------------------------------- /src/pydio/ui/res/02-Workspace.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydio/pydio-sync/HEAD/src/pydio/ui/res/02-Workspace.html -------------------------------------------------------------------------------- /src/pydio/ui/res/03-Advanced.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydio/pydio-sync/HEAD/src/pydio/ui/res/03-Advanced.html -------------------------------------------------------------------------------- /src/pydio/ui/res/04-Launcher.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydio/pydio-sync/HEAD/src/pydio/ui/res/04-Launcher.html -------------------------------------------------------------------------------- /src/pydio/ui/res/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydio/pydio-sync/HEAD/src/pydio/ui/res/about.html -------------------------------------------------------------------------------- /src/pydio/ui/res/advanced.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydio/pydio-sync/HEAD/src/pydio/ui/res/advanced.html -------------------------------------------------------------------------------- /src/pydio/ui/res/angularjs/angular-resource.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydio/pydio-sync/HEAD/src/pydio/ui/res/angularjs/angular-resource.min.js -------------------------------------------------------------------------------- /src/pydio/ui/res/angularjs/angular-route.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydio/pydio-sync/HEAD/src/pydio/ui/res/angularjs/angular-route.min.js -------------------------------------------------------------------------------- /src/pydio/ui/res/angularjs/angular.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydio/pydio-sync/HEAD/src/pydio/ui/res/angularjs/angular.min.js -------------------------------------------------------------------------------- /src/pydio/ui/res/angularjs/progresscircle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydio/pydio-sync/HEAD/src/pydio/ui/res/angularjs/progresscircle.js -------------------------------------------------------------------------------- /src/pydio/ui/res/bootstrap/css/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydio/pydio-sync/HEAD/src/pydio/ui/res/bootstrap/css/bootstrap-theme.css -------------------------------------------------------------------------------- /src/pydio/ui/res/bootstrap/css/bootstrap-theme.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydio/pydio-sync/HEAD/src/pydio/ui/res/bootstrap/css/bootstrap-theme.css.map -------------------------------------------------------------------------------- /src/pydio/ui/res/bootstrap/css/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydio/pydio-sync/HEAD/src/pydio/ui/res/bootstrap/css/bootstrap-theme.min.css -------------------------------------------------------------------------------- /src/pydio/ui/res/bootstrap/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydio/pydio-sync/HEAD/src/pydio/ui/res/bootstrap/css/bootstrap.css -------------------------------------------------------------------------------- /src/pydio/ui/res/bootstrap/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydio/pydio-sync/HEAD/src/pydio/ui/res/bootstrap/css/bootstrap.css.map -------------------------------------------------------------------------------- /src/pydio/ui/res/bootstrap/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydio/pydio-sync/HEAD/src/pydio/ui/res/bootstrap/css/bootstrap.min.css -------------------------------------------------------------------------------- /src/pydio/ui/res/bootstrap/css/bootstrap_lumen.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydio/pydio-sync/HEAD/src/pydio/ui/res/bootstrap/css/bootstrap_lumen.min.css -------------------------------------------------------------------------------- /src/pydio/ui/res/bootstrap/css/fontfaces.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydio/pydio-sync/HEAD/src/pydio/ui/res/bootstrap/css/fontfaces.css -------------------------------------------------------------------------------- /src/pydio/ui/res/bootstrap/css/mdi.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydio/pydio-sync/HEAD/src/pydio/ui/res/bootstrap/css/mdi.css -------------------------------------------------------------------------------- /src/pydio/ui/res/bootstrap/css/pydio.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydio/pydio-sync/HEAD/src/pydio/ui/res/bootstrap/css/pydio.css -------------------------------------------------------------------------------- /src/pydio/ui/res/bootstrap/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydio/pydio-sync/HEAD/src/pydio/ui/res/bootstrap/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /src/pydio/ui/res/bootstrap/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydio/pydio-sync/HEAD/src/pydio/ui/res/bootstrap/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /src/pydio/ui/res/bootstrap/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydio/pydio-sync/HEAD/src/pydio/ui/res/bootstrap/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /src/pydio/ui/res/bootstrap/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydio/pydio-sync/HEAD/src/pydio/ui/res/bootstrap/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /src/pydio/ui/res/bootstrap/fonts/mdi/materialdesignicons-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydio/pydio-sync/HEAD/src/pydio/ui/res/bootstrap/fonts/mdi/materialdesignicons-webfont.eot -------------------------------------------------------------------------------- /src/pydio/ui/res/bootstrap/fonts/mdi/materialdesignicons-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydio/pydio-sync/HEAD/src/pydio/ui/res/bootstrap/fonts/mdi/materialdesignicons-webfont.ttf -------------------------------------------------------------------------------- /src/pydio/ui/res/bootstrap/fonts/mdi/materialdesignicons-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydio/pydio-sync/HEAD/src/pydio/ui/res/bootstrap/fonts/mdi/materialdesignicons-webfont.woff -------------------------------------------------------------------------------- /src/pydio/ui/res/bootstrap/fonts/mdi/materialdesignicons-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydio/pydio-sync/HEAD/src/pydio/ui/res/bootstrap/fonts/mdi/materialdesignicons-webfont.woff2 -------------------------------------------------------------------------------- /src/pydio/ui/res/bootstrap/fonts/roboto-font/Apache.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydio/pydio-sync/HEAD/src/pydio/ui/res/bootstrap/fonts/roboto-font/Apache.txt -------------------------------------------------------------------------------- /src/pydio/ui/res/bootstrap/fonts/roboto-font/roboto-light.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydio/pydio-sync/HEAD/src/pydio/ui/res/bootstrap/fonts/roboto-font/roboto-light.woff -------------------------------------------------------------------------------- /src/pydio/ui/res/bootstrap/fonts/roboto-font/roboto-light.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydio/pydio-sync/HEAD/src/pydio/ui/res/bootstrap/fonts/roboto-font/roboto-light.woff2 -------------------------------------------------------------------------------- /src/pydio/ui/res/bootstrap/fonts/roboto-font/roboto-medium.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydio/pydio-sync/HEAD/src/pydio/ui/res/bootstrap/fonts/roboto-font/roboto-medium.woff -------------------------------------------------------------------------------- /src/pydio/ui/res/bootstrap/fonts/roboto-font/roboto-medium.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydio/pydio-sync/HEAD/src/pydio/ui/res/bootstrap/fonts/roboto-font/roboto-medium.woff2 -------------------------------------------------------------------------------- /src/pydio/ui/res/bootstrap/fonts/roboto-font/roboto.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydio/pydio-sync/HEAD/src/pydio/ui/res/bootstrap/fonts/roboto-font/roboto.woff -------------------------------------------------------------------------------- /src/pydio/ui/res/bootstrap/fonts/roboto-font/roboto.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydio/pydio-sync/HEAD/src/pydio/ui/res/bootstrap/fonts/roboto-font/roboto.woff2 -------------------------------------------------------------------------------- /src/pydio/ui/res/bootstrap/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydio/pydio-sync/HEAD/src/pydio/ui/res/bootstrap/js/bootstrap.js -------------------------------------------------------------------------------- /src/pydio/ui/res/bootstrap/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydio/pydio-sync/HEAD/src/pydio/ui/res/bootstrap/js/bootstrap.min.js -------------------------------------------------------------------------------- /src/pydio/ui/res/bootstrap/js/ui-bootstrap-tpls-0.11.0.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydio/pydio-sync/HEAD/src/pydio/ui/res/bootstrap/js/ui-bootstrap-tpls-0.11.0.min.js -------------------------------------------------------------------------------- /src/pydio/ui/res/edit_job.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydio/pydio-sync/HEAD/src/pydio/ui/res/edit_job.html -------------------------------------------------------------------------------- /src/pydio/ui/res/feedback.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydio/pydio-sync/HEAD/src/pydio/ui/res/feedback.html -------------------------------------------------------------------------------- /src/pydio/ui/res/general_configs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydio/pydio-sync/HEAD/src/pydio/ui/res/general_configs.html -------------------------------------------------------------------------------- /src/pydio/ui/res/i18n.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydio/pydio-sync/HEAD/src/pydio/ui/res/i18n.js -------------------------------------------------------------------------------- /src/pydio/ui/res/images/ServerURL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydio/pydio-sync/HEAD/src/pydio/ui/res/images/ServerURL.png -------------------------------------------------------------------------------- /src/pydio/ui/res/images/WelcomeScreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydio/pydio-sync/HEAD/src/pydio/ui/res/images/WelcomeScreen.png -------------------------------------------------------------------------------- /src/pydio/ui/res/images/desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydio/pydio-sync/HEAD/src/pydio/ui/res/images/desktop.png -------------------------------------------------------------------------------- /src/pydio/ui/res/images/earth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydio/pydio-sync/HEAD/src/pydio/ui/res/images/earth.png -------------------------------------------------------------------------------- /src/pydio/ui/res/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydio/pydio-sync/HEAD/src/pydio/ui/res/images/logo.png -------------------------------------------------------------------------------- /src/pydio/ui/res/images/pydio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydio/pydio-sync/HEAD/src/pydio/ui/res/images/pydio.png -------------------------------------------------------------------------------- /src/pydio/ui/res/images/rocket.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydio/pydio-sync/HEAD/src/pydio/ui/res/images/rocket.png -------------------------------------------------------------------------------- /src/pydio/ui/res/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydio/pydio-sync/HEAD/src/pydio/ui/res/index.html -------------------------------------------------------------------------------- /src/pydio/ui/res/jsstrings.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydio/pydio-sync/HEAD/src/pydio/ui/res/jsstrings.html -------------------------------------------------------------------------------- /src/pydio/ui/res/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydio/pydio-sync/HEAD/src/pydio/ui/res/list.html -------------------------------------------------------------------------------- /src/pydio/ui/res/logs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydio/pydio-sync/HEAD/src/pydio/ui/res/logs.html -------------------------------------------------------------------------------- /src/pydio/ui/res/moment-with-locales.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydio/pydio-sync/HEAD/src/pydio/ui/res/moment-with-locales.js -------------------------------------------------------------------------------- /src/pydio/ui/res/project.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydio/pydio-sync/HEAD/src/pydio/ui/res/project.js -------------------------------------------------------------------------------- /src/pydio/ui/res/share.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydio/pydio-sync/HEAD/src/pydio/ui/res/share.html -------------------------------------------------------------------------------- /src/pydio/ui/res/share_response.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydio/pydio-sync/HEAD/src/pydio/ui/res/share_response.html -------------------------------------------------------------------------------- /src/pydio/ui/res/tree_node.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydio/pydio-sync/HEAD/src/pydio/ui/res/tree_node.html -------------------------------------------------------------------------------- /src/pydio/ui/res/welcome.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydio/pydio-sync/HEAD/src/pydio/ui/res/welcome.html -------------------------------------------------------------------------------- /src/pydio/ui/web_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydio/pydio-sync/HEAD/src/pydio/ui/web_api.py -------------------------------------------------------------------------------- /src/pydio/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydio/pydio-sync/HEAD/src/pydio/utils/__init__.py -------------------------------------------------------------------------------- /src/pydio/utils/arch/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydio/pydio-sync/HEAD/src/pydio/utils/arch/__init__.py -------------------------------------------------------------------------------- /src/pydio/utils/arch/macos/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydio/pydio-sync/HEAD/src/pydio/utils/arch/macos/__init__.py -------------------------------------------------------------------------------- /src/pydio/utils/arch/macos/objc_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydio/pydio-sync/HEAD/src/pydio/utils/arch/macos/objc_wrapper.py -------------------------------------------------------------------------------- /src/pydio/utils/arch/win/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydio/pydio-sync/HEAD/src/pydio/utils/arch/win/__init__.py -------------------------------------------------------------------------------- /src/pydio/utils/arch/win/expanduser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydio/pydio-sync/HEAD/src/pydio/utils/arch/win/expanduser.py -------------------------------------------------------------------------------- /src/pydio/utils/arch/win/favorites.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydio/pydio-sync/HEAD/src/pydio/utils/arch/win/favorites.py -------------------------------------------------------------------------------- /src/pydio/utils/check_sqlite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydio/pydio-sync/HEAD/src/pydio/utils/check_sqlite.py -------------------------------------------------------------------------------- /src/pydio/utils/check_sync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydio/pydio-sync/HEAD/src/pydio/utils/check_sync.py -------------------------------------------------------------------------------- /src/pydio/utils/config_ports.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydio/pydio-sync/HEAD/src/pydio/utils/config_ports.py -------------------------------------------------------------------------------- /src/pydio/utils/decompressresp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydio/pydio-sync/HEAD/src/pydio/utils/decompressresp.py -------------------------------------------------------------------------------- /src/pydio/utils/favorites_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydio/pydio-sync/HEAD/src/pydio/utils/favorites_manager.py -------------------------------------------------------------------------------- /src/pydio/utils/functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydio/pydio-sync/HEAD/src/pydio/utils/functions.py -------------------------------------------------------------------------------- /src/pydio/utils/global_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydio/pydio-sync/HEAD/src/pydio/utils/global_config.py -------------------------------------------------------------------------------- /src/pydio/utils/i18n.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydio/pydio-sync/HEAD/src/pydio/utils/i18n.py -------------------------------------------------------------------------------- /src/pydio/utils/imagen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydio/pydio-sync/HEAD/src/pydio/utils/imagen.py -------------------------------------------------------------------------------- /src/pydio/utils/pydio_profiler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydio/pydio-sync/HEAD/src/pydio/utils/pydio_profiler.py -------------------------------------------------------------------------------- /src/pydio/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydio/pydio-sync/HEAD/src/pydio/version.py --------------------------------------------------------------------------------