| Commit message (Collapse) | Author | Age | Files | Lines |
| |
|
|\
| |
| | |
Revert "Travis support"
|
| |
| |
| |
| |
| |
| |
| | |
This reverts commit 472d896ce9aad4d526126a7aefa96127920585e6.
Conflicts:
.travis.yml
|
|\ \
| | |
| | | |
Added extra check to avoid deleting key folders
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
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.
|
|\ \ \
| |_|/
|/| | |
Reenable file proxy when renaming between mount points
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
When moving a folder into another mount point, $renamedFiles is empty
because that goes over a different mechanism.
In such case, this fix makes sure that the file proxy is reenable to
avoid breaking the subsequent files that are being moved.
|
|\ \ \
| | | |
| | | | |
Fix oc stream seek
|
| | | |
| | | |
| | | |
| | | | |
wrappers
|
| | | | |
|
| | | | |
|
| | | | |
|
|\ \ \ \
| | | | |
| | | | | |
Occ catching errors
|
| | | | | |
|
| | | | |
| | | | |
| | | | |
| | | | | |
installed - base.php is required earlier already
|
| | | | |
| | | | |
| | | | |
| | | | | |
process failed if it did
|
|\ \ \ \ \
| | | | | |
| | | | | | |
Also match routes without trailing slash for files app
|
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Fix #11209
|
| | | | | | |
|
|\ \ \ \ \ \
| |_|/ / / /
|/| | | | | |
fix in displayNamesInGroup
|
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
2. use count instead of sizeof. Latter is an alias to first one, practically we stick to count everywhere. Having it consistent helps with readability.
3. move whitespace so we have $groupUsers[] = $filteredUser; instead of $groupUsers []= $filteredUser;
|
| | | | | | |
|
| | | | | | |
|
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
only in the first N users
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
Append port to trusted domain in case it's not 80 or 443
|
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
Ref https://github.com/owncloud/core/pull/10584#issuecomment-54677059
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
Use afterBind to send fileId header for files and directories
|
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
afterBind is called for both files and directories and is now used to
send the OC-FileId headers.
|
| | | | | | | | |
|
| | | | | | | | |
|
|\ \ \ \ \ \ \ \
| | | | | | | | |
| | | | | | | | | |
files_sharing: add route for ajax/publicpreview
|
| | | | | | | | | |
|
|\ \ \ \ \ \ \ \ \
| |_|_|_|_|_|/ / /
|/| | | | | | | | |
Delete bogus cached previews while updating
|
| |/ / / / / / / |
|
|\ \ \ \ \ \ \ \
| |/ / / / / / /
|/| | | | | | | |
make sure preview prop is instanceof OC_Image before using it in showPreview
|
|/ / / / / / / |
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
adding 'smallint unsigned' to type mapping for sqlite
|
| | | | | | | | |
|
|/ / / / / / / |
|
| | | | | | | |
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
owncloud/throw-error-on-preview-instead-in-the-contructor
Throw error in showPreview instead the constructor
|
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
This function is also used in a way such as:
```
$preview = new \OC\Preview(\OC_User::getUser(), 'files');
$info = \OC\Files\Filesystem::getFileInfo($file);
if (!$always and !$preview->isAvailable($info)) {
\OC_Response::setStatus(404);
} else {
$preview->setFile($file);
$preview->setMaxX($maxX);
$preview->setMaxY($maxY);
$preview->setScalingUp($scalingUp);
$preview->setKeepAspect($keepAspect);
}
```
Which won't work anymore since `setFile` is used instead of passing the file in the constructor. Fixes a regression in master.
|
|\ \ \ \ \ \ \ \
| |_|_|_|_|_|_|/
|/| | | | | | | |
fix typo. closes #11132
|
|/ / / / / / / |
|
| | | | | | | |
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
Use select2 for the groups excluded from sharing in admin page
|
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
To avoid making a server request every time the dropdown opens, the
whole list of groups are cached (from the last request):
Whenever the user types in a search term it will still send server
requests.
|
| | | | | | | | |
|
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
Added explicit escaping.
Now internally using a pipe symbol as separator for select2, to make it
possible to use group names containing commas.
|
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
Moved setupGroupsSelect() from admin.js to a common settings.js
as OC.Settings.setupGoupsSelect().
Now using select2 as well on the apps page.
|