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>
|
2020-10-01 05:15:27 -04:00
|
|
|
<title data-l10n-id="admin_plugins_info.page-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">
|
2020-10-01 05:15:27 -04:00
|
|
|
<link rel="localizations" type="application/l10n+json" href="../../locales.json" />
|
|
|
|
<script src="../../static/js/html10n.js"></script>
|
|
|
|
<script src="../../static/js/l10n.js"></script>
|
2012-06-05 13:32:33 +02:00
|
|
|
</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"); %>
|
2020-10-01 05:15:27 -04:00
|
|
|
<li><a href="../plugins" data-l10n-id="admin_plugins">Plugin manager</a></li>
|
|
|
|
<li><a href="../settings" data-l10n-id="admin_settings">Settings</a></li>
|
|
|
|
<li><a href="../plugins/info" data-l10n-id="admin_plugins_info">Troubleshooting information</a></li>
|
2013-01-27 23:02:27 +01:00
|
|
|
<% 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">
|
2020-10-01 05:15:27 -04:00
|
|
|
<h2 data-l10n-id="admin_plugins_info.version">Etherpad version</h2>
|
|
|
|
<p><span data-l10n-id="admin_plugins_info.version_number">Version number</span>: <%= epVersion %></p>
|
|
|
|
<p><span data-l10n-id="admin_plugins_info.version_latest">Latest available version</span>: <%= 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
|
|
|
|
2020-10-01 05:15:27 -04:00
|
|
|
<h2 data-l10n-id="admin_plugins_info.plugins">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
|
|
|
|
2020-10-01 05:15:27 -04:00
|
|
|
<h2 data-l10n-id="admin_plugins_info.parts">Installed parts</h2>
|
2013-01-24 18:46:15 +01:00
|
|
|
<pre><%= plugins.formatParts() %></pre>
|
2012-06-05 13:32:33 +02:00
|
|
|
|
2020-10-01 05:15:27 -04:00
|
|
|
<h2 data-l10n-id="admin_plugins_info.hooks">Installed hooks</h2>
|
|
|
|
<h3 data-l10n-id="admin_plugins_info.hooks_server">Server-side hooks</h3>
|
2013-01-24 18:46:15 +01:00
|
|
|
<div><%- plugins.formatHooks() %></div>
|
|
|
|
|
2020-10-01 05:15:27 -04:00
|
|
|
<h3 data-l10n-id="admin_plugins_info.hooks_client">Client-side hooks</h3>
|
2013-01-24 18:46:15 +01:00
|
|
|
<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>
|