summaryrefslogtreecommitdiffstats
path: root/ipa-server/ipa-gui
Commit message (Collapse)AuthorAgeFilesLines
* Use same tzinfo as the time parser to avoid TypeError from being thrownRob Crittenden2007-11-211-1/+1
|
* Enable group inactivation by using the Class of Service plugin.Rob Crittenden2007-11-207-14/+82
| | | | | | | | | | | | | | | | | | | | This adds 2 new groups: activated and inactivated. If you, or a group you are a member of, is in inactivated then you are too. If you, or a group you are a member of, is in the activated group, then you are too. In a fight between activated and inactivated, activated wins. The DNs for doing this matching is case and white space sensitive. The goal is to never have to actually set nsAccountLock in a user directly but move them between these groups. We need to decide where in the CLI this will happen. Right it is split between ipa-deluser and ipa-usermod. To inactivate groups for now just add the group to inactivate or active.
* Implement the password policy UI and finish IPA policy UIRob Crittenden2007-11-166-86/+328
| | | | | | | | | | | | | | | | | | This includes a default password policy Custom fields are now read from LDAP. The format is a list of dicts with keys: label, field, required. The LDAP-based configuration now specifies: ipaUserSearchFields: uid,givenName,sn,telephoneNumber,ou,title ipaGroupSearchFields: cn,description ipaSearchTimeLimit: 2 ipaSearchRecordsLimit: 0 ipaCustomFields: ipaHomesRootDir: /home ipaDefaultLoginShell: /bin/sh ipaDefaultPrimaryGroup: ipausers ipaMaxUsernameLength: 8 ipaPwdExpAdvNotify: 4 This could use some optimization.
* Replace references to Person and People with User and UsersRob Crittenden2007-11-159-25/+25
|
* Make the group cn an editable field though protected by default.Rob Crittenden2007-11-143-26/+26
| | | | Fix some issues with the multi-value to single-value reversion.
* Include multi-value fields on the Add Person pageRob Crittenden2007-11-147-117/+241
| | | | Remove multi-valued cn from groups
* Add an editors group. This is used to generally grant access for usersRob Crittenden2007-11-149-47/+52
| | | | | | | | to edit other users (the Edit link won't appear otherwise). Additional delegation is need to grant permission to individual attributes. Update the failed login page to indicate that it is a permission issue. Don't allow access to policy at all for non-admins. By default users can only edit themselves.
* Add more fields to the IPA Policy formRob Crittenden2007-11-134-1/+68
|
* Remove non-existent files from Makefile targetsRob Crittenden2007-11-132-2/+0
|
* The e-mail field should not be required.Rob Crittenden2007-11-131-1/+1
|
* Restrict access to some parts of the UI to those in the admins groupRob Crittenden2007-11-134-14/+41
|
* Fix editing groups when cn is a single-valued fieldRob Crittenden2007-11-091-2/+4
| | | | Fix some error messages that were printing the entire detail message
* Require uniqueness in the name/comment field of delegationsRob Crittenden2007-11-092-6/+31
| | | | | | Fix error reporting in the UI to include the detailed message Sort delegations by name when displaying them Update the name field from "Name" to "Delegation Name"
* Underline columns on sort results page so users will know it is a linkRob Crittenden2007-11-121-0/+19
| | | | Restore the CSS to display the up/down arrow on sort columns
* Initial support for policy editingRob Crittenden2007-11-1213-2/+349
| | | | More work is needed as the values are currently hardcoded and not saved
* Enable multi-value field support for some attributes on the edit pagesRob Crittenden2007-11-0810-79/+472
| | | | | Better error reporting in the GUI Include a document describing how multi-valued fields work
* Update text to reflect new CSS code (sidebar now on right)Rob Crittenden2007-11-061-1/+1
|
* define Self-Service as editting your own record.Rob Crittenden2007-11-023-4/+14
| | | | | This has the side-effect of removing the realm from Loggin in as. This can be changed by using user_name instead of display_name in master.kid.
* Distinguish between active and inactive users on the Find People page.Rob Crittenden2007-11-023-3/+25
|
* groups come back as a list where the first element is the number ofRob Crittenden2007-11-021-0/+1
| | | | groups returned. Skip that element.
* Update the UI look and feelRob Crittenden2007-11-0133-411/+473
|
* TurboGears log files and log rotationRob Crittenden2007-11-012-16/+29
| | | | | | | | | | | The error log is rotated weekly on Sunday. 4 backups are saved. The access log is not stored since it would be a duplicate of the Apache logs. It can be enabled if desired. Had to move the call to daemonize() in ipa-webgui so that the fork is done before TurboGears is initialized. Otherwise the log files end up getting closed.
* Rename memberOf to group_members in xml-rpc interface.Karl MacMillan2007-10-311-2/+2
|
* Have the GUI use memberOf() instead of looping through the member DNsRob Crittenden2007-10-311-25/+5
| | | | Fix a bug in the local transport version of memberOf()
* Add delete user and group to webgui.Kevin McCarthy2007-10-234-4/+93
| | | | NOTE: this doesn't handle referential integrity.
* Set the user password when adding a userRob Crittenden2007-10-261-2/+11
|
* Rename the form fields parameter to be clearer:Kevin McCarthy2007-10-258-250/+250
| | | | | | user -> user_fields group -> group_fields delegate -> delegate_fields
* webgui side of custom fields.Kevin McCarthy2007-10-245-2/+96
|
* Fix devel mode for the webgui.Kevin McCarthy2007-10-231-3/+2
|
* Add an LDAP attribute -> label mapping function to XML-RPC layerRob Crittenden2007-10-221-28/+2
| | | | Move some ACI functions around in preparation for cli delegation
* Add add/edit/show for manager and secretary fields.Kevin McCarthy2007-10-199-24/+293
|
* Remove dependency between ipa-pyton and ipa-serverKarl MacMillan2007-10-191-1/+3
| | | | | | | Current ipa-python imports and calls code from ipaserver (which is in the ipa-server package). This makes it impossible to use the admin tools or the ipa-python package on a system without the server bits installed. This fixes that in a fairly minimal way.
* Finish the email autosuggest.Kevin McCarthy2007-10-181-26/+14
| | | | | For now I've added a new API call. The field-specific searching is a ways off.
* Fix HTML errors on empty fields. Move roomnumber to address section.Kevin McCarthy2007-10-193-33/+35
|
* Add a flash message to the top of the page when there are validation errors.Kevin McCarthy2007-10-193-5/+22
|
* Add exception template.Karl MacMillan2007-10-191-0/+1
|
* Add an exception/error handler to the web gui.Kevin McCarthy2007-10-182-0/+92
|
* Fix build issues related to the autotools conversionRob Crittenden2007-10-183-0/+8
|
* Add logger objects to each controller.Kevin McCarthy2007-10-177-9/+26
| | | | Fix up the config settings for logging.
* Sort users by last name. Make labeleduri a link.Kevin McCarthy2007-10-172-5/+7
|
* Add print media CSS. Rename delegation edit button to 'update'.Kevin McCarthy2007-10-175-8/+25
|
* Merge.Karl MacMillan2007-10-178-30/+125
|\
| * patch queue: jslint_fixes.patchKevin McCarthy2007-10-162-4/+4
| |
| * Remove coffee-spewing color from delete button. Adjust nav-link and size.Kevin McCarthy2007-10-162-4/+3
| |
| * Adds deletion for delegations.Kevin McCarthy2007-10-163-0/+68
| | | | | | | | The deletion is only triggered via javascript, so they must hit confirm.
| * Fixes to acilist: make use POST, use field labels.Kevin McCarthy2007-10-154-19/+33
| |
| * Fix for when there's a single ACI.Kevin McCarthy2007-10-151-0/+4
| |
| * Fix list delegations to show field labels.Kevin McCarthy2007-10-153-2/+13
| | | | | | | | Also fix script tags on delegateform.kid.
| * Rename delegatenewform to delegateform.Kevin McCarthy2007-10-152-2/+1
| |
* | Autotool ipa-server - patch from William Jon McCann <mccann@jhu.edu>.Karl MacMillan2007-10-1714-38/+276
|/