Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2014-10-20backport of #11494Arthur Schiwon
fix retrievel of group members and cache group members fix changed variable name with several backends, more than limit can be returned make performance less bad. Still far from good, but at least it works add one simple cache test adjust group manager tests Conflicts: apps/user_ldap/group_ldap.php apps/user_ldap/lib/access.php apps/user_ldap/tests/group_ldap.php
2014-10-10Prevent button click when enter key is pressed in LDAP wizardVincent Petry
Pressing enter in the LDAP wizard will trigger a click on the first button. In the main page it would trigger the delete dialog, which is quite inconvenient. Added a type attribute to suppress this behavior. Backport of bb424802c8f6e8fd0e7fbe28e000400a5b0660f3 from master
2014-10-09Backport of #10527Arthur Schiwon
properly cancel a Paginated Results operation in order to avoid protocol errors, fixes #10526 abandon ongoing paged search before starting a new one abandond paged search only if PHP supports them init a new paged search on read operations to satisfy OpenLDAP make scrutinizer happy, very minor changes Conflicts: apps/user_ldap/lib/access.php apps/user_ldap/lib/ildapwrapper.php
2014-08-28Merge pull request #10631 from owncloud/fixWizardTest_stable6blizzz
fix wizard test, adjust to changed parameters of the tested method, intr...
2014-08-26fix wizard test, adjust to changed parameters of the tested method, ↵Arthur Schiwon
introduced by 9caa354cfc1f73159f335646ca89be4db72b125e
2014-08-15Merge pull request #10034 from owncloud/remove-es_MX-from-stable6Lukas Reschke
Remove es mx from stable6
2014-08-11backport of #9848Jean-Louis Dupond
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
2014-07-30remove language es_MXThomas Müller
2014-07-22Merge pull request #9575 from owncloud/fix-7038Vincent Petry
Hack to avoid Agent DN + Password being overwritten by some ugly browser...
2014-07-16Hack to avoid Agent DN + Password being overwritten by some ugly browsers ↵Arthur Schiwon
with stored site credentials
2014-07-11don't trigger update from checkPassword, it is already called by userExists, ↵Arthur Schiwon
this is enough.
2014-06-20Backport subset of #4179, re-established Oracle compatibility for LDAPArthur Schiwon
2014-06-16remove unused vars; increase scrutinizer happinessArthur Schiwon
2014-06-16simplify two methods a bit, because they are not used for group search anymoreArthur Schiwon
2014-06-16make all this work in an early configuration state in the wizard by marking ↵Arthur Schiwon
the config active and ignoring the validation state.
2014-06-16Wizard: get really all groups from LDAP by power of Paged SearchArthur Schiwon
2014-06-16fix PHPdocArthur Schiwon
2014-06-16consolidate requirement checkArthur Schiwon
2014-06-16LDAP Wizard: count users and groups with the power of paged searchArthur Schiwon
2014-06-16add method to count groups on LDAPArthur Schiwon
2014-06-16fix PHPdocArthur Schiwon
2014-06-16Merge pull request #8623 from owncloud/fix-8457blizzz
LDAP: fix possible infinite loop, that causes hanging wizard, fixes #8457
2014-05-28simpler and better readable assignmentArthur Schiwon
2014-05-16add unit test to make sure the infinite loop never comes backArthur Schiwon
2014-05-16set result entry identifier earlier, i.e. before a continue for the same ↵Arthur Schiwon
level can happen. otherwise will always get the same value and we end up in an infinite loop
2014-05-14bump version and don't overwrite values on next update if not necessaryArthur Schiwon
2014-05-14get the correct version number for compare -.-Arthur Schiwon
2014-05-13LDAP: set filter mode to raw, so filters will not be changed and broken ↵Arthur Schiwon
after upgrade from oc5, when visiting the LDAP settings and opening filter tabs
2014-04-23LDAP: getDisplayNamesInGroup is not an option for group backends anymoreArthur Schiwon
2014-04-23Backport of #8164ben-denham
Added improved version of patch by @blizzz in https://github.com/owncloud/core/issues/6651#issuecomment-32261257 to stop filter settings from being reset under a race condition. Moved LdapFilter into a separate js file in user_ldap. Changed conditions in user_ldap's ldapFilter.js to use ===, fixed indentation. fix comparison in determineMode, fixes problems with restoring the filter mode (assisted or manually) on page refresh Give hint when composing filter failed fixing some JSHint warnings
2014-04-16add additional comments, PHPdoc and check whether it's really applicableArthur Schiwon
2014-04-16LDAP: cache display names immediately on retrieval, saves tens of unecessary ↵Arthur Schiwon
queries to LDAP server in the share dialog for example
2014-04-16Backport of PR #7815, correct LDAP user count on setup with many usersArthur Schiwon
(occ user:report) LDAP: make sure cache key for paged result cookie matches when limit or offset is null or 0 LDAP: fix user report i.e. count for LDAP servers with really many users initialize variable var count is assigned in the inner loop so it must be checked inside there to be properly used as part of the exit condition of the outer loop Put inner loop into own method, let's see whether it makes scrutinizer happier
2014-04-11LDAP: fetch email from LDAP on userExists check as well (along to Quota and ↵Arthur Schiwon
Avatar)
2014-04-09Backport of PR #7837 to stable6Arthur Schiwon
LDAP Wizard: when determining objectclasses, we realy do not need to look at every entry. Fixes #7530 Conflicts: apps/user_ldap/lib/wizard.php Fix wildcard handling and check even less DNs per filter, enough will be looked at anyway Use the LDAP wrapper for checking resources, needs for proper testing fix potential infinite loop when the DN of the first entry was already read. add tests for cumulativeSearchOnAttribute make tests work on systems without php5_ldap define var add comment to clearify when a skip in the foreach happens
2014-04-03Meanwhile, the quota value is stored human-readable in the DBArthur Schiwon
2014-04-02more precise php docArthur Schiwon
2014-04-01add PHP docsArthur Schiwon
2014-03-28LDAP: Read email and quota when mapping user, fixes #7785Arthur Schiwon
2014-03-21add test for cloning and keeping configuration seperateArthur Schiwon
2014-03-21Use array_key_exists instead of isset, because the latter returns false if ↵Arthur Schiwon
the assigned value is null
2014-03-21On clone create a new instance of the ConfigurationArthur Schiwon
To avide effects on the original instance of Connection when the clone is modified, for instance on authentication checks.
2014-03-21Fix duplicate ipauniqueidRobin McCorkell
2014-03-21Add FreeIPA UUID compatibility, fixes #7796Robin McCorkell
Ability to use ipauniqueid for the UUID of a user
2014-03-04Fixed configkey casing for PostgreSQLVincent Petry
Backport of fd5dec0 from master
2014-02-28remove remaining testing artefactArthur Schiwon
2014-02-27intendetion. where did the whitespaces come from?Arthur Schiwon
2014-02-27LDAP: let proxy for multiple server access methods from AccessArthur Schiwon
2014-02-21LDAP: fix and extend testsArthur Schiwon
2014-02-21LDAP: improve compilation of filtersArthur Schiwon