aboutsummaryrefslogtreecommitdiffstats
path: root/apps/files
Commit message (Collapse)AuthorAgeFilesLines
* correct progress-icon to icon-loading-smallJan-Christoph Borchardt2014-09-222-6/+6
|
* correct delete-icon to icon-delete, fix #11128Jan-Christoph Borchardt2014-09-223-7/+7
|
* [tx-robot] updated from transifexJenkins for ownCloud2014-09-202-1/+5
|
* Merge pull request #11171 from owncloud/fix-routeLukas Reschke2014-09-191-1/+1
|\ | | | | Match more URL fragments
| * Match more URL fragmentsLukas Reschke2014-09-181-1/+1
| | | | | | | | Fixes https://github.com/owncloud/core/pull/11009#issuecomment-56103341
* | [tx-robot] updated from transifexJenkins for ownCloud2014-09-193-14/+16
|/
* [tx-robot] updated from transifexJenkins for ownCloud2014-09-181-0/+4
|
* Merge pull request #11105 from owncloud/jsunit-legacyfileactionsfixLukas Reschke2014-09-171-0/+4
|\ | | | | Tentative fix for legacy file actions unit test side effect
| * Tentative fix for legacy file actions unit test side effectVincent Petry2014-09-161-0/+4
| | | | | | | | | | | | | | Sometimes the JS unit test with legacy file actions fail. This fix runs the legacy file actions tests on a dummy instead of the real one.
* | [tx-robot] updated from transifexJenkins for ownCloud2014-09-174-2/+7
| |
* | Merge pull request #10902 from owncloud/fix-ellepsisLukas Reschke2014-09-161-0/+2
|\ \ | | | | | | Adding link to ellipsis and fixing styling
| * | Adding link to ellipsis and fixing stylingClark Tomlinson2014-09-161-0/+2
| | |
* | | Merge pull request #11009 from owncloud/tobiasKaminsky-routeLukas Reschke2014-09-163-2/+93
|\ \ \ | | | | | | | | REST API for thumbnails
| * | | Route for thumbnail generationtobiasKaminsky2014-09-163-2/+93
| | |/ | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Thumbnail generation Removed Log Added requested changes Added requested changes. - Fix code style - Add exception if file does not exist - Switch route styling Replaces https://github.com/owncloud/core/pull/10805 Fix codestyle Fix codestyle Migrate to appframework Fix typo
* | | Merge pull request #7254 from owncloud/core-sortalgoLukas Reschke2014-09-162-2/+2
|\ \ \ | |/ / |/| | Fixed JS sort comparator to be consistent between JS and PHP
| * | Fixed file list sortingVincent Petry2014-08-112-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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()
* | | Merge pull request #10663 from owncloud/files_trashbin_original_pathMorris Jobke2014-09-162-0/+9
|\ \ \ | | | | | | | | Show original path information in trashbin and for shares
| * | | Show original path information in trashbin and sharing viewsRobin McCorkell2014-09-112-0/+9
| | | | | | | | | | | | | | | | Path will only be shown if in subdirectory, not in root.
* | | | [tx-robot] updated from transifexJenkins for ownCloud2014-09-162-0/+2
| | | |
* | | | Merge pull request #11060 from owncloud/rmobslangLukas Reschke2014-09-152-14/+0
|\ \ \ \ | | | | | | | | | | remove obsolete language files
| * | | | remove obsolete language filesVolkan Gezer2014-09-132-14/+0
| | | | |
* | | | | [tx-robot] updated from transifexJenkins for ownCloud2014-09-141-0/+1
|/ / / /
* | | | [tx-robot] updated from transifexJenkins for ownCloud2014-09-131-0/+1
| | | |
* | | | [tx-robot] updated from transifexJenkins for ownCloud2014-09-121-0/+3
|/ / /
* | | [tx-robot] updated from transifexJenkins for ownCloud2014-09-112-30/+90
| | |
* | | [tx-robot] updated from transifexJenkins for ownCloud2014-09-1012-0/+12
| | |
* | | Merge pull request #10922 from owncloud/explicit-scan-transactionsLukas Reschke2014-09-092-2/+2
|\ \ \ | | | | | | | | Use bigger transactions when doing explicit file system scans
| * | | Use bigger transactions when doing explicit file system scansRobin Appelman2014-09-082-2/+2
| | | |
* | | | [tx-robot] updated from transifexJenkins for ownCloud2014-09-0936-36/+36
| | | |
* | | | Merge pull request #10739 from owncloud/eventsource-publicLukas Reschke2014-09-082-4/+4
|\ \ \ \ | | | | | | | | | | Add EventSource to the public API
| * | | | Better phpdoc and method namingRobin Appelman2014-09-042-2/+2
| | | | |
| * | | | Use the public api to get event sourcesRobin Appelman2014-09-032-4/+4
| | | | |
* | | | | Use secure mimetype for content deliveryLukas Reschke2014-09-081-1/+1
| | | | | | | | | | | | | | | | | | | | Adds some hardening against potential CSP bypassed.
* | | | | Merge pull request #10891 from owncloud/files-moveoperationcatchexceptionVincent Petry2014-09-081-4/+10
|\ \ \ \ \ | |_|/ / / |/| | | | Catch exceptions when moving files
| * | | | Catch exceptions when moving filesVincent Petry2014-09-051-4/+10
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | When moving files on storages that don't expose permissions, the storage itself might throw an exception when the permission is denied. This fix ensures that exceptions are caught and forwarded to the client instead of just hanging.
* | | | | [tx-robot] updated from transifexJenkins for ownCloud2014-09-073-1/+5
| | | | |
* | | | | [tx-robot] updated from transifexJenkins for ownCloud2014-09-062-7/+7
| |_|_|/ |/| | |
* | | | Merge pull request #10860 from owncloud/scrolltofixClark Tomlinson2014-09-053-27/+46
|\ \ \ \ | | | | | | | | | | Scroll to file on search or add
| * | | | Scroll to new file/folder after addingVincent Petry2014-09-042-5/+10
| | | | | | | | | | | | | | | | | | | | | | | | | When creating a new file from the menu, the list now scrolls to that file.
| * | | | Fixed scrollto for search resultsVincent Petry2014-09-042-22/+36
| |/ / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | Now passing the "scrollto" URL argument to the file list class which will also automatically scroll and highlight the matching element. This code is triggered by the search box when in a different folder and also by the activity app.
* | | | Merge pull request #10870 from owncloud/dnd-droponreadonlyfolderfixVincent Petry2014-09-053-2/+35
|\ \ \ \ | | | | | | | | | | Added permission check for drag and drop
| * | | | Added permission check for drag and dropVincent Petry2014-09-043-2/+35
| |/ / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | When dropping files onto a read-only folder, a notification is now shown instead of attempting to upload. This for both the drag for upload and drag from inside the file list cases.
* / / / [tx-robot] updated from transifexJenkins for ownCloud2014-09-051-0/+1
|/ / /
* / / Highlight every uploaded files and scroll down to the last onepdessauw2014-09-033-0/+82
|/ /
* | [tx-robot] updated from transifexJenkins for ownCloud2014-09-031-0/+3
| |
* | [tx-robot] updated from transifexJenkins for ownCloud2014-09-022-0/+2
| |
* | [tx-robot] updated from transifexJenkins for ownCloud2014-09-012-0/+14
| |
* | Use public api for getting l10nRobin Appelman2014-08-317-7/+7
| |
* | [tx-robot] updated from transifexJenkins for ownCloud2014-08-301-0/+1
| |
* | kill OC::$sessionJörn Friedrich Dreyer2014-08-2911-11/+11
| | | | | | | | | | | | | | | | | | | | | | | | maintain deprecated \OC::$session when getting or setting the session via the server container or UserSession restore order os OC::$session and OC::$CLI remove unneded initialization of dummy session write back session when $useCustomSession is true log warning when deprecated app is used