aboutsummaryrefslogtreecommitdiffstats
path: root/apps/files/js
Commit message (Collapse)AuthorAgeFilesLines
* fix sharing for newly uploaded or created filesRobin Appelman2012-09-261-4/+5
|
* some js style fixesRobin Appelman2012-09-231-20/+22
|
* Merge pull request #15 from scambra/delete-fixesThomas Müller2012-09-211-0/+1
|\ | | | | use post to delete files, get has a limit and fails with many files
| * use post to delete files, get has a limit and fails with many filesscambra2012-09-201-0/+1
| |
* | translate rename and history actionsscambra2012-09-211-0/+1
| |
* | Merge pull request #13 from scambra/safari-fixesicewind19912012-09-201-1/+2
|\ \ | | | | | | fix js success callback on safari when uploading files
| * | fix js success callback on safari when uploading filesscambra2012-09-201-1/+2
| |/
* | fix for bug #1752 (Renaming of folders in files view does not work correctly ↵Björn Schießle2012-09-191-17/+19
| | | | | | | | in firefox 15)
* | Merge branch 'master' of github.com:owncloud/coreBjörn Schießle2012-09-191-2/+2
|\|
| * Fix oc-1769, renaming folders with extensionsTom Needham2012-09-181-2/+2
| |
* | add generated unique file name to the uploadingFiles list instead of the ↵Björn Schießle2012-09-191-1/+1
| | | | | | | | original name
* | execute lastAction() before add new oneBjörn Schießle2012-09-191-9/+12
|/
* Fix oc-1726, cannot delete multiple files one by one without refreshTom Needham2012-09-171-1/+0
|
* Enhanced space handling - thx fmmsThomas Müller2012-09-171-4/+4
|
* Adding a few more string to translationThomas Müller2012-09-171-6/+6
|
* show the size of new files when using New->From UrlRobin Appelman2012-09-161-2/+4
|
* Support for unshare from self, with a bunch of temporary fixes to overcome ↵Michael Gapczynski2012-09-072-2/+12
| | | | configuration problems with file actions
* Don't pass content for a new text file from UI, fixes bug oc-1660Michael Gapczynski2012-09-061-1/+1
|
* Don't delete the file anymore to replace it in the UI, just overwrite itMichael Gapczynski2012-09-051-16/+11
|
* Add permissions to new files/folders, bug fix for oc-1649Michael Gapczynski2012-09-051-2/+2
|
* Add missing ; to js codeBart Visscher2012-09-052-5/+5
|
* Implement support for replacing files during upload with the actions: ↵Michael Gapczynski2012-09-052-44/+107
| | | | replace, suggest name, and cancel
* Fix some jslint warningsBart Visscher2012-09-042-7/+7
|
* use OC.PERMISSION_X to filter selected drag'n'drop elementsJörn Friedrich Dreyer2012-08-311-5/+10
|
* unify permissions (3/3): remove old PERMISSION_X from FileActions & OC.ShareJörn Friedrich Dreyer2012-08-311-5/+0
|
* unify permissions (2/3): change apps to use OC::PERMISSION_XJörn Friedrich Dreyer2012-08-311-4/+4
|
* oc-1548: prevent user from leaving the page while a file upload is in progressThomas Mueller2012-08-311-0/+15
|
* use permissions to quickfix drag selectionsJörn Friedrich Dreyer2012-08-311-2/+5
|
* Whitespace fixes in appsBart Visscher2012-08-291-3/+3
|
* Temporary fix to prevent rename action in root of Shared directoryMichael Gapczynski2012-08-241-0/+4
|
* Moves the lastAction=null outside the if so it can include the undo requests ↵Juan Carlos Cornejo2012-08-221-1/+1
| | | | from replace
* Fixes a bug where if one tries to delete a file, then clicks undo, and then ↵Juan Carlos Cornejo2012-08-221-0/+1
| | | | | | tries to delete the file again, no questions or undo options were presented. Essentially, just set FileLists.lastAction = null when one clicks undo.
* Fix deletion for browser that do not support onBeforeUnload, fixes oc-1534.Arthur Schiwon2012-08-201-17/+24
|
* Check if New and Upload buttons exist before adding their width to the total ↵Michael Gapczynski2012-08-061-1/+5
| | | | breadcrumbs width
* Merge branch 'master' into share_apiMichael Gapczynski2012-08-061-0/+59
|\ | | | | | | | | | | Conflicts: apps/contacts/lib/app.php apps/contacts/templates/part.chooseaddressbook.rowfields.php
| * Fix condition checking for resizing breadcrumbsMichael Gapczynski2012-08-041-1/+1
| |
| * Dynamically resize breadcrumbs, fix for bug oc-468Michael Gapczynski2012-08-041-0/+59
| |
* | Merge branch 'master' into share_apiMichael Gapczynski2012-07-312-22/+106
|\| | | | | | | | | | | Conflicts: apps/contacts/lib/app.php apps/files_sharing/js/share.js
| * Add notifications and undo support for replacing files when renamingMichael Gapczynski2012-07-301-19/+103
| |
| * Tweak appearance of undo delete notificationMichael Gapczynski2012-07-291-3/+2
| |
| * Remove delete tipsy if file is deleted, fixes bug oc-958Michael Gapczynski2012-07-271-0/+1
| |
* | Merge branch 'master' into share_apiMichael Gapczynski2012-07-251-17/+21
|\| | | | | | | | | | | | | | | | | | | Conflicts: apps/calendar/js/loader.js apps/contacts/index.php apps/contacts/js/loader.js apps/files/js/files.js apps/files_sharing/sharedstorage.php lib/filesystemview.php
| * progressbar for New->From UrlRobin Appelman2012-07-221-16/+20
| |
* | Make file actions permissions awareMichael Gapczynski2012-07-252-23/+36
| |
* | Alert user of errors when creating new files or foldersMichael Gapczynski2012-07-231-12/+20
|/
* Sanitizing file namesLukas Reschke2012-07-111-1/+1
|
* - when creating a new text file or directory which name already exist use ↵Bjoern Schiessle2012-06-291-3/+10
| | | | | | the same pattern as for file uploads in such a case (add a (N) to the name) - don't allow renaming if a file/directory with the name already exists
* Files: Double encode download links. Fix for oc-1016.Thomas Tanghus2012-06-151-1/+1
|
* Label the delete operation "unshare" for files in the "Shared" folder to reduceBjoern Schiessle2012-06-121-1/+5
| | | | confusion about the operation.
* block slashes only for new files and new folders but not for file upload ↵Bjoern Schiessle2012-06-121-1/+1
| | | | from url (bug #964)