FYI, I discovered today after I updated my local master with the Gerrit-master
that parts of the
“header” of the UI-template was missing, leaving just a “mess” when trying to
load the
page @ http://127.0.0.1:19001 <http://127.0.0.1:19001/>.
More specifically, the following lines were missing from
asterix-app/src/main/resources/webui/querytemplate.html:
“
<!DOCTYPE html>
<html lang="en">
<head>
<meta name="description" content="ASTERIX WEB PAGE" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link
href='http://fonts.googleapis.com/css?family=Bitter|PT+Sans+Caption|Open+Sans'
rel='stylesheet' type='text/css'>
<script src="/webui/static/js/jquery.min.js"></script>
<link href="/webui/static/css/bootstrap.min.css" rel="stylesheet"
type="text/css" />
<link href="/webui/static/css/bootstrap-responsive.min.css"
rel="stylesheet" type="text/css" />
<script src="/webui/static/js/bootstrap.min.js"></script>
<link href="/webui/static/css/style.css" rel="stylesheet" type="text/css" />
<script type="text/javascript">
$(document).ready(function() {
var optionButtonSize = $('#checkboxes-on').width();
$('#clear-query-button, #run-btn').width(optionButtonSize);
$('#checkboxes-on').click(function() {
/* Displays a checkmark to indicate selection/clearing */
“
I think this happened when the file got new license statement header(?).
-heri