Remove deprecated and unused fileDownloadPath

Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
This commit is contained in:
Christoph Wurst 2018-10-08 16:46:36 +02:00
parent 8110a3be69
commit 576e44f890
No known key found for this signature in database
GPG Key ID: CC42AC2A7F0E56D8
2 changed files with 0 additions and 16 deletions

View File

@ -506,10 +506,5 @@ var folderDropOptions = {
tolerance: 'pointer'
};
// override core's fileDownloadPath (legacy)
function fileDownloadPath(dir, file) {
return OCA.Files.Files.getDownloadUrl(file, dir);
}
// for backward compatibility
window.Files = OCA.Files.Files;

View File

@ -46,17 +46,6 @@ function escapeHTML(s) {
return s.toString().split('&').join('&amp;').split('<').join('&lt;').split('>').join('&gt;').split('"').join('&quot;').split('\'').join('&#039;');
}
/**
* Get the path to download a file
* @param {string} file The filename
* @param {string} dir The directory the file is in - e.g. $('#dir').val()
* @return {string} Path to download the file
* @deprecated use Files.getDownloadURL() instead
*/
function fileDownloadPath(dir, file) {
return OC.filePath('files', 'ajax', 'download.php')+'?files='+encodeURIComponent(file)+'&dir='+encodeURIComponent(dir);
}
/** @namespace */
var OCP = {},
OC = {