diff options
author | Endi S. Dewata <edewata@redhat.com> | 2010-11-02 20:16:55 -0500 |
---|---|---|
committer | Adam Young <ayoung@redhat.com> | 2010-11-04 14:22:32 -0400 |
commit | d99ebc0f3798c84e612c79c43eb85c31b20ab1ce (patch) | |
tree | f2a758dfc9028d32f00236340b409469c73848a4 /install/static/test/entity_tests.html | |
parent | 05a16f50d7fe8c01408ec445e6b5ad26ff65d9d5 (diff) | |
download | freeipa-d99ebc0f3798c84e612c79c43eb85c31b20ab1ce.tar.gz freeipa-d99ebc0f3798c84e612c79c43eb85c31b20ab1ce.tar.xz freeipa-d99ebc0f3798c84e612c79c43eb85c31b20ab1ce.zip |
HBAC Details Page
The UI framework has been extended to include a collection of widgets:
- ipa_widget: base class
- ipa_text_widget: text field
- ipa_radio_widget: radio button
- ipa_textarea_widget: textarea
- ipa_button_widget: button
- ipa_column_widget: column for table
- ipa_table_widget: table
These widgets can be used to create input controls. They can also be
extended to create custom controls.
The framework has also been enhanced to support custom layouts. This
can be used to change the look of the application without changing
the code. Initially this is only available in details section.
Layout consists of a collection of HTML templates. Each template is a
complete and valid HTML file representing a portion of a page. The
template will be loaded and initialized by the code, then filled with
the data from the server. The layouts are located in
install/static/layouts/<name> folder.
By default, if no templates are used, the fields in the details page
are rendered vertically using dd/dt/dd tags. For pages that require
different layout, a custom UI needs to be developed. There are two ways
to do that:
- write a custom widget to generate the UI dynamically
- create an HTML template and write the initialization code
For components that are quite complex or used frequently, it's might
be better to use the first method. For simple pages that are used only
in one location or need to support customization, the second method
might be preferable. Other benefits of templates:
- cleaner code and UI separation
- more flexibility in customization
- new pages can be developed quickly and require less coding
- multiple templates can be used with the same initialization code
- easier to maintain
The HBAC details page has been implemented using both methods. By
default it will use custom widgets to generate the page. To use a
custom layout, add the following parameter to the URL, then reload
the page:
&layout=<name>
Currently the only available layout is 'default' which produces the
same look as the custom widgets.
The HBAC details page is usable, but it still needs additional work.
The access time is not working yet. There is no undo button, hint,
or validation yet.
The table in the association facet has also been changed to use
ipa_association_widget which is derived from ipa_table_widget.
The Makefile has been updated to include the layouts. The unit tests
have been updated as well.
Diffstat (limited to 'install/static/test/entity_tests.html')
-rw-r--r-- | install/static/test/entity_tests.html | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/install/static/test/entity_tests.html b/install/static/test/entity_tests.html index 0f7962952..cd6b64095 100644 --- a/install/static/test/entity_tests.html +++ b/install/static/test/entity_tests.html @@ -7,6 +7,7 @@ <script type="text/javascript" src="../jquery.js"></script> <script type="text/javascript" src="../jquery.ba-bbq.js"></script> <script type="text/javascript" src="../ipa.js"></script> + <script type="text/javascript" src="../widget.js"></script> <script type="text/javascript" src="../details.js"></script> <script type="text/javascript" src="../search.js"></script> <script type="text/javascript" src="../add.js"></script> |