mirror of
https://github.com/ail-project/ail-framework.git
synced 2024-11-10 08:38:28 +00:00
Cleanup and remove useless deps
This commit is contained in:
parent
7e5cf7cc55
commit
a0a4d0dff3
5 changed files with 19 additions and 31 deletions
|
@ -1,7 +1,6 @@
|
||||||
<html>
|
<html>
|
||||||
<head>
|
<head>
|
||||||
<script type="text/javascript" src="{{ url_for('static', filename='js/dygraph-combined.js') }}"></script>
|
<script type="text/javascript" src="{{ url_for('static', filename='js/dygraph-combined.js') }}"></script>
|
||||||
<script src="{{ url_for('static', filename='js/jquery-1.4.2.js') }}"></script>
|
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<title>WordsTrend</title>
|
<title>WordsTrend</title>
|
||||||
|
|
|
@ -14,9 +14,8 @@
|
||||||
<link href="{{ url_for('static', filename='css/dygraph_gallery.css') }}" rel="stylesheet" type="text/css" />
|
<link href="{{ url_for('static', filename='css/dygraph_gallery.css') }}" rel="stylesheet" type="text/css" />
|
||||||
<!-- JS -->
|
<!-- JS -->
|
||||||
<script type="text/javascript" src="{{ url_for('static', filename='js/dygraph-combined.js') }}"></script>
|
<script type="text/javascript" src="{{ url_for('static', filename='js/dygraph-combined.js') }}"></script>
|
||||||
<script src="{{ url_for('static', filename='js/jquery-1.4.2.js') }}"></script>
|
|
||||||
<script language="javascript" src="{{ url_for('static', filename='js/jquery.js')}}"></script>
|
<script language="javascript" src="{{ url_for('static', filename='js/jquery.js')}}"></script>
|
||||||
<script>
|
<script>
|
||||||
var default_display = {{ default_display }};
|
var default_display = {{ default_display }};
|
||||||
var current_displayed_graph;
|
var current_displayed_graph;
|
||||||
</script>
|
</script>
|
||||||
|
@ -56,7 +55,7 @@
|
||||||
</div>
|
</div>
|
||||||
<!-- /.row -->
|
<!-- /.row -->
|
||||||
<div class="row">
|
<div class="row">
|
||||||
|
|
||||||
<!-- /.nav-tabs -->
|
<!-- /.nav-tabs -->
|
||||||
<ul class="nav nav-tabs">
|
<ul class="nav nav-tabs">
|
||||||
<li class="active"><a data-toggle="tab" href="#tld-tab" data-pannel="TldTrending" data-path="../static//csv/tldstrendingdata.csv">Top level domains</a></li>
|
<li class="active"><a data-toggle="tab" href="#tld-tab" data-pannel="TldTrending" data-path="../static//csv/tldstrendingdata.csv">Top level domains</a></li>
|
||||||
|
@ -65,8 +64,8 @@
|
||||||
<li><a data-toggle="tab" href="#protocol-tab" data-pannel="ProtocolTrending" data-path="../static//csv/protocolstrendingdata.csv">Protocols</a></li>
|
<li><a data-toggle="tab" href="#protocol-tab" data-pannel="ProtocolTrending" data-path="../static//csv/protocolstrendingdata.csv">Protocols</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</br>
|
</br>
|
||||||
|
|
||||||
<div class="tab-content">
|
<div class="tab-content">
|
||||||
<div class="col-lg-12 tab-pane fade in active" id="tld-tab" >
|
<div class="col-lg-12 tab-pane fade in active" id="tld-tab" >
|
||||||
{% include 'trending_graphs/Tldstrending.html' %}
|
{% include 'trending_graphs/Tldstrending.html' %}
|
||||||
</div>
|
</div>
|
||||||
|
@ -75,7 +74,7 @@
|
||||||
</div>
|
</div>
|
||||||
<div class="col-lg-12 tab-pane fade" id="words-tab">
|
<div class="col-lg-12 tab-pane fade" id="words-tab">
|
||||||
{% include 'trending_graphs/Wordstrending.html' %}
|
{% include 'trending_graphs/Wordstrending.html' %}
|
||||||
</div>
|
</div>
|
||||||
<div class="col-lg-12 tab-pane fade" id="protocol-tab">
|
<div class="col-lg-12 tab-pane fade" id="protocol-tab">
|
||||||
{% include 'trending_graphs/Protocolstrending.html' %}
|
{% include 'trending_graphs/Protocolstrending.html' %}
|
||||||
</div>
|
</div>
|
||||||
|
@ -98,27 +97,27 @@
|
||||||
current_displayed_graph = new Graph(pannel, path, header_size);
|
current_displayed_graph = new Graph(pannel, path, header_size);
|
||||||
setTimeout(function() { current_displayed_graph.set_Visibility(default_display)}, 300);
|
setTimeout(function() { current_displayed_graph.set_Visibility(default_display)}, 300);
|
||||||
}, 'text');
|
}, 'text');
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// When a pannel is shown, create_and_plot.
|
// When a pannel is shown, create_and_plot.
|
||||||
$('.nav-tabs a').on('shown.bs.tab', function(event){
|
$('.nav-tabs a').on('shown.bs.tab', function(event){
|
||||||
create_and_plot($(event.target).attr('data-pannel'), $(event.target).attr('data-path'));
|
create_and_plot($(event.target).attr('data-pannel'), $(event.target).attr('data-path'));
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
$(document).ready(function(){
|
$(document).ready(function(){
|
||||||
// Create the graph when the page has just loaded
|
// Create the graph when the page has just loaded
|
||||||
create_and_plot("TldTrending", '../static//csv/tldstrendingdata.csv')
|
create_and_plot("TldTrending", '../static//csv/tldstrendingdata.csv')
|
||||||
});
|
});
|
||||||
|
|
||||||
// Used when we modify the number of displayed curves
|
// Used when we modify the number of displayed curves
|
||||||
function take_top(new_display){
|
function take_top(new_display){
|
||||||
current_displayed_graph.set_Visibility_andHide(new_display, default_display);
|
current_displayed_graph.set_Visibility_andHide(new_display, default_display);
|
||||||
default_display = new_display;
|
default_display = new_display;
|
||||||
}
|
}
|
||||||
|
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -14,8 +14,6 @@
|
||||||
<link href="{{ url_for('static', filename='css/dygraph_gallery.css') }}" rel="stylesheet" type="text/css" />
|
<link href="{{ url_for('static', filename='css/dygraph_gallery.css') }}" rel="stylesheet" type="text/css" />
|
||||||
<!-- JS -->
|
<!-- JS -->
|
||||||
<script type="text/javascript" src="{{ url_for('static', filename='js/dygraph-combined.js') }}"></script>
|
<script type="text/javascript" src="{{ url_for('static', filename='js/dygraph-combined.js') }}"></script>
|
||||||
<script src="{{ url_for('static', filename='js/jquery.tagcanvas.js') }}"></script>
|
|
||||||
<script src="{{ url_for('static', filename='js/jquery-1.4.2.js') }}"></script>
|
|
||||||
<script src="{{ url_for('static', filename='js/jquery.js') }}"></script>
|
<script src="{{ url_for('static', filename='js/jquery.js') }}"></script>
|
||||||
<script src="{{ url_for('static', filename='js/jquery.flot.js') }}"></script>
|
<script src="{{ url_for('static', filename='js/jquery.flot.js') }}"></script>
|
||||||
<script>
|
<script>
|
||||||
|
@ -109,7 +107,7 @@
|
||||||
<input id="checkbox_log_info" type="checkbox" value="info" checked="true"> INFO
|
<input id="checkbox_log_info" type="checkbox" value="info" checked="true"> INFO
|
||||||
<input id="checkbox_log_warning" type="checkbox" value="warning" checked="true"> WARNING
|
<input id="checkbox_log_warning" type="checkbox" value="warning" checked="true"> WARNING
|
||||||
<input id="checkbox_log_critical" type="checkbox" value="critical" checked="true"> CRITICAL
|
<input id="checkbox_log_critical" type="checkbox" value="critical" checked="true"> CRITICAL
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="panel-body">
|
<div class="panel-body">
|
||||||
|
|
|
@ -15,12 +15,11 @@
|
||||||
<link href="{{ url_for('static', filename='css/dataTables.bootstrap.css') }}" rel="stylesheet" type="text/css" />
|
<link href="{{ url_for('static', filename='css/dataTables.bootstrap.css') }}" rel="stylesheet" type="text/css" />
|
||||||
<!-- JS -->
|
<!-- JS -->
|
||||||
<script type="text/javascript" src="{{ url_for('static', filename='js/dygraph-combined.js') }}"></script>
|
<script type="text/javascript" src="{{ url_for('static', filename='js/dygraph-combined.js') }}"></script>
|
||||||
<script src="{{ url_for('static', filename='js/jquery-1.4.2.js') }}"></script>
|
|
||||||
<script language="javascript" src="{{ url_for('static', filename='js/jquery.js')}}"></script>
|
<script language="javascript" src="{{ url_for('static', filename='js/jquery.js')}}"></script>
|
||||||
<script src="{{ url_for('static', filename='js/jquery.dataTables.min.js') }}"></script>
|
<script src="{{ url_for('static', filename='js/jquery.dataTables.min.js') }}"></script>
|
||||||
<script src="{{ url_for('static', filename='js/dataTables.bootstrap.js') }}"></script>
|
<script src="{{ url_for('static', filename='js/dataTables.bootstrap.js') }}"></script>
|
||||||
<!-- Custom style -->
|
<!-- Custom style -->
|
||||||
<style>
|
<style>
|
||||||
.tooltip-inner {
|
.tooltip-inner {
|
||||||
text-align: left;
|
text-align: left;
|
||||||
height: 200%;
|
height: 200%;
|
||||||
|
@ -93,7 +92,7 @@
|
||||||
<div class="panel-heading">
|
<div class="panel-heading">
|
||||||
<i class="glyphicon glyphicon-search"></i> {{ r|length }} Results for "<strong>{{ query }}</strong>"
|
<i class="glyphicon glyphicon-search"></i> {{ r|length }} Results for "<strong>{{ query }}</strong>"
|
||||||
<div class="pull-right">
|
<div class="pull-right">
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<!-- /.panel-heading -->
|
<!-- /.panel-heading -->
|
||||||
|
@ -176,7 +175,7 @@
|
||||||
});
|
});
|
||||||
} else {
|
} else {
|
||||||
update_preview();
|
update_preview();
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
@ -191,7 +190,7 @@
|
||||||
complete_paste = null;
|
complete_paste = null;
|
||||||
start_index = 0;
|
start_index = 0;
|
||||||
});
|
});
|
||||||
|
|
||||||
// Update the paste preview in the modal
|
// Update the paste preview in the modal
|
||||||
function update_preview() {
|
function update_preview() {
|
||||||
if (start_index + char_to_display > complete_paste.length-1){ // end of paste reached
|
if (start_index + char_to_display > complete_paste.length-1){ // end of paste reached
|
||||||
|
@ -203,13 +202,13 @@
|
||||||
|
|
||||||
if (final_index != start_index){ // still have data to display
|
if (final_index != start_index){ // still have data to display
|
||||||
$("#mymodalbody").find("#paste-holder").append(complete_paste.substring(start_index+1, final_index+1)); // Append the new content
|
$("#mymodalbody").find("#paste-holder").append(complete_paste.substring(start_index+1, final_index+1)); // Append the new content
|
||||||
start_index = final_index;
|
start_index = final_index;
|
||||||
if (flag_stop)
|
if (flag_stop)
|
||||||
nothing_to_display();
|
nothing_to_display();
|
||||||
} else {
|
} else {
|
||||||
nothing_to_display();
|
nothing_to_display();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
// Update the modal when there is no more data
|
// Update the modal when there is no more data
|
||||||
function nothing_to_display() {
|
function nothing_to_display() {
|
||||||
var new_content = $(alert_message).hide();
|
var new_content = $(alert_message).hide();
|
||||||
|
|
|
@ -14,16 +14,9 @@ wget https://github.com/IronSummitMedia/startbootstrap-sb-admin-2/archive/v1.0.2
|
||||||
unzip temp/${filename}".zip" -d temp/
|
unzip temp/${filename}".zip" -d temp/
|
||||||
mv temp/startbootstrap-sb-admin-2-1.0.2 temp/sb-admin-2
|
mv temp/startbootstrap-sb-admin-2-1.0.2 temp/sb-admin-2
|
||||||
|
|
||||||
JQVERSION="1.11.1"
|
JQVERSION="1.12.4"
|
||||||
wget http://code.jquery.com/jquery-${JQVERSION}.js -O ./static/js/jquery.js
|
wget http://code.jquery.com/jquery-${JQVERSION}.js -O ./static/js/jquery.js
|
||||||
|
|
||||||
#wget https://collabdev.googlecode.com/svn-history/r5/trunk/static/js/jquery.timers-1.0.0.js -O ./static/js/jquery.timers-1.0.0.js
|
|
||||||
|
|
||||||
#Here to fix an error about an hard dependency in a obscur script of bootstrap..
|
|
||||||
wget http://code.jquery.com/jquery-1.4.2.js -O ./static/js/jquery-1.4.2.js
|
|
||||||
|
|
||||||
wget http://www.goat1000.com/jquery.tagcanvas.js?2.5 -O ./static/js/jquery.tagcanvas.js
|
|
||||||
|
|
||||||
#Ressources for dataTable
|
#Ressources for dataTable
|
||||||
wget https://cdn.datatables.net/1.10.12/js/jquery.dataTables.min.js -O ./static/js/jquery.dataTables.min.js
|
wget https://cdn.datatables.net/1.10.12/js/jquery.dataTables.min.js -O ./static/js/jquery.dataTables.min.js
|
||||||
wget https://cdn.datatables.net/plug-ins/1.10.7/integration/bootstrap/3/dataTables.bootstrap.css -O ./static/css/dataTables.bootstrap.css
|
wget https://cdn.datatables.net/plug-ins/1.10.7/integration/bootstrap/3/dataTables.bootstrap.css -O ./static/css/dataTables.bootstrap.css
|
||||||
|
|
Loading…
Reference in a new issue