Files
gajim-plugins/plugin_installer/remote.py
Philipp Hörist b6457f0e69 [plugin_installer] Rewrite plugin
- Use libsoup for HTTP operations
- Add new config dialog
- Move code into smaller modules
2020-01-01 10:01:08 +01:00

9 lines
270 B
Python

# File which defines all remote URLs
server = 'https://ftp.gajim.org'
directory = 'plugins_master_zip'
PLUGINS_DIR_URL = '%s/%s' % (server, directory)
MANIFEST_URL = '%s/manifests.zip' % PLUGINS_DIR_URL
MANIFEST_IMAGE_URL = '%s/manifests_images.zip' % PLUGINS_DIR_URL