2012-06-05 13:32:33 +02:00
|
|
|
<%
|
|
|
|
var plugins = require("ep_etherpad-lite/static/js/pluginfw/plugins");
|
|
|
|
%>
|
2013-08-14 21:46:57 +02: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">
|
2014-11-22 10:24:30 +01:00
|
|
|
<h1><a href="../../">Etherpad</a></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">
|
2015-04-10 23:52:17 +02:00
|
|
|
<h2>Etherpad version</h2>
|
|
|
|
<p>Version number: <%= epVersion %></p>
|
2020-06-01 18:57:53 +02:00
|
|
|
<p>Latest available version: <%= latestVersion %></p>
|
2015-04-10 23:52:17 +02:00
|
|
|
<p>Git sha: <a href='https://github.com/ether/etherpad-lite/commit/<%= gitCommit %>'><%= gitCommit %></a></p>
|
2012-06-05 13:32:33 +02:00
|
|
|
|
2013-01-24 18:46:15 +01:00
|
|
|
<h2>Installed plugins</h2>
|
2018-06-02 20:27:41 +02:00
|
|
|
<pre><%- plugins.formatPlugins().replace(/, /g,"\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>
|
2013-08-14 21:46:57 +02:00
|
|
|
|
2013-01-24 18:46:15 +01:00
|
|
|
</div>
|
2012-06-05 13:32:33 +02:00
|
|
|
</div>
|
2016-09-20 09:06:07 +02:00
|
|
|
<div style="display:none"><a href="/javascript" data-jslicense="1">JavaScript license information</a></div>
|
2012-06-05 13:32:33 +02:00
|
|
|
</body>
|
|
|
|
</html>
|