Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | - check that we have a complete definition before we try to read it (defect ↵ | Nalin Dahyabhai | 2011-01-03 | 1 | -2/+2 |
| | | | | #10107) | ||||
* | - allocate 'tmp' as an array of 'char *', and not 'char **' (defect #10112) | Nalin Dahyabhai | 2011-01-03 | 1 | -1/+1 |
| | |||||
* | - handle a group with no explicitly-named container by treating the | Nalin Dahyabhai | 2010-11-22 | 1 | -1/+1 |
| | | | | entries as direct subordinates of the group entry | ||||
* | - teach wrap_search_internal_get_entry to take an optional filter | Nalin Dahyabhai | 2010-11-22 | 1 | -2/+4 |
| | | | | | - where we were applying a filter test after retrieving an entry, just let the retrieval function do it | ||||
* | - try to factor deref_r and its corresponding update code into | Nalin Dahyabhai | 2010-11-22 | 1 | -3/+25 |
| | | | | optionally handling filters at each step of the way | ||||
* | - more logging | Nalin Dahyabhai | 2010-11-19 | 1 | -0/+24 |
| | |||||
* | - more debug logging | Nalin Dahyabhai | 2010-11-19 | 1 | -10/+18 |
| | |||||
* | - revert to registering plugins at init-time, which is what the docs | Nalin Dahyabhai | 2009-05-06 | 1 | -0/+16 |
| | | | | | | say we should do - use whether or not the plugin_base is initialized as in indicator of whether the plugin's been started or not | ||||
* | - fix type mismatch warnings | Nalin Dahyabhai | 2009-04-27 | 1 | -2/+2 |
| | |||||
* | - actually, entries in this map referring to other entries in the | Nalin Dahyabhai | 2008-12-03 | 1 | -9/+0 |
| | | | | same map deserve to be updated, too | ||||
* | - add some comments for later | Nalin Dahyabhai | 2008-12-03 | 1 | -2/+6 |
| | |||||
* | - fix a logic error when determining if an entry which contains an | Nalin Dahyabhai | 2008-12-03 | 1 | -4/+5 |
| | | | | attrribute used in %referred() needs other things to be updated | ||||
* | - add backend_shr_internal_postop_init(), move internal postop | Nalin Dahyabhai | 2008-12-03 | 1 | -17/+33 |
| | | | | registration to it, let callback registration return error codes | ||||
* | - hook our postop callbacks onto internal changes, too | Nalin Dahyabhai | 2008-12-03 | 1 | -0/+20 |
| | |||||
* | - use a counter to make sure we don't recurse inside the same thread, | Nalin Dahyabhai | 2008-12-02 | 1 | -0/+36 |
| | | | | | which might cause us to try to take a read lock when we're holding the write lock, or vice-versa | ||||
* | - drop some unused variables | Nalin Dahyabhai | 2008-11-04 | 1 | -1/+1 |
| | |||||
* | - move config.h into src/ | Nalin Dahyabhai | 2008-10-24 | 1 | -1/+1 |
| | |||||
* | - rename formatting functions: | Nalin Dahyabhai | 2008-10-24 | 1 | -2/+2 |
| | | | | | | derefx -> deref_r referredx -> referred_r - add a simple test for referred_r | ||||
* | - add referredx, as derefx | Nalin Dahyabhai | 2008-10-24 | 1 | -4/+183 |
| | |||||
* | - we already know we're searching from the immediate superior of an | Nalin Dahyabhai | 2008-09-10 | 1 | -2/+2 |
| | | | | expected entry, so limit the search from subtree to onelevel | ||||
* | - simplify the backref chasing logic a bit more | Nalin Dahyabhai | 2008-09-09 | 1 | -16/+18 |
| | |||||
* | - fixup some heap corruption | Nalin Dahyabhai | 2008-09-09 | 1 | -58/+115 |
| | | | | - clean up the reference updating logic | ||||
* | - search for predecessors using the right attribute/bases | Nalin Dahyabhai | 2008-09-09 | 1 | -5/+66 |
| | | | | | - handle nesting when searching for backreferences - actually update backreferences when we chase them the new way | ||||
* | - update references as noted by the derefx function | Nalin Dahyabhai | 2008-09-08 | 1 | -57/+156 |
| | |||||
* | - make some used-only-locally functions static | Nalin Dahyabhai | 2008-07-31 | 1 | -4/+6 |
| | | | | | - warn if a map is going to be empty, because it usually signals a misconfiguration of some kind | ||||
* | - add a wrapper for the slapi_search_internal_get_entry() function | Nalin Dahyabhai | 2008-07-22 | 1 | -4/+4 |
| | |||||
* | - normalize RDNs and DNs used to name sets and groups | Nalin Dahyabhai | 2008-07-11 | 1 | -5/+12 |
| | |||||
* | - add a helper for checking if we've been called by ourselves | Nalin Dahyabhai | 2008-07-10 | 1 | -0/+9 |
| | | | | - if a search was initiated by us, don't bother (and also don't deadlock) | ||||
* | - LDAP_SCOPE_ONE->LDAP_SCOPE_ONELEVEL | Nalin Dahyabhai | 2008-07-09 | 1 | -5/+6 |
| | | | | - LDAP_SCOPE_SUB->LDAP_SCOPE_SUBTREE | ||||
* | - remove unused variables | Nalin Dahyabhai | 2008-07-09 | 1 | -1/+0 |
| | |||||
* | - allow a binary 0 (base64 "AA==") to override a default without supplying a | Nalin Dahyabhai | 2008-07-09 | 1 | -2/+23 |
| | | | | value, for when we want to remove a default key-format and add a keys-format | ||||
* | - don't try to log the entry's old and new names during modrdn until after | Nalin Dahyabhai | 2008-07-08 | 1 | -6/+7 |
| | | | | we've checked that there are actually entries there | ||||
* | - don't pass a const string to str2entry | Nalin Dahyabhai | 2008-07-08 | 1 | -6/+14 |
| | | | | - perform the scope test for sets using a correctly-initialized container SDN | ||||
* | - remove extra blank line | Nalin Dahyabhai | 2008-07-08 | 1 | -1/+0 |
| | |||||
* | - fix an incorrect recursion in the vattr-aware filter reader | Nalin Dahyabhai | 2008-07-03 | 1 | -1/+3 |
| | | | | - properly populate the template string list in the vattr-aware strlist reader | ||||
* | - add more functions for reading vattr-stored configuration | Nalin Dahyabhai | 2008-07-03 | 1 | -3/+25 |
| | |||||
* | - add some simple wrappers for reading configuration settings | Nalin Dahyabhai | 2008-07-03 | 1 | -0/+95 |
| | |||||
* | - function rename: set_entry_one -> set_entry | Nalin Dahyabhai | 2008-07-03 | 1 | -10/+10 |
| | |||||
* | rename backend_shr_set_config_entry_add_one -> backend_shr_set_config_entry_add | Nalin Dahyabhai | 2008-07-02 | 1 | -12/+11 |
| | | | | | just expect the specific backend to return a filter when checking if an entry is is a set configuration | ||||
* | - rename unset_entry_id to unset_entry | Nalin Dahyabhai | 2008-07-02 | 1 | -9/+9 |
| | | | | - rename check_aci to check_access | ||||
* | - don't log that we're setting up hooks, the specific backend module will now | Nalin Dahyabhai | 2008-07-01 | 1 | -2/+0 |
| | |||||
* | - make the shared parts of the configuration actually shared so that we can | Nalin Dahyabhai | 2008-07-01 | 1 | -34/+31 |
| | | | | drop accessors for reading the shared parts | ||||
* | - refactor the is-this-a-valid-set-definition logicpost-sch | Nalin Dahyabhai | 2008-06-30 | 1 | -51/+3 |
| | | | | | - make building of either module a conditional, not yet controllable by the configure script | ||||
* | - remove unused variables | Nalin Dahyabhai | 2008-06-30 | 1 | -1/+0 |
| | |||||
* | - take out the need for a backend to provide a matching test | Nalin Dahyabhai | 2008-06-30 | 1 | -47/+56 |
| | | | | - start adding configuration for the schema plugin | ||||
* | - be more consisten about group/set nomenclature | Nalin Dahyabhai | 2008-06-30 | 1 | -2/+2 |
| | |||||
* | - use group/set nomenclature more widely | Nalin Dahyabhai | 2008-06-30 | 1 | -2/+2 |
| | |||||
* | - add a data entry, not a map, to the map cache when we encounter entries at | Nalin Dahyabhai | 2008-06-30 | 1 | -2/+4 |
| | | | | startup | ||||
* | - get schema compatibility linking correctly | Nalin Dahyabhai | 2008-06-30 | 1 | -8/+6 |
| | |||||
* | - start adding an sch backend | Nalin Dahyabhai | 2008-06-30 | 1 | -0/+1143 |
- start factoring out the backend logic where the sch and nis backends overlap |