2012-06-05 13:32:33 +02:00
|
|
|
<%
|
|
|
|
var plugins = require("ep_etherpad-lite/static/js/pluginfw/plugins");
|
|
|
|
%>
|
2013-02-09 20:57:41 +01:00
|
|
|
<!doctype html>
|
2012-06-05 13:32:33 +02:00
|
|
|
<html>
|
|
|
|
<head>
|
2013-02-09 20:42:47 +01:00
|
|
|
<title>Plugin information - Etherpad</title>
|
2013-02-09 17:47:52 +01:00
|
|
|
<meta name="viewport" content="width=device-width">
|
2012-06-05 13:32:33 +02:00
|
|
|
<link rel="stylesheet" href="../../static/css/admin.css">
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<div id="wrapper">
|
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-05 13:32:33 +02:00
|
|
|
|
2013-01-24 18:46:15 +01:00
|
|
|
<div class="innerwrapper">
|
2012-06-05 13:32:33 +02:00
|
|
|
|
2013-01-24 18:46:15 +01:00
|
|
|
<h2>Installed plugins</h2>
|
|
|
|
<pre><%- plugins.formatPlugins().replace(", ","\n") %></pre>
|
2012-06-05 13:32:33 +02:00
|
|
|
|
2013-01-24 18:46:15 +01:00
|
|
|
<h2>Installed parts</h2>
|
|
|
|
<pre><%= plugins.formatParts() %></pre>
|
2012-06-05 13:32:33 +02:00
|
|
|
|
2013-01-24 18:46:15 +01:00
|
|
|
<h2>Installed hooks</h2>
|
|
|
|
<h3>Server side hooks</h3>
|
|
|
|
<div><%- plugins.formatHooks() %></div>
|
|
|
|
|
|
|
|
<h3>Client side hooks</h3>
|
|
|
|
<div><%- plugins.formatHooks("client_hooks") %></div>
|
|
|
|
|
|
|
|
</div>
|
2012-06-05 13:32:33 +02:00
|
|
|
</div>
|
|
|
|
</body>
|
|
|
|
</html>
|