Clark Tomlinson
7b6aa3cd3d
fixing cache routes
11 years ago
Clark Tomlinson
db72270acc
fixing directory seperators
11 years ago
Morris Jobke
831d34f084
Merge pull request #11210 from owncloud/issue/11209
Also match routes without trailing slash for files app
11 years ago
Morris Jobke
b0e0d0d2d2
update 3rdparty submodule to its master commit
11 years ago
blizzz
b8a1340538
Merge pull request #9225 from voxsim/fix_displayNamesInGroup
fix in displayNamesInGroup
11 years ago
Joas Schilling
71bec60b92
Also match routes without trailing slash
Fix #11209
11 years ago
Thomas Müller
b1d0a0f3bf
Merge pull request #10939 from owncloud/add-port-to-trusted-domain-wizard
Append port to trusted domain in case it's not 80 or 443
11 years ago
Thomas Müller
8abf786af9
Merge pull request #10499 from owncloud/mkcol-headers-afterbind
Use afterBind to send fileId header for files and directories
11 years ago
Volkan Gezer
d16b8c03e9
fix button text l10n
11 years ago
Jenkins for ownCloud
5aaf8dcc01
[tx-robot] updated from transifex
11 years ago
Morris Jobke
567977ec63
Merge pull request #11203 from owncloud/fix_broken_previews_on_public_page
files_sharing: add route for ajax/publicpreview
11 years ago
Morris Jobke
154e848ce2
Merge pull request #11199 from owncloud/delete_bogus_previews
Delete bogus cached previews while updating
11 years ago
Morris Jobke
b622fa502e
Merge pull request #11200 from owncloud/preview_better_errorhandling
make sure preview prop is instanceof OC_Image before using it in showPreview
11 years ago
Georg Ehrke
9fd23d2edf
files_sharing: add route for ajax/publicpreview
11 years ago
Georg Ehrke
071e4bfc06
make sure preview prop is instanceof OC_Image before using it in showPreview
11 years ago
Georg Ehrke
ab2554e013
delete old previews
11 years ago
Morris Jobke
69726d951e
Merge pull request #11196 from owncloud/sqlite-migration-smallint-master
adding 'smallint unsigned' to type mapping for sqlite
11 years ago
Jenkins for ownCloud
a1c39f74b7
[tx-robot] updated from transifex
11 years ago
Thomas Müller
7537d405e3
adding 'smallint unsigned' to type mapping for sqlite
11 years ago
Jenkins for ownCloud
e55c4bb807
[tx-robot] updated from transifex
11 years ago
Morris Jobke
463dd44d6d
Merge pull request #11178 from owncloud/throw-error-on-preview-instead-in-the-contructor
Throw error in showPreview instead the constructor
11 years ago
Morris Jobke
bdcf858eb8
Merge pull request #11184 from owncloud/typo
fix typo. closes #11132
11 years ago
Volkan Gezer
01808c8c84
fix typo
11 years ago
Vincent Petry
61bb19eff0
Add myself as author
11 years ago
Lukas Reschke
fed8100177
Merge pull request #10968 from owncloud/admin-groupsselect2
Use select2 for the groups excluded from sharing in admin page
11 years ago
Lukas Reschke
fb033cce98
Merge pull request #11104 from owncloud/enc_create_backup_on_recovery
[encryption] create backup from all keys before recovery
11 years ago
Lukas Reschke
e94ec409ae
Merge pull request #11171 from owncloud/fix-route
Match more URL fragments
11 years ago
Lukas Reschke
4c6bad7f71
Merge pull request #11158 from owncloud/fix_basic_auth
Move BasicAuth check to isLoggedIn
11 years ago
Lukas Reschke
6869d2e82a
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.
11 years ago
Lukas Reschke
079ad18bce
Merge pull request #11142 from owncloud/fix-windows
Resolves cache tests failing if the directory length is longer than 64
11 years ago
Vincent Petry
437f8c3cd5
Merge pull request #11119 from owncloud/removeOldUpgradeRoutines
Remove old upgrade routines
11 years ago
Vincent Petry
f0186d99d2
Merge pull request #11163 from owncloud/check-for-updates-between-major-versions
Prevent updates between multiple major versions
11 years ago
Robin Appelman
33f7af9207
Merge pull request #10958 from owncloud/db-ilike
Introduce cross-db ILIKE
11 years ago
Bjoern Schiessle
a280859bf8
make sure that we really catch the files folder only
11 years ago
Bjoern Schiessle
2ee14c4734
create backup from all keys before recovery
11 years ago
Jenkins for ownCloud
786312d0e8
[tx-robot] updated from transifex
11 years ago
Lukas Reschke
7956765c12
Match more URL fragments
Fixes https://github.com/owncloud/core/pull/11009#issuecomment-56103341
11 years ago
Morris Jobke
112e570989
Merge pull request #11141 from owncloud/update_encrytionlink
update encryption doc link
11 years ago
Volkan Gezer
ccaea93d6b
update encryption doc link
I don't know how we missed to update this :/
update ldap doc link
11 years ago
Lukas Reschke
a71af58535
Prevent updates between multiple major versions
Ref https://github.com/owncloud/core/issues/11078
11 years ago
voxsim
7a14f94ae5
1. remove sizeof($filteredUsers) > 0 as condition
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;
11 years ago
Lukas Reschke
d0d3b7457b
Move BasicAuth check to "isLoggedIn()"
Ensures that Basic Auth works properly for APIs and removes the need for some even uglier lines of code.
11 years ago
Lukas Reschke
a543807d85
Merge pull request #11151 from owncloud/removeOverflowingFunction
Remove unused and overflowing function
11 years ago
Robin Appelman
a85f0ae2da
Fix ILIKE without wildcards for oracle
11 years ago
Lukas Reschke
f0bf46b080
Merge pull request #11130 from owncloud/moveBasicAuthCheck
Move basic auth check
11 years ago
Lukas Reschke
d07d5915c9
Remove unused and overflowing function
Resolves https://github.com/owncloud/core/issues/10991 failure 4
11 years ago
Morris Jobke
c89c6ed21d
Merge pull request #11143 from owncloud/improve-404
Make 404 page easier to understand
11 years ago
Morris Jobke
338db48c0b
Merge pull request #9541 from owncloud/force_loading_of_encryption_app
force loading of encryption app to show correct error
11 years ago
Jenkins for ownCloud
dd6b0b1319
[tx-robot] updated from transifex
11 years ago
Morris Jobke
5030f14008
Merge pull request #11136 from owncloud/fix_body_id
Error needs to push body-id for new guest layout
11 years ago