1 /* vim: set expandtab sw=4 ts=4 sts=4: */
3 * general function, usally for data manipulation pages
8 * @var sql_box_locked lock for the sqlbox textarea in the querybox/querywindow
10 var sql_box_locked = false;
13 * @var array holds elements which content should only selected once
15 var only_once_elements = new Array();
18 * @var ajax_message_init boolean boolean that stores status of
19 * notification for PMA_ajaxShowNotification
21 var ajax_message_init = false;
24 * Add a hidden field to the form to indicate that this will be an
25 * Ajax request (only if this hidden field does not exist)
27 * @param object the form
29 function PMA_prepareForAjaxRequest($form) {
30 if (! $form.find('input:hidden').is('#ajax_request_hidden')) {
31 $form.append('<input type="hidden" id="ajax_request_hidden" name="ajax_request" value="true" />');
36 * Generate a new password and copy it to the password input areas
38 * @param object the form that holds the password fields
40 * @return boolean always true
42 function suggestPassword(passwd_form) {
43 // restrict the password to just letters and numbers to avoid problems:
44 // "editors and viewers regard the password as multiple words and
45 // things like double click no longer work"
46 var pwchars = "abcdefhjmnpqrstuvwxyz23456789ABCDEFGHJKLMNPQRSTUVWYXZ";
47 var passwordlength = 16; // do we want that to be dynamic? no, keep it simple :)
48 var passwd = passwd_form.generated_pw;
51 for ( i = 0; i < passwordlength; i++ ) {
52 passwd.value += pwchars.charAt( Math.floor( Math.random() * pwchars.length ) )
54 passwd_form.text_pma_pw.value = passwd.value;
55 passwd_form.text_pma_pw2.value = passwd.value;
60 * Version string to integer conversion.
62 function parseVersionString (str) {
63 if (typeof(str) != 'string') { return false; }
65 // Parse possible alpha/beta/rc/
66 var state = str.split('-');
67 if (state.length >= 2) {
68 if (state[1].substr(0, 2) == 'rc') {
69 add = - 20 - parseInt(state[1].substr(2));
70 } else if (state[1].substr(0, 4) == 'beta') {
71 add = - 40 - parseInt(state[1].substr(4));
72 } else if (state[1].substr(0, 5) == 'alpha') {
73 add = - 60 - parseInt(state[1].substr(5));
74 } else if (state[1].substr(0, 3) == 'dev') {
75 /* We don't handle dev, it's git snapshot */
80 var x = str.split('.');
81 // Use 0 for non existing parts
82 var maj = parseInt(x[0]) || 0;
83 var min = parseInt(x[1]) || 0;
84 var pat = parseInt(x[2]) || 0;
85 var hotfix = parseInt(x[3]) || 0;
86 return maj * 100000000 + min * 1000000 + pat * 10000 + hotfix * 100 + add;
90 * Indicates current available version on main page.
92 function PMA_current_version() {
93 var current = parseVersionString(pmaversion);
94 var latest = parseVersionString(PMA_latest_version);
95 $('#li_pma_version').append(PMA_messages['strLatestAvailable'] + ' ' + PMA_latest_version);
96 if (latest > current) {
97 var message = $.sprintf(PMA_messages['strNewerVersion'], PMA_latest_version, PMA_latest_date);
98 if (Math.floor(latest / 10000) == Math.floor(current / 10000)) {
104 $('#maincontainer').after('<div class="' + klass + '">' + message + '</div>');
109 * for libraries/display_change_password.lib.php
110 * libraries/user_password.php
114 function displayPasswordGenerateButton() {
115 $('#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>');
116 $('#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>');
120 * Adds a date/time picker to an element
122 * @param object $this_element a jQuery object pointing to the element
124 function PMA_addDatepicker($this_element) {
125 var showTimeOption = false;
126 if ($this_element.is('.datetimefield')) {
127 showTimeOption = true;
133 buttonImage: themeCalendarImage, // defined in js/messages.php
134 buttonImageOnly: true,
139 showTime: showTimeOption,
140 dateFormat: 'yy-mm-dd', // yy means year with four digits
142 beforeShow: function(input, inst) {
143 // Remember that we came from the datepicker; this is used
144 // in tbl_change.js by verificationsAfterFieldChange()
145 $this_element.data('comes_from', 'datepicker');
147 constrainInput: false
152 * selects the content of a given object, f.e. a textarea
154 * @param object element element of which the content will be selected
155 * @param var lock variable which holds the lock for this element
156 * or true, if no lock exists
157 * @param boolean only_once if true this is only done once
158 * f.e. only on first focus
160 function selectContent( element, lock, only_once ) {
161 if ( only_once && only_once_elements[element.name] ) {
165 only_once_elements[element.name] = true;
175 * Displays a confirmation box before to submit a "DROP/DELETE/ALTER" query.
176 * This function is called while clicking links
178 * @param object the link
179 * @param object the sql query to submit
181 * @return boolean whether to run the query or not
183 function confirmLink(theLink, theSqlQuery)
185 // Confirmation is not required in the configuration file
186 // or browser is Opera (crappy js implementation)
187 if (PMA_messages['strDoYouReally'] == '' || typeof(window.opera) != 'undefined') {
191 var is_confirmed = confirm(PMA_messages['strDoYouReally'] + ' :\n' + theSqlQuery);
193 if ( typeof(theLink.href) != 'undefined' ) {
194 theLink.href += '&is_js_confirmed=1';
195 } else if ( typeof(theLink.form) != 'undefined' ) {
196 theLink.form.action += '?is_js_confirmed=1';
201 } // end of the 'confirmLink()' function
205 * Displays a confirmation box before doing some action
207 * @param object the message to display
209 * @return boolean whether to run the query or not
211 * @todo used only by libraries/display_tbl.lib.php. figure out how it is used
212 * and replace with a jQuery equivalent
214 function confirmAction(theMessage)
216 // TODO: Confirmation is not required in the configuration file
217 // or browser is Opera (crappy js implementation)
218 if (typeof(window.opera) != 'undefined') {
222 var is_confirmed = confirm(theMessage);
225 } // end of the 'confirmAction()' function
229 * Displays an error message if a "DROP DATABASE" statement is submitted
230 * while it isn't allowed, else confirms a "DROP/DELETE/ALTER" query before
231 * sumitting it if required.
232 * This function is called by the 'checkSqlQuery()' js function.
234 * @param object the form
235 * @param object the sql query textarea
237 * @return boolean whether to run the query or not
239 * @see checkSqlQuery()
241 function confirmQuery(theForm1, sqlQuery1)
243 // Confirmation is not required in the configuration file
244 if (PMA_messages['strDoYouReally'] == '') {
248 // The replace function (js1.2) isn't supported
249 else if (typeof(sqlQuery1.value.replace) == 'undefined') {
253 // js1.2+ -> validation with regular expressions
255 // "DROP DATABASE" statement isn't allowed
256 if (PMA_messages['strNoDropDatabases'] != '') {
257 var drop_re = new RegExp('(^|;)\\s*DROP\\s+(IF EXISTS\\s+)?DATABASE\\s', 'i');
258 if (drop_re.test(sqlQuery1.value)) {
259 alert(PMA_messages['strNoDropDatabases']);
266 // Confirms a "DROP/DELETE/ALTER/TRUNCATE" statement
268 // TODO: find a way (if possible) to use the parser-analyser
269 // for this kind of verification
270 // For now, I just added a ^ to check for the statement at
271 // beginning of expression
273 var do_confirm_re_0 = new RegExp('^\\s*DROP\\s+(IF EXISTS\\s+)?(TABLE|DATABASE|PROCEDURE)\\s', 'i');
274 var do_confirm_re_1 = new RegExp('^\\s*ALTER\\s+TABLE\\s+((`[^`]+`)|([A-Za-z0-9_$]+))\\s+DROP\\s', 'i');
275 var do_confirm_re_2 = new RegExp('^\\s*DELETE\\s+FROM\\s', 'i');
276 var do_confirm_re_3 = new RegExp('^\\s*TRUNCATE\\s', 'i');
278 if (do_confirm_re_0.test(sqlQuery1.value)
279 || do_confirm_re_1.test(sqlQuery1.value)
280 || do_confirm_re_2.test(sqlQuery1.value)
281 || do_confirm_re_3.test(sqlQuery1.value)) {
282 var message = (sqlQuery1.value.length > 100)
283 ? sqlQuery1.value.substr(0, 100) + '\n ...'
285 var is_confirmed = confirm(PMA_messages['strDoYouReally'] + ' :\n' + message);
286 // statement is confirmed -> update the
287 // "is_js_confirmed" form field so the confirm test won't be
288 // run on the server side and allows to submit the form
290 theForm1.elements['is_js_confirmed'].value = 1;
293 // statement is rejected -> do not submit the form
298 } // end if (handle confirm box result)
299 } // end if (display confirm box)
300 } // end confirmation stuff
303 } // end of the 'confirmQuery()' function
307 * Displays a confirmation box before disabling the BLOB repository for a given database.
308 * This function is called while clicking links
310 * @param object the database
312 * @return boolean whether to disable the repository or not
314 function confirmDisableRepository(theDB)
316 // Confirmation is not required in the configuration file
317 // or browser is Opera (crappy js implementation)
318 if (PMA_messages['strDoYouReally'] == '' || typeof(window.opera) != 'undefined') {
322 var is_confirmed = confirm(PMA_messages['strBLOBRepositoryDisableStrongWarning'] + '\n' + PMA_messages['strBLOBRepositoryDisableAreYouSure']);
325 } // end of the 'confirmDisableBLOBRepository()' function
329 * Displays an error message if the user submitted the sql query form with no
330 * sql query, else checks for "DROP/DELETE/ALTER" statements
332 * @param object the form
334 * @return boolean always false
336 * @see confirmQuery()
338 function checkSqlQuery(theForm)
340 var sqlQuery = theForm.elements['sql_query'];
343 // The replace function (js1.2) isn't supported -> basic tests
344 if (typeof(sqlQuery.value.replace) == 'undefined') {
345 isEmpty = (sqlQuery.value == '') ? 1 : 0;
346 if (isEmpty && typeof(theForm.elements['sql_file']) != 'undefined') {
347 isEmpty = (theForm.elements['sql_file'].value == '') ? 1 : 0;
349 if (isEmpty && typeof(theForm.elements['sql_localfile']) != 'undefined') {
350 isEmpty = (theForm.elements['sql_localfile'].value == '') ? 1 : 0;
352 if (isEmpty && typeof(theForm.elements['id_bookmark']) != 'undefined') {
353 isEmpty = (theForm.elements['id_bookmark'].value == null || theForm.elements['id_bookmark'].value == '');
356 // js1.2+ -> validation with regular expressions
358 var space_re = new RegExp('\\s+');
359 if (typeof(theForm.elements['sql_file']) != 'undefined' &&
360 theForm.elements['sql_file'].value.replace(space_re, '') != '') {
363 if (typeof(theForm.elements['sql_localfile']) != 'undefined' &&
364 theForm.elements['sql_localfile'].value.replace(space_re, '') != '') {
367 if (isEmpty && typeof(theForm.elements['id_bookmark']) != 'undefined' &&
368 (theForm.elements['id_bookmark'].value != null || theForm.elements['id_bookmark'].value != '') &&
369 theForm.elements['id_bookmark'].selectedIndex != 0
373 // Checks for "DROP/DELETE/ALTER" statements
374 if (sqlQuery.value.replace(space_re, '') != '') {
375 if (confirmQuery(theForm, sqlQuery)) {
387 alert(PMA_messages['strFormEmpty']);
393 } // end of the 'checkSqlQuery()' function
396 * Check if a form's element is empty.
397 * An element containing only spaces is also considered empty
399 * @param object the form
400 * @param string the name of the form field to put the focus on
402 * @return boolean whether the form field is empty or not
404 function emptyCheckTheField(theForm, theFieldName)
407 var theField = theForm.elements[theFieldName];
408 // Whether the replace function (js1.2) is supported or not
409 var isRegExp = (typeof(theField.value.replace) != 'undefined');
412 isEmpty = (theField.value == '') ? 1 : 0;
414 var space_re = new RegExp('\\s+');
415 isEmpty = (theField.value.replace(space_re, '') == '') ? 1 : 0;
419 } // end of the 'emptyCheckTheField()' function
423 * Check whether a form field is empty or not
425 * @param object the form
426 * @param string the name of the form field to put the focus on
428 * @return boolean whether the form field is empty or not
430 function emptyFormElements(theForm, theFieldName)
432 var theField = theForm.elements[theFieldName];
433 var isEmpty = emptyCheckTheField(theForm, theFieldName);
437 } // end of the 'emptyFormElements()' function
441 * Ensures a value submitted in a form is numeric and is in a range
443 * @param object the form
444 * @param string the name of the form field to check
445 * @param integer the minimum authorized value
446 * @param integer the maximum authorized value
448 * @return boolean whether a valid number has been submitted or not
450 function checkFormElementInRange(theForm, theFieldName, message, min, max)
452 var theField = theForm.elements[theFieldName];
453 var val = parseInt(theField.value);
455 if (typeof(min) == 'undefined') {
458 if (typeof(max) == 'undefined') {
459 max = Number.MAX_VALUE;
465 alert(PMA_messages['strNotNumber']);
469 // It's a number but it is not between min and max
470 else if (val < min || val > max) {
472 alert(message.replace('%d', val));
476 // It's a valid number
478 theField.value = val;
482 } // end of the 'checkFormElementInRange()' function
485 function checkTableEditForm(theForm, fieldsCnt)
487 // TODO: avoid sending a message if user just wants to add a line
488 // on the form but has not completed at least one field name
490 var atLeastOneField = 0;
491 var i, elm, elm2, elm3, val, id;
493 for (i=0; i<fieldsCnt; i++)
495 id = "#field_" + i + "_2";
498 if (val == 'VARCHAR' || val == 'CHAR' || val == 'BIT' || val == 'VARBINARY' || val == 'BINARY') {
499 elm2 = $("#field_" + i + "_3");
500 val = parseInt(elm2.val());
501 elm3 = $("#field_" + i + "_1");
502 if (isNaN(val) && elm3.val() != "") {
504 alert(PMA_messages['strNotNumber']);
510 if (atLeastOneField == 0) {
511 id = "field_" + i + "_1";
512 if (!emptyCheckTheField(theForm, id)) {
517 if (atLeastOneField == 0) {
518 var theField = theForm.elements["field_0_1"];
519 alert(PMA_messages['strFormEmpty']);
524 // at least this section is under jQuery
525 if ($("input.textfield[name='table']").val() == "") {
526 alert(PMA_messages['strFormEmpty']);
527 $("input.textfield[name='table']").focus();
533 } // enf of the 'checkTableEditForm()' function
537 * Ensures the choice between 'transmit', 'zipped', 'gzipped' and 'bzipped'
538 * checkboxes is consistant
540 * @param object the form
541 * @param string a code for the action that causes this function to be run
543 * @return boolean always true
545 function checkTransmitDump(theForm, theAction)
547 var formElts = theForm.elements;
549 // 'zipped' option has been checked
550 if (theAction == 'zip' && formElts['zip'].checked) {
551 if (!formElts['asfile'].checked) {
552 theForm.elements['asfile'].checked = true;
554 if (typeof(formElts['gzip']) != 'undefined' && formElts['gzip'].checked) {
555 theForm.elements['gzip'].checked = false;
557 if (typeof(formElts['bzip']) != 'undefined' && formElts['bzip'].checked) {
558 theForm.elements['bzip'].checked = false;
561 // 'gzipped' option has been checked
562 else if (theAction == 'gzip' && formElts['gzip'].checked) {
563 if (!formElts['asfile'].checked) {
564 theForm.elements['asfile'].checked = true;
566 if (typeof(formElts['zip']) != 'undefined' && formElts['zip'].checked) {
567 theForm.elements['zip'].checked = false;
569 if (typeof(formElts['bzip']) != 'undefined' && formElts['bzip'].checked) {
570 theForm.elements['bzip'].checked = false;
573 // 'bzipped' option has been checked
574 else if (theAction == 'bzip' && formElts['bzip'].checked) {
575 if (!formElts['asfile'].checked) {
576 theForm.elements['asfile'].checked = true;
578 if (typeof(formElts['zip']) != 'undefined' && formElts['zip'].checked) {
579 theForm.elements['zip'].checked = false;
581 if (typeof(formElts['gzip']) != 'undefined' && formElts['gzip'].checked) {
582 theForm.elements['gzip'].checked = false;
585 // 'transmit' option has been unchecked
586 else if (theAction == 'transmit' && !formElts['asfile'].checked) {
587 if (typeof(formElts['zip']) != 'undefined' && formElts['zip'].checked) {
588 theForm.elements['zip'].checked = false;
590 if ((typeof(formElts['gzip']) != 'undefined' && formElts['gzip'].checked)) {
591 theForm.elements['gzip'].checked = false;
593 if ((typeof(formElts['bzip']) != 'undefined' && formElts['bzip'].checked)) {
594 theForm.elements['bzip'].checked = false;
599 } // end of the 'checkTransmitDump()' function
601 $(document).ready(function() {
603 * Row marking in horizontal mode (use "live" so that it works also for
604 * next pages reached via AJAX); a tr may have the class noclick to remove
607 $('tr.odd:not(.noclick), tr.even:not(.noclick)').live('click',function(e) {
608 // do not trigger when clicked on anchor
609 if ($(e.target).is('a, a *')) {
612 // XXX: FF fires two click events for <label> (label and checkbox), so we need to handle this differently
614 var $checkbox = $tr.find(':checkbox');
615 if ($checkbox.length) {
616 // checkbox in a row, add or remove class depending on checkbox state
617 var checked = $checkbox.attr('checked');
618 if (!$(e.target).is(':checkbox, label')) {
620 $checkbox.attr('checked', checked);
623 $tr.addClass('marked');
625 $tr.removeClass('marked');
628 // normaln data table, just toggle class
629 $tr.toggleClass('marked');
634 * Add a date/time picker to each element that needs it
636 $('.datefield, .datetimefield').each(function() {
637 PMA_addDatepicker($(this));
642 * Row highlighting in horizontal mode (use "live"
643 * so that it works also for pages reached via AJAX)
645 $(document).ready(function() {
646 $('tr.odd, tr.even').live('hover',function() {
648 $tr.toggleClass('hover');
649 $tr.children().toggleClass('hover');
654 * This array is used to remember mark status of rows in browse mode
656 var marked_row = new Array;
659 * marks all rows and selects its first checkbox inside the given element
660 * the given element is usaly a table or a div containing the table or tables
662 * @param container DOM element
664 function markAllRows( container_id ) {
666 $("#"+container_id).find("input:checkbox:enabled").attr('checked', 'checked')
667 .parents("tr").addClass("marked");
672 * marks all rows and selects its first checkbox inside the given element
673 * the given element is usaly a table or a div containing the table or tables
675 * @param container DOM element
677 function unMarkAllRows( container_id ) {
679 $("#"+container_id).find("input:checkbox:enabled").removeAttr('checked')
680 .parents("tr").removeClass("marked");
685 * Checks/unchecks all checkbox in given conainer (f.e. a form, fieldset or div)
687 * @param string container_id the container id
688 * @param boolean state new value for checkbox (true or false)
689 * @return boolean always true
691 function setCheckboxes( container_id, state ) {
694 $("#"+container_id).find("input:checkbox").attr('checked', 'checked');
697 $("#"+container_id).find("input:checkbox").removeAttr('checked');
701 } // end of the 'setCheckboxes()' function
704 * Checks/unchecks all options of a <select> element
706 * @param string the form name
707 * @param string the element name
708 * @param boolean whether to check or to uncheck options
710 * @return boolean always true
712 function setSelectOptions(the_form, the_select, do_check)
714 $("form[name='"+ the_form +"'] select[name='"+the_select+"']").find("option").attr('selected', do_check);
716 } // end of the 'setSelectOptions()' function
720 * Create quick sql statements.
723 function insertQuery(queryType) {
724 var myQuery = document.sqlform.sql_query;
725 var myListBox = document.sqlform.dummy;
727 var table = document.sqlform.table.value;
729 if (myListBox.options.length > 0) {
730 sql_box_locked = true;
735 for (var i=0; i < myListBox.options.length; i++) {
742 chaineAj += myListBox.options[i].value;
743 valDis += "[value-" + NbSelect + "]";
744 editDis += myListBox.options[i].value + "=[value-" + NbSelect + "]";
746 if (queryType == "selectall") {
747 query = "SELECT * FROM `" + table + "` WHERE 1";
748 } else if (queryType == "select") {
749 query = "SELECT " + chaineAj + " FROM `" + table + "` WHERE 1";
750 } else if (queryType == "insert") {
751 query = "INSERT INTO `" + table + "`(" + chaineAj + ") VALUES (" + valDis + ")";
752 } else if (queryType == "update") {
753 query = "UPDATE `" + table + "` SET " + editDis + " WHERE 1";
754 } else if(queryType == "delete") {
755 query = "DELETE FROM `" + table + "` WHERE 1";
757 document.sqlform.sql_query.value = query;
758 sql_box_locked = false;
764 * Inserts multiple fields.
767 function insertValueQuery() {
768 var myQuery = document.sqlform.sql_query;
769 var myListBox = document.sqlform.dummy;
771 if(myListBox.options.length > 0) {
772 sql_box_locked = true;
775 for(var i=0; i<myListBox.options.length; i++) {
776 if (myListBox.options[i].selected){
780 chaineAj += myListBox.options[i].value;
785 if (document.selection) {
787 sel = document.selection.createRange();
789 document.sqlform.insert.focus();
791 //MOZILLA/NETSCAPE support
792 else if (document.sqlform.sql_query.selectionStart || document.sqlform.sql_query.selectionStart == "0") {
793 var startPos = document.sqlform.sql_query.selectionStart;
794 var endPos = document.sqlform.sql_query.selectionEnd;
795 var chaineSql = document.sqlform.sql_query.value;
797 myQuery.value = chaineSql.substring(0, startPos) + chaineAj + chaineSql.substring(endPos, chaineSql.length);
799 myQuery.value += chaineAj;
801 sql_box_locked = false;
806 * listbox redirection
808 function goToUrl(selObj, goToLocation) {
809 eval("document.location.href = '" + goToLocation + "pos=" + selObj.options[selObj.selectedIndex].value + "'");
815 function getElement(e,f){
818 if(f.document.layers[e]) {
819 return f.document.layers[e];
821 for(W=0;W<f.document.layers.length;W++) {
822 return(getElement(e,f.document.layers[W]));
826 return document.all[e];
828 return document.getElementById(e);
832 * Refresh the WYSIWYG scratchboard after changes have been made
834 function refreshDragOption(e) {
835 var elm = $('#' + e);
836 if (elm.css('visibility') == 'visible') {
843 * Refresh/resize the WYSIWYG scratchboard
845 function refreshLayout() {
846 var elm = $('#pdflayout')
847 var orientation = $('#orientation_opt').val();
848 if($('#paper_opt').length==1){
849 var paper = $('#paper_opt').val();
853 if (orientation == 'P') {
860 elm.css('width', pdfPaperSize(paper, posa) + 'px');
861 elm.css('height', pdfPaperSize(paper, posb) + 'px');
865 * Show/hide the WYSIWYG scratchboard
867 function ToggleDragDrop(e) {
868 var elm = $('#' + e);
869 if (elm.css('visibility') == 'hidden') {
870 PDFinit(); /* Defined in pdf_pages.php */
871 elm.css('visibility', 'visible');
872 elm.css('display', 'block');
873 $('#showwysiwyg').val('1')
875 elm.css('visibility', 'hidden');
876 elm.css('display', 'none');
877 $('#showwysiwyg').val('0')
882 * PDF scratchboard: When a position is entered manually, update
883 * the fields inside the scratchboard.
885 function dragPlace(no, axis, value) {
886 var elm = $('#table_' + no);
888 elm.css('left', value + 'px');
890 elm.css('top', value + 'px');
895 * Returns paper sizes for a given format
897 function pdfPaperSize(format, axis) {
898 switch (format.toUpperCase()) {
900 if (axis == 'x') return 4767.87; else return 6740.79;
903 if (axis == 'x') return 3370.39; else return 4767.87;
906 if (axis == 'x') return 2383.94; else return 3370.39;
909 if (axis == 'x') return 1683.78; else return 2383.94;
912 if (axis == 'x') return 1190.55; else return 1683.78;
915 if (axis == 'x') return 841.89; else return 1190.55;
918 if (axis == 'x') return 595.28; else return 841.89;
921 if (axis == 'x') return 419.53; else return 595.28;
924 if (axis == 'x') return 297.64; else return 419.53;
927 if (axis == 'x') return 209.76; else return 297.64;
930 if (axis == 'x') return 147.40; else return 209.76;
933 if (axis == 'x') return 104.88; else return 147.40;
936 if (axis == 'x') return 73.70; else return 104.88;
939 if (axis == 'x') return 2834.65; else return 4008.19;
942 if (axis == 'x') return 2004.09; else return 2834.65;
945 if (axis == 'x') return 1417.32; else return 2004.09;
948 if (axis == 'x') return 1000.63; else return 1417.32;
951 if (axis == 'x') return 708.66; else return 1000.63;
954 if (axis == 'x') return 498.90; else return 708.66;
957 if (axis == 'x') return 354.33; else return 498.90;
960 if (axis == 'x') return 249.45; else return 354.33;
963 if (axis == 'x') return 175.75; else return 249.45;
966 if (axis == 'x') return 124.72; else return 175.75;
969 if (axis == 'x') return 87.87; else return 124.72;
972 if (axis == 'x') return 2599.37; else return 3676.54;
975 if (axis == 'x') return 1836.85; else return 2599.37;
978 if (axis == 'x') return 1298.27; else return 1836.85;
981 if (axis == 'x') return 918.43; else return 1298.27;
984 if (axis == 'x') return 649.13; else return 918.43;
987 if (axis == 'x') return 459.21; else return 649.13;
990 if (axis == 'x') return 323.15; else return 459.21;
993 if (axis == 'x') return 229.61; else return 323.15;
996 if (axis == 'x') return 161.57; else return 229.61;
999 if (axis == 'x') return 113.39; else return 161.57;
1002 if (axis == 'x') return 79.37; else return 113.39;
1005 if (axis == 'x') return 2437.80; else return 3458.27;
1008 if (axis == 'x') return 1729.13; else return 2437.80;
1011 if (axis == 'x') return 1218.90; else return 1729.13;
1014 if (axis == 'x') return 864.57; else return 1218.90;
1017 if (axis == 'x') return 609.45; else return 864.57;
1020 if (axis == 'x') return 2551.18; else return 3628.35;
1023 if (axis == 'x') return 1814.17; else return 2551.18;
1026 if (axis == 'x') return 1275.59; else return 1814.17;
1029 if (axis == 'x') return 907.09; else return 1275.59;
1032 if (axis == 'x') return 637.80; else return 907.09;
1035 if (axis == 'x') return 612.00; else return 792.00;
1038 if (axis == 'x') return 612.00; else return 1008.00;
1041 if (axis == 'x') return 521.86; else return 756.00;
1044 if (axis == 'x') return 612.00; else return 936.00;
1052 * for playing media from the BLOB repository
1055 * @param var url_params main purpose is to pass the token
1056 * @param var bs_ref BLOB repository reference
1057 * @param var m_type type of BLOB repository media
1058 * @param var w_width width of popup window
1059 * @param var w_height height of popup window
1061 function popupBSMedia(url_params, bs_ref, m_type, is_cust_type, w_width, w_height)
1063 // if width not specified, use default
1064 if (w_width == undefined)
1067 // if height not specified, use default
1068 if (w_height == undefined)
1071 // open popup window (for displaying video/playing audio)
1072 var mediaWin = window.open('bs_play_media.php?' + url_params + '&bs_reference=' + bs_ref + '&media_type=' + m_type + '&custom_type=' + is_cust_type, 'viewBSMedia', 'width=' + w_width + ', height=' + w_height + ', resizable=1, scrollbars=1, status=0');
1076 * popups a request for changing MIME types for files in the BLOB repository
1078 * @param var db database name
1079 * @param var table table name
1080 * @param var reference BLOB repository reference
1081 * @param var current_mime_type current MIME type associated with BLOB repository reference
1083 function requestMIMETypeChange(db, table, reference, current_mime_type)
1085 // no mime type specified, set to default (nothing)
1086 if (undefined == current_mime_type)
1087 current_mime_type = "";
1089 // prompt user for new mime type
1090 var new_mime_type = prompt("Enter custom MIME type", current_mime_type);
1092 // if new mime_type is specified and is not the same as the previous type, request for mime type change
1093 if (new_mime_type && new_mime_type != current_mime_type)
1094 changeMIMEType(db, table, reference, new_mime_type);
1098 * changes MIME types for files in the BLOB repository
1100 * @param var db database name
1101 * @param var table table name
1102 * @param var reference BLOB repository reference
1103 * @param var mime_type new MIME type to be associated with BLOB repository reference
1105 function changeMIMEType(db, table, reference, mime_type)
1107 // specify url and parameters for jQuery POST
1108 var mime_chg_url = 'bs_change_mime_type.php';
1109 var params = {bs_db: db, bs_table: table, bs_reference: reference, bs_new_mime_type: mime_type};
1112 jQuery.post(mime_chg_url, params);
1116 * Jquery Coding for inline editing SQL_QUERY
1118 $(document).ready(function(){
1119 $(".inline_edit_sql").click( function(){
1120 var db = $(this).prev().find("input[name='db']").val();
1121 var table = $(this).prev().find("input[name='table']").val();
1122 var token = $(this).prev().find("input[name='token']").val();
1123 var sql_query = $(this).prev().find("input[name='sql_query']").val();
1124 var $inner_sql = $(this).parent().prev().find('.inner_sql');
1125 var old_text = $inner_sql.html();
1127 var new_content = "<textarea name=\"sql_query_edit\" id=\"sql_query_edit\">" + sql_query + "</textarea>\n";
1128 new_content += "<input type=\"button\" class=\"btnSave\" value=\"" + PMA_messages['strGo'] + "\">\n";
1129 new_content += "<input type=\"button\" class=\"btnDiscard\" value=\"" + PMA_messages['strCancel'] + "\">\n";
1130 $inner_sql.replaceWith(new_content);
1131 $(".btnSave").each(function(){
1132 $(this).click(function(){
1133 sql_query = $(this).prev().val();
1134 window.location.replace("import.php?db=" + db +"&table=" + table + "&sql_query=" + sql_query + "&show_query=1&token=" + token);
1137 $(".btnDiscard").each(function(){
1138 $(this).click(function(){
1139 $(this).closest(".sql").html("<span class=\"syntax\"><span class=\"inner_sql\">" + old_text + "</span></span>");
1145 $('.sqlbutton').click(function(evt){
1146 if (evt.target.id == 'clear') {
1147 $('#sqlquery').val('');
1149 insertQuery(evt.target.id);
1154 $("#export_type").change(function(){
1155 if($("#export_type").val()=='svg'){
1156 $("#show_grid_opt").attr("disabled","disabled");
1157 $("#orientation_opt").attr("disabled","disabled");
1158 $("#with_doc").attr("disabled","disabled");
1159 $("#show_table_dim_opt").removeAttr("disabled");
1160 $("#all_table_same_wide").removeAttr("disabled");
1161 $("#paper_opt").removeAttr("disabled","disabled");
1162 $("#show_color_opt").removeAttr("disabled","disabled");
1163 //$(this).css("background-color","yellow");
1164 }else if($("#export_type").val()=='dia'){
1165 $("#show_grid_opt").attr("disabled","disabled");
1166 $("#with_doc").attr("disabled","disabled");
1167 $("#show_table_dim_opt").attr("disabled","disabled");
1168 $("#all_table_same_wide").attr("disabled","disabled");
1169 $("#paper_opt").removeAttr("disabled","disabled");
1170 $("#show_color_opt").removeAttr("disabled","disabled");
1171 $("#orientation_opt").removeAttr("disabled","disabled");
1172 }else if($("#export_type").val()=='eps'){
1173 $("#show_grid_opt").attr("disabled","disabled");
1174 $("#orientation_opt").removeAttr("disabled");
1175 $("#with_doc").attr("disabled","disabled");
1176 $("#show_table_dim_opt").attr("disabled","disabled");
1177 $("#all_table_same_wide").attr("disabled","disabled");
1178 $("#paper_opt").attr("disabled","disabled");
1179 $("#show_color_opt").attr("disabled","disabled");
1181 }else if($("#export_type").val()=='pdf'){
1182 $("#show_grid_opt").removeAttr("disabled");
1183 $("#orientation_opt").removeAttr("disabled");
1184 $("#with_doc").removeAttr("disabled","disabled");
1185 $("#show_table_dim_opt").removeAttr("disabled","disabled");
1186 $("#all_table_same_wide").removeAttr("disabled","disabled");
1187 $("#paper_opt").removeAttr("disabled","disabled");
1188 $("#show_color_opt").removeAttr("disabled","disabled");
1194 $('#sqlquery').focus();
1195 if ($('#input_username')) {
1196 if ($('#input_username').val() == '') {
1197 $('#input_username').focus();
1199 $('#input_password').focus();
1205 * Show a message on the top of the page for an Ajax request
1207 * @param var message string containing the message to be shown.
1208 * optional, defaults to 'Loading...'
1209 * @param var timeout number of milliseconds for the message to be visible
1210 * optional, defaults to 5000
1213 function PMA_ajaxShowMessage(message, timeout) {
1215 //Handle the case when a empty data.message is passed. We don't want the empty message
1221 * @var msg String containing the message that has to be displayed
1222 * @default PMA_messages['strLoading']
1225 var msg = PMA_messages['strLoading'];
1232 * @var timeout Number of milliseconds for which {@link msg} will be visible
1242 if( !ajax_message_init) {
1243 //For the first time this function is called, append a new div
1245 $('<div id="loading_parent"></div>')
1246 .insertBefore("#serverinfo");
1248 $('<span id="loading" class="ajax_notification"></span>')
1249 .appendTo("#loading_parent")
1253 .fadeOut('medium', function(){
1255 .html("") //Clear the message
1258 }, 'top.frame_content');
1259 ajax_message_init = true;
1262 //Otherwise, just show the div again after inserting the message
1268 .fadeOut('medium', function() {
1275 return $("#loading");
1279 * Removes the message shown for an Ajax operation when it's completed
1281 function PMA_ajaxRemoveMessage($this_msgbox) {
1284 .fadeOut('medium', function() {
1285 $this_msgbox.hide();
1290 * Hides/shows the "Open in ENUM/SET editor" message, depending on the data type of the column currently selected
1292 function PMA_showNoticeForEnum(selectElement) {
1293 var enum_notice_id = selectElement.attr("id").split("_")[1];
1294 enum_notice_id += "_" + (parseInt(selectElement.attr("id").split("_")[2]) + 1);
1295 var selectedType = selectElement.attr("value");
1296 if (selectedType == "ENUM" || selectedType == "SET") {
1297 $("p[id='enum_notice_" + enum_notice_id + "']").show();
1299 $("p[id='enum_notice_" + enum_notice_id + "']").hide();
1304 * jQuery function that uses jQueryUI's dialogs to confirm with user. Does not
1305 * return a jQuery object yet and hence cannot be chained
1307 * @param string question
1308 * @param string url URL to be passed to the callbackFn to make
1310 * @param function callbackFn callback to execute after user clicks on OK
1313 jQuery.fn.PMA_confirm = function(question, url, callbackFn) {
1314 if (PMA_messages['strDoYouReally'] == '') {
1319 * @var button_options Object that stores the options passed to jQueryUI
1322 var button_options = {};
1323 button_options[PMA_messages['strOK']] = function(){
1324 $(this).dialog("close").remove();
1326 if($.isFunction(callbackFn)) {
1327 callbackFn.call(this, url);
1330 button_options[PMA_messages['strCancel']] = function() {$(this).dialog("close").remove();}
1332 $('<div id="confirm_dialog"></div>')
1334 .dialog({buttons: button_options});
1338 * jQuery function to sort a table's body after a new row has been appended to it.
1339 * Also fixes the even/odd classes of the table rows at the end.
1341 * @param string text_selector string to select the sortKey's text
1343 * @return jQuery Object for chaining purposes
1345 jQuery.fn.PMA_sort_table = function(text_selector) {
1346 return this.each(function() {
1349 * @var table_body Object referring to the table's <tbody> element
1351 var table_body = $(this);
1353 * @var rows Object referring to the collection of rows in {@link table_body}
1355 var rows = $(this).find('tr').get();
1357 //get the text of the field that we will sort by
1358 $.each(rows, function(index, row) {
1359 row.sortKey = $.trim($(row).find(text_selector).text().toLowerCase());
1362 //get the sorted order
1363 rows.sort(function(a,b) {
1364 if(a.sortKey < b.sortKey) {
1367 if(a.sortKey > b.sortKey) {
1373 //pull out each row from the table and then append it according to it's order
1374 $.each(rows, function(index, row) {
1375 $(table_body).append(row);
1379 //Re-check the classes of each row
1380 $(this).find('tr:odd')
1381 .removeClass('even').addClass('odd')
1384 .removeClass('odd').addClass('even');
1389 * jQuery coding for 'Create Table'. Used on db_operations.php,
1390 * db_structure.php and db_tracking.php (i.e., wherever
1391 * libraries/display_create_table.lib.php is used)
1393 * Attach Ajax Event handlers for Create Table
1395 $(document).ready(function() {
1398 * Attach event handler to the submit action of the create table minimal form
1399 * and retrieve the full table form and display it in a dialog
1401 * @uses PMA_ajaxShowMessage()
1403 $("#create_table_form_minimal.ajax").live('submit', function(event) {
1404 event.preventDefault();
1407 /* @todo Validate this form! */
1410 * @var button_options Object that stores the options passed to jQueryUI
1413 var button_options = {};
1414 // in the following function we need to use $(this)
1415 button_options[PMA_messages['strCancel']] = function() {$(this).dialog('close').remove();}
1417 var button_options_error = {};
1418 button_options_error[PMA_messages['strOK']] = function() {$(this).dialog('close').remove();}
1420 var $msgbox = PMA_ajaxShowMessage();
1421 PMA_prepareForAjaxRequest($form);
1423 $.get($form.attr('action'), $form.serialize(), function(data) {
1424 //in the case of an error, show the error message returned.
1425 if (data.success != undefined && data.success == false) {
1426 $('<div id="create_table_dialog"></div>')
1429 title: PMA_messages['strCreateTable'],
1432 open: PMA_verifyTypeOfAllColumns,
1433 buttons : button_options_error
1434 })// end dialog options
1435 //remove the redundant [Back] link in the error message.
1436 .find('fieldset').remove();
1438 $('<div id="create_table_dialog"></div>')
1441 title: PMA_messages['strCreateTable'],
1444 open: PMA_verifyTypeOfAllColumns,
1445 buttons : button_options
1446 }); // end dialog options
1448 PMA_ajaxRemoveMessage($msgbox);
1451 // empty table name and number of columns from the minimal form
1452 $form.find('input[name=table],input[name=num_fields]').val('');
1456 * Attach event handler for submission of create table form (save)
1458 * @uses PMA_ajaxShowMessage()
1459 * @uses $.PMA_sort_table()
1462 // .live() must be called after a selector, see http://api.jquery.com/live
1463 $("#create_table_form input[name=do_save_data]").live('click', function(event) {
1464 event.preventDefault();
1467 * @var the_form object referring to the create table form
1469 var $form = $("#create_table_form");
1472 * First validate the form; if there is a problem, avoid submitting it
1474 * checkTableEditForm() needs a pure element and not a jQuery object,
1475 * this is why we pass $form[0] as a parameter (the jQuery object
1476 * is actually an array of DOM elements)
1479 if (checkTableEditForm($form[0], $form.find('input[name=orig_num_fields]').val())) {
1480 // OK, form passed validation step
1481 if ($form.hasClass('ajax')) {
1482 PMA_ajaxShowMessage(PMA_messages['strProcessingRequest']);
1483 PMA_prepareForAjaxRequest($form);
1484 //User wants to submit the form
1485 $.post($form.attr('action'), $form.serialize() + "&do_save_data=" + $(this).val(), function(data) {
1486 if(data.success == true) {
1487 $('#properties_message')
1488 .removeClass('error')
1490 PMA_ajaxShowMessage(data.message);
1491 // Only if the create table dialog (distinct panel) exists
1492 if ($("#create_table_dialog").length > 0) {
1493 $("#create_table_dialog").dialog("close").remove();
1497 * @var tables_table Object referring to the <tbody> element that holds the list of tables
1499 var tables_table = $("#tablesForm").find("tbody").not("#tbl_summary_row");
1500 // this is the first table created in this db
1501 if (tables_table.length == 0) {
1502 if (window.parent && window.parent.frame_content) {
1503 window.parent.frame_content.location.reload();
1507 * @var curr_last_row Object referring to the last <tr> element in {@link tables_table}
1509 var curr_last_row = $(tables_table).find('tr:last');
1511 * @var curr_last_row_index_string String containing the index of {@link curr_last_row}
1513 var curr_last_row_index_string = $(curr_last_row).find('input:checkbox').attr('id').match(/\d+/)[0];
1515 * @var curr_last_row_index Index of {@link curr_last_row}
1517 var curr_last_row_index = parseFloat(curr_last_row_index_string);
1519 * @var new_last_row_index Index of the new row to be appended to {@link tables_table}
1521 var new_last_row_index = curr_last_row_index + 1;
1523 * @var new_last_row_id String containing the id of the row to be appended to {@link tables_table}
1525 var new_last_row_id = 'checkbox_tbl_' + new_last_row_index;
1527 data.new_table_string = data.new_table_string.replace(/checkbox_tbl_/, new_last_row_id);
1529 $(data.new_table_string)
1530 .appendTo(tables_table);
1533 $(tables_table).PMA_sort_table('th');
1536 //Refresh navigation frame as a new table has been added
1537 if (window.parent && window.parent.frame_navigation) {
1538 window.parent.frame_navigation.location.reload();
1541 $('#properties_message')
1544 // scroll to the div containing the error message
1545 $('#properties_message')[0].scrollIntoView();
1548 } // end if ($form.hasClass('ajax')
1551 $form.append('<input type="hidden" name="do_save_data" value="save" />');
1554 } // end if (checkTableEditForm() )
1555 }) // end create table form (save)
1558 * Attach event handler for create table form (add fields)
1560 * @uses PMA_ajaxShowMessage()
1561 * @uses $.PMA_sort_table()
1562 * @uses window.parent.refreshNavigation()
1565 // .live() must be called after a selector, see http://api.jquery.com/live
1566 $("#create_table_form.ajax input[name=submit_num_fields]").live('click', function(event) {
1567 event.preventDefault();
1570 * @var the_form object referring to the create table form
1572 var $form = $("#create_table_form");
1574 var $msgbox = PMA_ajaxShowMessage(PMA_messages['strProcessingRequest']);
1575 PMA_prepareForAjaxRequest($form);
1577 //User wants to add more fields to the table
1578 $.post($form.attr('action'), $form.serialize() + "&submit_num_fields=" + $(this).val(), function(data) {
1579 // if 'create_table_dialog' exists
1580 if ($("#create_table_dialog").length > 0) {
1581 $("#create_table_dialog").html(data);
1583 // if 'create_table_div' exists
1584 if ($("#create_table_div").length > 0) {
1585 $("#create_table_div").html(data);
1587 PMA_verifyTypeOfAllColumns();
1588 PMA_ajaxRemoveMessage($msgbox);
1591 }) // end create table form (add fields)
1593 }, 'top.frame_content'); //end $(document).ready for 'Create Table'
1596 * Attach Ajax event handlers for Drop Trigger. Used on tbl_structure.php
1597 * @see $cfg['AjaxEnable']
1599 $(document).ready(function() {
1601 $(".drop_trigger_anchor").live('click', function(event) {
1602 event.preventDefault();
1606 * @var curr_row Object reference to the current trigger's <tr>
1608 var $curr_row = $anchor.parents('tr');
1610 * @var question String containing the question to be asked for confirmation
1612 var question = 'DROP TRIGGER IF EXISTS `' + $curr_row.children('td:first').text() + '`';
1614 $anchor.PMA_confirm(question, $anchor.attr('href'), function(url) {
1616 PMA_ajaxShowMessage(PMA_messages['strProcessingRequest']);
1617 $.get(url, {'is_js_confirmed': 1, 'ajax_request': true}, function(data) {
1618 if(data.success == true) {
1619 PMA_ajaxShowMessage(data.message);
1620 $("#topmenucontainer")
1624 .after(data.sql_query);
1625 $curr_row.hide("medium").remove();
1628 PMA_ajaxShowMessage(data.error);
1631 }) // end $.PMA_confirm()
1632 }) // end $().live()
1633 }, 'top.frame_content'); //end $(document).ready() for Drop Trigger
1636 * Attach Ajax event handlers for Drop Database. Moved here from db_structure.js
1637 * as it was also required on db_create.php
1639 * @uses $.PMA_confirm()
1640 * @uses PMA_ajaxShowMessage()
1641 * @uses window.parent.refreshNavigation()
1642 * @uses window.parent.refreshMain()
1643 * @see $cfg['AjaxEnable']
1645 $(document).ready(function() {
1646 $("#drop_db_anchor").live('click', function(event) {
1647 event.preventDefault();
1649 //context is top.frame_content, so we need to use window.parent.db to access the db var
1651 * @var question String containing the question to be asked for confirmation
1653 var question = PMA_messages['strDropDatabaseStrongWarning'] + '\n' + PMA_messages['strDoYouReally'] + ' :\n' + 'DROP DATABASE ' + window.parent.db;
1655 $(this).PMA_confirm(question, $(this).attr('href') ,function(url) {
1657 PMA_ajaxShowMessage(PMA_messages['strProcessingRequest']);
1658 $.get(url, {'is_js_confirmed': '1', 'ajax_request': true}, function(data) {
1659 //Database deleted successfully, refresh both the frames
1660 window.parent.refreshNavigation();
1661 window.parent.refreshMain();
1663 }); // end $.PMA_confirm()
1664 }); //end of Drop Database Ajax action
1665 }) // end of $(document).ready() for Drop Database
1668 * Attach Ajax event handlers for 'Create Database'. Used wherever libraries/
1669 * display_create_database.lib.php is used, ie main.php and server_databases.php
1671 * @uses PMA_ajaxShowMessage()
1672 * @see $cfg['AjaxEnable']
1674 $(document).ready(function() {
1676 $('#create_database_form.ajax').live('submit', function(event) {
1677 event.preventDefault();
1681 PMA_ajaxShowMessage(PMA_messages['strProcessingRequest']);
1682 PMA_prepareForAjaxRequest($form);
1684 $.post($form.attr('action'), $form.serialize(), function(data) {
1685 if(data.success == true) {
1686 PMA_ajaxShowMessage(data.message);
1688 //Append database's row to table
1689 $("#tabledatabases")
1691 .append(data.new_db_string)
1692 .PMA_sort_table('.name')
1693 .find('#db_summary_row')
1694 .appendTo('#tabledatabases tbody')
1695 .removeClass('odd even');
1697 var $databases_count_object = $('#databases_count');
1698 var databases_count = parseInt($databases_count_object.text());
1699 $databases_count_object.text(++databases_count);
1700 //Refresh navigation frame as a new database has been added
1701 if (window.parent && window.parent.frame_navigation) {
1702 window.parent.frame_navigation.location.reload();
1706 PMA_ajaxShowMessage(data.error);
1709 }) // end $().live()
1710 }) // end $(document).ready() for Create Database
1713 * Attach Ajax event handlers for 'Change Password' on main.php
1715 $(document).ready(function() {
1718 * Attach Ajax event handler on the change password anchor
1719 * @see $cfg['AjaxEnable']
1721 $('#change_password_anchor.dialog_active').live('click',function(event) {
1722 event.preventDefault();
1725 $('#change_password_anchor.ajax').live('click', function(event) {
1726 event.preventDefault();
1727 $(this).removeClass('ajax').addClass('dialog_active');
1729 * @var button_options Object containing options to be passed to jQueryUI's dialog
1731 var button_options = {};
1732 button_options[PMA_messages['strCancel']] = function() {$(this).dialog('close').remove();}
1733 $.get($(this).attr('href'), {'ajax_request': true}, function(data) {
1734 $('<div id="change_password_dialog"></div>')
1736 title: PMA_messages['strChangePassword'],
1738 close: function(ev,ui) {$(this).remove();},
1739 buttons : button_options,
1740 beforeClose: function(ev,ui){ $('#change_password_anchor.dialog_active').removeClass('dialog_active').addClass('ajax')}
1743 displayPasswordGenerateButton();
1745 }) // end handler for change password anchor
1748 * Attach Ajax event handler for Change Password form submission
1750 * @uses PMA_ajaxShowMessage()
1751 * @see $cfg['AjaxEnable']
1753 $("#change_password_form.ajax").find('input[name=change_pw]').live('click', function(event) {
1754 event.preventDefault();
1757 * @var the_form Object referring to the change password form
1759 var the_form = $("#change_password_form");
1762 * @var this_value String containing the value of the submit button.
1763 * Need to append this for the change password form on Server Privileges
1766 var this_value = $(this).val();
1768 var $msgbox = PMA_ajaxShowMessage(PMA_messages['strProcessingRequest']);
1769 $(the_form).append('<input type="hidden" name="ajax_request" value="true" />');
1771 $.post($(the_form).attr('action'), $(the_form).serialize() + '&change_pw='+ this_value, function(data) {
1772 if(data.success == true) {
1773 $("#topmenucontainer").after(data.sql_query);
1774 $("#change_password_dialog").hide().remove();
1775 $("#edit_user_dialog").dialog("close").remove();
1776 $('#change_password_anchor.dialog_active').removeClass('dialog_active').addClass('ajax');
1777 PMA_ajaxRemoveMessage($msgbox);
1780 PMA_ajaxShowMessage(data.error);
1783 }) // end handler for Change Password form submission
1784 }) // end $(document).ready() for Change Password
1787 * Toggle the hiding/showing of the "Open in ENUM/SET editor" message when
1788 * the page loads and when the selected data type changes
1790 $(document).ready(function() {
1791 // is called here for normal page loads and also when opening
1792 // the Create table dialog
1793 PMA_verifyTypeOfAllColumns();
1795 // needs live() to work also in the Create Table dialog
1796 $("select[class='column_type']").live('change', function() {
1797 PMA_showNoticeForEnum($(this));
1801 function PMA_verifyTypeOfAllColumns() {
1802 $("select[class='column_type']").each(function() {
1803 PMA_showNoticeForEnum($(this));
1808 * Closes the ENUM/SET editor and removes the data in it
1810 function disable_popup() {
1811 $("#popup_background").fadeOut("fast");
1812 $("#enum_editor").fadeOut("fast");
1813 // clear the data from the text boxes
1814 $("#enum_editor #values input").remove();
1815 $("#enum_editor input[type='hidden']").remove();
1819 * Opens the ENUM/SET editor and controls its functions
1821 $(document).ready(function() {
1822 // Needs live() to work also in the Create table dialog
1823 $("a[class='open_enum_editor']").live('click', function() {
1825 var windowWidth = document.documentElement.clientWidth;
1826 var windowHeight = document.documentElement.clientHeight;
1827 var popupWidth = windowWidth/2;
1828 var popupHeight = windowHeight*0.8;
1829 var popupOffsetTop = windowHeight/2 - popupHeight/2;
1830 var popupOffsetLeft = windowWidth/2 - popupWidth/2;
1831 $("#enum_editor").css({"position":"absolute", "top": popupOffsetTop, "left": popupOffsetLeft, "width": popupWidth, "height": popupHeight});
1834 $("#popup_background").css({"opacity":"0.7"});
1835 $("#popup_background").fadeIn("fast");
1836 $("#enum_editor").fadeIn("fast");
1839 var values = $(this).parent().prev("input").attr("value").split(",");
1840 $.each(values, function(index, val) {
1841 if(jQuery.trim(val) != "") {
1842 // enclose the string in single quotes if it's not already
1843 if(val.substr(0, 1) != "'") {
1846 if(val.substr(val.length-1, val.length) != "'") {
1849 // escape the single quotes, except the mandatory ones enclosing the entire string
1850 val = val.substr(1, val.length-2).replace(/''/g, "'").replace(/\\\\/g, '\\').replace(/\\'/g, "'").replace(/'/g, "'");
1851 // escape the greater-than symbol
1852 val = val.replace(/>/g, ">");
1853 $("#enum_editor #values").append("<input type='text' value=" + val + " />");
1856 // So we know which column's data is being edited
1857 $("#enum_editor").append("<input type='hidden' value='" + $(this).parent().prev("input").attr("id") + "' />");
1861 // If the "close" link is clicked, close the enum editor
1862 // Needs live() to work also in the Create table dialog
1863 $("a[class='close_enum_editor']").live('click', function() {
1867 // If the "cancel" link is clicked, close the enum editor
1868 // Needs live() to work also in the Create table dialog
1869 $("a[class='cancel_enum_editor']").live('click', function() {
1873 // When "add a new value" is clicked, append an empty text field
1874 // Needs live() to work also in the Create table dialog
1875 $("a[class='add_value']").live('click', function() {
1876 $("#enum_editor #values").append("<input type='text' />");
1879 // When the submit button is clicked, put the data back into the original form
1880 // Needs live() to work also in the Create table dialog
1881 $("#enum_editor input[type='submit']").live('click', function() {
1882 var value_array = new Array();
1883 $.each($("#enum_editor #values input"), function(index, input_element) {
1884 val = jQuery.trim(input_element.value);
1886 value_array.push("'" + val.replace(/\\/g, '\\\\').replace(/'/g, "''") + "'");
1889 // get the Length/Values text field where this value belongs
1890 var values_id = $("#enum_editor input[type='hidden']").attr("value");
1891 $("input[id='" + values_id + "']").attr("value", value_array.join(","));
1896 * Hides certain table structure actions, replacing them with the word "More". They are displayed
1897 * in a dropdown menu when the user hovers over the word "More."
1899 // Remove the actions from the table cells (they are available by default for JavaScript-disabled browsers)
1900 // if the table is not a view or information_schema (otherwise there is only one action to hide and there's no point)
1901 if($("input[type='hidden'][name='table_type']").val() == "table") {
1902 var $table = $("table[id='tablestructure']");
1903 $table.find("td[class='browse']").remove();
1904 $table.find("td[class='primary']").remove();
1905 $table.find("td[class='unique']").remove();
1906 $table.find("td[class='index']").remove();
1907 $table.find("td[class='fulltext']").remove();
1908 $table.find("th[class='action']").attr("colspan", 3);
1910 // Display the "more" text
1911 $table.find("td[class='more_opts']").show();
1913 // Position the dropdown
1914 $(".structure_actions_dropdown").each(function() {
1915 // Optimize DOM querying
1916 var $this_dropdown = $(this);
1917 // The top offset must be set for IE even if it didn't change
1918 var cell_right_edge_offset = $this_dropdown.parent().offset().left + $this_dropdown.parent().innerWidth();
1919 var left_offset = cell_right_edge_offset - $this_dropdown.innerWidth();
1920 var top_offset = $this_dropdown.parent().offset().top + $this_dropdown.parent().innerHeight();
1921 $this_dropdown.offset({ top: top_offset, left: left_offset });
1924 // A hack for IE6 to prevent the after_field select element from being displayed on top of the dropdown by
1925 // positioning an iframe directly on top of it
1926 var $after_field = $("select[name='after_field']");
1927 $("iframe[class='IE_hack']")
1928 .width($after_field.width())
1929 .height($after_field.height())
1931 top: $after_field.offset().top,
1932 left: $after_field.offset().left
1935 // When "more" is hovered over, show the hidden actions
1936 $table.find("td[class='more_opts']")
1937 .mouseenter(function() {
1938 if($.browser.msie && $.browser.version == "6.0") {
1939 $("iframe[class='IE_hack']")
1941 .width($after_field.width()+4)
1942 .height($after_field.height()+4)
1944 top: $after_field.offset().top,
1945 left: $after_field.offset().left
1948 $(".structure_actions_dropdown").hide(); // Hide all the other ones that may be open
1949 $(this).children(".structure_actions_dropdown").show();
1950 // Need to do this again for IE otherwise the offset is wrong
1951 if($.browser.msie) {
1952 var left_offset_IE = $(this).offset().left + $(this).innerWidth() - $(this).children(".structure_actions_dropdown").innerWidth();
1953 var top_offset_IE = $(this).offset().top + $(this).innerHeight();
1954 $(this).children(".structure_actions_dropdown").offset({
1956 left: left_offset_IE });
1959 .mouseleave(function() {
1960 $(this).children(".structure_actions_dropdown").hide();
1961 if($.browser.msie && $.browser.version == "6.0") {
1962 $("iframe[class='IE_hack']").hide();
1968 /* Displays tooltips */
1969 $(document).ready(function() {
1970 // Hide the footnotes from the footer (which are displayed for
1971 // JavaScript-disabled browsers) since the tooltip is sufficient
1972 $(".footnotes").hide();
1973 $(".footnotes span").each(function() {
1974 $(this).children("sup").remove();
1976 // The border and padding must be removed otherwise a thin yellow box remains visible
1977 $(".footnotes").css("border", "none");
1978 $(".footnotes").css("padding", "0px");
1980 // Replace the superscripts with the help icon
1981 $("sup[class='footnotemarker']").hide();
1982 $("img[class='footnotemarker']").show();
1984 $("img[class='footnotemarker']").each(function() {
1985 var span_id = $(this).attr("id");
1986 span_id = span_id.split("_")[1];
1987 var tooltip_text = $(".footnotes span[id='footnote_" + span_id + "']").html();
1989 content: tooltip_text,
1991 hide: { when: 'unfocus', delay: 0 },
1992 style: { background: '#ffffcc' }
1997 function menuResize()
1999 var cnt = $('#topmenu');
2000 var wmax = cnt.innerWidth() - 5; // 5 px margin for jumping menu in Chrome
2001 var submenu = cnt.find('.submenu');
2002 var submenu_w = submenu.outerWidth(true);
2003 var submenu_ul = submenu.find('ul');
2004 var li = cnt.find('> li');
2005 var li2 = submenu_ul.find('li');
2006 var more_shown = li2.length > 0;
2007 var w = more_shown ? submenu_w : 0;
2011 for (var i = 0; i < li.length-1; i++) { // li.length-1: skip .submenu element
2013 var el_width = el.outerWidth(true);
2014 el.data('width', el_width);
2018 if (w + submenu_w < wmax) {
2022 w -= $(li[i-1]).data('width');
2028 if (hide_start > 0) {
2029 for (var i = hide_start; i < li.length-1; i++) {
2030 $(li[i])[more_shown ? 'prependTo' : 'appendTo'](submenu_ul);
2032 submenu.addClass('shown');
2033 } else if (more_shown) {
2035 // nothing hidden, maybe something can be restored
2036 for (var i = 0; i < li2.length; i++) {
2037 //console.log(li2[i], submenu_w);
2038 w += $(li2[i]).data('width');
2039 // item fits or (it is the last item and it would fit if More got removed)
2040 if (w+submenu_w < wmax || (i == li2.length-1 && w < wmax)) {
2041 $(li2[i]).insertBefore(submenu);
2042 if (i == li2.length-1) {
2043 submenu.removeClass('shown');
2050 if (submenu.find('.tabactive').length) {
2051 submenu.addClass('active').find('> a').removeClass('tab').addClass('tabactive');
2053 submenu.removeClass('active').find('> a').addClass('tab').removeClass('tabactive');
2058 var topmenu = $('#topmenu');
2059 if (topmenu.length == 0) {
2062 // create submenu container
2063 var link = $('<a />', {href: '#', 'class': 'tab'})
2064 .text(PMA_messages['strMore'])
2065 .click(function(e) {
2068 var img = topmenu.find('li:first-child img');
2070 img.clone().attr('src', img.attr('src').replace(/\/[^\/]+$/, '/b_more.png')).prependTo(link);
2072 var submenu = $('<li />', {'class': 'submenu'})
2074 .append($('<ul />'))
2075 .mouseenter(function() {
2076 if ($(this).find('ul .tabactive').length == 0) {
2077 $(this).addClass('submenuhover').find('> a').addClass('tabactive');
2080 .mouseleave(function() {
2081 if ($(this).find('ul .tabactive').length == 0) {
2082 $(this).removeClass('submenuhover').find('> a').removeClass('tabactive');
2085 topmenu.append(submenu);
2087 // populate submenu and register resize event
2088 $(window).resize(menuResize);
2093 * For the checkboxes in browse mode, handles the shift/click (only works
2094 * in horizontal mode) and propagates the click to the "companion" checkbox
2095 * (in both horizontal and vertical). Works also for pages reached via AJAX.
2097 $(document).ready(function() {
2098 $('.multi_checkbox').live('click',function(e) {
2099 var current_checkbox_id = this.id;
2100 var left_checkbox_id = current_checkbox_id.replace('_right', '_left');
2101 var right_checkbox_id = current_checkbox_id.replace('_left', '_right');
2102 var other_checkbox_id = '';
2103 if (current_checkbox_id == left_checkbox_id) {
2104 other_checkbox_id = right_checkbox_id;
2106 other_checkbox_id = left_checkbox_id;
2109 var $current_checkbox = $('#' + current_checkbox_id);
2110 var $other_checkbox = $('#' + other_checkbox_id);
2113 var index_of_current_checkbox = $('.multi_checkbox').index($current_checkbox);
2114 var $last_checkbox = $('.multi_checkbox').filter('.last_clicked');
2115 var index_of_last_click = $('.multi_checkbox').index($last_checkbox);
2116 $('.multi_checkbox')
2117 .filter(function(index) {
2118 // the first clicked row can be on a row above or below the
2119 // shift-clicked row
2120 return (index_of_current_checkbox > index_of_last_click && index > index_of_last_click && index < index_of_current_checkbox)
2121 || (index_of_last_click > index_of_current_checkbox && index < index_of_last_click && index > index_of_current_checkbox);
2123 .each(function(index) {
2124 var $intermediate_checkbox = $(this);
2125 if ($current_checkbox.is(':checked')) {
2126 $intermediate_checkbox.attr('checked', true);
2128 $intermediate_checkbox.attr('checked', false);
2133 $('.multi_checkbox').removeClass('last_clicked');
2134 $current_checkbox.addClass('last_clicked');
2136 // When there is a checkbox on both ends of the row, propagate the
2137 // click on one of them to the other one.
2138 // (the default action has not been prevented so if we have
2139 // just clicked, this "if" is true)
2140 if ($current_checkbox.is(':checked')) {
2141 $other_checkbox.attr('checked', true);
2143 $other_checkbox.attr('checked', false);
2146 }) // end of $(document).ready() for multi checkbox
2149 * Get the row number from the classlist (for example, row_1)
2151 function PMA_getRowNumber(classlist) {
2152 return parseInt(classlist.split(/row_/)[1]);
2156 * Changes status of slider
2158 function PMA_set_status_label(id) {
2159 if ($('#' + id).css('display') == 'none') {
2160 $('#anchor_status_' + id).text('+ ');
2162 $('#anchor_status_' + id).text('- ');
2167 * Initializes slider effect.
2169 function PMA_init_slider() {
2170 $('.pma_auto_slider').each(function(idx, e) {
2171 if ($(e).hasClass('slider_init_done')) return;
2172 $(e).addClass('slider_init_done');
2173 $('<span id="anchor_status_' + e.id + '"></span>')
2175 PMA_set_status_label(e.id);
2177 $('<a href="#' + e.id + '" id="anchor_' + e.id + '">' + e.title + '</a>')
2180 $('#' + e.id).toggle('clip', function() {
2181 PMA_set_status_label(e.id);
2191 $(document).ready(function() {
2192 $('.vpointer').live('hover',
2195 var $this_td = $(this);
2196 var row_num = PMA_getRowNumber($this_td.attr('class'));
2197 // for all td of the same vertical row, toggle hover
2198 $('.vpointer').filter('.row_' + row_num).toggleClass('hover');
2201 }) // end of $(document).ready() for vertical pointer
2203 $(document).ready(function() {
2207 $('.vmarker').live('click', function(e) {
2208 var $this_td = $(this);
2209 var row_num = PMA_getRowNumber($this_td.attr('class'));
2210 // for all td of the same vertical row, toggle the marked class
2211 $('.vmarker').filter('.row_' + row_num).toggleClass('marked');
2215 * Reveal visual builder anchor
2218 $('#visual_builder_anchor').show();
2221 * Page selector in db Structure (non-AJAX)
2223 $('#tableslistcontainer').find('#pageselector').live('change', function() {
2224 $(this).parent("form").submit();
2228 * Page selector in navi panel (non-AJAX)
2230 $('#navidbpageselector').find('#pageselector').live('change', function() {
2231 $(this).parent("form").submit();
2235 * Page selector in browse_foreigners windows (non-AJAX)
2237 $('#body_browse_foreigners').find('#pageselector').live('change', function() {
2238 $(this).closest("form").submit();
2242 * Load version information asynchronously.
2244 if ($('.jsversioncheck').length > 0) {
2246 var s = document.createElement('script');
2247 s.type = 'text/javascript';
2249 s.src = 'http://www.phpmyadmin.net/home_page/version.js';
2250 s.onload = PMA_current_version;
2251 var x = document.getElementsByTagName('script')[0];
2252 x.parentNode.insertBefore(s, x);
2262 * Enables the text generated by PMA_linkOrButton() to be clickable
2264 $('.clickprevimage')
2265 .css('color', function(index) {
2266 return $('a').css('color');
2268 .css('cursor', function(index) {
2269 return $('a').css('cursor');
2270 }) //todo: hover effect
2271 .live('click',function(e) {
2272 $this_span = $(this);
2273 if ($this_span.closest('td').is('.inline_edit_anchor')) {
2274 // this would bind a second click event to the inline edit
2275 // anchor and would disturb its behavior
2277 $this_span.parent().find('input:image').click();
2281 }) // end of $(document).ready()