summaryrefslogtreecommitdiffhomepage
path: root/modules/admin-full/luasrc/view/admin_system/packages.htm
blob: 0f8f2c16ebefd688a500a1c3262f508a234575ae (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
<%#
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$

-%>
<%+header%>
<h1><%:system%></h1>
<h2><%:a_s_packages%></h2>

<br />

<% if install or remove or update or upgrade then %>
<div class="code"><strong><%:status%>:</strong><br />
<% if update then %>
	<%:a_s_packages_update%>: <% if update == 0 then %><span class="ok"><%:ok%></span><% else %><span class="error"><%:error%> (<%:code%> <%=update%>)</span><% end %><br />
<% end %>
<% if upgrade then%>
	<%:a_s_packages_upgrade%>: <% if upgrade == 0 then %><span class="ok"><%:ok%></span><% else %><span class="error"><%:error%> (<%:code%> <%=upgrade%>)</span><% end %><br />
<% end %>
<% if install then for k,v in pairs(install) do %>
	<%:a_s_packages_install%> '<%=k%>': <% if v == 0 then %><span class="ok"><%:ok%></span><% else %><span class="error"><%:error%> (<%:code%> <%=v%>)</span><% end %><br />
<% end end %>
<% if remove then for k,v in pairs(remove) do %>
	<%:a_s_packages_remove%> '<%=k%>': <% if v == 0 then %><span class="ok"><%:ok%></span><% else %><span class="error"><%:error%> (<%:code%> <%=v%>)</span><% end %><br />
<% end end %>
</div>
<br />
<% end %>

<div>
<a href="<%=controller%>/admin/system/packages/ipkg"><%:a_s_packages_ipkg%></a><br />
<a href="<%=controller%>/admin/system/packages?update=1"><%:a_s_packages_updatelist%></a><br />
<a href="<%=controller%>/admin/system/packages?upgrade=1"><%:a_s_packages_upgrade%></a>
</div>

<br />
<br />

<form method="post" action="<%=controller%>/admin/system/packages">
	<div>
		<span class="bold"><%:a_s_packages_installurl%>:</span><br />
		<input type="text" name="url" size="30" value="" />
		<input type="submit" name="submit" value="<%:ok%>" />
	</div>
	
	<br />
	<br />

	<div>
		<span class="bold"><%:filter%>:</span>
		<input type="text" name="query" size="20" value="<%=query%>" />
		<input type="submit" name="search" value="<%:a_s_packages_search%>" />
		<input type="submit" name="submit" value="<%:a_s_packages_do%>" />
	</div>
	
	<br />
	<br />
	
	<div>
	<table style="font-size: 0.8em">
		<tr>
			<th><%:a_s_packages_name%></th>
			<th><%:version%></th>
			<th><%:install%></th>
			<th><%:delete%></th>
			<th><%:descr%></th>
		</tr>
		<% for k, pkg in pairs(pkgs) do %>	
		<tr>
			<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>
	</div>
	<br />
	<input type="submit" name="submit" value="<%:a_s_packages_do%>" />
</form>
<%+footer%>