diff options
author | Ted Trask <ttrask01@yahoo.com> | 2012-04-18 01:19:42 +0000 |
---|---|---|
committer | Ted Trask <ttrask01@yahoo.com> | 2012-04-18 01:19:42 +0000 |
commit | 39844298500aaf33bdd9bdb0c9ae32ec2d72f7db (patch) | |
tree | ed6682aca71aa197e441977bc80642f33d2fbfbb /heimdal-model.lua | |
parent | db4e59d2ef828a2dbc909d9b86b1bbcdbe5d7e17 (diff) | |
download | acf-heimdal-39844298500aaf33bdd9bdb0c9ae32ec2d72f7db.tar.bz2 acf-heimdal-39844298500aaf33bdd9bdb0c9ae32ec2d72f7db.tar.xz |
Started work on updating for acf-core-0.15
Removed controllerfunctions library (still needs more work and corresponding work in model)
Updated for viewfunctions to htmlviewfunctions and modified require statements for acf libraries
Diffstat (limited to 'heimdal-model.lua')
-rw-r--r-- | heimdal-model.lua | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/heimdal-model.lua b/heimdal-model.lua index 9845c10..57876fa 100644 --- a/heimdal-model.lua +++ b/heimdal-model.lua @@ -1,10 +1,10 @@ module(..., package.seeall) -- Load libraries -require("processinfo") require("modelfunctions") -require("fs") -require("format") +processinfo = require("acf.processinfo") +fs = require("acf.fs") +format = require("acf.format") -- Set variables local configfile = "/etc/krb5.conf" |