https://github.com/owncloud/core

sort by:
Revision Author Date Message Commit Date
eb276df 6.0.5 RC1 21 August 2014, 03:37:53 UTC
d9ecfa3 Also encode > and ' 20 August 2014, 17:20:12 UTC
a5aa04c properly encode groups as json, not ',' separated 19 August 2014, 09:29:09 UTC
1e692e5 set incognitoMode to true, getUser should always return false during public upload 19 August 2014, 08:16:07 UTC
663daf4 Merge pull request #10146 from owncloud/fix-8578-stable6 Update 3rdparty to replace fpassthru() in Sabre. 17 August 2014, 17:11:10 UTC
6d6dfe2 Merge pull request #10440 from owncloud/enforce-debug Remove ability to trigger DEBUG mode via cookie 15 August 2014, 13:18:33 UTC
b067848 Merge pull request #10034 from owncloud/remove-es_MX-from-stable6 Remove es mx from stable6 15 August 2014, 12:07:52 UTC
ca33b2a we need the recipient as a additional parameter to know for which share the notification was send 14 August 2014, 15:51:16 UTC
f82aed0 Fix Upload button does not disappear Tipsy tooltip must be hidden when the upload starts. Otherwise it covers the progress bar and stays in DOM. Backport of fa28c089fa3ffb72e97ca0f89cbfade3d0a8a8a5 and 90839b784f748b18a2a5fae4cc3f80bd1df7b355 from master 14 August 2014, 11:57:39 UTC
5e85790 Minor changes in config.sample * appcodechecker accepts boolean. * using different ports in trusted domains Partially fixes #330 13 August 2014, 20:57:06 UTC
ffe3bd1 fix broken variable name, recoveryPasswordSupported is now recoveryEnabledForUser 12 August 2014, 17:28:05 UTC
851d478 add unit tests 12 August 2014, 16:10:49 UTC
74a994c fix detection of system wide mount points 12 August 2014, 15:59:21 UTC
5343361 Merge pull request #10344 from owncloud/backport-10096-stable6 in case $_POST['itemSourceName'] does not exist we simply default it to... 11 August 2014, 19:31:53 UTC
274de5a in case $_POST['itemSourceName'] does not exist we simply default it to null 11 August 2014, 15:56:36 UTC
2a34f53 backport of #9848 Fix memberOf detection. Fixes: #9835 Conflicts: apps/user_ldap/lib/wizard.php Fix remarks in #9848 Conflicts: apps/user_ldap/lib/wizard.php Fix initializing in #9848 do not change var names here 11 August 2014, 15:29:48 UTC
d046527 Merge pull request #10315 from owncloud/clarify-encryption-descripti clearify the use-case of this app 10 August 2014, 21:11:31 UTC
e7f9c21 clearify the use-case of this app Backport of https://github.com/owncloud/core/commit/8a24e1eb9624 to stable7 09 August 2014, 20:59:42 UTC
e1a77bd Merge pull request #9675 from owncloud/stable6-9647 [stable6] Add unit test for multi-user configuration loading 09 August 2014, 00:41:33 UTC
6b38c1d Add unit test for multi-user configuration loading 08 August 2014, 13:52:22 UTC
66cccd4 Update 3rdparty to replace fpassthru() in Sabre. 04 August 2014, 13:15:55 UTC
2c192a1 don't preload videos on public sharing, fixes #10042 30 July 2014, 19:12:02 UTC
ca29c8b Fix template rendering for 'blank' templates 30 July 2014, 08:34:13 UTC
f00563c remove l10n folder - sync script and transifex config are no longer required on a stable branch 29 July 2014, 20:51:15 UTC
3368af8 remove language es_MX 29 July 2014, 20:48:21 UTC
a66b2f5 Merge pull request #9575 from owncloud/fix-7038 Hack to avoid Agent DN + Password being overwritten by some ugly browser... 22 July 2014, 16:25:45 UTC
8d5081f Merge pull request #9776 from owncloud/backport-9738-stable6 Backport 9738 stable6 22 July 2014, 14:42:31 UTC
f99f48e Remove uneeded `strip_tags` This `strip_tags` seems to be completely unneeded and will cause problems with passwords containing stripped characters. (e.g. `<` or `>`) Needs https://github.com/owncloud/core/pull/9735 to be merged first. 22 July 2014, 13:43:52 UTC
6fb60e9 Extract Auth Header logic into new function handleAuthHeaders(). Conflicts: lib/base.php 22 July 2014, 13:43:47 UTC
e8be18a Deduplicate user/password extraction from alternative HTTP headers. 22 July 2014, 13:40:50 UTC
3a27cc5 Merge pull request #9109 from owncloud/stable6-extstorage-multiplemountpointconfig [6.0.5] Fix merging of external storage configurations 22 July 2014, 13:28:00 UTC
a47aad8 Merge pull request #9717 from owncloud/backport_9668 [encryption] update keys recursively if a folder was moved (oc6 backport) 18 July 2014, 13:03:17 UTC
3e2e766 login() must be called after getServerPublicHostKey(). 18 July 2014, 11:32:46 UTC
51185c1 make sure that we don't connect hooks multiple times 18 July 2014, 10:12:32 UTC
6ef2acb check that the file proxies are enabled after each test 18 July 2014, 08:57:16 UTC
304cf0b update keys recursively if a folder was moved 18 July 2014, 08:57:16 UTC
add4ce4 Hack to avoid Agent DN + Password being overwritten by some ugly browsers with stored site credentials 16 July 2014, 17:26:24 UTC
68fa6e6 Merge pull request #9511 from owncloud/stable6-download-button-public-folder [stable6] Bring back the download button public folder 15 July 2014, 15:36:45 UTC
e4b4c6c Merge pull request #9635 from owncloud/stable6-files_external_fix_readData [stable6 backport] Permit personal mount points to be used for sharing 15 July 2014, 15:11:49 UTC
82be367 Permit personal mount points to be used for sharing An issue existed where `readData` used `OCP\User::getUser()` to get the user for personal mount points, which worked in all situations apart from when a personal mount point was used for sharing, so the return from `getUser()` is not the user that owns the share. As such, any personal mount points would not work correctly when shared. `readData` and `writeData` have been changed from using a `$isPersonal` boolean to using a `$user` string|null. `$isPersonal = false` can now be written as `$user = NULL` (or left out in the case of `readData`), and `$isPersonal = true` can be written as `$user = OCP\User::getUser()`. Backport of abfd7ec from master 15 July 2014, 11:33:23 UTC
c3c87b0 Merge pull request #9618 from owncloud/fix_8345 throw exception if file is to large for trash bin 15 July 2014, 10:15:25 UTC
2aabe31 append file extension to the temporary file which contains the downloaded archive - in case of zip files fileinfo doesn't seem to return anything reliable 14 July 2014, 18:12:40 UTC
afa8006 throw exception if file is to large for trash bin 14 July 2014, 15:29:19 UTC
c83c174 Merge pull request #9581 from owncloud/backport-9500 Backport of #9500 to stable6 11 July 2014, 11:30:22 UTC
0477d56 do not write to appconfig or preference tables if the value is unchanged 10 July 2014, 22:13:52 UTC
b77298b don't trigger update from checkPassword, it is already called by userExists, this is enough. 10 July 2014, 21:48:38 UTC
d5d5541 Merge pull request #9523 from owncloud/stable6-fix-9302-master [stable6] Upload abortion is now detected within the OC_Connector_Sabre_File::put... 09 July 2014, 15:58:54 UTC
a8ec0a7 Upload abortion is now detected within the OC_Connector_Sabre_File::put() OC_Connector_Sabre_AbortedUploadDetectionPlugin is pointless Adding unit test testUploadAbort() Backport of ea269f0 from master 08 July 2014, 15:28:16 UTC
3c3ebd5 Fix Signiture Does Not Match when mounting Amazon S3 external storage For some reason the aws-sdk-php package does not caclulate the signiture correctly when accessing an object in a bucket with a name of '.'. When we are at the top of a S3 bucket there is a need(?) to have a directory name. Per standard Unix the name picked was '.' (dot or period). This choice exercises the aws-sdk bug. This fix is to add a field to the method to store the name to use instead of '.' which at this point is hard coded to '<root>'. We also add a private function 'cleanKey()' which will test for the '.' name and replace it with the variable. Finally all calls to manipulate objects where the path is not obviously not '.' are processed through cleanKey(). An example where we don't process through clean key would be 'Key' => $path.'/', Use correct relationship operator Per feed back use === instead of == use '/' instead of '<root>' 08 July 2014, 12:37:55 UTC
fca5af2 disable download button if zip download is disabled Backport of 6e75b37 08 July 2014, 08:44:35 UTC
bfe76fa fix position and look of public download button Backport of 899c7c0 from master 08 July 2014, 08:40:50 UTC
d9e9191 remove unneeded header-right details styles Backport a280a69 08 July 2014, 08:39:41 UTC
bbc997a remove file name from upper right button Backport of 003049e from master 08 July 2014, 08:26:10 UTC
114ce30 reintroduce download button on public shares Backport of df32254 from master 08 July 2014, 08:24:14 UTC
3bec0dc Backport of #9156 04 July 2014, 13:17:20 UTC
b87591a Merge pull request #9250 from owncloud/enc_check_if_file_exists_oc6 [encryption] check if file exists (OC6) 01 July 2014, 09:15:21 UTC
46ade71 improved error message 30 June 2014, 14:32:20 UTC
22cef86 unit tests 27 June 2014, 21:13:28 UTC
cf46391 check if file exists before deleting keys, and add debug output for every delete operation 27 June 2014, 21:13:28 UTC
ff8cd42 Merge pull request #9251 from owncloud/enc_always_find_mount_point [encryption] make sure that we always detect the system wide mount point 27 June 2014, 14:49:01 UTC
e816799 normalize path before comparison to make sure that we always find the mount point 27 June 2014, 10:20:29 UTC
e14e4f1 Merge pull request #9173 from owncloud/enc_always_use_oc_filesview_oc6 [encryption] always use oc filesview, backport for OC6 26 June 2014, 13:11:55 UTC
28eabc1 Merge pull request #9219 from owncloud/stable6-trashwarning [stable6] Fix trashbin warnings in logs 26 June 2014, 11:40:33 UTC
a609d5e Do not retrieve storage stats for trash bin 26 June 2014, 08:56:18 UTC
da7641c Remove etag warning in trashbin When previews are available, the etag attribute is used for the icon. But when none is set, a warning is shown. This fix uses the timestamp as a dummy etag. 26 June 2014, 08:50:59 UTC
2e264b3 Merge pull request #9197 from owncloud/fix_dir_seperator_oc6 always use '/' as dir seperator 25 June 2014, 09:03:29 UTC
9a44862 always use '/' as dir seperator 24 June 2014, 16:45:22 UTC
e4fb6d5 6.0.4 24 June 2014, 13:44:53 UTC
46cc6f5 always use a \OC\Files\View 23 June 2014, 20:06:50 UTC
b66d363 always use oc filesystem for rename operation 23 June 2014, 15:44:05 UTC
feca3d0 Merge pull request #9075 from owncloud/autosetup-trusteddomains trusted domains shall not be ignored on autosetup 20 June 2014, 20:56:37 UTC
6eb39f2 Backport subset of #4179, re-established Oracle compatibility for LDAP 20 June 2014, 18:47:51 UTC
26ded10 Fix merging of external storage configurations Merging of configurations is whenever the same config is available for multiple users/groups, in which case the config is considered as a single one by the UI, and shows multiple users/groups selected. Fixed merging logic to make sure that class, mount point and options are the same before merging them. Fixed merging to work correctly when the same mount point path is used for separate users and configs. These are now correctly shows in the UI as separate entries. Backport of e002b72 from master 19 June 2014, 16:26:12 UTC
267c0ff trusted domains shall not be ignored on autosetup 17 June 2014, 21:15:32 UTC
4b843df Merge pull request #9002 from owncloud/ldap_wizard_pagedsearch LDAP Wizard: get correct total no of users, groups and complete list of groups on big setups 17 June 2014, 08:04:57 UTC
508d84d 6.0.4 beta 1 17 June 2014, 06:48:46 UTC
58d04d1 remove unused vars; increase scrutinizer happiness 16 June 2014, 15:52:12 UTC
9caa354 simplify two methods a bit, because they are not used for group search anymore 16 June 2014, 15:52:12 UTC
0ba9a6b make all this work in an early configuration state in the wizard by marking the config active and ignoring the validation state. 16 June 2014, 15:51:31 UTC
c491fa2 Wizard: get really all groups from LDAP by power of Paged Search 16 June 2014, 15:51:31 UTC
e23e459 fix PHPdoc 16 June 2014, 15:51:31 UTC
78feb65 consolidate requirement check 16 June 2014, 15:51:31 UTC
1c634ab LDAP Wizard: count users and groups with the power of paged search 16 June 2014, 15:51:31 UTC
53e036e add method to count groups on LDAP 16 June 2014, 15:51:31 UTC
f56a9c0 fix PHPdoc 16 June 2014, 15:51:31 UTC
659a3d4 Merge pull request #8623 from owncloud/fix-8457 LDAP: fix possible infinite loop, that causes hanging wizard, fixes #8457 16 June 2014, 15:42:46 UTC
3d26896 Merge pull request #9033 from owncloud/validate-dire Add deprecation notice to load* functions 16 June 2014, 14:20:21 UTC
f6c970e Merge pull request #9008 from owncloud/repair-parent-stable6 Repair broken parent link in the scanner - stable6 16 June 2014, 13:00:22 UTC
84222e3 Fix unit test 16 June 2014, 11:37:08 UTC
81fc7cf Add deprecation notice to load* functions This functions are deprecated and/or removed since ownCloud 7. Additionally a issubdirectory check has been added here to prevent developers to use this function in a potentially insecure way. Please review @karlitschek and others. Backport to stable5 and master requested. 14 June 2014, 09:05:12 UTC
04817fb Merge pull request #9015 from owncloud/stable6-downloadwithdisabledzip [stable6] Fix public download link when zip download is disabled 13 June 2014, 11:09:41 UTC
bca536e Merge pull request #8988 from owncloud/stable6_fix_encryption Stable6 fix encryption 13 June 2014, 08:31:18 UTC
6453454 Merge pull request #9016 from owncloud/stable6-maxheartbeatinterval [stable6] Added max heartbeat interval to prevent integer overflow 12 June 2014, 22:19:36 UTC
00ec5fc Added max heartbeat interval to prevent integer overflow When using big session timeout values, the interval value might overflow and cause the setInterval() call to ping the server in a loop without any delay. This fix adds a maximum ping interval of 24 hours. 12 June 2014, 16:27:21 UTC
8ef1542 Fix public download link when zip download is disabled When zip download is disabled, the public download action defined in public.js is overridden by the one in fileactions.js because of the JS loading order. This quick fix prevents the override to happen when a download action is already defined. There are additional changes that were required to make the download action icon work when registered from the public page. 12 June 2014, 15:29:55 UTC
eeca726 remove unused argument 12 June 2014, 13:07:05 UTC
e793a87 add some comments 12 June 2014, 13:06:01 UTC
6e0a218 Repair broken parent link in the scanner 12 June 2014, 13:05:45 UTC
b2fae8a Fix copy conflict dialog translation backport of fileexist template translations with minor fixes 11 June 2014, 18:25:10 UTC
193d237 fix rename of encryption keys 11 June 2014, 16:38:20 UTC
back to top