]> scripts.mit.edu Git - autoinstalls/wordpress.git/blobdiff - wp-admin/js/common.dev.js
Wordpress 3.0-scripts
[autoinstalls/wordpress.git] / wp-admin / js / common.dev.js
index 4a54c59053030a3460f0f9d742beed074596e033..4972cb0fcb6acfb4b565031f96ee02d9d9c99e4d 100644 (file)
@@ -1,19 +1,21 @@
-var showNotice, adminMenu, columns;
+var showNotice, adminMenu, columns, validateForm;
 (function($){
 // sidebar admin menu
 adminMenu = {
-
        init : function() {
-               $('#adminmenu div.wp-menu-toggle').each( function() {
-                       if ( $(this).siblings('.wp-submenu').length )
-                               $(this).click(function(){ adminMenu.toggle( $(this).siblings('.wp-submenu') ); });
+               var menu = $('#adminmenu');
+
+               $('.wp-menu-toggle', menu).each( function() {
+                       var t = $(this), sub = t.siblings('.wp-submenu');
+                       if ( sub.length )
+                               t.click(function(){ adminMenu.toggle( sub ); });
                        else
-                               $(this).hide();
+                               t.hide();
                });
 
                this.favorites();
 
-               $('a.separator').click(function(){
+               $('.separator', menu).click(function(){
                        if ( $('body').hasClass('folded') ) {
                                adminMenu.fold(1);
                                deleteUserSetting( 'mfold' );
@@ -24,30 +26,38 @@ adminMenu = {
                        return false;
                });
 
-               if ( $('body').hasClass('folded') ) {
+               if ( $('body').hasClass('folded') )
                        this.fold();
-               }
+
                this.restoreMenuState();
        },
 
        restoreMenuState : function() {
-               $('#adminmenu li.wp-has-submenu').each(function(i, e) {
+               $('li.wp-has-submenu', '#adminmenu').each(function(i, e) {
                        var v = getUserSetting( 'm'+i );
-                       if ( $(e).hasClass('wp-has-current-submenu') ) return true; // leave the current parent open
+                       if ( $(e).hasClass('wp-has-current-submenu') )
+                               return true; // leave the current parent open
 
-                       if ( 'o' == v ) $(e).addClass('wp-menu-open');
-                       else if ( 'c' == v ) $(e).removeClass('wp-menu-open');
+                       if ( 'o' == v )
+                               $(e).addClass('wp-menu-open');
+                       else if ( 'c' == v )
+                               $(e).removeClass('wp-menu-open');
                });
        },
 
        toggle : function(el) {
-
-               el['slideToggle'](150, function(){el.css('display','');}).parent().toggleClass( 'wp-menu-open' );
-
-               $('#adminmenu li.wp-has-submenu').each(function(i, e) {
-                       var v = $(e).hasClass('wp-menu-open') ? 'o' : 'c';
-                       setUserSetting( 'm'+i, v );
-               });
+               var id = el.slideToggle(150, function() {
+                       el.css('display','');
+               }).parent().toggleClass( 'wp-menu-open' ).attr('id');
+
+               if ( id ) {
+                       $('li.wp-has-submenu', '#adminmenu').each(function(i, e) {
+                               if ( id == e.id ) {
+                                   var v = $(e).hasClass('wp-menu-open') ? 'o' : 'c';
+                                   setUserSetting( 'm'+i, v );
+                               }
+                       });
+               }
 
                return false;
        },
@@ -62,14 +72,14 @@ adminMenu = {
                                over: function(e){
                                        var m, b, h, o, f;
                                        m = $(this).find('.wp-submenu');
-                                       b = m.parent().offset().top + m.height() + 1; // Bottom offset of the menu
+                                       b = $(this).offset().top + m.height() + 1; // Bottom offset of the menu
                                        h = $('#wpwrap').height(); // Height of the entire page
                                        o = 60 + b - h;
-                                       f = $(window).height() + $('body').scrollTop() - 15; // The fold
-                                       if (f < (b - o)) {
+                                       f = $(window).height() + $(window).scrollTop() - 15; // The fold
+                                       if ( f < (b - o) ) {
                                                o = b - f;
                                        }
-                                       if (o > 1) {
+                                       if ( o > 1 ) {
                                                m.css({'marginTop':'-'+o+'px'});
                                        } else if ( m.css('marginTop') ) {
                                                m.css({'marginTop':''});
@@ -86,42 +96,83 @@ adminMenu = {
        },
 
        favorites : function() {
-               $('#favorite-inside').width($('#favorite-actions').width()-4);
-               $('#favorite-toggle, #favorite-inside').bind( 'mouseenter', function(){$('#favorite-inside').removeClass('slideUp').addClass('slideDown'); setTimeout(function(){if ( $('#favorite-inside').hasClass('slideDown') ) { $('#favorite-inside').slideDown(100); $('#favorite-first').addClass('slide-down'); }}, 200) } );
-
-               $('#favorite-toggle, #favorite-inside').bind( 'mouseleave', function(){$('#favorite-inside').removeClass('slideDown').addClass('slideUp'); setTimeout(function(){if ( $('#favorite-inside').hasClass('slideUp') ) { $('#favorite-inside').slideUp(100, function(){ $('#favorite-first').removeClass('slide-down'); } ); }}, 300) } );
+               $('#favorite-inside').width( $('#favorite-actions').width() - 4 );
+               $('#favorite-toggle, #favorite-inside').bind('mouseenter', function() {
+                       $('#favorite-inside').removeClass('slideUp').addClass('slideDown');
+                       setTimeout(function() {
+                               if ( $('#favorite-inside').hasClass('slideDown') ) {
+                                       $('#favorite-inside').slideDown(100);
+                                       $('#favorite-first').addClass('slide-down');
+                               }
+                       }, 200);
+               }).bind('mouseleave', function() {
+                       $('#favorite-inside').removeClass('slideDown').addClass('slideUp');
+                       setTimeout(function() {
+                               if ( $('#favorite-inside').hasClass('slideUp') ) {
+                                       $('#favorite-inside').slideUp(100, function() {
+                                               $('#favorite-first').removeClass('slide-down');
+                                       });
+                               }
+                       }, 300);
+               });
        }
 };
 
-$(document).ready(function(){adminMenu.init();});
+$(document).ready(function(){ adminMenu.init(); });
 
 // show/hide/save table columns
 columns = {
        init : function() {
-               $('.hide-column-tog').click( function() {
-                       var column = $(this).val(), show = $(this).attr('checked');
-                       if ( show ) {
-                               $('.column-' + column).show();
-                       } else {
-                               $('.column-' + column).hide();
-                       }
-                       columns.save_manage_columns_state();
-               } );
+               var that = this;
+               $('.hide-column-tog', '#adv-settings').click( function() {
+                       var $t = $(this), column = $t.val();
+                       if ( $t.attr('checked') )
+                               that.checked(column);
+                       else
+                               that.unchecked(column);
+
+                       columns.saveManageColumnsState();
+               });
        },
 
-       save_manage_columns_state : function() {
-               var hidden = $('.manage-column').filter(':hidden').map(function() { return this.id; }).get().join(',');
+       saveManageColumnsState : function() {
+               var hidden = this.hidden();
                $.post(ajaxurl, {
                        action: 'hidden-columns',
                        hidden: hidden,
                        screenoptionnonce: $('#screenoptionnonce').val(),
                        page: pagenow
                });
+       },
+
+       checked : function(column) {
+               $('.column-' + column).show();
+       },
+
+       unchecked : function(column) {
+               $('.column-' + column).hide();
+       },
+
+       hidden : function() {
+               return $('.manage-column').filter(':hidden').map(function() { return this.id; }).get().join(',');
+       },
+
+       useCheckboxesForHidden : function() {
+               this.hidden = function(){
+                       return $('.hide-column-tog').not(':checked').map(function() {
+                               var id = this.id;
+                               return id.substring( id, id.length - 5 );
+                       }).get().join(',');
+               };
        }
 }
 
 $(document).ready(function(){columns.init();});
 
+validateForm = function( form ) {
+       return !$( form ).find('.form-required').filter( function() { return $('input:visible', this).val() == ''; } ).addClass( 'form-invalid' ).find('input:visible').change( function() { $(this).closest('.form-invalid').removeClass( 'form-invalid' ); } ).size();
+}
+
 })(jQuery);
 
 // stub for doing better warnings
@@ -143,32 +194,22 @@ showNotice = {
 jQuery(document).ready( function($) {
        var lastClicked = false, checks, first, last, checked;
 
-       // pulse
-       $('.fade').animate( { backgroundColor: '#ffffe0' }, 300).animate( { backgroundColor: '#fffbcc' }, 300).animate( { backgroundColor: '#ffffe0' }, 300).animate( { backgroundColor: '#fffbcc' }, 300);
-
-       // Move .updated and .error alert boxes
-       $('div.wrap h2 ~ div.updated, div.wrap h2 ~ div.error').addClass('below-h2');
-       $('div.updated, div.error').not('.below-h2').insertAfter('div.wrap h2:first');
-
-       // show warnings
-       $('#doaction, #doaction2').click(function(){
-               if ( $('select[name="action"]').val() == 'delete' || $('select[name="action2"]').val() == 'delete' ) {
-                       return showNotice.warn();
-               }
-       });
+       // Move .updated and .error alert boxes. Don't move boxes designed to be inline.
+       $('div.wrap h2:first').nextAll('div.updated, div.error').addClass('below-h2');
+       $('div.updated, div.error').not('.below-h2, .inline').insertAfter( $('div.wrap h2:first') );
 
        // screen settings tab
        $('#show-settings-link').click(function () {
-               if ( ! $('#screen-options-wrap').hasClass('screen-options-open') ) {
+               if ( ! $('#screen-options-wrap').hasClass('screen-options-open') )
                        $('#contextual-help-link-wrap').css('visibility', 'hidden');
-               }
+
                $('#screen-options-wrap').slideToggle('fast', function(){
                        if ( $(this).hasClass('screen-options-open') ) {
-                               $('#show-settings-link').css({'backgroundImage':'url("images/screen-options-right.gif")'});
+                               $('#show-settings-link').css({'backgroundImage':'url("images/screen-options-right.gif?ver=20100531")'});
                                $('#contextual-help-link-wrap').css('visibility', '');
                                $(this).removeClass('screen-options-open');
                        } else {
-                               $('#show-settings-link').css({'backgroundImage':'url("images/screen-options-right-up.gif")'});
+                               $('#show-settings-link').css({'backgroundImage':'url("images/screen-options-right-up.gif?ver=20100531")'});
                                $(this).addClass('screen-options-open');
                        }
                });
@@ -177,35 +218,34 @@ jQuery(document).ready( function($) {
 
        // help tab
        $('#contextual-help-link').click(function () {
-               if ( ! $('#contextual-help-wrap').hasClass('contextual-help-open') ) {
+               if ( ! $('#contextual-help-wrap').hasClass('contextual-help-open') )
                        $('#screen-options-link-wrap').css('visibility', 'hidden');
-               }
-               $('#contextual-help-wrap').slideToggle('fast', function(){
+
+               $('#contextual-help-wrap').slideToggle('fast', function() {
                        if ( $(this).hasClass('contextual-help-open') ) {
-                               $('#contextual-help-link').css({'backgroundImage':'url("images/screen-options-right.gif")'});
+                               $('#contextual-help-link').css({'backgroundImage':'url("images/screen-options-right.gif?ver=20100531")'});
                                $('#screen-options-link-wrap').css('visibility', '');
                                $(this).removeClass('contextual-help-open');
                        } else {
-                               $('#contextual-help-link').css({'backgroundImage':'url("images/screen-options-right-up.gif")'});
+                               $('#contextual-help-link').css({'backgroundImage':'url("images/screen-options-right-up.gif?ver=20100531")'});
                                $(this).addClass('contextual-help-open');
                        }
                });
                return false;
        });
-       $('#contextual-help-link-wrap, #screen-options-link-wrap').show();
 
        // check all checkboxes
-       $( 'table:visible tbody .check-column :checkbox' ).click( function(e) {
+       $('tbody').children().children('.check-column').find(':checkbox').click( function(e) {
                if ( 'undefined' == e.shiftKey ) { return true; }
                if ( e.shiftKey ) {
                        if ( !lastClicked ) { return true; }
-                       checks = $( lastClicked ).parents( 'form:first' ).find( ':checkbox' );
+                       checks = $( lastClicked ).closest( 'form' ).find( ':checkbox' );
                        first = checks.index( lastClicked );
                        last = checks.index( this );
                        checked = $(this).attr('checked');
                        if ( 0 < first && 0 < last && first != last ) {
                                checks.slice( first, last ).attr( 'checked', function(){
-                                       if ( $(this).parents('tr').is(':visible') )
+                                       if ( $(this).closest('tr').is(':visible') )
                                                return checked ? 'checked' : '';
 
                                        return '';
@@ -214,13 +254,17 @@ jQuery(document).ready( function($) {
                }
                lastClicked = this;
                return true;
-       } );
-       $( 'thead :checkbox, tfoot :checkbox' ).click( function(e) {
-               var c = $(this).attr('checked'), kbtoggle = 'undefined' == typeof toggleWithKeyboard ? false : toggleWithKeyboard, toggle = e.shiftKey || kbtoggle;
+       });
 
+       $('thead, tfoot').find(':checkbox').click( function(e) {
+               var c = $(this).attr('checked'),
+                       kbtoggle = 'undefined' == typeof toggleWithKeyboard ? false : toggleWithKeyboard,
+                       toggle = e.shiftKey || kbtoggle;
 
-               $(this).parents( 'form:first' ).find( 'table tbody:visible' ).find( '.check-column :checkbox' ).attr( 'checked', function() {
-                       if ( $(this).parents('tr').is(':hidden') )
+               $(this).closest( 'table' ).children( 'tbody' ).filter(':visible')
+               .children().children('.check-column').find(':checkbox')
+               .attr('checked', function() {
+                       if ( $(this).closest('tr').is(':hidden') )
                                return '';
                        if ( toggle )
                                return $(this).attr( 'checked' ) ? '' : 'checked';
@@ -228,7 +272,10 @@ jQuery(document).ready( function($) {
                                return 'checked';
                        return '';
                });
-               $(this).parents( 'form:first' ).find( 'table thead:visible, table tfoot:visible').find( '.check-column :checkbox' ).attr( 'checked', function() {
+
+               $(this).closest('table').children('thead,  tfoot').filter(':visible')
+               .children().children('.check-column').find(':checkbox')
+               .attr('checked', function() {
                        if ( toggle )
                                return '';
                        else if (c)
@@ -236,32 +283,43 @@ jQuery(document).ready( function($) {
                        return '';
                });
        });
+
        $('#default-password-nag-no').click( function() {
                setUserSetting('default_password_nag', 'hide');
                $('div.default-password-nag').hide();
                return false;
        });
-       
-       
-});
 
-jQuery(document).ready( function($){
-       var turboNag = $('.turbo-nag');
+       // tab in textareas
+       $('#newcontent').keydown(function(e) {
+               if ( e.keyCode != 9 )
+                       return true;
 
-       if ( !turboNag.length || ('undefined' != typeof(google) && google.gears) )
-               return;
+               var el = e.target, selStart = el.selectionStart, selEnd = el.selectionEnd, val = el.value, scroll, sel;
 
-       if ( 'undefined' != typeof GearsFactory ) {
-               return;
-       } else {
                try {
-                       if ( ( 'undefined' != typeof window.ActiveXObject && ActiveXObject('Gears.Factory') ) ||
-                               ( 'undefined' != typeof navigator.mimeTypes && navigator.mimeTypes['application/x-googlegears'] ) ) {
-                                       return;
-                       }
-               } catch(e){}
-       }
+                       this.lastKey = 9; // not a standard DOM property, lastKey is to help stop Opera tab event.  See blur handler below.
+               } catch(err) {}
+
+               if ( document.selection ) {
+                       el.focus();
+                       sel = document.selection.createRange();
+                       sel.text = '\t';
+               } else if ( selStart >= 0 ) {
+                       scroll = this.scrollTop;
+                       el.value = val.substring(0, selStart).concat('\t', val.substring(selEnd) );
+                       el.selectionStart = el.selectionEnd = selStart + 1;
+                       this.scrollTop = scroll;
+               }
 
-       turboNag.show();
+               if ( e.stopPropagation )
+                       e.stopPropagation();
+               if ( e.preventDefault )
+                       e.preventDefault();
+       });
 
-});
+       $('#newcontent').blur(function(e) {
+               if ( this.lastKey && 9 == this.lastKey )
+                       this.focus();
+       });
+});
\ No newline at end of file