- Sep 25, 2014
-
-
Robin Appelman authored
-
- Sep 24, 2014
-
-
Lukas Reschke authored
a
-
- Sep 23, 2014
-
-
Tigran Mkrtchyan authored
the current implementation limits number of possible backed actions to 8 as it uses pow of 16 for constants. This change introduces pow of two and allows up-to 32 actions to be defined. The old values are preserved for backward compatibility.
-
Vincent Petry authored
- Added setup checks in JavaScript - Moved isWebDAVWorking to JS using SetupChecks - Moved internet connection checks to an ajax call that goes through the server
-
- Sep 22, 2014
-
-
Lukas Reschke authored
Fixes https://github.com/owncloud/core/issues/11239
-
Lukas Reschke authored
We do not want to follow redirects to other protocols since they might allow an adversary to bypass network restrictions. (i.e. a redirect to ftp:// might be used to access files of a FTP server which might be in a secure zone and not be reachable from the net but from the ownCloud server) Get final redirect manually using get_headers() Migrate to HTTPHelper class and add unit tests
-
Thomas Müller authored
-
Clark Tomlinson authored
-
Lukas Reschke authored
-
Thomas Müller authored
-
Vincent Petry authored
Assume a permission issue whenever a file could not be deleted. This is because some storages are not able to return permissions, so a permission denied situation can only be triggered during direct deletion.
-
Jörn Friedrich Dreyer authored
-
Jörn Friedrich Dreyer authored
-
Joas Schilling authored
Fix #11209
-
Jörn Friedrich Dreyer authored
-
- Sep 21, 2014
-
-
Georg Ehrke authored
-
Georg Ehrke authored
-
- Sep 20, 2014
-
-
Thomas Müller authored
-
- Sep 19, 2014
-
-
Lukas Reschke authored
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.
-
- Sep 18, 2014
-
-
voxsim authored
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;
-
Lukas Reschke authored
Ensures that Basic Auth works properly for APIs and removes the need for some even uglier lines of code.
-
Robin Appelman authored
-
Lukas Reschke authored
Resolves https://github.com/owncloud/core/issues/10991 failure 4
- Sep 17, 2014
-
-
Lukas Reschke authored
Fixes https://github.com/owncloud/core/issues/11133
-
Remco Brenninkmeijer authored
-
Robin Appelman authored
-
Robin Appelman authored
-
Robin Appelman authored
-
Morris Jobke authored
-
Lukas Reschke authored
Log the error instead of potentially leaking sensitive information
-
Lukas Reschke authored
-
Robin Appelman authored
-
Robin Appelman authored
-
Robin Appelman authored
-
- Sep 16, 2014
-
-
Lukas Reschke authored
We do not support updates from 6 to 8 directly, therefore we can remove those upgrade routines.
-
Thomas Müller authored
-
Robin Appelman authored
-
Tobias Kaminsky authored
Thumbnail generation Removed Log Added requested changes Added requested changes. - Fix code style - Add exception if file does not exist - Switch route styling Replaces https://github.com/owncloud/core/pull/10805 Fix codestyle Fix codestyle Migrate to appframework Fix typo
-
scolebrook authored
-