91 lines
3.3 KiB
HTML
91 lines
3.3 KiB
HTML
{% extends "base.html" %}
|
|
{% block title %}{{ _('Debugger - ') + function_name }}{% endblock %}
|
|
{% block init_script %}
|
|
|
|
try {
|
|
require(
|
|
['sources/generated/debugger_direct'],
|
|
function(pgDirectDebug) {
|
|
var pgDirectDebug = pgDirectDebug || pgAdmin.Tools.DirectDebug;
|
|
var $ = pgDirectDebug.jquery;
|
|
|
|
pgDirectDebug.init({{ uniqueId }}, {{ debug_type }}, '{{ function_name_with_arguments }}');
|
|
window.onbeforeunload = function(ev) {
|
|
$.ajax({
|
|
url: "{{ url_for('debugger.index') }}close/{{ uniqueId }}",
|
|
method: 'DELETE'
|
|
});
|
|
};
|
|
},
|
|
function() {
|
|
console.log(arguments);
|
|
});
|
|
} catch (err) {
|
|
console.log(err);
|
|
}
|
|
{% endblock %}
|
|
{% block body %}
|
|
{% if is_desktop_mode and is_linux %}
|
|
<style>
|
|
body
|
|
.alertify .ajs-dimmer,.alertify .ajs-modal{-webkit-transform: none;}
|
|
.alertify-notifier{-webkit-transform: none;}
|
|
.alertify-notifier .ajs-message{-webkit-transform: none;}
|
|
.alertify .ajs-dialog.ajs-shake{-webkit-animation-name: none;}
|
|
</style>
|
|
{% endif %}
|
|
<div class="debugger_main_container" tabindex="0">
|
|
<div id="btn-toolbar" class="editor-toolbar" role="toolbar" aria-label="">
|
|
<div class="btn-group" role="group" aria-label="">
|
|
<button type="button" class="btn btn-sm btn-secondary btn-step-into" id="btn-step-into"
|
|
title=""
|
|
accesskey=""
|
|
tabindex="0" autofocus="autofocus">
|
|
<i class="fa fa-indent sql-icon-lg"></i>
|
|
</button>
|
|
<button type="button" class="btn btn-sm btn-secondary btn-step-over" id="btn-step-over"
|
|
title=""
|
|
accesskey=""
|
|
tabindex="0">
|
|
<i class="fa fa-outdent sql-icon-lg"></i>
|
|
</button>
|
|
<button type="button" class="btn btn-sm btn-secondary btn-continue" id="btn-continue"
|
|
title=""
|
|
accesskey=""
|
|
tabindex="0">
|
|
<i class="fa fa-play-circle sql-icon-lg"></i>
|
|
</button>
|
|
</div>
|
|
<div class="btn-group" role="group" aria-label="">
|
|
<button type="button" class="btn btn-sm btn-secondary btn-toggle-breakpoint" id="btn-toggle-breakpoint"
|
|
title=""
|
|
accesskey=""
|
|
tabindex="0">
|
|
<i class="fa fa-circle sql-icon-lg"></i>
|
|
</button>
|
|
<button type="button" class="btn btn-sm btn-secondary btn-clear-breakpoint" id="btn-clear-breakpoint"
|
|
title=""
|
|
accesskey=""
|
|
tabindex="0">
|
|
<i class="fa fa-ban sql-icon-lg"></i>
|
|
</button>
|
|
</div>
|
|
<div class="btn-group" role="group" aria-label="">
|
|
<button type="button" class="btn btn-sm btn-secondary btn-stop" id="btn-stop"
|
|
accesskey=""
|
|
title=""
|
|
tabindex="0">
|
|
<i class="fa fa-stop-circle sql-icon-lg"></i>
|
|
</button>
|
|
</div>
|
|
</div>
|
|
<div id="container" class="debugger-container" tabindex="0"></div>
|
|
</div>
|
|
{% endblock %}
|
|
|
|
{% block css_link %}
|
|
{% for stylesheet in stylesheets %}
|
|
<link type="text/css" rel="stylesheet" href="{{ stylesheet }}"/>
|
|
{% endfor %}
|
|
{% endblock %}
|