2012-03-15 18:25:06 +01:00
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<title>Plugin manager</title>
|
2012-04-05 19:04:17 +02:00
|
|
|
<link href="../../static/css/admin.css" rel="stylesheet" type="text/css" />
|
2012-03-15 21:07:48 +01:00
|
|
|
<script src="../../static/js/jquery.js"></script>
|
|
|
|
<script src="../../socket.io/socket.io.js"></script>
|
|
|
|
<script>
|
|
|
|
$(document).ready(function () {
|
|
|
|
var socket = io.connect().of("/pluginfw/installer");
|
|
|
|
|
2012-03-19 17:16:49 +01:00
|
|
|
var doUpdate = false;
|
|
|
|
|
2012-03-17 18:17:10 +01:00
|
|
|
function updateHandlers() {
|
2012-03-21 19:28:39 +01:00
|
|
|
$("#progress.dialog .close").unbind('click').click(function () {
|
2012-03-17 18:17:10 +01:00
|
|
|
$("#progress.dialog").hide();
|
|
|
|
});
|
2012-03-15 21:07:48 +01:00
|
|
|
|
2012-03-21 19:28:39 +01:00
|
|
|
$("#do-search").unbind('click').click(function () {
|
2012-03-17 18:17:10 +01:00
|
|
|
if ($("#search-query")[0].value != "")
|
|
|
|
socket.emit("search", $("#search-query")[0].value);
|
|
|
|
});
|
2012-04-05 19:22:53 +02:00
|
|
|
|
2012-03-21 19:28:39 +01:00
|
|
|
$(".do-install").unbind('click').click(function (e) {
|
2012-03-17 18:17:10 +01:00
|
|
|
var row = $(e.target).closest("tr");
|
2012-03-19 17:16:49 +01:00
|
|
|
doUpdate = true;
|
2012-03-17 18:17:10 +01:00
|
|
|
socket.emit("install", row.find(".name").html());
|
|
|
|
});
|
|
|
|
|
2012-03-21 19:28:39 +01:00
|
|
|
$(".do-uninstall").unbind('click').click(function (e) {
|
2012-03-17 18:17:10 +01:00
|
|
|
var row = $(e.target).closest("tr");
|
2012-03-19 17:16:49 +01:00
|
|
|
doUpdate = true;
|
|
|
|
socket.emit("uninstall", row.find(".name").html());
|
2012-03-17 18:17:10 +01:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
updateHandlers();
|
2012-03-15 21:07:48 +01:00
|
|
|
|
|
|
|
socket.on('progress', function (data) {
|
|
|
|
$("#progress.dialog .close").hide();
|
|
|
|
$("#progress.dialog").show();
|
2012-03-19 17:16:49 +01:00
|
|
|
var message = "Unknown status";
|
|
|
|
if (data.message) {
|
|
|
|
message = "<span class='status'>" + data.message.toString() + "</span>";
|
|
|
|
}
|
2012-03-15 21:07:48 +01:00
|
|
|
if (data.error) {
|
2012-03-19 17:16:49 +01:00
|
|
|
message = "<span class='error'>" + data.error.toString() + "<span>";
|
2012-03-15 21:07:48 +01:00
|
|
|
}
|
|
|
|
$("#progress.dialog .message").html(message);
|
2012-03-19 17:16:49 +01:00
|
|
|
$("#progress.dialog .history").append("<div>" + message + "</div>");
|
2012-03-15 21:07:48 +01:00
|
|
|
|
|
|
|
if (data.progress >= 1) {
|
|
|
|
if (data.error) {
|
|
|
|
$("#progress.dialog .close").show();
|
|
|
|
} else {
|
2012-03-19 17:16:49 +01:00
|
|
|
if (doUpdate) {
|
|
|
|
doUpdate = false;
|
|
|
|
socket.emit("load");
|
|
|
|
}
|
2012-03-15 21:07:48 +01:00
|
|
|
$("#progress.dialog").hide();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
socket.on('search-result', function (data) {
|
|
|
|
$("#search-results *").remove();
|
|
|
|
for (plugin_name in data.results) {
|
|
|
|
var plugin = data.results[plugin_name];
|
|
|
|
var row = $("#search-result-template").clone();
|
|
|
|
|
|
|
|
for (attr in plugin) {
|
|
|
|
row.find("." + attr).html(plugin[attr]);
|
|
|
|
}
|
|
|
|
$("#search-results").append(row);
|
|
|
|
}
|
2012-03-17 18:17:10 +01:00
|
|
|
updateHandlers();
|
2012-03-15 21:07:48 +01:00
|
|
|
});
|
2012-03-19 17:16:49 +01:00
|
|
|
|
|
|
|
socket.on('installed-results', function (data) {
|
|
|
|
$("#installed-plugins *").remove();
|
|
|
|
for (plugin_name in data.results) {
|
|
|
|
var plugin = data.results[plugin_name];
|
|
|
|
var row = $("#installed-plugin-template").clone();
|
|
|
|
|
|
|
|
for (attr in plugin.package) {
|
|
|
|
row.find("." + attr).html(plugin.package[attr]);
|
|
|
|
}
|
|
|
|
$("#installed-plugins").append(row);
|
|
|
|
}
|
|
|
|
updateHandlers();
|
|
|
|
});
|
|
|
|
|
|
|
|
socket.emit("load");
|
|
|
|
|
2012-03-15 21:07:48 +01:00
|
|
|
});
|
|
|
|
</script>
|
2012-03-15 18:25:06 +01:00
|
|
|
</head>
|
|
|
|
<body>
|
2012-04-05 19:22:53 +02:00
|
|
|
<div id="wrapper">
|
|
|
|
|
|
|
|
<% if (errors.length) { %>
|
|
|
|
<div class="errors">
|
|
|
|
<% errors.forEach(function (item) { %>
|
|
|
|
<div class="error"><%= item.toString() %></div>
|
|
|
|
<% }) %>
|
|
|
|
</div>
|
|
|
|
<% } %>
|
|
|
|
|
|
|
|
|
|
|
|
<h1>Installed plugins</h1>
|
|
|
|
<table>
|
|
|
|
<thead>
|
|
|
|
<tr>
|
|
|
|
<th>Name</th>
|
|
|
|
<th>Description</th>
|
|
|
|
<td></td>
|
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody class="template">
|
|
|
|
<tr id="installed-plugin-template">
|
|
|
|
<td class="name"></td>
|
|
|
|
<td class="description"></td>
|
|
|
|
<td class="actions">
|
|
|
|
<input type="button" value="Uninstall" class="do-uninstall">
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
</tbody>
|
|
|
|
<tbody id="installed-plugins">
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
|
|
|
|
<h1>Search for plugins to install</h1>
|
|
|
|
<form>
|
|
|
|
<input type="text" name="search" value="" id="search-query">
|
|
|
|
<input type="button" value="Search" id="do-search">
|
|
|
|
</form>
|
|
|
|
<table>
|
|
|
|
<thead>
|
|
|
|
<tr>
|
|
|
|
<th>Name</th>
|
|
|
|
<th>Description</th>
|
|
|
|
<td></td>
|
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody class="template">
|
|
|
|
<tr id="search-result-template">
|
|
|
|
<td class="name"></td>
|
|
|
|
<td class="description"></td>
|
|
|
|
<td class="actions">
|
|
|
|
<input type="button" value="Install" class="do-install">
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
</tbody>
|
|
|
|
<tbody id="search-results">
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
|
|
|
|
<div id="progress" class="dialog">
|
|
|
|
<h1 class="title">
|
|
|
|
Please wait: <span class="message"></span>
|
2012-03-15 21:07:48 +01:00
|
|
|
<input type="button" class="close" value="Close">
|
2012-04-05 19:22:53 +02:00
|
|
|
</h1>
|
|
|
|
<div class="history"></div>
|
|
|
|
</div>
|
2012-03-15 21:07:48 +01:00
|
|
|
</div>
|
2012-03-15 18:25:06 +01:00
|
|
|
</body>
|
|
|
|
</html>
|