summaryrefslogtreecommitdiffstats
path: root/install/static/hostgroup.js
diff options
context:
space:
mode:
authorStephen Gallagher <sgallagh@redhat.com>2010-08-02 14:36:33 -0400
committerRob Crittenden <rcritten@redhat.com>2010-08-02 16:28:07 -0400
commitf9ff041c5cd5ac11af2edb59cb7a707582193df6 (patch)
tree78bdceb1b3b637be34fbb11ff34d8d17fdf88446 /install/static/hostgroup.js
parent47d4fcdd8178ec4b8403efa4f80eaa009c32d78b (diff)
downloadfreeipa-webui-details.tar.gz
freeipa-webui-details.tar.xz
freeipa-webui-details.zip
Revert WebUI changeswebui-details
Reverted with: % git diff --binary HEAD..d4adbc8052faf18fb31e7b1865037aa107067d4b > revert.patch % git apply revert.patch % git commit -a
Diffstat (limited to 'install/static/hostgroup.js')
-rw-r--r--install/static/hostgroup.js43
1 files changed, 0 insertions, 43 deletions
diff --git a/install/static/hostgroup.js b/install/static/hostgroup.js
deleted file mode 100644
index b6cb413fa..000000000
--- a/install/static/hostgroup.js
+++ /dev/null
@@ -1,43 +0,0 @@
-function setupHostgroup(facet){
- if (facet == "details"){
- setupHostgroupDetails();
- }else{
- setupHostgroupSearch();
- }
-}
-
-
-
-
-function setupHostgroupDetails(){
- var detailsForm = new DetailsForm();
-}
-
-
-function setupHostgroupSearch(){
-
-
- var columns = [
- {title:"Hostgroup",column:"cn",render: function(current,cell){
- renderDetailColumn(current,cell,current[this.column],"hostgroup");
- }},
- {title:"Description", column:"description",render: renderSimpleColumn}];
-
- var hostgroupSearchForm = new SearchForm("hostgroup", "find", columns);
-
-
- $("#query").unbind();
-
- $("#query").click(function(){
- sampleData = "sampledata/hostgrouplist.json";
- executeSearch(hostgroupSearchForm);
- });
- $("#new").unbind();
- $("#new").click( function() {
- alert("New Hostgroup...");
- });
-
-
-}
-
- \ No newline at end of file