mirror of
https://github.com/laurivosandi/certidude
synced 2024-12-22 16:25:17 +00:00
ui: Precompile nunjucks templates
This commit is contained in:
parent
7cb9f04972
commit
661e7608ef
31
README.rst
31
README.rst
@ -367,3 +367,34 @@ the dispatcher invokes ``certidude`` in order to generate RSA keys,
|
||||
submit CSR, fetch signed certificate,
|
||||
create NetworkManager configuration for the VPN connection and
|
||||
finally to bring up the VPN tunnel as well.
|
||||
|
||||
|
||||
Development
|
||||
-----------
|
||||
|
||||
Clone the repository:
|
||||
|
||||
.. code:: bash
|
||||
|
||||
git clone https://github.com/laurivosandi/certidude
|
||||
cd certidude
|
||||
|
||||
To generate templates:
|
||||
|
||||
.. code:: bash
|
||||
|
||||
apt-get install npm nodejs
|
||||
npm install nunjucks
|
||||
nunjucks-precompile --include "\\.html$" --include "\\.svg" certidude/static/ > certidude/static/js/templates.js
|
||||
|
||||
To run from source tree:
|
||||
|
||||
.. code:: bash
|
||||
|
||||
PYTHONPATH=. KRB5_KTNAME=/etc/certidude/server.keytab LANG=C.UTF-8 python3 misc/certidude
|
||||
|
||||
To install the package from the source:
|
||||
|
||||
.. code:: bash
|
||||
|
||||
python3 setup.py install --single-version-externally-managed --root /
|
||||
|
@ -6,7 +6,8 @@
|
||||
<title>Certidude server</title>
|
||||
<link href="/css/style.css" rel="stylesheet" type="text/css"/>
|
||||
<script type="text/javascript" src="/js/jquery-2.1.4.min.js"></script>
|
||||
<script type="text/javascript" src="/js/nunjucks.min.js"></script>
|
||||
<script type="text/javascript" src="/js/nunjucks-slim.min.js"></script>
|
||||
<script type="text/javascript" src="/js/templates.js"></script>
|
||||
<script type="text/javascript" src="/js/certidude.js"></script>
|
||||
<link rel="shortcut icon" href="data:image/x-icon;," type="image/x-icon">
|
||||
</head>
|
||||
|
@ -50,7 +50,7 @@ function onLogEntry (e) {
|
||||
var entry = JSON.parse(e.data);
|
||||
if ($("#log_level_" + entry.severity).prop("checked")) {
|
||||
console.info("Received log entry:", entry);
|
||||
$("#log_entries").prepend(nunjucks.render("logentry.html", {
|
||||
$("#log_entries").prepend(nunjucks.render("views/logentry.html", {
|
||||
entry: {
|
||||
created: new Date(entry.created).toLocaleString(),
|
||||
message: entry.message,
|
||||
@ -69,7 +69,7 @@ function onRequestSubmitted(e) {
|
||||
success: function(request, status, xhr) {
|
||||
console.info(request);
|
||||
$("#pending_requests").prepend(
|
||||
nunjucks.render('request.html', { request: request }));
|
||||
nunjucks.render('views/request.html', { request: request }));
|
||||
}
|
||||
});
|
||||
}
|
||||
@ -83,7 +83,7 @@ function onClientUp(e) {
|
||||
console.log("Adding security association:" + e.data);
|
||||
var lease = JSON.parse(e.data);
|
||||
var $status = $("#signed_certificates [data-dn='" + lease.identity + "'] .status");
|
||||
$status.html(nunjucks.render('status.html', {
|
||||
$status.html(nunjucks.render('views/status.html', {
|
||||
lease: {
|
||||
address: lease.address,
|
||||
identity: lease.identity,
|
||||
@ -96,7 +96,7 @@ function onClientDown(e) {
|
||||
console.log("Removing security association:" + e.data);
|
||||
var lease = JSON.parse(e.data);
|
||||
var $status = $("#signed_certificates [data-dn='" + lease.identity + "'] .status");
|
||||
$status.html(nunjucks.render('status.html', {
|
||||
$status.html(nunjucks.render('views/status.html', {
|
||||
lease: {
|
||||
address: lease.address,
|
||||
identity: lease.identity,
|
||||
@ -116,7 +116,7 @@ function onRequestSigned(e) {
|
||||
success: function(certificate, status, xhr) {
|
||||
console.info(certificate);
|
||||
$("#signed_certificates").prepend(
|
||||
nunjucks.render('signed.html', { certificate: certificate }));
|
||||
nunjucks.render('views/signed.html', { certificate: certificate }));
|
||||
}
|
||||
});
|
||||
}
|
||||
@ -172,7 +172,7 @@ $(document).ready(function() {
|
||||
} else {
|
||||
var msg = { title: "Error " + response.status, description: response.statusText }
|
||||
}
|
||||
$("#container").html(nunjucks.render('error.html', { message: msg }));
|
||||
$("#container").html(nunjucks.render('views/error.html', { message: msg }));
|
||||
},
|
||||
success: function(session, status, xhr) {
|
||||
console.info("Opening EventSource from:", session.event_channel);
|
||||
@ -197,7 +197,7 @@ $(document).ready(function() {
|
||||
/**
|
||||
* Render authority views
|
||||
**/
|
||||
$("#container").html(nunjucks.render('authority.html', { session: session, window: window }));
|
||||
$("#container").html(nunjucks.render('views/authority.html', { session: session, window: window }));
|
||||
console.info("Swtiching to requests section");
|
||||
$("section").hide();
|
||||
$("section#requests").show();
|
||||
@ -239,7 +239,7 @@ $(document).ready(function() {
|
||||
dataType: "json",
|
||||
success: function(configuration, status, xhr) {
|
||||
console.info("Appending " + configuration.length + " configuration items");
|
||||
$("#config").html(nunjucks.render('configuration.html', { configuration:configuration}));
|
||||
$("#config").html(nunjucks.render('views/configuration.html', { configuration:configuration}));
|
||||
/**
|
||||
* Fetch tags for certificates
|
||||
*/
|
||||
@ -278,7 +278,7 @@ $(document).ready(function() {
|
||||
console.info("Detected rogue client:", leases[j]);
|
||||
continue;
|
||||
}
|
||||
$status.html(nunjucks.render('status.html', {
|
||||
$status.html(nunjucks.render('views/status.html', {
|
||||
lease: {
|
||||
address: leases[j].address,
|
||||
identity: leases[j].identity,
|
||||
@ -301,7 +301,7 @@ $(document).ready(function() {
|
||||
console.info("Got", entries.length, "log entries");
|
||||
for (var j = 0; j < entries.length; j++) {
|
||||
if ($("#log_level_" + entries[j].severity).prop("checked")) {
|
||||
$("#log_entries").append(nunjucks.render("logentry.html", {
|
||||
$("#log_entries").append(nunjucks.render("views/logentry.html", {
|
||||
entry: {
|
||||
created: new Date(entries[j].created).toLocaleString("et-EE"),
|
||||
message: entries[j].message,
|
||||
|
2633
certidude/static/js/nunjucks-slim.js
Normal file
2633
certidude/static/js/nunjucks-slim.js
Normal file
File diff suppressed because it is too large
Load Diff
2
certidude/static/js/nunjucks-slim.min.js
vendored
Normal file
2
certidude/static/js/nunjucks-slim.min.js
vendored
Normal file
File diff suppressed because one or more lines are too long
6234
certidude/static/js/nunjucks.js
Normal file
6234
certidude/static/js/nunjucks.js
Normal file
File diff suppressed because it is too large
Load Diff
8
certidude/static/js/nunjucks.min.js
vendored
8
certidude/static/js/nunjucks.min.js
vendored
File diff suppressed because one or more lines are too long
@ -16,7 +16,7 @@
|
||||
|
||||
<ul id="pending_requests">
|
||||
{% for request in session.requests %}
|
||||
{% include "request.html" %}
|
||||
{% include "views/request.html" %}
|
||||
{% endfor %}
|
||||
<li class="notify">
|
||||
<p>No certificate signing requests to sign! You can submit a certificate signing request by:</p>
|
||||
@ -31,7 +31,7 @@
|
||||
<input id="search" type="search" class="icon search">
|
||||
<ul id="signed_certificates">
|
||||
{% for certificate in session.signed | sort | reverse %}
|
||||
{% include "signed.html" %}
|
||||
{% include "views/signed.html" %}
|
||||
{% endfor %}
|
||||
</ul>
|
||||
</section>
|
@ -10,7 +10,7 @@
|
||||
<select id="tags_autocomplete"></select>
|
||||
attaches attribute
|
||||
<select>
|
||||
{% include 'tagtypes.html' %}
|
||||
{% include 'views/tagtypes.html' %}
|
||||
</select>
|
||||
<span contenteditable>something</span>
|
||||
<button>Add rule</button>
|
@ -32,11 +32,11 @@
|
||||
<div class="tags">
|
||||
<select class="icon tag" data-cn="{{ certificate.common_name }}" onChange="onNewTagClicked();">
|
||||
<option value="">Add tag...</option>
|
||||
{% include 'tagtypes.html' %}
|
||||
{% include 'views/tagtypes.html' %}
|
||||
</select>
|
||||
</div>
|
||||
|
||||
<div class="status">
|
||||
{% include 'status.html' %}
|
||||
{% include 'views/status.html' %}
|
||||
</div>
|
||||
</li>
|
Before Width: | Height: | Size: 498 B After Width: | Height: | Size: 498 B |
Loading…
Reference in New Issue
Block a user