2008-07-07 22:00:56 +00:00
< %#
LuCI - Lua Configuration Interface
Copyright 2008 Steven Barth < steven @ midlink . org >
Copyright 2008 Jo-Philipp Wich < xm @ leipzig . freifunk . net >
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
$Id$
2008-08-16 15:37:28 +00:00
-%>
< %-
local rowcnt = 1
function rowstyle()
rowcnt = rowcnt + 1
return (rowcnt % 2) + 1
end
2008-07-07 22:00:56 +00:00
-%>
2008-04-11 18:24:25 +00:00
< %+header%>
2008-06-09 10:10:29 +00:00
< h1 > < %:system%>< / h1 >
< h2 > < %:a_s_packages%>< / h2 >
2008-04-11 18:24:25 +00:00
< br / >
< % if install or remove or update or upgrade then %>
2008-06-09 10:10:29 +00:00
< div class = "code" > < strong > < %:status%>:< / strong > < br / >
2008-04-11 18:24:25 +00:00
< % if update then %>
2008-06-09 10:10:29 +00:00
< %:a_s_packages_update%>: < % if update == 0 then %>< span class = "ok" > < %:ok%>< / span > < % else %>< span class = "error" > < %:error%> (< %:code%> < %=update%>)< / span > < % end %>< br / >
2008-04-11 18:24:25 +00:00
< % end %>
< % if upgrade then%>
2008-06-09 10:10:29 +00:00
< %:a_s_packages_upgrade%>: < % if upgrade == 0 then %>< span class = "ok" > < %:ok%>< / span > < % else %>< span class = "error" > < %:error%> (< %:code%> < %=upgrade%>)< / span > < % end %>< br / >
2008-04-11 18:24:25 +00:00
< % end %>
< % if install then for k,v in pairs(install) do %>
2008-06-09 10:10:29 +00:00
< %:a_s_packages_install%> '< %=k%>': < % if v == 0 then %>< span class = "ok" > < %:ok%>< / span > < % else %>< span class = "error" > < %:error%> (< %:code%> < %=v%>)< / span > < % end %>< br / >
2008-04-11 18:24:25 +00:00
< % end end %>
< % if remove then for k,v in pairs(remove) do %>
2008-06-09 10:10:29 +00:00
< %:a_s_packages_remove%> '< %=k%>': < % if v == 0 then %>< span class = "ok" > < %:ok%>< / span > < % else %>< span class = "error" > < %:error%> (< %:code%> < %=v%>)< / span > < % end %>< br / >
2008-04-11 18:24:25 +00:00
< % end end %>
< / div >
< br / >
< % end %>
2008-08-16 15:37:28 +00:00
< form method = "post" action = "<%=REQUEST_URI%>" >
< div class = "cbi-map" >
< fieldset class = "cbi-section" >
< ul >
< li > < a href = "<%=REQUEST_URI%>/ipkg" > < %:a_s_packages_ipkg%>< / a > < / li >
< li > < a href = "<%=REQUEST_URI%>?update=1" > < %:a_s_packages_updatelist%>< / a > < / li >
< li > < a href = "<%=REQUEST_URI%>?upgrade=1" > < %:a_s_packages_upgrade%>< / a > < / li >
< / ul >
< br / >
< fieldset class = "cbi-section-node" >
< div class = "cbi-value" >
< label class = "cbi-value-title" > < %:a_s_packages_installurl%>:< / label >
< div class = "cbi-value-field" >
< input type = "text" name = "url" size = "30" value = "" / >
< input class = "cbi-input-save" type = "submit" name = "submit" value = "<%:ok%>" / >
< / div >
< / div >
< div class = "cbi-value" >
< label class = "cbi-value-title" > < %:filter%>:< / label >
< div class = "cbi-value-field" >
< input type = "text" name = "query" size = "20" value = "<%=query%>" / >
< input type = "submit" class = "cbi-input-find" name = "search" value = "<%:a_s_packages_search%>" / >
< / div >
< / div >
< table class = "cbi-section-table" >
< tr class = "cbi-section-table-titles" >
< th class = "cbi-section-table-cell" > < %:a_s_packages_name%>< / th >
< th class = "cbi-section-table-cell" > < %:version%>< / th >
< th class = "cbi-section-table-cell" > < %:install%>< / th >
< th class = "cbi-section-table-cell" > < %:delete%>< / th >
< th class = "cbi-section-table-cell" > < %:descr%>< / th >
< / tr >
< % for k, pkg in pairs(pkgs) do %>
< tr class = "cbi-section-table-row cbi-rowstyle-<%=rowstyle()%>" >
< td > < %=pkg.Package%>< / td >
< td > < %=pkg.Version%>< / td >
< td > < % if not pkg.Status or not pkg.Status.installed then %>< input type = "checkbox" name = "install.<%=pkg.Package%>" value = "1" / > < % else %>< %:installed%>< % end %>< / td >
< td > < % if pkg.Status and pkg.Status.installed then %>< input type = "checkbox" name = "remove.<%=pkg.Package%>" value = "1" / > < % else %>< %:notinstalled%>< % end %>< / td >
< td > < %=pkg.Description%>< / td >
< / tr >
< % end %>
< / table >
< br / >
< div style = "text-align: right" >
< input type = "submit" class = "cbi-input-apply" name = "submit" value = "<%:a_s_packages_do%>" / >
< / div >
< / fieldset > < / fieldset >
2008-04-11 18:24:25 +00:00
< / div >
< / form >
< %+footer%>