summaryrefslogtreecommitdiffstats
path: root/apps/files
Commit message (Collapse)AuthorAgeFilesLines
* Do only follow HTTP and HTTPS redirectsLukas Reschke2014-09-231-1/+10
| | | | Backport of #11032 to stable5
* Merge pull request #8298 from owncloud/backport_6290_to_stable5Thomas Müller2014-04-231-6/+1
|\ | | | | Backport #6290 to stable5
| * backport #6290 to stable5Jörn Friedrich Dreyer2014-04-221-6/+1
| |
* | Merge pull request #8115 from owncloud/stable5-fixselectallanddownloadMorris Jobke2014-04-171-1/+2
|\ \ | |/ |/| [stable5] Added missing var that messes up IE8
| * Added missing var that messes up IE8Vincent Petry2014-04-081-1/+2
| |
* | adding the plugin to the server objectThomas Müller2014-04-161-0/+1
| |
* | Merge pull request #8005 from owncloud/files-fixie8uploadVincent Petry2014-04-101-0/+1
|\ \ | |/ |/| [stable5] Added requesttoken back for IE8
| * Added requesttoken back for IE8Vincent Petry2014-04-021-0/+1
| |
* | Revert "remove Sabre_DAV_Browser_Plugin"Thomas Müller2014-04-011-0/+1
| | | | | | | | This reverts commit 997a9ce0b127bbfdc7ea4319cc20a276a6f542b1.
* | don't block php session while download is in progressJörn Friedrich Dreyer2014-03-261-0/+3
| |
* | remove Sabre_DAV_Browser_PluginThomas Müller2014-03-121-1/+0
|/ | | | | Conflicts: apps/files/appinfo/remote.php
* Backported sabre exception loggerVincent Petry2014-02-271-0/+1
| | | | | | | | | | | | | Partial backport of 11ef12a Whenever an exception occurs in the sabre connector code or code called by it, it will be logged. This plugin approach is needed because Sabre already catches exceptions to return them to the client in the XML response, so they don't appear logged in the web server log. This will make it much easier to debug syncing issues.
* Merge pull request #7185 from ↵Jan-Christoph Borchardt2014-02-204-5/+28
|\ | | | | | | | | owncloud/backport_6777_mobile_style_for_public_pages_stable5 initial backport of #6777 - mobile public pages - to stable5
| * fix undefined indexJörn Friedrich Dreyer2014-02-131-0/+1
| |
| * initial backport of #6777 - mobile public pages - to stable5Jörn Friedrich Dreyer2014-02-133-5/+27
| |
* | Merge pull request #6733 from owncloud/stable5-files-filenameescapingfixesLukas Reschke2014-02-204-34/+53
|\ \ | | | | | | [stable5] Backport: Fixed various file name escaping issues in core apps
| * | Fixed various file name escaping issues in core appsVincent Petry2014-01-124-34/+53
| |/ | | | | | | | | | | | | | | | | | | - Refactored file tr lookup into FileList.findFileEl that uses filterAttr to avoid escaping issues in jQuery selectors - Fixed versions and sharing app to properly escape file names in attributes - Prevent uploading file name with invalid characters Backport to stable5 of 1042733
* | Merge pull request #4782 from ↵Vincent Petry2014-02-181-10/+12
|\ \ | |/ |/| | | | | owncloud/tune_legacy_cache_webdav_properties_prefixing Tune legacy cache webdav properties prefixing
| * Concatenate string in SQL instead of PHPJörn Friedrich Dreyer2013-11-011-10/+12
| |
* | it is not possible to unshare files in OC5Bjoern Schiessle2013-12-051-14/+5
| |
* | fixing ajax call to getstoragestats.phpThomas Müller2013-12-021-1/+1
| |
* | use defaults to determine webdav realm nameJörn Friedrich Dreyer2013-11-271-1/+2
| |
* | Fixed storage stats to be based on current directoryVincent Petry2013-11-192-2/+9
| | | | | | | | | | | | | | | | | | | | Previously, the storage statistics were always for the root dir. This means that the upload button would always show the limit for the root dir, even when uploading to a shared dir or external storage. This fix adds a "dir" argument to getstoragestats.php. Partial backport of 31181e4348b9af2625cf4d6ad38cf4cd81db3c1f
* | fixing js error in case the file name is a numberThomas Müller2013-11-181-1/+1
| |
* | backport search scrollto & filter to stable5Jörn Friedrich Dreyer2013-11-183-0/+39
| |
* | Files app backend now normalizes paths before rendering templatesVincent Petry2013-11-152-1/+3
|/ | | | | | | | | | Before rendering breadcrumbs or the file list, the paths are now normalized. This prevents the UI to show "." breadcrumbs in case the path contains sections with "/./" Fixes #5848 Backport of 008c3b80d6cca6a15299afe01f150f075813df8c
* use closest instead of parentJörn Friedrich Dreyer2013-10-311-1/+1
|
* allow dnd into folders starting with whitespaceJörn Friedrich Dreyer2013-10-311-1/+1
|
* Fixed sharing status update for new/uploaded filesVincent Petry2013-10-173-5/+15
| | | | | | | | | | | | | | Creating new files, folders or uploading files now have their sharing icon updated accordingly. For this, the global share status list that is cached in OC.Share.statuses is reused for new files. In OC.Share, split loadIcons into loadIcons + updateIcons. Fixes #4977 Backport of 70c9652cdf6e00f1c62fb9a61d9dd4fb3e2c93c3
* Fixed upload permissions distinction between public and logged in uploadVincent Petry2013-10-171-1/+6
| | | | Backport of 9cfb438ff7fd24ef5c81c4f2e075789d320016e2
* Update file actions for newly created filesVincent Petry2013-10-171-0/+1
| | | | | | | | | The commit d53b603b8259e9c9fe498b4bd50b4dbedc0bf01b for the backport didn't contain code for the case where new files were created. This is because that code already existed in OC6 as part of another fix. This fix adds the missing call to update the file actions for newly created files.
* File actions are now updated after create/upload fileVincent Petry2013-10-141-0/+1
| | | | | | | | The file actions must explicitly be updated by calling FileActions.display() on the file element after creating or uploading a file. Backport of e98ea06890e87a67f2ae501b7daa55882d1d3a03 for #4971 and #4993
* revert backport from here: https://github.com/owncloud/core/pull/5088Bjoern Schiessle2013-10-081-1/+3
| | | | This shouldn't have been backported.
* trash bin button needs to be an input fieldBjoern Schiessle2013-10-071-3/+1
|
* adding comma to get cleaner diffs in the futureThomas Müller2013-09-191-1/+1
|
* no file actions during uploadThomas Müller2013-09-191-1/+0
|
* remove file action elements before recreating themThomas Müller2013-09-191-0/+5
|
* store the permissions retrieved via ajax within the dom elementThomas Müller2013-09-191-0/+6
|
* add permissions of the file to the json responseThomas Müller2013-09-191-1/+2
|
* Workaround for IE 9 & 10 for clicking filelist after adding new itemThomas Müller2013-09-101-1/+4
| | | | manual backport of f4ec5182bdeaa611d13648b50d24f80501d92acd
* Merge pull request #4357 from owncloud/fixing-4341-stable5Thomas Müller2013-08-272-39/+41
|\ | | | | Enable file upload to shared folder with create permission only
| * proper response in case the upload fails - e.g. in case permissions on ↵Thomas Müller2013-08-082-39/+41
| | | | | | | | shared folders are not enough
* | storage information is path specificThomas Müller2013-08-272-2/+2
| |
* | fix #2711 using a custom event, also use css selectors over filterAttrJörn Friedrich Dreyer2013-08-151-2/+3
| |
* | Merge pull request #4361 from ringmaster/fix_4355Thomas Müller2013-08-081-2/+4
|\ \ | |/ |/| Send mime-type for new files
| * Provide a default mime-type for files created by filename.ringmaster2013-08-081-2/+4
| | | | | | | | Fixes #4355.
* | Check expected type after JSON decode instead of checking what is not expected.Andreas Fischer2013-08-081-1/+1
|/ | | | This will also allow "true" and "false" as filenames instead of only "null".
* load authentication apps to get users from other backends like LDAP - THX ↵Thomas Müller2013-08-051-0/+1
| | | | @blizzz
* manual backporting of #4285Thomas Müller2013-08-051-0/+31
|
* Add a CLI script for manually triggering checking a folder for updatesRobin Appelman2013-08-011-0/+22
|