2013-02-09 20:57:41 +01:00
|
|
|
<!doctype html>
|
2012-04-19 17:00:29 +02:00
|
|
|
<html>
|
|
|
|
<head>
|
2013-02-09 20:42:47 +01:00
|
|
|
<title>Plugin manager - Etherpad</title>
|
2013-02-09 17:47:52 +01:00
|
|
|
<meta name="viewport" content="width=device-width">
|
2012-04-28 22:00:15 +02:00
|
|
|
<link rel="stylesheet" href="../static/css/admin.css">
|
|
|
|
<script src="../static/js/jquery.js"></script>
|
|
|
|
<script src="../socket.io/socket.io.js"></script>
|
|
|
|
<script src="../static/js/admin/plugins.js"></script>
|
2012-04-19 17:00:29 +02:00
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<div id="wrapper">
|
|
|
|
|
|
|
|
<% if (errors.length) { %>
|
|
|
|
<div class="errors">
|
|
|
|
<% errors.forEach(function (item) { %>
|
|
|
|
<div class="error"><%= item.toString() %></div>
|
|
|
|
<% }) %>
|
|
|
|
</div>
|
|
|
|
<% } %>
|
|
|
|
|
2013-01-24 18:46:15 +01:00
|
|
|
<div class="menu">
|
2013-02-09 20:42:47 +01:00
|
|
|
<h1>Etherpad</h1>
|
2013-01-27 23:02:27 +01:00
|
|
|
<ul>
|
|
|
|
<% e.begin_block("adminMenu"); %>
|
|
|
|
<li><a href="plugins">Plugin manager</a> </li>
|
|
|
|
<li><a href="settings">Settings</a> </li>
|
|
|
|
<li><a href="plugins/info">Troubleshooting information</a> </li>
|
|
|
|
<% e.end_block(); %>
|
|
|
|
</ul>
|
2013-01-24 18:46:15 +01:00
|
|
|
</div>
|
2012-06-04 14:33:38 +02:00
|
|
|
|
2013-01-24 18:46:15 +01:00
|
|
|
<div class="innerwrapper">
|
2013-03-26 11:19:36 +01:00
|
|
|
<h2>Installed plugins</h2>
|
2013-03-26 16:23:47 +01:00
|
|
|
<table class="installed-results">
|
2012-04-19 17:00:29 +02:00
|
|
|
<thead>
|
|
|
|
<tr>
|
2013-03-26 11:19:36 +01:00
|
|
|
<th>Name</th>
|
|
|
|
<th>Description</th>
|
|
|
|
<th>Version</th>
|
2012-04-19 17:00:29 +02:00
|
|
|
<td></td>
|
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody class="template">
|
2013-03-26 11:19:36 +01:00
|
|
|
<tr id="installed-plugin-template">
|
2013-02-09 20:34:12 +01:00
|
|
|
<td class="name" data-label="Name"></td>
|
|
|
|
<td class="description" data-label="Description"></td>
|
|
|
|
<td class="version" data-label="Version"></td>
|
2012-04-19 17:00:29 +02:00
|
|
|
<td class="actions">
|
2013-03-26 15:11:30 +01:00
|
|
|
<div>
|
|
|
|
<input type="button" value="Uninstall" class="do-uninstall">
|
|
|
|
<div class="progress"><p><img src="../static/img/loading.gif"/></p><p><span class="message"></span></p></div>
|
|
|
|
</div>
|
2013-03-26 11:19:36 +01:00
|
|
|
</td>
|
2012-04-19 17:00:29 +02:00
|
|
|
</tr>
|
|
|
|
</tbody>
|
2013-03-26 11:19:36 +01:00
|
|
|
<tbody id="installed-plugins">
|
2012-04-19 17:00:29 +02:00
|
|
|
</tbody>
|
2013-03-26 21:04:21 +01:00
|
|
|
<tbody class="messages">
|
|
|
|
<tr><td></td><td>
|
2013-03-26 16:23:47 +01:00
|
|
|
<p class="nothing-installed">You haven't installed any plugins yet.</p>
|
|
|
|
<p class="fetching">Fetching installed plugins...</p>
|
|
|
|
</td><td></td></tr>
|
|
|
|
</tbody>
|
2012-04-19 17:00:29 +02:00
|
|
|
</table>
|
2013-03-26 11:19:36 +01:00
|
|
|
|
|
|
|
<div class="paged listing search-results">
|
|
|
|
<div class="separator"></div>
|
|
|
|
|
|
|
|
<h2>Available plugins</h2>
|
|
|
|
<form>
|
2013-03-26 19:22:04 +01:00
|
|
|
<input type="text" name="search" disabled placeholder="Search for plugins to install" id="search-query">
|
2013-03-26 11:19:36 +01:00
|
|
|
</form>
|
|
|
|
|
|
|
|
<table>
|
|
|
|
<thead>
|
|
|
|
<tr>
|
|
|
|
<th class="sort up" data-label="name">Name</th>
|
|
|
|
<th class="sort none" data-label="description">Description</th>
|
2013-03-26 19:22:04 +01:00
|
|
|
<th class="sort none" data-label="version">Version</th>
|
2013-03-26 11:19:36 +01:00
|
|
|
<td></td>
|
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody class="template">
|
|
|
|
<tr>
|
|
|
|
<td class="name" data-label="Name"></td>
|
|
|
|
<td class="description" data-label="Description"></td>
|
|
|
|
<td class="version" data-label="Version"></td>
|
|
|
|
<td class="actions">
|
2013-03-26 15:11:30 +01:00
|
|
|
<div>
|
|
|
|
<input type="button" value="Install" class="do-install">
|
|
|
|
<div class="progress"><p><img src="../static/img/loading.gif"/></p><p><span class="message"></span></p></div>
|
|
|
|
</div>
|
2013-03-26 11:19:36 +01:00
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
</tbody>
|
|
|
|
<tbody class="results">
|
|
|
|
</tbody>
|
2013-03-26 21:04:21 +01:00
|
|
|
<tbody class="messages">
|
|
|
|
<tr><td></td><td>
|
2013-03-26 16:23:47 +01:00
|
|
|
<div class="search-progress" class="progress"><img src="../static/img/loading.gif"/></div>
|
|
|
|
<p class="nothing-found">No plugins found.</p>
|
|
|
|
<p class="fetching">Fetching catalogue...</p>
|
|
|
|
</td><td></td></tr>
|
2013-03-26 11:19:36 +01:00
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
</div>
|
2013-03-25 17:20:10 +01:00
|
|
|
|
2013-01-24 18:46:15 +01:00
|
|
|
</div>
|
2012-04-19 17:00:29 +02:00
|
|
|
</div>
|
|
|
|
</body>
|
|
|
|
</html>
|