EOF & whitespace
This commit is contained in:
@@ -61,7 +61,7 @@
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
{% endif %}
|
||||
|
||||
{% if backup_list['rsync_list']|count != 0 %}
|
||||
|
||||
@@ -9,9 +9,9 @@
|
||||
{% for message in messages %}
|
||||
<div class="alert alert-success fade in">
|
||||
<a href="#" class="close" data-dismiss="alert">×</a>
|
||||
<strong>Success!</strong> {{ message }}
|
||||
<strong>Success!</strong> {{ message }}
|
||||
</div>
|
||||
|
||||
|
||||
{% endfor %}
|
||||
{% endif %}
|
||||
{% endwith %}
|
||||
@@ -19,7 +19,7 @@
|
||||
<p>
|
||||
<div class="alert alert-danger fade in"><strong>Error</strong>: {{ error }}</div>
|
||||
<div class="alert alert-warning"><strong>Notice</strong>: {{ info }}</div>
|
||||
|
||||
|
||||
<h4>Also, you can contact your <a href="mailto:{{ email }}?Subject=TISBACKUP%20Export"> System Administrator</a> for more details </h4>
|
||||
</p>
|
||||
{% elif not start %}
|
||||
@@ -31,28 +31,28 @@
|
||||
$("#backup").submit();
|
||||
};
|
||||
});
|
||||
});
|
||||
});
|
||||
$('#selectall').click(function(event) { //on click
|
||||
if(this.checked) { // check select status
|
||||
$('.checkbox1').each(function() { //loop through each checkbox
|
||||
this.checked = true; //select all checkboxes with class "checkbox1"
|
||||
this.checked = true; //select all checkboxes with class "checkbox1"
|
||||
});
|
||||
}else{
|
||||
$('.checkbox1').each(function() { //loop through each checkbox
|
||||
this.checked = false; //deselect all checkboxes with class "checkbox1"
|
||||
});
|
||||
this.checked = false; //deselect all checkboxes with class "checkbox1"
|
||||
});
|
||||
}
|
||||
});
|
||||
});
|
||||
</script>
|
||||
<form id="backup" action='/export_backup'>
|
||||
<p> Select backups to save : <br/>
|
||||
<p> Select backups to save : <br/>
|
||||
<div class="row">
|
||||
<div class="checkbox"><label><input type="checkbox" class="checkbox1" id="selectall" checked>Select all</label></div>
|
||||
<div class="checkbox"><label><input type="checkbox" class="checkbox1" id="selectall" checked>Select all</label></div>
|
||||
{% for entry in sections|sort %}
|
||||
<div class="col-xs-6 col-md-4">
|
||||
<div class="form-group">
|
||||
<div class="checkbox"><label><input type="checkbox" name="sections" class="checkbox1" value="{{entry}}" checked>{{entry}}</label></div>
|
||||
<div class="checkbox"><label><input type="checkbox" name="sections" class="checkbox1" value="{{entry}}" checked>{{entry}}</label></div>
|
||||
</div>
|
||||
</div>
|
||||
{% endfor %}
|
||||
@@ -65,7 +65,7 @@
|
||||
</div>
|
||||
|
||||
</form>
|
||||
|
||||
|
||||
{% else %}
|
||||
<h2 class="title">Backups is running: </h2>
|
||||
<table id="table" class='table'>
|
||||
@@ -79,7 +79,7 @@
|
||||
</table>
|
||||
|
||||
<script>
|
||||
|
||||
|
||||
|
||||
//Refresh periode in seconds
|
||||
var refresh = 5;
|
||||
@@ -97,7 +97,7 @@ function status(){
|
||||
done = false;
|
||||
}else{
|
||||
$('tbody').append('<td>'+val.status+'</td>');
|
||||
|
||||
|
||||
done = data.finish;
|
||||
}
|
||||
$('#table-design').append('</tr>');
|
||||
|
||||
+15
-15
@@ -24,7 +24,7 @@
|
||||
"aTargets": [ 0 ],
|
||||
"mData": "backup_start",
|
||||
"mRender": function ( data, type, full ) {
|
||||
var d = new Date(data);
|
||||
var d = new Date(data);
|
||||
return d.getFullYear()+"/"+(d.getMonth()+1)+"/"+d.getDate()+" "+d.toLocaleTimeString();
|
||||
}
|
||||
},
|
||||
@@ -32,7 +32,7 @@
|
||||
"aTargets": [ 1 ],
|
||||
"mData": "backup_start",
|
||||
"mRender": function ( data, type, full ) {
|
||||
var d = new Date(data);
|
||||
var d = new Date(data);
|
||||
return d.getFullYear()+"/"+(d.getMonth()+1)+"/"+d.getDate()+" "+d.toLocaleTimeString();
|
||||
}
|
||||
},
|
||||
@@ -79,7 +79,7 @@
|
||||
$('#inputDatabaseName').keyup(function () { delay(function(){ oTable.fnLengthChange($('#inputDatabaseName').val() ); }, 300 )});
|
||||
$(".dataTables_length").remove()
|
||||
var nb_row = GetURLParameter('row');
|
||||
if (nb_row ){
|
||||
if (nb_row ){
|
||||
oTable.fnLengthChange( nb_row) ;
|
||||
$('#inputDatabaseName').val(nb_row);
|
||||
}
|
||||
@@ -96,7 +96,7 @@
|
||||
{
|
||||
/* Get the DataTables object again - this is not a recreation, just a get of the object */
|
||||
var oTable = $('#table-design').dataTable();
|
||||
|
||||
|
||||
var bVis = oTable.fnSettings().aoColumns[iCol].bVisible;
|
||||
oTable.fnSetColumnVis( iCol, bVis ? false : true );
|
||||
}
|
||||
@@ -111,10 +111,10 @@
|
||||
{
|
||||
var sPageURL = window.location.search.substring(1);
|
||||
var sURLVariables = sPageURL.split('&');
|
||||
for (var i = 0; i < sURLVariables.length; i++)
|
||||
for (var i = 0; i < sURLVariables.length; i++)
|
||||
{
|
||||
var sParameterName = sURLVariables[i].split('=');
|
||||
if (sParameterName[0] == sParam)
|
||||
if (sParameterName[0] == sParam)
|
||||
{
|
||||
return sParameterName[1];
|
||||
}
|
||||
@@ -135,7 +135,7 @@
|
||||
{
|
||||
oSettings._iDisplayLength = iDisplay;
|
||||
oSettings.oApi._fnCalculateEnd( oSettings );
|
||||
|
||||
|
||||
/* If we have space to show extra rows (backing up from the end point - then do so */
|
||||
if ( oSettings._iDisplayEnd == oSettings.aiDisplay.length )
|
||||
{
|
||||
@@ -145,14 +145,14 @@
|
||||
oSettings._iDisplayStart = 0;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
if ( oSettings._iDisplayLength == -1 )
|
||||
{
|
||||
oSettings._iDisplayStart = 0;
|
||||
}
|
||||
|
||||
|
||||
oSettings.oApi._fnDraw( oSettings );
|
||||
|
||||
|
||||
if ( oSettings.aanFeatures.l )
|
||||
{
|
||||
$('select', oSettings.aanFeatures.l).val( iDisplay );
|
||||
@@ -179,7 +179,7 @@
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
|
||||
|
||||
</tbody>
|
||||
<tfoot>
|
||||
<tr>
|
||||
@@ -204,7 +204,7 @@
|
||||
<div class="checkbox"><label><input type="checkbox" onclick="fnShowHide( 4 );" checked> Backup duration</label></div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="col-xs-6 col-md-4">
|
||||
<div class="form-group">
|
||||
<div class="checkbox"><label><input type="checkbox" onclick="fnShowHide( 6 );"checked> Written bytes</label></div>
|
||||
@@ -213,9 +213,9 @@
|
||||
<div class="checkbox"><label><input type="checkbox" onclick="fnShowHide( 9 );"/> Total bytes</label></div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="col-xs-6 col-md-4">
|
||||
<div class="form-group">
|
||||
<div class="form-group">
|
||||
<div class="checkbox"><label><input type="checkbox" onclick="fnShowHide( 10 );"> Backup location</label></div>
|
||||
<div class="checkbox"><label><input type="checkbox" onclick="fnShowHide( 11);">Description </label></div>
|
||||
<div class="checkbox"><label><input type="checkbox" onclick="fnShowHide( 12);"> Log</label></div>
|
||||
@@ -225,7 +225,7 @@
|
||||
</div>
|
||||
|
||||
</form>
|
||||
|
||||
|
||||
</p>
|
||||
|
||||
{% endblock %}
|
||||
|
||||
@@ -55,7 +55,7 @@
|
||||
{% endblock %}
|
||||
|
||||
</div><!--/row-->
|
||||
|
||||
|
||||
<hr>
|
||||
|
||||
<footer>
|
||||
@@ -80,7 +80,7 @@
|
||||
if ( data.configs.length > 1){
|
||||
$('#choix_conf').removeClass('hidden');
|
||||
$("#choix_conf").show();
|
||||
|
||||
|
||||
$.each(data.configs, function(key,val){
|
||||
if (key == data.config_number)
|
||||
$('#choix_conf').append('<option vaulue="'+key+'" selected>'+val+'</option>');
|
||||
@@ -89,7 +89,7 @@
|
||||
});
|
||||
}
|
||||
});
|
||||
|
||||
|
||||
$( "#choix_conf" ).change(function() {
|
||||
$.get( "/config_number/"+this.selectedIndex, function( data ) {location.reload();});
|
||||
});
|
||||
@@ -98,4 +98,3 @@
|
||||
</script>
|
||||
|
||||
</body></html>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user