Hi, I pushed 2 trivial patches under one-liner rule.
-- Endi S. Dewata
From 00f0295a4c8e6104989f8820f46a8c7e00a474ba Mon Sep 17 00:00:00 2001 From: Endi S. Dewata <[email protected]> Date: Fri, 14 Jan 2011 01:06:58 +0700 Subject: [PATCH] Fixed incorrect loop variable. --- install/static/rule.js | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/install/static/rule.js b/install/static/rule.js index 58ad3b80bb3306c46670998573e1311494b59d04..5abb08a991e2db57668633a9fdacff68f87f5137 100755 --- a/install/static/rule.js +++ b/install/static/rule.js @@ -70,7 +70,7 @@ function ipa_rule_details_section(spec){ span.append('<br/>'); } - for (var j=0; i<that.tables.length; i++) { + for (var j=0; j<that.tables.length; j++) { var table = that.tables[j]; param_info = ipa_get_param_info(that.entity_name, table.field_name); -- 1.6.6.1
From ae165a72ae91b0ec29b494311a0aea4816135385 Mon Sep 17 00:00:00 2001 From: Endi S. Dewata <[email protected]> Date: Fri, 14 Jan 2011 01:08:41 +0700 Subject: [PATCH] Removed debugging message. --- install/static/hbacrule.js | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/install/static/hbacrule.js b/install/static/hbacrule.js index 16f21108f8a5265fda0364ac45c35e2b1c83f26c..d1b4023880502edbaf8eea610419db42b7522e1b 100755 --- a/install/static/hbacrule.js +++ b/install/static/hbacrule.js @@ -522,7 +522,7 @@ function ipa_hbacrule_details_facet(spec) { return; } - alert(JSON.stringify(batch.to_json())); + //alert(JSON.stringify(batch.to_json())); batch.execute(); }; -- 1.6.6.1
_______________________________________________ Freeipa-devel mailing list [email protected] https://www.redhat.com/mailman/listinfo/freeipa-devel
