bug #3060972 Password generation not available with AJAX
This commit is contained in:
@@ -20,6 +20,42 @@ var only_once_elements = new Array();
|
|||||||
*/
|
*/
|
||||||
var ajax_message_init = false;
|
var ajax_message_init = false;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Generate a new password and copy it to the password input areas
|
||||||
|
*
|
||||||
|
* @param object the form that holds the password fields
|
||||||
|
*
|
||||||
|
* @return boolean always true
|
||||||
|
*/
|
||||||
|
function suggestPassword(passwd_form) {
|
||||||
|
// restrict the password to just letters and numbers to avoid problems:
|
||||||
|
// "editors and viewers regard the password as multiple words and
|
||||||
|
// things like double click no longer work"
|
||||||
|
var pwchars = "abcdefhjmnpqrstuvwxyz23456789ABCDEFGHJKLMNPQRSTUVWYXZ";
|
||||||
|
var passwordlength = 16; // do we want that to be dynamic? no, keep it simple :)
|
||||||
|
var passwd = passwd_form.generated_pw;
|
||||||
|
passwd.value = '';
|
||||||
|
|
||||||
|
for ( i = 0; i < passwordlength; i++ ) {
|
||||||
|
passwd.value += pwchars.charAt( Math.floor( Math.random() * pwchars.length ) )
|
||||||
|
}
|
||||||
|
passwd_form.text_pma_pw.value = passwd.value;
|
||||||
|
passwd_form.text_pma_pw2.value = passwd.value;
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* for libraries/display_change_password.lib.php
|
||||||
|
* libraries/user_password.php
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
|
||||||
|
function displayPasswordGenerateButton() {
|
||||||
|
$('#tr_element_before_generate_password').parent().append('<tr><td>' + PMA_messages['strGeneratePassword'] + '</td><td><input type="button" id="button_generate_password" value="' + PMA_messages['strGenerate'] + '" onclick="suggestPassword(this.form)" /><input type="text" name="generated_pw" id="generated_pw" /></td></tr>');
|
||||||
|
$('#div_element_before_generate_password').parent().append('<div class="item"><label for="button_generate_password">' + PMA_messages['strGeneratePassword'] + ':</label><span class="options"><input type="button" id="button_generate_password" value="' + PMA_messages['strGenerate'] + '" onclick="suggestPassword(this.form)" /></span><input type="text" name="generated_pw" id="generated_pw" /></div>');
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* selects the content of a given object, f.e. a textarea
|
* selects the content of a given object, f.e. a textarea
|
||||||
*
|
*
|
||||||
@@ -2281,6 +2317,7 @@ $(document).ready(function() {
|
|||||||
buttons : button_options
|
buttons : button_options
|
||||||
})
|
})
|
||||||
.append(data);
|
.append(data);
|
||||||
|
displayPasswordGenerateButton();
|
||||||
}) // end $.get()
|
}) // end $.get()
|
||||||
}) // end handler for change password anchor
|
}) // end handler for change password anchor
|
||||||
|
|
||||||
|
@@ -1,10 +0,0 @@
|
|||||||
/* vim: set expandtab sw=4 ts=4 sts=4: */
|
|
||||||
/**
|
|
||||||
* for libraries/display_change_password.lib.php
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
|
||||||
$(document).ready(function() {
|
|
||||||
$('#tr_element_before_generate_password').parent().append('<tr><td>' + PMA_messages['strGeneratePassword'] + '</td><td><input type="button" id="button_generate_password" value="' + PMA_messages['strGenerate'] + '" onclick="suggestPassword(this.form)" /><input type="text" name="generated_pw" id="generated_pw" /></td></tr>');
|
|
||||||
$('#div_element_before_generate_password').parent().append('<div class="item"><label for="button_generate_password">' + PMA_messages['strGeneratePassword'] + ':</label><span class="options"><input type="button" id="button_generate_password" value="' + PMA_messages['strGenerate'] + '" onclick="suggestPassword(this.form)" /></span><input type="text" name="generated_pw" id="generated_pw" /></div>');
|
|
||||||
});
|
|
@@ -73,31 +73,6 @@ function checkAddUser(the_form)
|
|||||||
return checkPassword(the_form);
|
return checkPassword(the_form);
|
||||||
} // end of the 'checkAddUser()' function
|
} // end of the 'checkAddUser()' function
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Generate a new password and copy it to the password input areas
|
|
||||||
*
|
|
||||||
* @param object the form that holds the password fields
|
|
||||||
*
|
|
||||||
* @return boolean always true
|
|
||||||
*/
|
|
||||||
function suggestPassword(passwd_form) {
|
|
||||||
// restrict the password to just letters and numbers to avoid problems:
|
|
||||||
// "editors and viewers regard the password as multiple words and
|
|
||||||
// things like double click no longer work"
|
|
||||||
var pwchars = "abcdefhjmnpqrstuvwxyz23456789ABCDEFGHJKLMNPQRSTUVWYXZ";
|
|
||||||
var passwordlength = 16; // do we want that to be dynamic? no, keep it simple :)
|
|
||||||
var passwd = passwd_form.generated_pw;
|
|
||||||
passwd.value = '';
|
|
||||||
|
|
||||||
for ( i = 0; i < passwordlength; i++ ) {
|
|
||||||
passwd.value += pwchars.charAt( Math.floor( Math.random() * pwchars.length ) )
|
|
||||||
}
|
|
||||||
passwd_form.text_pma_pw.value = passwd.value;
|
|
||||||
passwd_form.text_pma_pw2.value = passwd.value;
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* When a new user is created and retrieved over Ajax, append the user's row to
|
* When a new user is created and retrieved over Ajax, append the user's row to
|
||||||
* the user's table
|
* the user's table
|
||||||
@@ -238,6 +213,7 @@ $(document).ready(function() {
|
|||||||
modal: true,
|
modal: true,
|
||||||
buttons: button_options
|
buttons: button_options
|
||||||
}); //dialog options end
|
}); //dialog options end
|
||||||
|
displayPasswordGenerateButton();
|
||||||
}); // end $.get()
|
}); // end $.get()
|
||||||
|
|
||||||
});//end of Add New User AJAX event handler
|
});//end of Add New User AJAX event handler
|
||||||
@@ -339,7 +315,8 @@ $(document).ready(function() {
|
|||||||
.dialog({
|
.dialog({
|
||||||
width: 900,
|
width: 900,
|
||||||
buttons: button_options
|
buttons: button_options
|
||||||
})
|
}); //dialog options end
|
||||||
|
displayPasswordGenerateButton();
|
||||||
}) // end $.get()
|
}) // end $.get()
|
||||||
})
|
})
|
||||||
|
|
||||||
|
@@ -17,7 +17,6 @@ $GLOBALS['js_include'][] = 'server_privileges.js';
|
|||||||
$GLOBALS['js_include'][] = 'functions.js';
|
$GLOBALS['js_include'][] = 'functions.js';
|
||||||
$GLOBALS['js_include'][] = 'jquery/jquery-ui-1.8.custom.js';
|
$GLOBALS['js_include'][] = 'jquery/jquery-ui-1.8.custom.js';
|
||||||
|
|
||||||
$GLOBALS['js_include'][] = 'password_generation.js';
|
|
||||||
require './libraries/server_common.inc.php';
|
require './libraries/server_common.inc.php';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@@ -35,7 +35,6 @@ if (! defined('PMA_NO_VARIABLES_IMPORT')) {
|
|||||||
require_once './libraries/common.inc.php';
|
require_once './libraries/common.inc.php';
|
||||||
|
|
||||||
$GLOBALS['js_include'][] = 'server_privileges.js';
|
$GLOBALS['js_include'][] = 'server_privileges.js';
|
||||||
$GLOBALS['js_include'][] = 'password_generation.js';
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Displays an error message and exits if the user isn't allowed to use this
|
* Displays an error message and exits if the user isn't allowed to use this
|
||||||
|
Reference in New Issue
Block a user