├── .gitignore ├── chrome ├── content │ ├── icon.png │ ├── nextcloud.png │ ├── settings.js │ ├── settings.xhtml │ ├── management.xhtml │ └── management.js └── locale │ ├── en │ ├── management.dtd │ └── settings.dtd │ ├── es │ ├── management.dtd │ └── settings.dtd │ ├── pl │ ├── management.dtd │ └── settings.dtd │ ├── de │ ├── management.dtd │ └── settings.dtd │ ├── fr │ ├── management.dtd │ └── settings.dtd │ └── nl │ ├── management.dtd │ └── settings.dtd ├── chrome.manifest ├── install.rdf ├── README.md └── components └── nsOwncloud.js /.gitignore: -------------------------------------------------------------------------------- 1 | /nbproject/ 2 | /build.xml -------------------------------------------------------------------------------- /chrome/content/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillaumev/owncloud_for_filelink/HEAD/chrome/content/icon.png -------------------------------------------------------------------------------- /chrome/content/nextcloud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillaumev/owncloud_for_filelink/HEAD/chrome/content/nextcloud.png -------------------------------------------------------------------------------- /chrome/locale/en/management.dtd: -------------------------------------------------------------------------------- 1 | 5 | 6 | -------------------------------------------------------------------------------- /chrome/locale/es/management.dtd: -------------------------------------------------------------------------------- 1 | 5 | -------------------------------------------------------------------------------- /chrome/locale/pl/management.dtd: -------------------------------------------------------------------------------- 1 | 5 | 6 | -------------------------------------------------------------------------------- /chrome/locale/de/management.dtd: -------------------------------------------------------------------------------- 1 | 5 | 6 | -------------------------------------------------------------------------------- /chrome/locale/fr/management.dtd: -------------------------------------------------------------------------------- 1 | 5 | 6 | -------------------------------------------------------------------------------- /chrome/locale/nl/management.dtd: -------------------------------------------------------------------------------- 1 | 5 | 6 | -------------------------------------------------------------------------------- /chrome.manifest: -------------------------------------------------------------------------------- 1 | content owncloud chrome/content/ 2 | locale owncloud en chrome/locale/en/ 3 | locale owncloud fr chrome/locale/fr/ 4 | locale owncloud pl chrome/locale/pl/ 5 | locale owncloud de chrome/locale/de/ 6 | locale owncloud nl chrome/locale/nl/ 7 | locale owncloud es chrome/locale/es/ 8 | component {ad8c3b77-7dc8-41d1-8985-5be88b254ff3} components/nsOwncloud.js 9 | contract @mozilla.org/mail/owncloud;1 {ad8c3b77-7dc8-41d1-8985-5be88b254ff3} 10 | category cloud-files Owncloud @mozilla.org/mail/owncloud;1 -------------------------------------------------------------------------------- /chrome/locale/en/settings.dtd: -------------------------------------------------------------------------------- 1 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /chrome/content/settings.js: -------------------------------------------------------------------------------- 1 | function extraArgs() { 2 | var serverValue = document.getElementById("server").value; 3 | var storageFolderValue = document.getElementById("storageFolder").value; 4 | var userValue = document.getElementById("username").value; 5 | var protectUploadsValue = document.getElementById("protectUploads").value; 6 | return { 7 | "server": {type: "char", value: serverValue}, 8 | "storageFolder": {type: "char", value: storageFolderValue}, 9 | "username": {type: "char", value: userValue}, 10 | "protectUploads": {type: "char", value: protectUploadsValue}, 11 | }; 12 | } 13 | -------------------------------------------------------------------------------- /chrome/locale/nl/settings.dtd: -------------------------------------------------------------------------------- 1 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /chrome/locale/de/settings.dtd: -------------------------------------------------------------------------------- 1 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /chrome/locale/es/settings.dtd: -------------------------------------------------------------------------------- 1 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /chrome/locale/fr/settings.dtd: -------------------------------------------------------------------------------- 1 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /chrome/locale/pl/settings.dtd: -------------------------------------------------------------------------------- 1 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /install.rdf: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 6 | 7 | owncloud@viguierjust.com 8 | ownCloud for Filelink 9 | 1.4 10 | 2 11 | guillaumev 12 | 13 | ownCloud provider for Filelink 14 | https://github.com/guillaumev/owncloud_for_filelink 15 | chrome://owncloud/content/icon.png 16 | 17 | 18 | 19 | {3550f703-e582-4d05-9a08-453d09bdfdc6} 20 | 17.0 21 | 45.* 22 | 23 | 24 | 25 | 26 | 27 | es 28 | Soporte de ownCloud para Filelink 29 | Añade soporte de ownCloud para la característica Filelink en Thunderbird. 30 | 31 | 32 | 33 | 34 | 35 | -------------------------------------------------------------------------------- /chrome/content/settings.xhtml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | %htmlDTD; 8 | %ocDTD; 9 | ]> 10 | 11 | 12 |