From b7097fc8c9096e3e8bf4a01edc6d7274c9c4cac0 Mon Sep 17 00:00:00 2001 From: "Endi S. Dewata" Date: Fri, 1 Oct 2010 16:33:57 -0500 Subject: Entity association configuration. The ipa_entity_set_association_definition() has been added to configure the association between 2 entitites. By default the associator is BulkAssociator and the method is add_member. The entities have been updated to use the right configurations. The ipa_cmd() has been modified to detect IPA errors and invoke the error handler. A bug in refresh_on_success() has been fixed as well. --- install/static/ipa.js | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'install/static/ipa.js') diff --git a/install/static/ipa.js b/install/static/ipa.js index 9e84bb9e..31c91204 100644 --- a/install/static/ipa.js +++ b/install/static/ipa.js @@ -83,6 +83,13 @@ function ipa_cmd(name, args, options, win_callback, fail_callback, objname) } ipa_error_handler(xhr, text_status, error_thrown); + } else if (data.error) { + var error_thrown = { + name: 'IPA Error '+data.error.code, + message: data.error.message + } + ipa_error_handler(xhr, text_status, error_thrown); + } else if (win_callback) { win_callback(data, text_status, xhr); } -- cgit