a few changes on preferences manage page
fix JS date generation on preferences export to localStorage
This commit is contained in:
15
js/config.js
15
js/config.js
@@ -636,12 +636,12 @@ $(function() {
|
|||||||
.attr('disabled', false)
|
.attr('disabled', false)
|
||||||
.add('#export_text_file, #import_text_file')
|
.add('#export_text_file, #import_text_file')
|
||||||
.click(function(){
|
.click(function(){
|
||||||
var show_id = $(this).attr('id');
|
var enable_id = $(this).attr('id');
|
||||||
var hide_id = show_id.match(/local_storage$/)
|
var disable_id = enable_id.match(/local_storage$/)
|
||||||
? show_id.replace(/local_storage$/, 'text_file')
|
? enable_id.replace(/local_storage$/, 'text_file')
|
||||||
: show_id.replace(/text_file$/, 'local_storage');
|
: enable_id.replace(/text_file$/, 'local_storage');
|
||||||
$('#opts_'+hide_id).hide();
|
$('#opts_'+disable_id).addClass('disabled').find('input').attr('disabled', true);
|
||||||
$('#opts_'+show_id).show();
|
$('#opts_'+enable_id).removeClass('disabled').find('input').attr('disabled', false);;
|
||||||
});
|
});
|
||||||
|
|
||||||
// detect localStorage state
|
// detect localStorage state
|
||||||
@@ -690,7 +690,6 @@ function savePrefsToLocalStorage(form)
|
|||||||
{
|
{
|
||||||
form = $(form);
|
form = $(form);
|
||||||
var submit = form.find('input[type=submit]');
|
var submit = form.find('input[type=submit]');
|
||||||
//PMA_messages['strPrefsSaved']
|
|
||||||
submit.attr('disabled', true);
|
submit.attr('disabled', true);
|
||||||
$.ajax({
|
$.ajax({
|
||||||
url: 'prefs_manage.php',
|
url: 'prefs_manage.php',
|
||||||
@@ -737,7 +736,7 @@ function formatDate(d)
|
|||||||
{
|
{
|
||||||
return d.getFullYear() + '-'
|
return d.getFullYear() + '-'
|
||||||
+ (d.getMonth() < 10 ? '0'+d.getMonth() : d.getMonth())
|
+ (d.getMonth() < 10 ? '0'+d.getMonth() : d.getMonth())
|
||||||
+ '-' + (d.getDay() < 10 ? '0'+d.getDay() : d.getDay())
|
+ '-' + (d.getDate() < 10 ? '0'+d.getDate() : d.getDate())
|
||||||
+ ' ' + (d.getHours() < 10 ? '0'+d.getHours() : d.getHours())
|
+ ' ' + (d.getHours() < 10 ? '0'+d.getHours() : d.getHours())
|
||||||
+ ':' + (d.getMinutes() < 10 ? '0'+d.getMinutes() : d.getMinutes());
|
+ ':' + (d.getMinutes() < 10 ? '0'+d.getMinutes() : d.getMinutes());
|
||||||
}
|
}
|
||||||
|
@@ -223,18 +223,15 @@ PMA_printJsValue("PMA_messages['strSavedOn']", __('Saved on: __DATE__'));
|
|||||||
echo PMA_generate_common_hidden_inputs() . "\n";
|
echo PMA_generate_common_hidden_inputs() . "\n";
|
||||||
?>
|
?>
|
||||||
<input type="hidden" name="json" value="" />
|
<input type="hidden" name="json" value="" />
|
||||||
<div>
|
<input type="radio" id="import_text_file" name="import_type" value="text_file" checked="checked" />
|
||||||
<input type="radio" id="import_text_file" name="import_type" value="text_file" checked="checked" />
|
<label for="import_text_file"><?php echo __('Import from file') ?></label>
|
||||||
<label for="import_text_file"><?php echo __('Import from text file') ?></label>
|
|
||||||
<br />
|
|
||||||
<input type="radio" id="import_local_storage" name="import_type" value="local_storage" disabled="disabled" />
|
|
||||||
<label for="import_local_storage"><?php echo __('Import from browser\'s storage') ?></label>
|
|
||||||
</div>
|
|
||||||
<div id="opts_import_text_file" class="prefsmanage_opts">
|
<div id="opts_import_text_file" class="prefsmanage_opts">
|
||||||
<label for="input_import_file"><?php echo __('Location of the text file'); ?></label>
|
<label for="input_import_file"><?php echo __('Location of the text file'); ?></label>
|
||||||
<input type="file" name="import_file" id="input_import_file" />
|
<input type="file" name="import_file" id="input_import_file" />
|
||||||
</div>
|
</div>
|
||||||
<div id="opts_import_local_storage" class="prefsmanage_opts" style="display:none">
|
<input type="radio" id="import_local_storage" name="import_type" value="local_storage" disabled="disabled" />
|
||||||
|
<label for="import_local_storage"><?php echo __('Import from browser\'s storage') ?></label>
|
||||||
|
<div id="opts_import_local_storage" class="prefsmanage_opts disabled">
|
||||||
<div class="localStorage-supported">
|
<div class="localStorage-supported">
|
||||||
<?php echo __('Settings will be imported from your browser\'s local storage.') ?>
|
<?php echo __('Settings will be imported from your browser\'s local storage.') ?>
|
||||||
<br />
|
<br />
|
||||||
@@ -249,6 +246,7 @@ PMA_printJsValue("PMA_messages['strSavedOn']", __('Saved on: __DATE__'));
|
|||||||
<?php PMA_Message::notice(__('This feature is not supported by your web browser'))->display() ?>
|
<?php PMA_Message::notice(__('This feature is not supported by your web browser'))->display() ?>
|
||||||
</span>
|
</span>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<input type="checkbox" id="import_merge" name="import_merge" />
|
<input type="checkbox" id="import_merge" name="import_merge" />
|
||||||
<label for="import_merge"><?php echo __('Merge with current configuration') ?></label>
|
<label for="import_merge"><?php echo __('Merge with current configuration') ?></label>
|
||||||
<br /><br />
|
<br /><br />
|
||||||
@@ -274,11 +272,11 @@ PMA_printJsValue("PMA_messages['strSavedOn']", __('Saved on: __DATE__'));
|
|||||||
<input type="radio" id="export_local_storage" name="export_type" value="local_storage" disabled="disabled" />
|
<input type="radio" id="export_local_storage" name="export_type" value="local_storage" disabled="disabled" />
|
||||||
<label for="export_local_storage"><?php echo __('Save to browser\'s storage') ?></label>
|
<label for="export_local_storage"><?php echo __('Save to browser\'s storage') ?></label>
|
||||||
</div>
|
</div>
|
||||||
<div id="opts_export_local_storage" class="prefsmanage_opts" style="display:none">
|
<div id="opts_export_local_storage" class="prefsmanage_opts disabled">
|
||||||
<span class="localStorage-supported">
|
<span class="localStorage-supported">
|
||||||
<?php echo __('Settings will be saved in your browser\'s local storage.') ?>
|
<?php echo __('Settings will be saved in your browser\'s local storage.') ?>
|
||||||
<span class="localStorage-exists">
|
<span class="localStorage-exists">
|
||||||
<b><?php PMA_Message::notice(__('Existing settings will be overridden!'))->display() ?></b>
|
<br /><b><?php echo __('Existing settings will be overwritten!') ?></b>
|
||||||
</span>
|
</span>
|
||||||
</span>
|
</span>
|
||||||
<span class="localStorage-unsupported">
|
<span class="localStorage-unsupported">
|
||||||
|
Reference in New Issue
Block a user