mirror of https://github.com/jumpserver/jumpserver
Merge branch 'master' of github.com:ibuler/jumpserver
commit
9c9390878e
|
@ -66,7 +66,7 @@ def log_list(request, offset):
|
||||||
|
|
||||||
contact_list, p, contacts, page_range, current_page, show_first, show_end = pages(posts, request)
|
contact_list, p, contacts, page_range, current_page, show_first, show_end = pages(posts, request)
|
||||||
|
|
||||||
web_monitor_uri = 'ws://%s/monitor' % WEB_SOCKET_HOST
|
web_monitor_uri = '%s/monitor' % WEB_SOCKET_HOST
|
||||||
web_kill_uri = 'http://%s/kill' % WEB_SOCKET_HOST
|
web_kill_uri = 'http://%s/kill' % WEB_SOCKET_HOST
|
||||||
session_id = request.session.session_key
|
session_id = request.session.session_key
|
||||||
return render_to_response('jlog/log_%s.html' % offset, locals(), context_instance=RequestContext(request))
|
return render_to_response('jlog/log_%s.html' % offset, locals(), context_instance=RequestContext(request))
|
||||||
|
|
|
@ -136,14 +136,20 @@
|
||||||
{# })#}
|
{# })#}
|
||||||
{# });#}
|
{# });#}
|
||||||
function init(obj){
|
function init(obj){
|
||||||
|
var protocol = "ws://";
|
||||||
|
if (window.location.protocol == 'https:') {
|
||||||
|
protocol = 'wss://';
|
||||||
|
}
|
||||||
|
|
||||||
var file_path = obj.attr('file_path');
|
var file_path = obj.attr('file_path');
|
||||||
var wsUri = '{{ web_monitor_uri }}';
|
var wsUri = protocol + '{{ web_monitor_uri }}';
|
||||||
var socket = new WebSocket(wsUri + '?file_path=' + file_path);
|
var socket = new WebSocket(wsUri + '?file_path=' + file_path);
|
||||||
|
|
||||||
var term = new Terminal({
|
var term = new Terminal({
|
||||||
cols: 80,
|
cols: 80,
|
||||||
rows: 24,
|
rows: 24,
|
||||||
screenKeys: false
|
screenKeys: false,
|
||||||
|
handler: function(){return false}
|
||||||
});
|
});
|
||||||
|
|
||||||
var tag = $('<div id="term" style="height:500px; overflow: auto;background-color: rgba(0, 0, 0, 0);border: none"></div>');
|
var tag = $('<div id="term" style="height:500px; overflow: auto;background-color: rgba(0, 0, 0, 0);border: none"></div>');
|
||||||
|
|
Loading…
Reference in New Issue