diff options
author | Adam Young <ayoung@redhat.com> | 2011-01-14 12:16:25 -0500 |
---|---|---|
committer | Endi Sukma Dewata <edewata@people01.fedoraproject.org> | 2011-01-15 03:35:42 +0000 |
commit | d49cf9ee614f1d42ae06468e43e4214ad2fca9df (patch) | |
tree | 04adf3c4a97a533bab04dd3eee8ec8fd82f14909 /install/static/sudorule.js | |
parent | bd965c92d829f9d88f4e29f37890c9beffbd716d (diff) | |
download | freeipa.git-d49cf9ee614f1d42ae06468e43e4214ad2fca9df.tar.gz freeipa.git-d49cf9ee614f1d42ae06468e43e4214ad2fca9df.tar.xz freeipa.git-d49cf9ee614f1d42ae06468e43e4214ad2fca9df.zip |
lint clean added a config file for running jsl. run 'jsl -conf jsl.conf' and see that there are no error messages.
Diffstat (limited to 'install/static/sudorule.js')
-rw-r--r-- | install/static/sudorule.js | 33 |
1 files changed, 22 insertions, 11 deletions
diff --git a/install/static/sudorule.js b/install/static/sudorule.js index c3cd5821..43ae267e 100644 --- a/install/static/sudorule.js +++ b/install/static/sudorule.js @@ -1,3 +1,5 @@ +/*jsl:import ipa.js */ + /* Authors: * Endi Sukma Dewata <edewata@redhat.com> * @@ -51,10 +53,12 @@ IPA.sudorule = function () { }; return that; -} +}; + IPA.add_entity(IPA.sudorule()); + IPA.sudorule_add_dialog = function (spec) { spec = spec || {}; @@ -69,7 +73,8 @@ IPA.sudorule_add_dialog = function (spec) { }; return that; -} +}; + IPA.sudorule_search_facet = function (spec) { @@ -87,7 +92,8 @@ IPA.sudorule_search_facet = function (spec) { }; return that; -} +}; + IPA.sudorule_details_facet = function (spec) { @@ -369,13 +375,13 @@ IPA.sudorule_details_facet = function (spec) { return; } - //alert(JSON.stringify(batch.to_json())); batch.execute(); }; return that; -} +}; + IPA.sudorule_details_general_section = function (spec){ @@ -498,7 +504,8 @@ IPA.sudorule_details_general_section = function (spec){ }; return that; -} +}; + IPA.sudorule_details_command_section = function (spec){ @@ -665,7 +672,8 @@ IPA.sudorule_details_command_section = function (spec){ }; return that; -} +}; + IPA.sudorule_details_runas_section = function (spec){ @@ -857,7 +865,8 @@ IPA.sudorule_details_runas_section = function (spec){ }; return that; -} +}; + IPA.sudorule_association_table_widget = function (spec) { @@ -897,7 +906,8 @@ IPA.sudorule_association_table_widget = function (spec) { }; return that; -} +}; + IPA.sudorule_association_adder_dialog = function (spec) { @@ -1050,7 +1060,8 @@ IPA.sudorule_association_adder_dialog = function (spec) { }; return that; -} +}; + IPA.sudorule_command_table_widget = function (spec) { @@ -1114,4 +1125,4 @@ IPA.sudorule_command_table_widget = function (spec) { }; return that; -} +}; |