| Commit message (Collapse) | Author | Age | Files | Lines |
|\
| |
| | |
Simple Plugin system for Javascript
|
| | |
|
| | |
|
| | |
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
* files_encryption
* files_versions
* files_trashbin
* tests
* status.php
* core
* server container
|
|\ \
| | |
| | | |
Fix deleting selected files in the trashbin
|
| | | |
|
|\ \ \
| |/ /
|/| | |
Improve FileActions JS to allow for custom rendering
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
This improves the OCA.Files.FileActions class to support passing a
"render" function in the action object.
The default function "_defaultRenderFunction" is used by default and
renders actions in the usual actions container.
Moved "Rename" and "Delete" to custom render functions.
|
|\ \ \
| | | |
| | | | |
[encryption] reorganize folder structure (second try to make Jenkins happy)
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
all keys are now in files_encryption/key/path_to_file/filename/
share keys are named: user.shareKey
file key is named: fileKey
|
| |_|/
|/| | |
|
|/ / |
|
|/ |
|
| |
|
|\
| |
| | |
cleanup languages. closes #11274
|
| | |
|
|/ |
|
|\
| |
| |
| |
| | |
owncloud/undelete-only-if-files-trashin-is-enabled
Only show undelete capability if files_trashbin is enabled
|
| |
| |
| |
| | |
Fixes the OCS capability API at /ocs/v1.php/cloud/capabilities
|
|/ |
|
|\
| |
| | |
Improved JS Docs + added build script for JS Docs
|
| |
| |
| |
| |
| |
| | |
Added namespaces so that JSDoc can find them.
Fixed a few warnings.
Improved some comments.
|
|\ \
| | |
| | | |
Close session for files_trashbin
|
| | |
| | |
| | |
| | | |
When restoring huge folders the interface will be unresponsive otherwise
|
| |/
|/|
| |
| |
| | |
This fix prevents the file scanner to rescan the WHOLE storage and reset
the etags by mistake.
|
| |
| |
| |
| | |
take care of this
|
|/ |
|
| |
|
|
|
|
|
|
|
|
|
|
|
| |
Added addTranslations and fixed de.js file
Fixed de.js to use OC.L10N.register() and use to correct expected
format.
Added JS unit tests for OC.L10N class
Include translations JS script for all apps
|
|
|
|
| |
It's only reasonable to have proper type hinting here which might even help us to catch bugs.
|
| |
|
| |
|
|
|
|
| |
cache, make unknown free space work like unlimited free space
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
filter installed and not-installed apps properly
kill unneeded file
load category 'Installed' on page load
adding documentation links
new apps mgmt: first style adjustment
apps mgmt: only show license and preview if they exist
adding buttons
new apps mgmt: fix for mobile
use app icon if available
new apps mgmt: position enable/disable toggle to the right
new apps mgmt: proper display of icons or previews
new apps mgmt: fix loading spinner
reenable group selection for apps
new apps mgmt: position enable button normally again
new apps mgmt: clarify wording from 'Installed' to 'Enabled'
reintroduce enable/disable
Move rating image path generation to client-side
Move expression outside of l10n
fix group handling
add buttons for 'More apps' and 'Add your app' again
disable changed date of app for now
adding recommended label
style 'Recommended' app tag
fixing php warning
sort by rating
adding meta-category 'Recommended'
Only show existing documentation links
lacy loading of screenshots
making group based app activation work again
adding support to get the app icon not only by the app name but also simply by the fixed name 'app.svg'
adding app.svg for all core apps
query string '?installed' is not longer needed
update and uninstall is back + error feedback
remove unneeded parameter
fix alignment of 'recommended' label
|
|
|
|
|
|
| |
This allows to have links to different doc base URLs
a.
|
|\
| |
| | |
check if I can create a file at the location
|
| | |
|
| | |
|
|/
|
| |
Made app description paralell in structure to other app descriptions
|
| |
|
|\
| |
| | |
Fix icon classes, disappeared delete icon
|
| | |
|
| | |
|
|\ \
| |/
|/| |
Fix share key pattern matching
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
Instead of inaccurate pattern matching, use the list of users who we
know have access to the file to build the list of share keys.
This covers the following cases:
- Move/copy files into a subfolder within a share
- Unsharing from a user
- Deleting files directlry / moving share keys to trashbin
|
|/
|
|
|
|
|
|
|
|
|
|
| |
Whenever a delete operation is called twice in a row, it could happen
that the first call already deleted the file.
The second call would return an empty $ownerPath because the file does
not exist. That empty $ownerPath would run the key deletion operation on
the wrong path.
This fix adds checks in many places to make sure we don't use $ownerPath
when it's empty or null.
|
|\
| |
| | |
also expire file if timestamp = limit, happens if trashbin_retention_obl...
|
| |
| |
| |
| | |
trashbin_retention_obligation is set to zero
|
|\ \
| | |
| | | |
Show original path information in trashbin and for shares
|