Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Initial support for Groups | rcritten@redhat.com | 2007-08-24 | 16 | -229/+1012 |
| | | | | | | | | | Create separate object for Users and Groups (using same base class) Check for uniqueness before adding new users and groups Remove user_container from everything but add operations Abstract out a number of functions that are common across users and groups Make sure all strings passed in to be in a filter are checked Add new error message: No modifications specified | ||||
* | Move add user logic to the server side | rcritten@redhat.com | 2007-08-23 | 2 | -17/+29 |
| | |||||
* | Handle optional arguments by using the value __NONE__ over XML-RPC. | rcritten@redhat.com | 2007-08-23 | 9 | -141/+102 |
| | | | | | | | | | | | | | | | | | rpcclient.py must call XML-RPC functions with all arguments. Removed encode_args and decode_args. They were the source of most of the argument pain. Now opts is alwyas appended to the end of the arguments so MUST be the last argument in any server-side function (can be None) Allow the User object to handle unicode data Small fixes to command-line tools to be friendlier Broke out get_user() into get_user_by_dn() and get_user_by_uid() Need to request more than just 'nsAccountLock' attribute when trying to see if a user is already marked deleted. If it is blank the record coming back is empty. Add 'uid' to the list to guarantee something coming back (dn is handled specially) Added user_container attribute to get_user_* and add_user so the caller can specify where in the tree the user will be searched for/added. Added global default value for user_container | ||||
* | Add DS task to fix up memberof, turn debug build back on | Pete Rowley | 2007-08-21 | 2 | -3/+268 |
| | |||||
* | Create ipaerror module. | Kevin McCarthy | 2007-08-22 | 6 | -134/+215 |
| | | | | | | Move LDAPError trapping/conversion into the ipaldap module. Fix xmlrpc layer to encode/decode ipaerrors properly. Also, implement mid-air collision exception for updates. | ||||
* | Move ldap search filter escaping into the funcs.py layer. | Kevin McCarthy | 2007-08-21 | 2 | -19/+26 |
| | |||||
* | Fix escaping code, missing "unicode" string identifier in one of the value | Simo Sorce | 2007-08-21 | 1 | -1/+1 |
| | | | | comparisons | ||||
* | Escape search input. Search by uid and cn. | Kevin McCarthy | 2007-08-20 | 3 | -3/+25 |
| | |||||
* | Remove auto-wildcarding of uid search. | Kevin McCarthy | 2007-08-20 | 2 | -3/+2 |
| | | | | Remove list users link. | ||||
* | Improved modlist generator. | Kevin McCarthy | 2007-08-20 | 1 | -3/+34 |
| | |||||
* | Convert add_user to take a user instead of a dict. | Kevin McCarthy | 2007-08-20 | 4 | -28/+32 |
| | |||||
* | Move utf-8 conversion inside user.py (for updates). | Kevin McCarthy | 2007-08-20 | 2 | -6/+17 |
| | |||||
* | Embed origiginal values inside user, and have update_user pass in a user | Kevin McCarthy | 2007-08-20 | 5 | -55/+65 |
| | | | | | object. Based on rcrit's original patch. Push scalar to list value conversion inside funcs.py. | ||||
* | change strings to be encoded using value.encode("utf-8"). | Kevin McCarthy | 2007-08-17 | 2 | -4/+4 |
| | | | | | fix update to set 'cn' instead of 'sn'. remove str() in funcs.add_user(). | ||||
* | Manual merge changes in for the cidict/ipaclient add_user() | Kevin McCarthy | 2007-08-17 | 4 | -5/+33 |
| | |||||
* | Add interactive prompts to ipa-server-install | Simo Sorce | 2007-08-20 | 2 | -17/+111 |
| | | | | | | Change unattended flag to be -U Change master password flag to be -P instead of -m Improve ipa-client-install readability for user prompts | ||||
* | Remove dependncy on libmhash and use openssl md4 functions | Simo Sorce | 2007-08-20 | 6 | -15/+26 |
| | | | | | | | Remove all dependencies on mhash Remove code optimizatrion from Makefiles, right now these are developers targeted builds, so it is better to have debugging symbols around | ||||
* | Added tag milestone_2 for changeset b0ff0d52ef89 | Karl MacMillan | 2007-08-17 | 1 | -0/+1 |
| | |||||
* | Merge simple fix from Rob Crittenden.milestone_2 | Karl MacMillan | 2007-08-17 | 1 | -1/+1 |
| | |||||
* | Revert incorrect fix. | Karl MacMillan | 2007-08-17 | 1 | -1/+1 |
| | |||||
* | Pass string changes as a list so modifyModList works properly | rcritten@redhat.com | 2007-08-17 | 1 | -3/+3 |
| | |||||
* | Change userlist into a quick search form. | Kevin McCarthy | 2007-08-17 | 3 | -20/+49 |
| | | | | | Add hack to update cn using givenname+sn (for now). Change funcs.find_users() to not error if no results. | ||||
* | Remove ':' from the label widgets so they can be used outside forms. | Kevin McCarthy | 2007-08-17 | 4 | -31/+31 |
| | | | | Add ':' into the edit/new/show pages. | ||||
* | Merge from upstream | Simo Sorce | 2007-08-17 | 1 | -1/+1 |
|\ | |||||
| * | Fix small typo in ipaclient. | Karl MacMillan | 2007-08-17 | 1 | -1/+1 |
| | | |||||
* | | Complete proper daemonization by closing std* descriptors. | Simo Sorce | 2007-08-17 | 1 | -0/+4 |
|/ | | | | This fixes install as well as /sbin/services does not hang anymore | ||||
* | Updated freeipa-admintool spec file to include additional tools. | Karl MacMillan | 2007-08-17 | 4 | -12/+20 |
| | | | | Updated freeipa-python to depend on PyKerberos package. | ||||
* | Merge with upstream | Simo Sorce | 2007-08-17 | 21 | -134/+3875 |
|\ | |||||
| * | Add update user to gui. | Kevin McCarthy | 2007-08-16 | 7 | -118/+134 |
| | | | | | | | | | | | | Fix fields to be lowercase in web gui (server now returns them lowercase). Fix ipaclient.py to refer to lowercase fields when adding a user. Fix user.getValue() to check isinstance(value,list) instead of value[0]. | ||||
| * | Implement user inactivation | rcritten@redhat.com | 2007-08-17 | 10 | -15/+211 |
| | | | | | | | | | | Comment some functions Add attribute argument to get_user() | ||||
| * | Fix -Wall for memberof plugin (from Pete Rowley). | Karl MacMillan | 2007-08-17 | 1 | -10/+28 |
| | | |||||
| * | - Add password generator method to controller. | Kevin McCarthy | 2007-08-14 | 7 | -14/+3370 |
| | | | | | | | | | | | | | | | | | | | | This uses the random.SystemRandom() method to generate an 8-digit alphanumeric password. - Add ajax call to usernew and useredit forms to generate a new password - Add the prototype javascript library: http://www.prototypejs.org/ prototype is distributed with the MIT license. - Add a checkbox to toggle editing (and displaying) the password. - Change usershow template to use same field labels as the edit and new forms. | ||||
| * | Split userform into edit and new forms. | Kevin McCarthy | 2007-08-10 | 5 | -26/+181 |
| | | | | | | | | | | | | | | (They will likely diverge so no sense forcing them together). Add css for required fields. Add "_orig" hidden fields to the edit form in prep for sending only modified fields. | ||||
| * | Updated dep list. | Karl MacMillan | 2007-08-17 | 1 | -3/+3 |
| | | |||||
* | | Add forgotten ipa-kpasswd.init | Simo Sorce | 2007-08-17 | 1 | -0/+76 |
|/ | |||||
* | Ensure that the Apache server is in forked mode | rcritten@redhat.com | 2007-08-14 | 7 | -2/+188 |
| | | | | | Add ability to update existing users Try to prevent fetching and setting empty strings | ||||
* | Patch from Rob to quick fix an error in the previous one | Simo Sorce | 2007-08-16 | 1 | -1/+1 |
| | |||||
* | Basic LDAP connection pooling | rcritten@redhat.com | 2007-08-13 | 6 | -36/+178 |
| | | | | Implement user search | ||||
* | make pluginlibrary files executable like all other dirsrv plugins | Simo Sorce | 2007-08-16 | 2 | -4/+4 |
| | |||||
* | Add a prototype client tool to configure a client of the IPA server | Simo Sorce | 2007-08-16 | 9 | -2/+967 |
| | | | | Right now it does only discovery (or fallback) | ||||
* | Fix the relative name, Richm explained that the allowed values are either: | Simo Sorce | 2007-08-16 | 2 | -2/+2 |
| | | | | | | /full/path/plugin-name.so or just plugin-name (no .so as different arches have different extensions) | ||||
* | Add libmhash as dependency for ipa_wpd_extop | Simo Sorce | 2007-08-16 | 2 | -2/+2 |
| | |||||
* | Make ipa-kpasswd start immediately | Simo Sorce | 2007-08-15 | 1 | -1/+1 |
| | |||||
* | Improve ipa-kpasswd so that it can be installed and started | Simo Sorce | 2007-08-15 | 1 | -75/+110 |
| | | | | | Make it daemonize Make it use syslog (LOG_DAEMON facility) | ||||
* | General fixes. | Simo Sorce | 2007-08-15 | 4 | -4/+4 |
| | | | | Do not start ipa_kpasswd by default yet | ||||
* | in F7 all directory names have changed from fedora-ds to dirsrv | Simo Sorce | 2007-08-15 | 9 | -30/+32 |
| | | | | which should also be the name used in DS 8.0, change all occurences | ||||
* | Use relative .so names for plugin so that lib/lib64 does not get in the way | Simo Sorce | 2007-08-15 | 3 | -2/+2 |
| | | | | change the pwd-extop conf ldif to a more sensible name | ||||
* | Merge from upstream | Simo Sorce | 2007-08-15 | 7 | -2/+1786 |
|\ | |||||
| * | Install server plugins in correct lib directory. | Karl MacMillan | 2007-08-15 | 2 | -3/+13 |
| | | |||||
| * | Integrate memberof plugin into build. | Karl MacMillan | 2007-08-15 | 4 | -4/+29 |
| | |