summaryrefslogtreecommitdiffstats
path: root/apps/files/lib
Commit message (Collapse)AuthorAgeFilesLines
* Cleanup job for system and user tag orphaned when file was deletedVincent Petry2016-01-291-0/+105
| | | | | | | Whenever a file was deleted (also from trash), the tag mapping is pointing at a fileid that doesn't exist any more. This cleanup job will delete such orphaned mapping entries.
* Happy new year!Thomas Müller2016-01-126-9/+9
|
* Removed deprecated OC_Helper::mimeTypeIcon functionRoeland Jago Douma2015-12-181-4/+4
|
* Merge pull request #20545 from owncloud/scan-storage-in-background-jobThomas Müller2015-12-031-0/+114
|\ | | | | Move files/ajax/scan.php to background job
| * Move files/ajax/scan.php to background jobLukas Reschke2015-11-281-0/+114
| | | | | | | | The background job will now be executed in chunks of 500 users all 10 minutes.
* | Scrutinizer Auto-FixesScrutinizer Auto-Fixer2015-11-301-2/+2
| | | | | | | | This commit consists of patches automatically generated for this project on https://scrutinizer-ci.com
* | Inject the database connectionJoas Schilling2015-11-301-2/+8
| |
* | Only require the interfaceJoas Schilling2015-11-301-4/+4
| |
* | Correctly escape the paths so we only display favorites instead of wildcardsJoas Schilling2015-11-301-1/+1
| |
* | Oracle can not return statements but only valuesJoas Schilling2015-11-301-3/+6
|/ | | | So evaluate the condition directly and return 1 or 0
* Make files app use Webdav for most operationsVincent Petry2015-11-222-90/+1
|
* Update license headersLukas Reschke2015-10-261-1/+1
|
* Do not calculate non essential infoRoeland Jago Douma2015-10-131-2/+0
| | | | | | | | | | | | | There is no need to calculate a human readable date on the server side. We supply the mtime and a client can easily convert that himself if needed. This is already done most of the time since the date is often not in the exact right format. There is also no need to attach icon info. We have that available in javascript. And else the client should get the right icon based on the mimetype for its platform. * Updated tests
* Use shorter text on the sidebar for files activitiesJoas Schilling2015-10-021-0/+38
|
* Merge pull request #18171 from ↵Morris Jobke2015-08-111-9/+10
|\ | | | | | | | | owncloud/fix-language-of-files-activities-in-emails Correctly make use of the languageCode argument in the files activity extension
| * Correctly make use of the languageCode argument in the files activity extensionJoas Schilling2015-08-101-9/+10
| |
* | Merge pull request #16528 from owncloud/activity-302-improve-settingsJoas Schilling2015-08-111-12/+20
|\ \ | | | | | | Activity 302 improve settings
| * | Do not use magic strings when there are constants for itJoas Schilling2015-07-221-10/+11
| | |
| * | Make the favorite type stream onlyJoas Schilling2015-07-221-2/+9
| |/
* / Moved core apps to the capabilities managerRoeland Jago Douma2015-08-101-14/+23
|/ | | | | | | * Files * Files_Sharing * Files_Trashbin * Files_Versions
* Add owner to the storage stats to enable better notificationsMorris Jobke2015-06-051-1/+3
| | | | | * getstoragestats.php returns now the owner and it's display name * show proper storage stats notifications for shared folders
* Check target name on rename with web UIVincent Petry2015-05-291-0/+11
| | | | | | | | When renaming over the web UI, check early that the target name is valid. This prevents nonsensical error messages when renaming to a name with a trailing backslash.
* fix filepickerMorris Jobke2015-04-131-2/+3
| | | | | | * add ability to filter for mimetype * fixes #15526 * fixes #11563
* Make scrutinizer happyJoas Schilling2015-04-011-1/+1
|
* Adjust by/self filter aswell and fix testsJoas Schilling2015-03-311-1/+1
|
* DeMorgan applied the wrong transformationJoas Schilling2015-03-311-2/+1
|
* Move tag related code into a helper so we can test the query without a viewJoas Schilling2015-03-302-35/+116
|
* Use DI for the objects where possibleJoas Schilling2015-03-301-6/+23
|
* Add a filter for favorites and allow limiting the all-list to favoritesJoas Schilling2015-03-301-2/+69
| | | | | WARNING: do not use this, when you have a lot of favorites, ~50 should be the limit
* Update license headersJenkins for ownCloud2015-03-264-27/+76
|
* Revert "Updating license headers"Morris Jobke2015-02-264-73/+32
| | | | This reverts commit 6a1a4880f0d556fb090f19a5019fec31916f5c36.
* Updating license headersJenkins for ownCloud2015-02-234-32/+73
|
* Move displaying of files related activities to files appJoas Schilling2015-02-131-0/+278
|
* Catch exception properlyLukas Reschke2015-02-041-7/+12
| | | | | | `\OCA\Files\Helper::buildFileStorageStatistics` might throw an exception from `OC_Helper::getStorageInfo`, previously this lead to a uncatched exception being thrown when invoking this methods. This was user triggable by for example calling `/index.php/apps/files/ajax/delete.php` with a not existing dir (for example `dir=asdf/../&allfiles=true`)
* Fix PHP doc and enforce typeLukas Reschke2015-01-131-3/+3
|
* Return path attribute for ajax rename operationsVincent Petry2015-01-121-0/+1
| | | | | | | This fixes an issue when renaming files from a flat list view like "Favorites" or "Shared with you", in which case the path needs to be present in the response to make sure the data-path attribute is properly set in the JS side.
* Return tags after renameVincent Petry2015-01-121-2/+3
| | | | | | To make it possible for the web UI to correctly display the tag/favorite information after a rename, this information is now returned in the rename response
* Only populate tags in main file listVincent Petry2014-12-181-1/+0
| | | | | | Moved populateTags to be done on the main file list. This prevents the public file list to go through the same code and cause an error when there is no user.
* Added favorites feature to the files appVincent Petry2014-12-151-0/+25
|
* Merge remote-tracking branch 'upstream/master'brumsel2014-12-032-5/+7
|\
| * Only show undelete capability if files_trashbin is enabledLukas Reschke2014-11-181-1/+0
| | | | | | | | Fixes the OCS capability API at /ocs/v1.php/cloud/capabilities
| * Add type hinting to functionsLukas Reschke2014-10-241-4/+7
| | | | | | | | It's only reasonable to have proper type hinting here which might even help us to catch bugs.
* | Fix timestamp comparator return valuebrumsoel2014-10-081-1/+1
|/
* Fix file size comparator return valuebrumsoel2014-10-081-1/+1
|
* Merge pull request #7254 from owncloud/core-sortalgoLukas Reschke2014-09-161-1/+1
|\ | | | | Fixed JS sort comparator to be consistent between JS and PHP
| * Fixed file list sortingVincent Petry2014-08-111-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | Now using a natural sort algorithm that is more consistent between JS and PHP (although not perfect in some corner cases) - added OC.Util.naturalSortComparator that uses the same algo that was used for the user list - changed user list and files list to use OC.Util.naturalSortComparator - removed toLowerCase() and changed the comparator to use String.localeCompare() - added unit tests - added OC_NaturalSort that is used by OCP\Util::naturalSortCompare()
* | Show original path information in trashbin and sharing viewsRobin McCorkell2014-09-111-0/+3
| | | | | | | | Path will only be shown if in subdirectory, not in root.
* | add error message if user wants to rename a file which no longer existsBjoern Schiessle2014-08-111-4/+14
|/
* Use svg mimeicons for empty text filesRobin Appelman2014-07-301-2/+2
|
* Added mountType attribute and adapted Delete action textVincent Petry2014-07-141-0/+13
| | | | | | | | | | | | | | Added mountType attribute for files/folder to indicated whether they are regular, external or shared. The client side then adapts the "Delete" action hint text based on this information. Only the mount roots must have the delete icon hint adapted. To make this detectable on the client side, the mountType can now be null, "shared", "shared-root", "external" or "external-root". This also gives room to icon customization on the client side.