diff options
| author | Ted Trask <ttrask01@yahoo.com> | 2016-08-10 17:46:08 +0000 | 
|---|---|---|
| committer | Ted Trask <ttrask01@yahoo.com> | 2016-08-10 17:46:08 +0000 | 
| commit | 173e83752d4f564db01b197343a0dc360e8ea4e7 (patch) | |
| tree | 37ad2b0df444d976ab5c6d3bfd6b77df7ffc3846 | |
| parent | 3dc89450e7133977f841b6e82f3b7aff41acfa6b (diff) | |
| download | acf-squid-master.tar.bz2 acf-squid-master.tar.xz | |
| -rw-r--r-- | Makefile | 2 | ||||
| -rw-r--r-- | squid-listfiles-html.lsp | 2 | ||||
| -rw-r--r-- | squid-model.lua | 10 | 
3 files changed, 7 insertions, 7 deletions
| @@ -8,7 +8,7 @@ APP_DIST=\  EXTRA_DIST=README Makefile config.mk -DISTFILES=$(APP_DIST) $(EXTRA_DIST)  +DISTFILES=$(APP_DIST) $(EXTRA_DIST)  TAR=tar diff --git a/squid-listfiles-html.lsp b/squid-listfiles-html.lsp index 6a1b1f3..3407446 100644 --- a/squid-listfiles-html.lsp +++ b/squid-listfiles-html.lsp @@ -1,4 +1,4 @@ -<% local view, viewlibrary, page_info, session = ...  +<% local view, viewlibrary, page_info, session = ...  htmlviewfunctions = require("htmlviewfunctions")  html = require("acf.html")  %> diff --git a/squid-model.lua b/squid-model.lua index 1f818f3..11098ce 100644 --- a/squid-model.lua +++ b/squid-model.lua @@ -29,7 +29,7 @@ local validate_config = function(newconfig)  			newconfig.value.httpports.errtxt = "Invalid port"  			success = false  			break -		end				 +		end  	end  	return success, newconfig @@ -52,11 +52,11 @@ mymodule.getstatus = function()  	return modelfunctions.getstatus(processname, packagename, "Squid status")  end -function mymodule.get_startstop(self, clientdata)        +function mymodule.get_startstop(self, clientdata)          return modelfunctions.get_startstop(processname)  end -function mymodule.startstop_service(self, startstop, action)         +function mymodule.startstop_service(self, startstop, action)          return modelfunctions.startstop_service(startstop, action)  end @@ -87,7 +87,7 @@ mymodule.read_digest_userlist = function()  			end  		end  	end -	 +  	return retval  end @@ -437,7 +437,7 @@ function mymodule.deletefile(self, delfile)  			break  		end  	end -	 +  	return delfile  end | 
