| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
|
| |
A recent change replaced img elements with CSS icons for file actions.
This fix adjusts the logic to work properly with CSS icons instead of
images.
|
|
|
|
|
| |
Action icons now appear properly in public link page.
More actions are now CSS icons.
|
| |
|
|
|
|
| |
This makes theming of file actions possible
|
|
|
|
|
| |
This makes it possible to display multiple notifications.
If the options.type is set to "error", it will also add a close button.
|
|\
| |
| | |
Fix quota check for single shared files
|
| |
| |
| |
| |
| |
| |
| |
| | |
When receiving a shared file, the quota for that file counts in the
owner's storage, not the current user's storage.
To make it possible to overwrite the file even when the current user
doesn't have enough space, the quota check is deferred for such files.
|
|\ \
| |/
|/| |
Adding global error handler for ajax calls which run into redirection…
|
| | |
|
|/
|
|
|
| |
Interacting with the checkboxes, also "Select all" will automatically
close the sidebar now.
|
|
|
|
|
| |
Fixes issue when opening the share dialog for a file inside the favorite
list, and the file is from a subfolder
|
| |
|
|
|
|
|
|
|
|
| |
removed whitespace
removed whitespace
Changed it based on PVince81's suggestion
|
|\
| |
| | |
webDAV select bug fixed
|
| | |
|
|/ |
|
|\
| |
| | |
Correctly render uploadtext indicator only on folders
|
| |
| |
| |
| |
| | |
This makes sure that the original icon will be restored properly in case
it's not the default folder icon
|
| | |
|
|/
|
|
|
|
| |
Plugins can extend _getWebdavProperties to add custom properties.
These should not be added to the original properties list, so now the
FileList makes a copy of the array.
|
|
|
|
|
|
|
|
|
|
|
| |
Since Webdav doesn't contain that information, we need to rely on the
parent folder's mount type to find out whether a child item is a
shared/external root or not.
Fixed the mount type detection logic and added unit test.
Also added a fix that ignores detection if no parent folder exists (ex:
shared file list, favorites, etc)
|
|
|
|
|
|
|
|
| |
For received shares, the delete action becomes "Unshare" and for
personal mounts it becomes "Disconnect storage".
This also makes it possible from now on to pass a function to a file
action's "displayName" attribute.
|
|
|
|
| |
The background job will now be executed in chunks of 500 users all 10 minutes.
|
| |
|
|
|
|
|
| |
This prevents double slashes that can mess up path comparisons in some
cases.
|
| |
|
|
|
|
|
|
|
|
| |
The public page now uses the public.php/webdav endpoint.
Also enabled more file operations like rename, move, delete and create
folder from the public page, which are now all possible thanks to the
public.php/webdav endpoint.
|
| |
|
|
|
|
|
|
|
| |
The text editor app will register this instead.
Also made "fileList" a non-private attribute to make it possible for
plugins to access the attached file list object.
|
|\
| |
| | |
Fix file action download spinner
|
| | |
|
|\ \
| | |
| | | |
dont trigger the scroll event of every single item we filter in the file list
|
| | | |
|
|\ \ \
| |_|/
|/| | |
Allow Owncloud apps to add new items to the “new” file menu.
|
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
Owncloud apps can now add new items to the “new” file menu. A new
`addMenuEntry()` was added to `NewFileMenu`. To add a new item, you
have to attach a plugin to `OCA.Files.NewFileMenu` that will call
`addMenuEntry()`.
|
|\ \ \
| |_|/
|/| | |
Fix icon update to be more consistent
|
| |/
| |
| |
| | |
Makes the details bar show the same icon as in the list.
|
|/
|
|
|
|
|
|
| |
All reloadCallback must return either true for success or false in case
of failure / non-existing folder.
Some file lists only have a root folder (favorite, shares), so restrict
the path to that to avoid having a wrong path in the breadcrumbs.
|
|\
| |
| | |
Do not display details bar after rename
|
| | |
|
|/
|
|
|
|
|
|
| |
- Use "FileList" instead of "OCA.Files.App.fileList" that doesn't exist in public
link page.
- Fix public link upload by properly adding the form data using a new
utility function "addFormData". That one is needed because IE8 upload
and regular upload use a different format...
|
| |
|
|\
| |
| | |
Move alt text for favorite action to image
|
| | |
|
|\ \
| | |
| | | |
showTemporary instead of show for notifications
|
| |/ |
|
|\ \
| | |
| | | |
Debounce cancel upload message
|
| | | |
|
|\ \ \
| | | |
| | | | |
Hide notification on delete
|
| |/ /
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
In case a permanent notification "storage full" was displayed, it will
be hidden after deleting a file.
Directly after that a getstoragestats.php call is made that will decide
whether to reshow the notification based on the new free space.
|