summaryrefslogtreecommitdiffstats
path: root/ipa-server/ipa-gui/ipagui/forms/delegate.py
Commit message (Collapse)AuthorAgeFilesLines
* Fix encoding issue when manually loading templates for formsRob Crittenden2008-07-291-1/+2
| | | | | | | | | | | | | | | We used to manually load the template files for the edit pages using turbogears.meta.load_kid_template(). Unfortunately this went through the one code path where encoding was completely ignored. It ended up defaulting to sys.getdefaultencoding() which is 'ascii'. So even though most of the templates are loaded as 'utf-8' the few that really mattered weren't. The fix is to call kid.load_template() ourselves and set the encoding of the class we just loaded to either the setting in the app.cfg file or to the normal default value of 'utf-8'. 454076
* We are really changing the kerberos principal key and not the password whenRob Crittenden2008-03-241-1/+1
| | | | | | | | | | we do updates, so use the right terminology internally. Also fix the actual field we update (and grant permission appropriately in delegations). The DS password handles updating userPassword and any Samba passwords as necessary. 438256
* Set the license uniformly to GPLv2 only.Rob Crittenden2008-02-041-0/+17
|
* Fix the UI indicators for mandatory fields.Rob Crittenden2007-12-121-2/+3
| | | | | The source and target groups weren't highlighted but the entire block of checkboxes was and it looked absolutely horrible.
* Compatibility changes to work on RHEL 5 with python 2.4rcritten@redhat.com2007-11-301-1/+1
|
* Require uniqueness in the name/comment field of delegationsRob Crittenden2007-11-091-1/+1
| | | | | | 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"
* Rename the form fields parameter to be clearer:Kevin McCarthy2007-10-251-2/+2
| | | | | | user -> user_fields group -> group_fields delegate -> delegate_fields
* Fixes to acilist: make use POST, use field labels.Kevin McCarthy2007-10-151-1/+1
|
* Fix list delegations to show field labels.Kevin McCarthy2007-10-151-0/+2
| | | | Also fix script tags on delegateform.kid.
* Rename delegatenewform to delegateform.Kevin McCarthy2007-10-151-2/+1
|
* Add basic delegation editing.Kevin McCarthy2007-10-151-5/+9
|
* Adds delegation listing and creation to the GUI.Kevin McCarthy2007-10-121-0/+86