summaryrefslogtreecommitdiffstats
path: root/ospf-controller.lua
diff options
context:
space:
mode:
authorTed Trask <ttrask01@yahoo.com>2012-04-18 01:53:16 +0000
committerTed Trask <ttrask01@yahoo.com>2012-04-18 01:53:16 +0000
commit6c38a0c60eaed72bee275bfe23d0783d8b6add4f (patch)
tree9570eca043644d8b4daffb43ae12319b15ccf74a /ospf-controller.lua
parent376e0d7d3d4364ff443d01ac6eebb644c93f4697 (diff)
downloadacf-quagga-6c38a0c60eaed72bee275bfe23d0783d8b6add4f.tar.bz2
acf-quagga-6c38a0c60eaed72bee275bfe23d0783d8b6add4f.tar.xz
Started work on updating for acf-core-0.15
Removed controllerfunctions library (still needs more work and corresponding work in model) Updated startstop functionality and deleted view Updated for viewfunctions to htmlviewfunctions and modified require statements for acf libraries
Diffstat (limited to 'ospf-controller.lua')
-rw-r--r--ospf-controller.lua7
1 files changed, 2 insertions, 5 deletions
diff --git a/ospf-controller.lua b/ospf-controller.lua
index 23b8fe3..9cabb3b 100644
--- a/ospf-controller.lua
+++ b/ospf-controller.lua
@@ -1,8 +1,5 @@
module(..., package.seeall)
--- Load libraries
-require("controllerfunctions")
-
default_action = "status"
function status(self)
@@ -14,10 +11,10 @@ function details(self)
end
function startstop(self)
- return controllerfunctions.handle_startstop(self, self.model.startstop_service, self.clientdata)
+ return self.handle_form(self, self.model.get_startstop, self.model.startstop_service, self.clientdata)
end
function expert(self)
- return controllerfunctions.handle_form(self, self.model.getconfigfile, self.model.setconfigfile, self.clientdata, "Save", "Edit OSPF Config", "OSPF Configuration Saved")
+ return self.handle_form(self, self.model.getconfigfile, self.model.setconfigfile, self.clientdata, "Save", "Edit OSPF Config", "OSPF Configuration Saved")
end