composer/projects/gk7205v200_lite_meldana/general/overlay/www/cgi-bin/majestic-config-compare.cgi

22 lines
642 B
Perl
Executable File
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

#!/usr/bin/haserl
<%in p/common.cgi %>
<% page_title="Изменения конфигурации Majestic" %>
<%in p/header.cgi %>
<div class="row">
<div class="col-md-8 col-lg-9 col-xl-9 col-xxl-10">
<%
config_file=/etc/majestic.yaml
diff /rom$config_file $config_file >/tmp/majestic.patch
ex "cat /tmp/majestic.patch"
%>
</div>
<div class="col-md-4 col-lg-3 col-xl-3 col-xxl-2">
<div class="d-grid d-sm-flex d-md-grid gap-2">
<a class="btn btn-secondary" href="texteditor.cgi?f=<%= $config_file %>">Редактировать конфигурацию как текст</a>
</div>
</div>
</div>
<%in p/footer.cgi %>