summaryrefslogtreecommitdiffstats
path: root/install/ui/dialog.js
Commit message (Collapse)AuthorAgeFilesLines
* Added sudo options.Endi S. Dewata2011-07-111-1/+1
| | | | | | | A table has been added into sudo rule details page for managing sudo options. Ticket #1447
* validate required fields https://fedorahosted.org/freeipa/ticket/1329Adam Young2011-06-271-2/+0
| | | | overides required with optional.
* optional uidAdam Young2011-06-271-0/+19
| | | | Make the uid field optional
* Converted entity header into facet header.Endi S. Dewata2011-06-231-0/+3
| | | | | | | | | | | The content and the size of entity header changes depending on the facet being displayed, so the entity header has been converted into a facet header to allow better control via CSS. The DNS record facet has been updated to use the same styling and support scrolling. To help styling and testing, all buttons have been assigned a name.
* Fixed self-service links.Endi S. Dewata2011-06-161-0/+2
| | | | | | | | | | | | In self-service mode the user's association facets have been modified such that the entries are not linked since the only available entity is the user entity. A 'link' parameter has been added to IPA.association_facet and IPA.column to control whether to link the entries. The link_handler() method can be used to define how to handle the link. Ticket #1072
* Fixed resizing issues.Endi S. Dewata2011-06-131-6/+0
| | | | | | | | | | The UI has been modified to fix some resizing issues: Previously the height of facet content was roughly calculated using resize(). Now the height can be more accurately defined in CSS. Previously the UI width was fixed. The HTML layout and background images have been modified to support horizontal expansion if needed.
* dialog scrolling tableAdam Young2011-06-031-0/+6
| | | | Tables on the dialog page need to have the scrolling set but should not resize with the main window, since their window is a JQuery UI dialog.
* automount delete keyAdam Young2011-06-011-2/+49
| | | | | | | | | | | | | | | | | | indirect automount maps code review changes for automount: Removed: fields for mount and parentmap in maps details since they are not present in show or mod Hid undo link for adder dialog set up click handler for checkboxes when row does not have primary key removed add override in automountmap_adder_dialog moved 'var input...' in automount.js line 158 to start of method. changed logic in if statmenet ,dialog.js line 628 it if (!first) as suggested
* Fixed problem deleting value in text field.Endi S. Dewata2011-05-271-15/+21
| | | | | | | | | | | | Previously deleting a value in a text field did not work because the field is not included in the modify operation when the value is empty. The details facet's update() method has been modified to update only dirty fields. The section lists in details facet and dialog have been converted into ordered maps. Ticket #1256
* jQuery ordered map.Endi S. Dewata2011-05-201-28/+31
| | | | | | | | | The ordered map is a jQuery extension for creating a collection which can be accessed both as an ordered list and as a map. This collection can be used to store various objects including entities, fields, columns, and dialogs. A test suite for this class has been added as well. Ticket #1232
* Entitlement quantity validation.Endi S. Dewata2011-04-271-1/+9
| | | | | | The widget base class has been modified to validate integer value if the type is specified in the metadata. This is used to validate entitlement quantity.
* Moved adder dialog box into entity.Endi S. Dewata2011-04-211-4/+15
| | | | | The adder dialog box definition has been moved from search facet into entity to make it accessible from other facets.
* Entitlement download.Endi S. Dewata2011-04-181-5/+2
| | | | A Download link has been added to download entitlement certificates.
* Entitlement registration.Endi S. Dewata2011-04-141-0/+3
| | | | | | The entitlement facet will show buttons according to the entitlement status. If it's unregistered, the facet will show a Register button. If it's registered, the facet will show a Consume button.
* Refactored builder interface.Endi S. Dewata2011-04-111-0/+19
| | | | | | | The IPA.entity_builder has been modified to take a 'factory' parameter in custom facet's and custom dialog's spec. The IPA.dialog has been modified to take an array of fields in the spec. The IPA.search_facet has been modified to take an array of columns in the spec.
* define entities using builder and more declarative syntaxAdam Young2011-03-311-0/+9
| | | | | | merged hbac and sudo in to single files associaton facet and table supports linking
* Fixed memory leak caused by certificate dialogs.Endi S. Dewata2011-03-071-1/+6
| | | | Ticket 1054
* Fixed memory leak caused by IPA.dialog.Endi S. Dewata2011-03-041-6/+8
| | | | Ticket 1054
* I18n update for dialog box buttons.Endi S. Dewata2011-02-221-12/+6
| | | | https://fedorahosted.org/freeipa/ticket/899
* I18n update.Endi S. Dewata2011-02-211-4/+4
| | | | | Hard-coded messages through out the code have been replaced by i18n messages obtained from json_metadata and i18n_messages.
* Added expand/collapse all.Endi S. Dewata2011-02-171-2/+2
| | | | | | | | A link has been added into the details page to expand/collapse all sections. Previously each section's <div> container is identified using a long ID. It is now identified using the section name.
* Fixed association facets.Endi S. Dewata2011-02-151-2/+1
| | | | | | | | The association config has been removed because it incorrectly assumes there is only one association between two entities. Now each association is defined separately using association facets. The service.py has been modified to specify the correct relationships. The API.txt has been updated. https://fedorahosted.org/freeipa/ticket/960
* Fixed add service dialog box.Endi S. Dewata2011-02-111-0/+1
| | | | | | Previously the add service dialog box shows a 'Principal:' label with no text field next to it. It now has been removed. The dialog box has been widened to avoid line wrapping of the buttons.
* target section without radio buttons ACI target section refactored into an ↵Adam Young2011-02-111-0/+3
| | | | array of widget-like objects. The radio buttons have been replaced by a select box. THe select is not visible on the details page.
* Added undo for permission target.Endi S. Dewata2011-02-021-1/+1
| | | | https://fedorahosted.org/freeipa/ticket/885
* Add permission dialog adjustments.Endi S. Dewata2011-01-291-0/+553
The IPA.dialog has been modified to support sections. The add dialog for permission has been modified to include the target section. The base dialog classes have been moved from widget.js into a new file called dialog.js. This patch also includes ayoung's fix for parameter name and format for the permission attributes. https://fedorahosted.org/freeipa/ticket/791