diff options
| -rw-r--r-- | lighttpd-listfiles-html.lsp | 16 | ||||
| -rw-r--r-- | lighttpd-model.lua | 7 | 
2 files changed, 5 insertions, 18 deletions
diff --git a/lighttpd-listfiles-html.lsp b/lighttpd-listfiles-html.lsp index 8cfea46..d1cba0b 100644 --- a/lighttpd-listfiles-html.lsp +++ b/lighttpd-listfiles-html.lsp @@ -3,20 +3,6 @@ htmlviewfunctions = require("htmlviewfunctions")  html = require("acf.html")  %> -<% -function convertsize(size) -	if string.find(size, "k$") then -		return tonumber(string.match(size, "[%d.]*")) * 1024.0 -	elseif string.find(size, "M$") then -		return tonumber(string.match(size, "[%d.]*")) * 1024.0 * 1024.0 -	elseif string.find(size, "G$") then -		return tonumber(string.match(size, "[%d.]*")) + 1024.0 * 1024.0 * 1024.0 -	else -		return tonumber(string.match(size, "[%d.]*")) -	end -end -%> -  <script type="text/javascript">  	if (typeof jQuery == 'undefined') {  		document.write('<script type="text/javascript" src="<%= html.html_escape(page_info.wwwprefix) %>/js/jquery-latest.js"><\/script>'); @@ -57,7 +43,7 @@ end %>  	<tr>  		<td><% htmlviewfunctions.displayitem(cfe({type="link", value={filename=filename, redir=redir}, label="", option="Edit", action="expert"}), page_info, -1) %></td>  		<td><%= html.html_escape(file.filename) %></td> -		<td><span class="hide"><%= convertsize(file.filesize) %>b</span><%= html.html_escape(file.filesize) %></td> +		<td><span class="hide"><%= html.html_escape(file.size or 0) %>b</span><%= format.formatfilesize(file.size) %></td>  		<td><%= html.html_escape(file.mtime) %></td>  	</tr>  <% end %> diff --git a/lighttpd-model.lua b/lighttpd-model.lua index 7dd43ad..ffb6068 100644 --- a/lighttpd-model.lua +++ b/lighttpd-model.lua @@ -73,13 +73,14 @@ function mymodule.getfilelist()  	local listed_files = {}  	for i,name in ipairs(filelist) do -		local filedetails = fs.stat(name) or {} -		table.insert ( listed_files , {filename=name, mtime=filedetails.mtime or "---", filesize=filedetails.size or "0"} ) +		local filedetails = posix.stat(name) or {} +		filedetails.filename=name +		table.insert(listed_files, filedetails)  	end  	table.sort(listed_files, function (a,b) return (a.filename < b.filename) end ) -	return cfe({ type="list", value=listed_files, label="Lighttpd File List" }) +	return cfe({ type="structure", value=listed_files, label="Lighttpd File List" })  end  function mymodule.getfiledetails(filename)  | 
