<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head><meta http-equiv="content-type" content="text/html; charset=utf-8" /><style type="text/css"><!--
#msg dl { border: 1px #006 solid; background: #369; padding: 6px; color: #fff; }
#msg dt { float: left; width: 6em; font-weight: bold; }
#msg dt:after { content:':';}
#msg dl, #msg dt, #msg ul, #msg li, #header, #footer { font-family: verdana,arial,helvetica,sans-serif; font-size: 10pt;  }
#msg dl a { font-weight: bold}
#msg dl a:link    { color:#fc3; }
#msg dl a:active  { color:#ff0; }
#msg dl a:visited { color:#cc6; }
h3 { font-family: verdana,arial,helvetica,sans-serif; font-size: 10pt; font-weight: bold; }
#msg pre, #msg p { overflow: auto; background: #ffc; border: 1px #fc0 solid; padding: 6px; }
#msg ul { overflow: auto; }
#header, #footer { color: #fff; background: #636; border: 1px #300 solid; padding: 6px; }
#patch { width: 100%; }
#patch h4 {font-family: verdana,arial,helvetica,sans-serif;font-size:10pt;padding:8px;background:#369;color:#fff;margin:0;}
#patch .propset h4, #patch .binary h4 {margin:0;}
#patch pre {padding:0;line-height:1.2em;margin:0;}
#patch .diff {width:100%;background:#eee;padding: 0 0 10px 0;overflow:auto;}
#patch .propset .diff, #patch .binary .diff  {padding:10px 0;}
#patch span {display:block;padding:0 10px;}
#patch .modfile, #patch .addfile, #patch .delfile, #patch .propset, #patch .binary, #patch .copfile {border:1px solid #ccc;margin:10px 0;}
#patch ins {background:#dfd;text-decoration:none;display:block;padding:0 10px;}
#patch del {background:#fdd;text-decoration:none;display:block;padding:0 10px;}
#patch .lines, .info {color:#888;background:#fff;}
--></style>
<title>[12022] trunk: Merge post.js with page.js and slug.js,
  optimize categories and tags JS, standardize postboxes IDs and JS.</title>
</head>
<body>

<div id="msg">
<dl>
<dt>Revision</dt> <dd><a href="http://trac.wordpress.org/changeset/12022">12022</a></dd>
<dt>Author</dt> <dd>azaozz</dd>
<dt>Date</dt> <dd>2009-10-13 10:02:42 +0000 (Tue, 13 Oct 2009)</dd>
</dl>

<h3>Log Message</h3>
<pre>Merge post.js with page.js and slug.js, optimize categories and tags JS, standardize postboxes IDs and JS.</pre>

<h3>Modified Paths</h3>
<ul>
<li><a href="#trunkwpadminadminajaxphp">trunk/wp-admin/admin-ajax.php</a></li>
<li><a href="#trunkwpadmineditformadvancedphp">trunk/wp-admin/edit-form-advanced.php</a></li>
<li><a href="#trunkwpadmineditpageformphp">trunk/wp-admin/edit-page-form.php</a></li>
<li><a href="#trunkwpadminincludesmetaboxesphp">trunk/wp-admin/includes/meta-boxes.php</a></li>
<li><a href="#trunkwpadminincludespostphp">trunk/wp-admin/includes/post.php</a></li>
<li><a href="#trunkwpadminincludestemplatephp">trunk/wp-admin/includes/template.php</a></li>
<li><a href="#trunkwpadminjspostdevjs">trunk/wp-admin/js/post.dev.js</a></li>
<li><a href="#trunkwpadminjspostjs">trunk/wp-admin/js/post.js</a></li>
<li><a href="#trunkwpadminjspostboxdevjs">trunk/wp-admin/js/postbox.dev.js</a></li>
<li><a href="#trunkwpadminjspostboxjs">trunk/wp-admin/js/postbox.js</a></li>
<li><a href="#trunkwpadminpagenewphp">trunk/wp-admin/page-new.php</a></li>
<li><a href="#trunkwpadminpagephp">trunk/wp-admin/page.php</a></li>
<li><a href="#trunkwpadminwpadmincss">trunk/wp-admin/wp-admin.css</a></li>
<li><a href="#trunkwpadminwpadmindevcss">trunk/wp-admin/wp-admin.dev.css</a></li>
<li><a href="#trunkwpincludesjsautosavedevjs">trunk/wp-includes/js/autosave.dev.js</a></li>
<li><a href="#trunkwpincludesjsautosavejs">trunk/wp-includes/js/autosave.js</a></li>
<li><a href="#trunkwpincludesscriptloaderphp">trunk/wp-includes/script-loader.php</a></li>
</ul>

<h3>Removed Paths</h3>
<ul>
<li><a href="#trunkwpadminjspagedevjs">trunk/wp-admin/js/page.dev.js</a></li>
<li><a href="#trunkwpadminjspagejs">trunk/wp-admin/js/page.js</a></li>
<li><a href="#trunkwpadminjsslugdevjs">trunk/wp-admin/js/slug.dev.js</a></li>
<li><a href="#trunkwpadminjsslugjs">trunk/wp-admin/js/slug.js</a></li>
</ul>

</div>
<div id="patch">
<h3>Diff</h3>
<a id="trunkwpadminadminajaxphp"></a>
<div class="modfile"><h4>Modified: trunk/wp-admin/admin-ajax.php (12021 => 12022)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/wp-admin/admin-ajax.php        2009-10-11 11:26:59 UTC (rev 12021)
+++ trunk/wp-admin/admin-ajax.php        2009-10-13 10:02:42 UTC (rev 12022)
</span><span class="lines">@@ -399,11 +399,8 @@
</span><span class="cx">                 $parent = 0;
</span><span class="cx">         $post_category = isset($_POST['post_category'])? (array) $_POST['post_category'] : array();
</span><span class="cx">         $checked_categories = array_map( 'absint', (array) $post_category );
</span><del>-        $popular_ids = isset( $_POST['popular_ids'] ) ?
-                        array_map( 'absint', explode( ',', $_POST['popular_ids'] ) ) :
-                        false;
</del><ins>+        $popular_ids = wp_popular_terms_checklist('category', 0, 10, false);
</ins><span class="cx"> 
</span><del>-        $x = new WP_Ajax_Response();
</del><span class="cx">         foreach ( $names as $cat_name ) {
</span><span class="cx">                 $cat_name = trim($cat_name);
</span><span class="cx">                 $category_nicename = sanitize_title($cat_name);
</span><span class="lines">@@ -418,28 +415,43 @@
</span><span class="cx">                         wp_category_checklist( 0, $cat_id, $checked_categories, $popular_ids );
</span><span class="cx">                 $data = ob_get_contents();
</span><span class="cx">                 ob_end_clean();
</span><del>-                $x-&gt;add( array(
</del><ins>+                $add = array(
</ins><span class="cx">                         'what' =&gt; 'category',
</span><span class="cx">                         'id' =&gt; $cat_id,
</span><del>-                        'data' =&gt; $data,
</del><ins>+                        'data' =&gt; str_replace( array(&quot;\n&quot;, &quot;\t&quot;), '', $data),
</ins><span class="cx">                         'position' =&gt; -1
</span><del>-                ) );
</del><ins>+                );
</ins><span class="cx">         }
</span><span class="cx">         if ( $parent ) { // Foncy - replace the parent and all its children
</span><span class="cx">                 $parent = get_category( $parent );
</span><ins>+                $term_id = $parent-&gt;term_id;
+
+                while ( $parent-&gt;parent ) { // get the top parent
+                        $parent = &amp;get_category( $parent-&gt;parent );
+                        if ( is_wp_error( $parent ) )
+                                break;
+                        $term_id = $parent-&gt;term_id;
+                }
+
</ins><span class="cx">                 ob_start();
</span><del>-                        dropdown_categories( 0, $parent );
</del><ins>+                        wp_category_checklist( 0, $term_id, $checked_categories, $popular_ids, null, false );
</ins><span class="cx">                 $data = ob_get_contents();
</span><span class="cx">                 ob_end_clean();
</span><del>-                $x-&gt;add( array(
</del><ins>+                $add = array(
</ins><span class="cx">                         'what' =&gt; 'category',
</span><del>-                        'id' =&gt; $parent-&gt;term_id,
-                        'old_id' =&gt; $parent-&gt;term_id,
-                        'data' =&gt; $data,
</del><ins>+                        'id' =&gt; $term_id,
+                        'data' =&gt; str_replace( array(&quot;\n&quot;, &quot;\t&quot;), '', $data),
</ins><span class="cx">                         'position' =&gt; -1
</span><del>-                ) );
</del><ins>+                );
+        }
</ins><span class="cx"> 
</span><del>-        }
</del><ins>+        ob_start();
+                wp_dropdown_categories( array( 'hide_empty' =&gt; 0, 'name' =&gt; 'newcat_parent', 'orderby' =&gt; 'name', 'hierarchical' =&gt; 1, 'show_option_none' =&gt; __('Parent category') ) );
+        $sup = ob_get_contents();
+        ob_end_clean();
+        $add['supplemental'] = array( 'newcat_parent' =&gt; $sup );
+
+        $x = new WP_Ajax_Response( $add );
</ins><span class="cx">         $x-&gt;send();
</span><span class="cx">         break;
</span><span class="cx"> case 'add-link-category' : // On the Fly
</span><span class="lines">@@ -996,7 +1008,7 @@
</span><span class="cx">                 update_usermeta($user-&gt;ID, 'closedpostboxes_'.$page, $closed);
</span><span class="cx"> 
</span><span class="cx">         if ( is_array($hidden) ) {
</span><del>-                $hidden = array_diff( $hidden, array('submitdiv', 'pagesubmitdiv', 'linksubmitdiv') ); // postboxes that are always shown
</del><ins>+                $hidden = array_diff( $hidden, array('submitdiv', 'linksubmitdiv') ); // postboxes that are always shown
</ins><span class="cx">                 update_usermeta($user-&gt;ID, 'meta-box-hidden_'.$page, $hidden);
</span><span class="cx">         }
</span><span class="cx"> 
</span></span></pre></div>
<a id="trunkwpadmineditformadvancedphp"></a>
<div class="modfile"><h4>Modified: trunk/wp-admin/edit-form-advanced.php (12021 => 12022)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/wp-admin/edit-form-advanced.php        2009-10-11 11:26:59 UTC (rev 12021)
+++ trunk/wp-admin/edit-form-advanced.php        2009-10-13 10:02:42 UTC (rev 12022)
</span><span class="lines">@@ -99,7 +99,6 @@
</span><span class="cx"> 
</span><span class="cx"> add_meta_box('categorydiv', __('Categories'), 'post_categories_meta_box', 'post', 'side', 'core');
</span><span class="cx"> add_meta_box('postthumbnaildiv', __('Post Thumbnail'), 'post_thumbnail_meta_box', 'post', 'side', 'low');
</span><del>-// add_meta_box('passworddiv', __('Privacy Options'), 'post_password_meta_box', 'post', 'side', 'core');
</del><span class="cx"> add_meta_box('postexcerpt', __('Excerpt'), 'post_excerpt_meta_box', 'post', 'normal', 'core');
</span><span class="cx"> add_meta_box('trackbacksdiv', __('Send Trackbacks'), 'post_trackback_meta_box', 'post', 'normal', 'core');
</span><span class="cx"> add_meta_box('postcustom', __('Custom Fields'), 'post_custom_meta_box', 'post', 'normal', 'core');
</span></span></pre></div>
<a id="trunkwpadmineditpageformphp"></a>
<div class="modfile"><h4>Modified: trunk/wp-admin/edit-page-form.php (12021 => 12022)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/wp-admin/edit-page-form.php        2009-10-11 11:26:59 UTC (rev 12021)
+++ trunk/wp-admin/edit-page-form.php        2009-10-13 10:02:42 UTC (rev 12022)
</span><span class="lines">@@ -75,12 +75,11 @@
</span><span class="cx"> 
</span><span class="cx"> require_once('includes/meta-boxes.php');
</span><span class="cx"> 
</span><del>-add_meta_box('pagesubmitdiv', __('Publish'), 'post_submit_meta_box', 'page', 'side', 'core');
-// add_meta_box('pagepassworddiv', __('Privacy Options'), 'post_password_meta_box', 'page', 'side', 'core');
</del><ins>+add_meta_box('submitdiv', __('Publish'), 'post_submit_meta_box', 'page', 'side', 'core');
</ins><span class="cx"> add_meta_box('pageparentdiv', __('Attributes'), 'page_attributes_meta_box', 'page', 'side', 'core');
</span><del>-add_meta_box('pagecustomdiv', __('Custom Fields'), 'post_custom_meta_box', 'page', 'normal', 'core');
-add_meta_box('pagecommentstatusdiv', __('Discussion'), 'post_comment_status_meta_box', 'page', 'normal', 'core');
-add_meta_box('pageslugdiv', __('Page Slug'), 'post_slug_meta_box', 'page', 'normal', 'core');
</del><ins>+add_meta_box('postcustom', __('Custom Fields'), 'post_custom_meta_box', 'page', 'normal', 'core');
+add_meta_box('commentstatusdiv', __('Discussion'), 'post_comment_status_meta_box', 'page', 'normal', 'core');
+add_meta_box('slugdiv', __('Page Slug'), 'post_slug_meta_box', 'page', 'normal', 'core');
</ins><span class="cx"> 
</span><span class="cx"> $authors = get_editable_user_ids( $current_user-&gt;id, true, 'page' ); // TODO: ROLE SYSTEM
</span><span class="cx"> if ( $post-&gt;post_author &amp;&amp; !in_array($post-&gt;post_author, $authors) )
</span></span></pre></div>
<a id="trunkwpadminincludesmetaboxesphp"></a>
<div class="modfile"><h4>Modified: trunk/wp-admin/includes/meta-boxes.php (12021 => 12022)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/wp-admin/includes/meta-boxes.php        2009-10-11 11:26:59 UTC (rev 12021)
+++ trunk/wp-admin/includes/meta-boxes.php        2009-10-13 10:02:42 UTC (rev 12022)
</span><span class="lines">@@ -239,15 +239,16 @@
</span><span class="cx">         &lt;p&gt;&lt;?php _e('Add or remove tags'); ?&gt;&lt;/p&gt;
</span><span class="cx">         &lt;textarea name=&quot;&lt;?php echo &quot;tax_input[$tax_name]&quot;; ?&gt;&quot; class=&quot;the-tags&quot; id=&quot;tax-input[&lt;?php echo $tax_name; ?&gt;]&quot;&gt;&lt;?php echo esc_attr(get_terms_to_edit( $post-&gt;ID, $tax_name )); ?&gt;&lt;/textarea&gt;&lt;/div&gt;
</span><span class="cx"> 
</span><del>-        &lt;span class=&quot;ajaxtag hide-if-no-js&quot;&gt;
</del><ins>+        &lt;div class=&quot;ajaxtag hide-if-no-js&quot;&gt;
</ins><span class="cx">                 &lt;label class=&quot;screen-reader-text&quot; for=&quot;new-tag-&lt;?php echo $tax_name; ?&gt;&quot;&gt;&lt;?php echo $box['title']; ?&gt;&lt;/label&gt;
</span><del>-                &lt;input type=&quot;text&quot; id=&quot;new-tag-&lt;?php echo $tax_name; ?&gt;&quot; name=&quot;newtag[&lt;?php echo $tax_name; ?&gt;]&quot; class=&quot;newtag form-input-tip&quot; size=&quot;16&quot; autocomplete=&quot;off&quot; value=&quot;&lt;?php esc_attr_e('Add new tag'); ?&gt;&quot; /&gt;
</del><ins>+                &lt;input type=&quot;text&quot; id=&quot;new-tag-&lt;?php echo $tax_name; ?&gt;&quot; name=&quot;newtag[&lt;?php echo $tax_name; ?&gt;]&quot; class=&quot;newtag form-input-tip&quot; size=&quot;16&quot; autocomplete=&quot;off&quot; value=&quot;&quot; /&gt;
</ins><span class="cx">                 &lt;input type=&quot;button&quot; class=&quot;button tagadd&quot; value=&quot;&lt;?php esc_attr_e('Add'); ?&gt;&quot; tabindex=&quot;3&quot; /&gt;
</span><del>-        &lt;/span&gt;&lt;/div&gt;
</del><ins>+                &lt;div class=&quot;taghint&quot;&gt;&lt;?php _e('Add new tag'); ?&gt;&lt;/div&gt;
+        &lt;/div&gt;&lt;/div&gt;
</ins><span class="cx">         &lt;p class=&quot;howto&quot;&gt;&lt;?php echo $helps; ?&gt;&lt;/p&gt;
</span><span class="cx">         &lt;div class=&quot;tagchecklist&quot;&gt;&lt;/div&gt;
</span><span class="cx"> &lt;/div&gt;
</span><del>-&lt;p class=&quot;tagcloud-link hide-if-no-js&quot;&gt;&lt;a href=&quot;#titlediv&quot; class=&quot;tagcloud-link&quot; id=&quot;link-&lt;?php echo $tax_name; ?&gt;&quot;&gt;&lt;?php printf( __('Choose from the most used tags in %s'), $box['title'] ); ?&gt;&lt;/a&gt;&lt;/p&gt;
</del><ins>+&lt;p class=&quot;hide-if-no-js&quot;&gt;&lt;a href=&quot;#titlediv&quot; class=&quot;tagcloud-link&quot; id=&quot;link-&lt;?php echo $tax_name; ?&gt;&quot;&gt;&lt;?php printf( __('Choose from the most used tags in %s'), $box['title'] ); ?&gt;&lt;/a&gt;&lt;/p&gt;
</ins><span class="cx"> &lt;?php
</span><span class="cx"> }
</span><span class="cx"> 
</span><span class="lines">@@ -283,7 +284,7 @@
</span><span class="cx">         &lt;h4&gt;&lt;a id=&quot;category-add-toggle&quot; href=&quot;#category-add&quot; class=&quot;hide-if-no-js&quot; tabindex=&quot;3&quot;&gt;&lt;?php _e( '+ Add New Category' ); ?&gt;&lt;/a&gt;&lt;/h4&gt;
</span><span class="cx">         &lt;p id=&quot;category-add&quot; class=&quot;wp-hidden-child&quot;&gt;
</span><span class="cx">         &lt;label class=&quot;screen-reader-text&quot; for=&quot;newcat&quot;&gt;&lt;?php _e( 'Add New Category' ); ?&gt;&lt;/label&gt;&lt;input type=&quot;text&quot; name=&quot;newcat&quot; id=&quot;newcat&quot; class=&quot;form-required form-input-tip&quot; value=&quot;&lt;?php esc_attr_e( 'New category name' ); ?&gt;&quot; tabindex=&quot;3&quot; aria-required=&quot;true&quot;/&gt;
</span><del>-        &lt;label class=&quot;screen-reader-text&quot; for=&quot;newcat_parent&quot;&gt;&lt;?php _e('Parent category'); ?&gt;:&lt;/label&gt;&lt;?php wp_dropdown_categories( array( 'hide_empty' =&gt; 0, 'name' =&gt; 'newcat_parent', 'orderby' =&gt; 'name', 'hierarchical' =&gt; 1, 'show_option_none' =&gt; __('Parent category'), 'tab_index' =&gt; 3 ) ); ?&gt;
</del><ins>+        &lt;label class=&quot;screen-reader-text&quot; for=&quot;newcat_parent&quot;&gt;&lt;?php _e('Parent category'); ?&gt;:&lt;/label&gt;&lt;?php wp_dropdown_categories( array( 'hide_empty' =&gt; 0, 'name' =&gt; 'newcat_parent', 'orderby' =&gt; 'name', 'hierarchical' =&gt; 1, 'show_option_none' =&gt; __('Parent category') ) ); ?&gt;
</ins><span class="cx">         &lt;input type=&quot;button&quot; id=&quot;category-add-sumbit&quot; class=&quot;add:categorychecklist:category-add button&quot; value=&quot;&lt;?php esc_attr_e( 'Add' ); ?&gt;&quot; tabindex=&quot;3&quot; /&gt;
</span><span class="cx"> &lt;?php        wp_nonce_field( 'add-category', '_ajax_nonce', false ); ?&gt;
</span><span class="cx">         &lt;span id=&quot;category-ajax-response&quot;&gt;&lt;/span&gt;&lt;/p&gt;
</span></span></pre></div>
<a id="trunkwpadminincludespostphp"></a>
<div class="modfile"><h4>Modified: trunk/wp-admin/includes/post.php (12021 => 12022)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/wp-admin/includes/post.php        2009-10-11 11:26:59 UTC (rev 12021)
+++ trunk/wp-admin/includes/post.php        2009-10-13 10:02:42 UTC (rev 12022)
</span><span class="lines">@@ -1029,7 +1029,7 @@
</span><span class="cx">         $display_link = str_replace(array('%pagename%','%postname%'), $post_name_html, $permalink);
</span><span class="cx">         $view_link = str_replace(array('%pagename%','%postname%'), $post_name, $permalink);
</span><span class="cx">         $return = '&lt;strong&gt;' . __('Permalink:') . &quot;&lt;/strong&gt;\n&quot; . '&lt;span id=&quot;sample-permalink&quot;&gt;' . $display_link . &quot;&lt;/span&gt;\n&quot;;
</span><del>-        $return .= '&lt;span id=&quot;edit-slug-buttons&quot;&gt;&lt;a href=&quot;#post_name&quot; class=&quot;edit-slug button hide-if-no-js&quot; onclick=&quot;edit_permalink(' . $id . '); return false;&quot;&gt;' . __('Edit') . &quot;&lt;/a&gt;&lt;/span&gt;\n&quot;;
</del><ins>+        $return .= '&lt;span id=&quot;edit-slug-buttons&quot;&gt;&lt;a href=&quot;#post_name&quot; class=&quot;edit-slug button hide-if-no-js&quot; onclick=&quot;editPermalink(' . $id . '); return false;&quot;&gt;' . __('Edit') . &quot;&lt;/a&gt;&lt;/span&gt;\n&quot;;
</ins><span class="cx">         $return .= '&lt;span id=&quot;editable-post-name-full&quot;&gt;' . $post_name . &quot;&lt;/span&gt;\n&quot;;
</span><span class="cx">         if ( isset($view_post) )
</span><span class="cx">                 $return .= &quot;&lt;span id='view-post-btn'&gt;&lt;a href='$view_link' class='button' target='_blank'&gt;$view_post&lt;/a&gt;&lt;/span&gt;\n&quot;;
</span></span></pre></div>
<a id="trunkwpadminincludestemplatephp"></a>
<div class="modfile"><h4>Modified: trunk/wp-admin/includes/template.php (12021 => 12022)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/wp-admin/includes/template.php        2009-10-11 11:26:59 UTC (rev 12021)
+++ trunk/wp-admin/includes/template.php        2009-10-13 10:02:42 UTC (rev 12022)
</span><span class="lines">@@ -487,7 +487,7 @@
</span><span class="cx">  * @param unknown_type $selected_cats
</span><span class="cx">  * @param unknown_type $popular_cats
</span><span class="cx">  */
</span><del>-function wp_category_checklist( $post_id = 0, $descendants_and_self = 0, $selected_cats = false, $popular_cats = false, $walker = null ) {
</del><ins>+function wp_category_checklist( $post_id = 0, $descendants_and_self = 0, $selected_cats = false, $popular_cats = false, $walker = null, $checked_ontop = true ) {
</ins><span class="cx">         if ( empty($walker) || !is_a($walker, 'Walker') )
</span><span class="cx">                 $walker = new Walker_Category_Checklist;
</span><span class="cx"> 
</span><span class="lines">@@ -515,19 +515,21 @@
</span><span class="cx">                 $categories = get_categories('get=all');
</span><span class="cx">         }
</span><span class="cx"> 
</span><del>-        // Post process $categories rather than adding an exclude to the get_terms() query to keep the query the same across all posts (for any query cache)
-        $checked_categories = array();
-        $keys = array_keys( $categories );
</del><ins>+        if ( $checked_ontop ) {
+                // Post process $categories rather than adding an exclude to the get_terms() query to keep the query the same across all posts (for any query cache)
+                $checked_categories = array();
+                $keys = array_keys( $categories );
</ins><span class="cx"> 
</span><del>-        foreach( $keys as $k ) {
-                if ( in_array( $categories[$k]-&gt;term_id, $args['selected_cats'] ) ) {
-                        $checked_categories[] = $categories[$k];
-                        unset( $categories[$k] );
</del><ins>+                foreach( $keys as $k ) {
+                        if ( in_array( $categories[$k]-&gt;term_id, $args['selected_cats'] ) ) {
+                                $checked_categories[] = $categories[$k];
+                                unset( $categories[$k] );
+                        }
</ins><span class="cx">                 }
</span><ins>+
+                // Put checked cats on top
+                echo call_user_func_array(array(&amp;$walker, 'walk'), array($checked_categories, 0, $args));
</ins><span class="cx">         }
</span><del>-
-        // Put checked cats on top
-        echo call_user_func_array(array(&amp;$walker, 'walk'), array($checked_categories, 0, $args));
</del><span class="cx">         // Then the rest of them
</span><span class="cx">         echo call_user_func_array(array(&amp;$walker, 'walk'), array($categories, 0, $args));
</span><span class="cx"> }
</span><span class="lines">@@ -545,10 +547,12 @@
</span><span class="cx">  */
</span><span class="cx"> function wp_popular_terms_checklist( $taxonomy, $default = 0, $number = 10, $echo = true ) {
</span><span class="cx">         global $post_ID;
</span><ins>+
</ins><span class="cx">         if ( $post_ID )
</span><span class="cx">                 $checked_categories = wp_get_post_categories($post_ID);
</span><span class="cx">         else
</span><span class="cx">                 $checked_categories = array();
</span><ins>+
</ins><span class="cx">         $categories = get_terms( $taxonomy, array( 'orderby' =&gt; 'count', 'order' =&gt; 'DESC', 'number' =&gt; $number, 'hierarchical' =&gt; false ) );
</span><span class="cx"> 
</span><span class="cx">         $popular_ids = array();
</span><span class="lines">@@ -557,11 +561,12 @@
</span><span class="cx">                 if ( !$echo ) // hack for AJAX use
</span><span class="cx">                         continue;
</span><span class="cx">                 $id = &quot;popular-category-$category-&gt;term_id&quot;;
</span><ins>+                $checked = in_array( $category-&gt;term_id, $checked_categories ) ? 'checked=&quot;checked&quot;' : '';
</ins><span class="cx">                 ?&gt;
</span><span class="cx"> 
</span><span class="cx">                 &lt;li id=&quot;&lt;?php echo $id; ?&gt;&quot; class=&quot;popular-category&quot;&gt;
</span><span class="cx">                         &lt;label class=&quot;selectit&quot;&gt;
</span><del>-                        &lt;input id=&quot;in-&lt;?php echo $id; ?&gt;&quot; type=&quot;checkbox&quot; value=&quot;&lt;?php echo (int) $category-&gt;term_id; ?&gt;&quot; /&gt;
</del><ins>+                        &lt;input id=&quot;in-&lt;?php echo $id; ?&gt;&quot; type=&quot;checkbox&quot; &lt;?php echo $checked; ?&gt; value=&quot;&lt;?php echo (int) $category-&gt;term_id; ?&gt;&quot; /&gt;
</ins><span class="cx">                                 &lt;?php echo esc_html( apply_filters( 'the_category', $category-&gt;name ) ); ?&gt;
</span><span class="cx">                         &lt;/label&gt;
</span><span class="cx">                 &lt;/li&gt;
</span><span class="lines">@@ -3058,10 +3063,7 @@
</span><span class="cx"> 
</span><span class="cx">         // Hide slug boxes by default
</span><span class="cx">         if ( empty($hidden[0]) ) {
</span><del>-                if ( 'page' == $page )
-                        $hidden = array('pageslugdiv');
-                elseif ( 'post' == $page )
-                        $hidden = array('slugdiv');
</del><ins>+                $hidden = array('slugdiv');
</ins><span class="cx">         }
</span><span class="cx"> 
</span><span class="cx">         return $hidden;
</span></span></pre></div>
<a id="trunkwpadminjspagedevjs"></a>
<div class="delfile"><h4>Deleted: trunk/wp-admin/js/page.dev.js (12021 => 12022)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/wp-admin/js/page.dev.js        2009-10-11 11:26:59 UTC (rev 12021)
+++ trunk/wp-admin/js/page.dev.js        2009-10-13 10:02:42 UTC (rev 12022)
</span><span class="lines">@@ -1,183 +0,0 @@
</span><del>-jQuery(document).ready( function($) {
-        postboxes.add_postbox_toggles('page');
-        make_slugedit_clickable();
-
-        var stamp = $('#timestamp').html(), visibility = $('#post-visibility-display').html();
-
-        function updateVisibility() {
-                if ( $('#post-visibility-select input:radio:checked').val() != 'public' ) {
-                        $('#sticky').attr('checked', false);
-                        $('#sticky-span').hide();
-                } else {
-                        $('#sticky-span').show();
-                }
-                if ( $('#post-visibility-select input:radio:checked').val() != 'password' ) {
-                        $('#password-span').hide();
-                } else {
-                        $('#password-span').show();
-                }
-        }
-
-        function updateText() {
-                var attemptedDate, originalDate, currentDate, publishOn;
-
-                attemptedDate = new Date( $('#aa').val(), $('#mm').val() -1, $('#jj').val(), $('#hh').val(), $('#mn').val());
-                originalDate = new Date( $('#hidden_aa').val(), $('#hidden_mm').val() -1, $('#hidden_jj').val(), $('#hidden_hh').val(), $('#hidden_mn').val());
-                currentDate = new Date( $('#cur_aa').val(), $('#cur_mm').val() -1, $('#cur_jj').val(), $('#cur_hh').val(), $('#cur_mn').val());
-                if ( attemptedDate &gt; currentDate &amp;&amp; $('#original_post_status').val() != 'future' ) {
-                        publishOn = postL10n.publishOnFuture;
-                        $('#publish').val( postL10n.schedule );
-                } else if ( attemptedDate &lt;= currentDate &amp;&amp; $('#original_post_status').val() != 'publish' ) {
-                        publishOn = postL10n.publishOn;
-                        $('#publish').val( postL10n.publish );
-                } else {
-                        publishOn = postL10n.publishOnPast;
-                        $('#publish').val( postL10n.update );
-                }
-                if ( originalDate.toUTCString() == attemptedDate.toUTCString() ) { //hack
-                        $('#timestamp').html(stamp);
-                } else {
-                        $('#timestamp').html(
-                                publishOn + ' &lt;b&gt;' +
-                                $( '#mm option[value=' + $('#mm').val() + ']' ).text() + ' ' +
-                                $('#jj').val() + ', ' +
-                                $('#aa').val() + ' @ ' +
-                                $('#hh').val() + ':' +
-                                $('#mn').val() + '&lt;/b&gt; '
-                        );
-                }
-
-                if ( $('#post-visibility-select input:radio:checked').val() == 'private' ) {
-                        $('#publish').val( postL10n.update );
-                        if ( $('#post_status option[value=publish]').length == 0 ) {
-                                $('#post_status').append('&lt;option value=&quot;publish&quot;&gt;' + postL10n.privatelyPublished + '&lt;/option&gt;');
-                        }
-                        $('#post_status option[value=publish]').html( postL10n.privatelyPublished );
-                        $('#post_status option[value=publish]').attr('selected', true);
-                        $('.edit-post-status').hide();
-                } else {
-                        if ( $('#original_post_status').val() == 'future' || $('#original_post_status').val() == 'draft' ) {
-                                if ( $('#post_status option[value=publish]').length != 0 ) {
-                                        $('#post_status option[value=publish]').remove();
-                                        $('#post_status').val($('#hidden_post_status').val());
-                                }
-                        } else {
-                                $('#post_status option[value=publish]').html( postL10n.published );
-                        }
-                        $('.edit-post-status').show();
-                }
-                $('#post-status-display').html($('#post_status :selected').text());
-                if ( $('#post_status :selected').val() == 'private' || $('#post_status :selected').val() == 'publish' ) {
-                        $('#save-post').hide();
-                } else {
-                        $('#save-post').show();
-                        if ( $('#post_status :selected').val() == 'pending' ) {
-                                $('#save-post').show().val( postL10n.savePending );
-                        } else {
-                                $('#save-post').show().val( postL10n.saveDraft );
-                        }
-                }
-        }
-
-        $('.edit-visibility').click(function () {
-                if ($('#post-visibility-select').is(&quot;:hidden&quot;)) {
-                        updateVisibility();
-                        $('#post-visibility-select').slideDown(&quot;normal&quot;);
-                        $('.edit-visibility').hide();
-                }
-                return false;
-        });
-
-        $('.cancel-post-visibility').click(function () {
-                $('#post-visibility-select').slideUp(&quot;normal&quot;);
-                $('#visibility-radio-' + $('#hidden-post-visibility').val()).attr('checked', true);
-                $('#post_password').val($('#hidden_post_password').val());
-                $('#post-visibility-display').html(visibility);
-                $('.edit-visibility').show();
-                updateText();
-                return false;
-        });
-
-        $('.save-post-visibility').click(function () { // crazyhorse - multiple ok cancels
-                $('#post-visibility-select').slideUp(&quot;normal&quot;);
-                $('.edit-visibility').show();
-                updateText();
-
-                $('#post-visibility-display').html(
-                        postL10n[$('#post-visibility-select input:radio:checked').val()]
-                );
-
-                return false;
-        });
-
-        $('#post-visibility-select input:radio').change(function() {
-                updateVisibility();
-        });
-
-        $('.edit-timestamp').click(function () {
-                if ($('#timestampdiv').is(&quot;:hidden&quot;)) {
-                        $('#timestampdiv').slideDown(&quot;normal&quot;);
-                        $('.edit-timestamp').hide();
-                }
-
-                return false;
-        });
-
-        $('.cancel-timestamp').click(function() {
-                $('#timestampdiv').slideUp(&quot;normal&quot;);
-                $('#mm').val($('#hidden_mm').val());
-                $('#jj').val($('#hidden_jj').val());
-                $('#aa').val($('#hidden_aa').val());
-                $('#hh').val($('#hidden_hh').val());
-                $('#mn').val($('#hidden_mn').val());
-                $('.edit-timestamp').show();
-
-                updateText();
-                return false;
-        });
-
-        $('.save-timestamp').click(function () { // crazyhorse - multiple ok cancels
-                $('#timestampdiv').slideUp(&quot;normal&quot;);
-                $('.edit-timestamp').show();
-                updateText();
-
-                return false;
-        });
-
-        $('.edit-post-status').click(function() {
-                if ($('#post-status-select').is(&quot;:hidden&quot;)) {
-                        $('#post-status-select').slideDown(&quot;normal&quot;);
-                        $(this).hide();
-                }
-
-                return false;
-        });
-
-        $('.save-post-status').click(function() {
-                $('#post-status-select').slideUp(&quot;normal&quot;);
-                $('.edit-post-status').show();
-                updateText();
-                return false;
-        });
-
-        $('.cancel-post-status').click(function() {
-                $('#post-status-select').slideUp(&quot;normal&quot;);
-                $('#post_status').val($('#hidden_post_status').val());
-                $('.edit-post-status').show();
-
-                updateText();
-                return false;
-        });
-
-        // Custom Fields
-        $('#the-list').wpList( { addAfter: function( xml, s ) {
-                $('table#list-table').show();
-                if ( $.isFunction( autosave_update_post_ID ) ) {
-                        autosave_update_post_ID(s.parsed.responses[0].supplemental.postid);
-                }
-        }, addBefore: function( s ) {
-                s.data += '&amp;post_id=' + $('#post_ID').val();
-                return s;
-        }
-        });
-});
</del></span></pre></div>
<a id="trunkwpadminjspagejs"></a>
<div class="delfile"><h4>Deleted: trunk/wp-admin/js/page.js (12021 => 12022)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/wp-admin/js/page.js        2009-10-11 11:26:59 UTC (rev 12021)
+++ trunk/wp-admin/js/page.js        2009-10-13 10:02:42 UTC (rev 12022)
</span><span class="lines">@@ -1 +0,0 @@
</span><del>-jQuery(document).ready(function(e){postboxes.add_postbox_toggles(&quot;page&quot;);make_slugedit_clickable();var b=e(&quot;#timestamp&quot;).html(),a=e(&quot;#post-visibility-display&quot;).html();function d(){if(e(&quot;#post-visibility-select input:radio:checked&quot;).val()!=&quot;public&quot;){e(&quot;#sticky&quot;).attr(&quot;checked&quot;,false);e(&quot;#sticky-span&quot;).hide()}else{e(&quot;#sticky-span&quot;).show()}if(e(&quot;#post-visibility-select input:radio:checked&quot;).val()!=&quot;password&quot;){e(&quot;#password-span&quot;).hide()}else{e(&quot;#password-span&quot;).show()}}function c(){var f,h,g,i;f=new Date(e(&quot;#aa&quot;).val(),e(&quot;#mm&quot;).val()-1,e(&quot;#jj&quot;).val(),e(&quot;#hh&quot;).val(),e(&quot;#mn&quot;).val());h=new Date(e(&quot;#hidden_aa&quot;).val(),e(&quot;#hidden_mm&quot;).val()-1,e(&quot;#hidden_jj&quot;).val(),e(&quot;#hidden_hh&quot;).val(),e(&quot;#hidden_mn&quot;).val());g=new Date(e(&quot;#cur_aa&quot;).val(),e(&quot;#cur_mm&quot;).val()-1,e(&quot;#cur_jj&quot;).val(),e(&quot;#cur_hh&quot;).val(),e(&quot;#cur_mn&quot;).val());if(f&gt;g&amp;&amp;e(&quot;#original_post_status&quot;).val()!=&quot;future&quot;){i=postL10n.publishOnFuture;e(&quot;#publish&quot;).val(postL10n.schedule)}else{if(f&lt;=g&amp;&amp;e(&quot;#original_post_status&quot;).val()!=&quot;publish&quot;){i=postL10n.publishOn;e(&quot;#publish&quot;).val(postL10n.publish)}else{i=postL10n.publishOnPast;e(&quot;#publish&quot;).val(postL10n.update)}}if(h.toUTCString()==f.toUTCString()){e(&quot;#timestamp&quot;).html(b)}else{e(&quot;#timestamp&quot;).html(i+&quot; &lt;b&gt;&quot;+e(&quot;#mm option[value=&quot;+e(&quot;#mm&quot;).val()+&quot;]&quot;).text()+&quot; &quot;+e(&quot;#jj&quot;).val()+&quot;, &quot;+e(&quot;#aa&quot;).val()+&quot; @ &quot;+e(&quot;#hh&quot;).val()+&quot;:&quot;+e(&quot;#mn&quot;).val()+&quot;&lt;/b&gt; &quot;)}if(e(&quot;#post-visibility-select input:radio:checked&quot;).val()==&quot;private&quot;){e(&quot;#publish&quot;).val(postL10n.update);if(e(&quot;#post_status option[value=publish]&quot;).length==0){e(&quot;#post_status&quot;).append('&lt;option value=&quot;publish&quot;&gt;'+postL10n.privatelyPublished+&quot;&lt;/option&gt;&quot;)}e(&quot;#post_status option[value=publish]&quot;).html(postL10n.privatelyPublished);e(&quot;#post_status option[value=publish]&quot;).attr(&quot;selected&quot;,true);e(&quot;.edit-post-status&quot;).hide()}else{if(e(&quot;#original_post_status&quot;).val()==&quot;future&quot;||e(&quot;#original_post_status&quot;).val()==&quot;draft&quot;){if(e(&quot;#post_status option[value=publish]&quot;).length!=0){e(&quot;#post_status option[value=publish]&quot;).remove();e(&quot;#post_status&quot;).val(e(&quot;#hidden_post_status&quot;).val())}}else{e(&quot;#post_status option[value=publish]&quot;).html(postL10n.published)}e(&quot;.edit-post-status&quot;).show()}e(&quot;#post-status-display&quot;).html(e(&quot;#post_status :selected&quot;).text());if(e(&quot;#post_status :selected&quot;).val()==&quot;private&quot;||e(&quot;#post_status :selected&quot;).val()==&quot;publish&quot;){e(&quot;#save-post&quot;).hide()}else{e(&quot;#save-post&quot;).show();if(e(&quot;#post_status :selected&quot;).val()==&quot;pending&quot;){e(&quot;#save-post&quot;).show().val(postL10n.savePending)}else{e(&quot;#save-post&quot;).show().val(postL10n.saveDraft)}}}e(&quot;.edit-visibility&quot;).click(function(){if(e(&quot;#post-visibility-select&quot;).is(&quot;:hidden&quot;)){d();e(&quot;#post-visibility-select&quot;).slideDown(&quot;normal&quot;);e(&quot;.edit-visibility&quot;).hide()}return false});e(&quot;.cancel-post-visibility&quot;).click(function(){e(&quot;#post-visibility-select&quot;).slideUp(&quot;normal&quot;);e(&quot;#visibility-radio-&quot;+e(&quot;#hidden-post-visibility&quot;).val()).attr(&quot;checked&quot;,true);e(&quot;#post_password&quot;).val(e(&quot;#hidden_post_password&quot;).val());e(&quot;#post-visibility-display&quot;).html(a);e(&quot;.edit-visibility&quot;).show();c();return false});e(&quot;.save-post-visibility&quot;).click(function(){e(&quot;#post-visibility-select&quot;).slideUp(&quot;normal&quot;);e(&quot;.edit-visibility&quot;).show();c();e(&quot;#post-visibility-display&quot;).html(postL10n[e(&quot;#post-visibility-select input:radio:checked&quot;).val()]);return false});e(&quot;#post-visibility-select input:radio&quot;).change(function(){d()});e(&quot;.edit-timestamp&quot;).click(function(){if(e(&quot;#timestampdiv&quot;).is(&quot;:hidden&quot;)){e(&quot;#timestampdiv&quot;).slideDown(&quot;normal&quot;);e(&quot;.edit-timestamp&quot;).hide()}return false});e(&quot;.cancel-timestamp&quot;).click(function(){e(&quot;#timestampdiv&quot;).slideUp(&quot;normal&quot;);e(&quot;#mm&quot;).val(e(&quot;#hidden_mm&quot;).val());e(&quot;#jj&quot;).val(e(&quot;#hidden_jj&quot;).val());e(&quot;#aa&quot;).val(e(&quot;#hidden_aa&quot;).val());e(&quot;#hh&quot;).val(e(&quot;#hidden_hh&quot;).val());e(&quot;#mn&quot;).val(e(&quot;#hidden_mn&quot;).val());e(&quot;.edit-timestamp&quot;).show();c();return false});e(&quot;.save-timestamp&quot;).click(function(){e(&quot;#timestampdiv&quot;).slideUp(&quot;normal&quot;);e(&quot;.edit-timestamp&quot;).show();c();return false});e(&quot;.edit-post-status&quot;).click(function(){if(e(&quot;#post-status-select&quot;).is(&quot;:hidden&quot;)){e(&quot;#post-status-select&quot;).slideDown(&quot;normal&quot;);e(this).hide()}return false});e(&quot;.save-post-status&quot;).click(function(){e(&quot;#post-status-select&quot;).slideUp(&quot;normal&quot;);e(&quot;.edit-post-status&quot;).show();c();return false});e(&quot;.cancel-post-status&quot;).click(function(){e(&quot;#post-status-select&quot;).slideUp(&quot;normal&quot;);e(&quot;#post_status&quot;).val(e(&quot;#hidden_post_status&quot;).val());e(&quot;.edit-post-status&quot;).show();c();return false});e(&quot;#the-list&quot;).wpList({addAfter:function(f,g){e(&quot;table#list-table&quot;).show();if(e.isFunction(autosave_update_post_ID)){autosave_update_post_ID(g.parsed.responses[0].supplemental.postid)}},addBefore:function(f){f.data+=&quot;&amp;post_id=&quot;+e(&quot;#post_ID&quot;).val();return f}})});
</del><span class="cx">\ No newline at end of file
</span></span></pre></div>
<a id="trunkwpadminjspostdevjs"></a>
<div class="modfile"><h4>Modified: trunk/wp-admin/js/post.dev.js (12021 => 12022)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/wp-admin/js/post.dev.js        2009-10-11 11:26:59 UTC (rev 12021)
+++ trunk/wp-admin/js/post.dev.js        2009-10-13 10:02:42 UTC (rev 12022)
</span><span class="lines">@@ -1,3 +1,5 @@
</span><ins>+var tagBox, commentsBox, editPermalink, makeSlugeditClickable;
+
</ins><span class="cx"> // return an array with any duplicate, whitespace or values removed
</span><span class="cx"> function array_unique_noempty(a) {
</span><span class="cx">         var out = [];
</span><span class="lines">@@ -9,474 +11,524 @@
</span><span class="cx">         return out;
</span><span class="cx"> }
</span><span class="cx"> 
</span><del>-function new_tag_remove_tag() {
-        var id = jQuery( this ).attr( 'id' ), num = id.split('-check-num-')[1], taxbox = jQuery(this).parents('.tagsdiv'), current_tags = taxbox.find( '.the-tags' ).val().split(','), new_tags = [];
-        delete current_tags[num];
</del><ins>+(function($){
</ins><span class="cx"> 
</span><del>-        jQuery.each( current_tags, function(key, val) {
-                val = jQuery.trim(val);
-                if ( val ) {
-                        new_tags.push(val);
-                }
-        });
</del><ins>+tagBox = {
+        clean : function(tags) {
+                return tags.replace(/\s*,\s*/g, ',').replace(/,+/g, ',').replace(/[,\s]+$/, '').replace(/^[,\s]+/, '');
+        },
</ins><span class="cx"> 
</span><del>-        taxbox.find('.the-tags').val( new_tags.join(',').replace(/\s*,+\s*/, ',').replace(/,+/, ',').replace(/,+\s+,+/, ',').replace(/,+\s*$/, '').replace(/^\s*,+/, '') );
</del><ins>+        parseTags : function(el) {
+                var id = el.id, num = id.split('-check-num-')[1], taxbox = $(el).closest('.tagsdiv'), thetags = taxbox.find('.the-tags'), current_tags = thetags.val().split(','), new_tags = [];
+                delete current_tags[num];
</ins><span class="cx"> 
</span><del>-        tag_update_quickclicks(taxbox);
-        return false;
-}
</del><ins>+                $.each( current_tags, function(key, val) {
+                        val = $.trim(val);
+                        if ( val ) {
+                                new_tags.push(val);
+                        }
+                });
</ins><span class="cx"> 
</span><del>-function tag_update_quickclicks(taxbox) {
-        if ( jQuery(taxbox).find('.the-tags').length == 0 )
-                return;
</del><ins>+                thetags.val( this.clean( new_tags.join(',') ) );
</ins><span class="cx"> 
</span><del>-        var current_tags = jQuery(taxbox).find('.the-tags').val().split(',');
-        jQuery(taxbox).find('.tagchecklist').empty();
-        shown = false;
</del><ins>+                this.quickClicks(taxbox);
+                return false;
+        },
</ins><span class="cx"> 
</span><del>-        jQuery.each( current_tags, function( key, val ) {
-                var txt, button_id;
</del><ins>+        quickClicks : function(el) {
+                var thetags = $('.the-tags', el), tagchecklist = $('.tagchecklist', el), current_tags;
</ins><span class="cx"> 
</span><del>-                val = jQuery.trim(val);
-                if ( !val.match(/^\s+$/) &amp;&amp; '' != val ) {
-                        button_id = jQuery(taxbox).attr('id') + '-check-num-' + key;
-                         txt = '&lt;span&gt;&lt;a id=&quot;' + button_id + '&quot; class=&quot;ntdelbutton&quot;&gt;X&lt;/a&gt;&amp;nbsp;' + val + '&lt;/span&gt; ';
-                         jQuery(taxbox).find('.tagchecklist').append(txt);
-                         jQuery( '#' + button_id ).click( new_tag_remove_tag );
-                }
-        });
-        if ( shown )
-                jQuery(taxbox).find('.tagchecklist').prepend('&lt;strong&gt;'+postL10n.tagsUsed+'&lt;/strong&gt;&lt;br /&gt;');
-}
</del><ins>+                if ( !thetags.length )
+                        return;
</ins><span class="cx"> 
</span><del>-function tag_flush_to_text(id, a) {
-        a = a || false;
-        var taxbox, text, tags, newtags;
</del><ins>+                current_tags = thetags.val().split(',');
+                tagchecklist.empty();
</ins><span class="cx"> 
</span><del>-        taxbox = jQuery('#'+id);
-        text = a ? jQuery(a).text() : taxbox.find('input.newtag').val();
</del><ins>+                $.each( current_tags, function( key, val ) {
+                        var txt, button_id, id = $(el).attr('id');
</ins><span class="cx"> 
</span><del>-        // is the input box empty (i.e. showing the 'Add new tag' tip)?
-        if ( taxbox.find('input.newtag').hasClass('form-input-tip') &amp;&amp; ! a )
-                return false;
</del><ins>+                        val = $.trim(val);
+                        if ( !val.match(/^\s+$/) &amp;&amp; '' != val ) {
+                                button_id = id + '-check-num-' + key;
+                                 txt = '&lt;span&gt;&lt;a id=&quot;' + button_id + '&quot; class=&quot;ntdelbutton&quot;&gt;X&lt;/a&gt;&amp;nbsp;' + val + '&lt;/span&gt; ';
+                                 tagchecklist.append(txt);
+                                 $( '#' + button_id ).click( function(){ tagBox.parseTags(this); });
+                        }
+                });
+        },
</ins><span class="cx"> 
</span><del>-        tags = taxbox.find('.the-tags').val();
-        newtags = tags ? tags + ',' + text : text;
</del><ins>+        flushTags : function(el, a) {
+                a = a || false;
+                var text, tags = $('.the-tags', el), newtag = $('input.newtag', el), newtags;
</ins><span class="cx"> 
</span><del>-        // massage
-        newtags = newtags.replace(/\s+,+\s*/g, ',').replace(/,+/g, ',').replace(/,+\s+,+/g, ',').replace(/,+\s*$/g, '').replace(/^\s*,+/g, '');
-        newtags = array_unique_noempty(newtags.split(',')).join(',');
-        taxbox.find('.the-tags').val(newtags);
-        tag_update_quickclicks(taxbox);
</del><ins>+                text = a ? $(a).text() : newtag.val();
+                tagsval = tags.val();
+                newtags = tagsval ? tagsval + ',' + text : text;
</ins><span class="cx"> 
</span><del>-        if ( ! a )
-                taxbox.find('input.newtag').val('').focus();
</del><ins>+                newtags = this.clean( newtags );
+                newtags = array_unique_noempty( newtags.split(',') ).join(',');
+                tags.val(newtags);
+                this.quickClicks(el);
</ins><span class="cx"> 
</span><del>-        return false;
-}
</del><ins>+                if ( !a )
+                        newtag.val('').focus();
</ins><span class="cx"> 
</span><del>-function tag_save_on_publish() {
-        jQuery('.tagsdiv').each( function(i) {
-                if ( !jQuery(this).find('input.newtag').hasClass('form-input-tip') )
-                tag_flush_to_text(jQuery(this).parents('.tagsdiv').attr('id'));
-                } );
-}
-
-function tag_press_key( e ) {
-        if ( 13 == e.which ) {
-                tag_flush_to_text(jQuery(e.target).parents('.tagsdiv').attr('id'));
</del><span class="cx">                 return false;
</span><del>-        }
-};
</del><ins>+        },
</ins><span class="cx"> 
</span><del>-function tag_init() {
</del><ins>+        get : function(id) {
+                var tax = id.substr(id.indexOf('-')+1);
</ins><span class="cx"> 
</span><del>-        jQuery('.ajaxtag').show();
-    jQuery('.tagsdiv').each( function(i) {
-        tag_update_quickclicks(this);
-    } );
</del><ins>+                $.post(ajaxurl, {'action':'get-tagcloud','tax':tax}, function(r, stat) {
+                        if ( 0 == r || 'success' != stat )
+                                r = wpAjax.broken;
</ins><span class="cx"> 
</span><del>-    // add the quickadd form
-    jQuery('.ajaxtag input.tagadd').click(function(){tag_flush_to_text(jQuery(this).parents('.tagsdiv').attr('id'));});
-    jQuery('.ajaxtag input.newtag').focus(function() {
-        if ( !this.cleared ) {
-            this.cleared = true;
-            jQuery(this).val( '' ).removeClass( 'form-input-tip' );
-        }
-    });
</del><ins>+                        r = $('&lt;p id=&quot;tagcloud-'+tax+'&quot; class=&quot;the-tagcloud&quot;&gt;'+r+'&lt;/p&gt;');
+                        $('a', r).click(function(){
+                                tagBox.flushTags( $(this).closest('.inside').children('.tagsdiv'), this);
+                                return false;
+                        });
</ins><span class="cx"> 
</span><del>-    jQuery('.ajaxtag input.newtag').blur(function() {
-        if ( this.value == '' ) {
-            this.cleared = false;
-            jQuery(this).val( postL10n.addTag ).addClass( 'form-input-tip' );
-        }
-    });
</del><ins>+                        $('#'+id).after(r);
+                });
+        },
</ins><span class="cx"> 
</span><del>-    // auto-save tags on post save/publish
-    jQuery('#publish').click( tag_save_on_publish );
-    jQuery('#save-post').click( tag_save_on_publish );
</del><ins>+        init : function() {
+                var t = this, ajaxtag = $('div.ajaxtag');
</ins><span class="cx"> 
</span><del>-    // catch the enter key
-    jQuery('.ajaxtag input.newtag').keypress( tag_press_key );
-}
</del><ins>+            $('.tagsdiv').each( function() {
+                tagBox.quickClicks(this);
+            });
</ins><span class="cx"> 
</span><del>-var commentsBox, tagCloud;
-(function($){
</del><ins>+                $('input.tagadd', ajaxtag).click(function(){
+                        t.flushTags( $(this).closest('.tagsdiv') );
+                });
</ins><span class="cx"> 
</span><del>-        commentsBox = {
-                st : 0,
</del><ins>+                $('input.newtag', ajaxtag).blur(function() {
+                var taghint = $(this).siblings('.taghint');
+                        if ( this.value == '' )
+                    taghint.css('visibility', '');
+                else
+                        taghint.css('visibility', 'hidden');
+            }).keyup(function(e){
+                        if ( 13 == e.which ) {
+                                tagBox.flushTags( $(this).closest('.tagsdiv') );
+                                return false;
+                        }
+                }).keypress(function(e){
+                        if ( 13 == e.which ) {
+                                e.preventDefault();
+                                return false;
+                        }
+                }).each(function(){
+                        var tax = $(this).closest('div.tagsdiv').attr('id');
+                        $(this).suggest( ajaxurl + '?action=ajax-tag-search&amp;tax=' + tax, { delay: 500, minchars: 2, multiple: true, multipleSep: &quot;, &quot; } );
+                });
</ins><span class="cx"> 
</span><del>-                get : function(total, num) {
-                        var st = this.st, data;
-                        if ( ! num )
-                                num = 20;
</del><ins>+            // save tags on post save/publish
+            $('#post').submit(function(){
+                        $('div.tagsdiv').each( function() {
+                        tagBox.flushTags(this);
+                        });
+                });
</ins><span class="cx"> 
</span><del>-                        this.st += num;
-                        this.total = total;
-                        $('#commentsdiv img.waiting').show();
</del><ins>+                // tag cloud
+                $('a.tagcloud-link').click(function(){
+                        tagBox.get( $(this).attr('id') );
+                        $(this).unbind().click(function(){
+                                $(this).siblings('.the-tagcloud').toggle();
+                                return false;
+                        });
+                        return false;
+                });
+        }
+};
</ins><span class="cx"> 
</span><del>-                        data = {
-                                'action' : 'get-comments',
-                                'mode' : 'single',
-                                '_ajax_nonce' : $('#add_comment_nonce').val(),
-                                'post_ID' : $('#post_ID').val(),
-                                'start' : st,
-                                'num' : num
-                        };
</del><ins>+commentsBox = {
+        st : 0,
</ins><span class="cx"> 
</span><del>-                        $.post(ajaxurl, data,
-                                function(r) {
-                                        r = wpAjax.parseAjaxResponse(r);
-                                        $('#commentsdiv .widefat').show();
-                                        $('#commentsdiv img.waiting').hide();
</del><ins>+        get : function(total, num) {
+                var st = this.st, data;
+                if ( ! num )
+                        num = 20;
</ins><span class="cx"> 
</span><del>-                                        if ( 'object' == typeof r &amp;&amp; r.responses[0] ) {
-                                                $('#the-comment-list').append( r.responses[0].data );
</del><ins>+                this.st += num;
+                this.total = total;
+                $('#commentsdiv img.waiting').show();
</ins><span class="cx"> 
</span><del>-                                                theList = theExtraList = null;
-                                                $(&quot;a[className*=':']&quot;).unbind();
-                                                setCommentsList();
</del><ins>+                data = {
+                        'action' : 'get-comments',
+                        'mode' : 'single',
+                        '_ajax_nonce' : $('#add_comment_nonce').val(),
+                        'post_ID' : $('#post_ID').val(),
+                        'start' : st,
+                        'num' : num
+                };
</ins><span class="cx"> 
</span><del>-                                                if ( commentsBox.st &gt; commentsBox.total )
-                                                        $('#show-comments').hide();
-                                                else
-                                                        $('#show-comments').html(postL10n.showcomm);
-                                                return;
-                                        } else if ( 1 == r ) {
-                                                $('#show-comments').parent().html(postL10n.endcomm);
-                                                return;
-                                        }
</del><ins>+                $.post(ajaxurl, data,
+                        function(r) {
+                                r = wpAjax.parseAjaxResponse(r);
+                                $('#commentsdiv .widefat').show();
+                                $('#commentsdiv img.waiting').hide();
</ins><span class="cx"> 
</span><del>-                                        $('#the-comment-list').append('&lt;tr&gt;&lt;td colspan=&quot;5&quot;&gt;'+wpAjax.broken+'&lt;/td&gt;&lt;/tr&gt;');
-                                }
-                        );
</del><ins>+                                if ( 'object' == typeof r &amp;&amp; r.responses[0] ) {
+                                        $('#the-comment-list').append( r.responses[0].data );
</ins><span class="cx"> 
</span><del>-                        return false;
-                }
-        };
</del><ins>+                                        theList = theExtraList = null;
+                                        $(&quot;a[className*=':']&quot;).unbind();
+                                        setCommentsList();
</ins><span class="cx"> 
</span><del>-        tagCloud = {
-                init : function() {
-                        $('.tagcloud-link').click(function(){
-                                tagCloud.get($(this).attr('id'));
-                                $(this).unbind().click(function(){
-                                        $(this).siblings('.the-tagcloud').toggle();
-                                        return false;
-                                });
-                                return false;
-                        });
-                },
</del><ins>+                                        if ( commentsBox.st &gt; commentsBox.total )
+                                                $('#show-comments').hide();
+                                        else
+                                                $('#show-comments').html(postL10n.showcomm);
+                                        return;
+                                } else if ( 1 == r ) {
+                                        $('#show-comments').parent().html(postL10n.endcomm);
+                                        return;
+                                }
</ins><span class="cx"> 
</span><del>-                get : function(id) {
-                        var tax = id.substr(id.indexOf('-')+1);
</del><ins>+                                $('#the-comment-list').append('&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;'+wpAjax.broken+'&lt;/td&gt;&lt;/tr&gt;');
+                        }
+                );
</ins><span class="cx"> 
</span><del>-                        $.post(ajaxurl, {'action':'get-tagcloud','tax':tax}, function(r, stat) {
-                                if ( 0 == r || 'success' != stat )
-                                        r = wpAjax.broken;
</del><ins>+                return false;
+        }
+};
</ins><span class="cx"> 
</span><del>-                                r = $('&lt;p id=&quot;tagcloud-'+tax+'&quot; class=&quot;the-tagcloud&quot;&gt;'+r+'&lt;/p&gt;');
-                                $('a', r).click(function(){
-                                        var id = $(this).parents('p').attr('id');
-                                        tag_flush_to_text(id.substr(id.indexOf('-')+1), this);
-                                        return false;
-                                });
-
-                                $('#'+id).after(r);
-                        });
-                }
-        };
-
-        $(document).ready(function(){tagCloud.init();});
</del><span class="cx"> })(jQuery);
</span><span class="cx"> 
</span><span class="cx"> jQuery(document).ready( function($) {
</span><del>-        var noSyncChecks = false, syncChecks, catAddAfter, stamp = $('#timestamp').html(), visibility = $('#post-visibility-display').html(), sticky = '';
</del><ins>+        var catAddAfter, stamp, visibility, sticky = '', post = 'post' == pagenow || 'post-new' == pagenow, page = 'page' == pagenow || 'page-new' == pagenow;
</ins><span class="cx"> 
</span><span class="cx">         // postboxes
</span><del>-        postboxes.add_postbox_toggles('post');
</del><ins>+        if ( post )
+                postboxes.add_postbox_toggles('post');
+        else if ( page )
+                postboxes.add_postbox_toggles('page');
</ins><span class="cx"> 
</span><del>-        // Editable slugs
-        make_slugedit_clickable();
</del><ins>+        // multi-taxonomies
+        $('div.postbox').each(function(){
+                if ( this.id.indexOf('tagsdiv-') === 0 ) {
+                        tagBox.init();
+                        return false;
+                }
+        });
</ins><span class="cx"> 
</span><del>-        // prepare the tag UI
-        tag_init();
</del><ins>+        // categories
+        if ( $('#categorydiv').length ) {
+                // TODO: move to jQuery 1.3+, support for multiple hierarchical taxonomies, see wp-lists.dev.js
+                $('a', '#category-tabs').click(function(){
+                        var t = $(this).attr('href');
+                        $(this).parent().addClass('tabs').siblings('li').removeClass('tabs');
+                        $('#category-tabs').siblings('.tabs-panel').hide();
+                        $(t).show();
+                        if ( '#categories-all' == t )
+                                deleteUserSetting('cats');
+                        else
+                                setUserSetting('cats','pop');
+                        return false;
+                });
+                if ( getUserSetting('cats') )
+                        $('a[href=&quot;#categories-pop&quot;]', '#category-tabs').click();
</ins><span class="cx"> 
</span><del>-        // auto-suggest stuff
-        $('.newtag').each(function(){
-                var tax = $(this).parents('div.tagsdiv').attr('id');
-                $(this).suggest( 'admin-ajax.php?action=ajax-tag-search&amp;tax='+tax, { delay: 500, minchars: 2, multiple: true, multipleSep: &quot;, &quot; } );
-        });
</del><ins>+                // Ajax Cat
+                $('#newcat').one( 'focus', function() { $(this).val( '' ).removeClass( 'form-input-tip' ) } );
+                $('#category-add-sumbit').click( function(){ $('#newcat').focus(); } );
</ins><span class="cx"> 
</span><del>-        // category tabs
-        $('#category-tabs a').click(function(){
-                var t = $(this).attr('href');
-                $(this).parent().addClass('tabs').siblings('li').removeClass('tabs');
-                $('.tabs-panel').hide();
-                $(t).show();
-                if ( '#categories-all' == t )
-                        deleteUserSetting('cats');
-                else
-                        setUserSetting('cats','pop');
-                return false;
-        });
-        if ( getUserSetting('cats') )
-                $('#category-tabs a[href=&quot;#categories-pop&quot;]').click();
</del><ins>+                catAddBefore = function( s ) {
+                        if ( !$('#newcat').val() )
+                                return false;
+                        s.data += '&amp;' + $( ':checked', '#categorychecklist' ).serialize();
+                        return s;
+                };
</ins><span class="cx"> 
</span><del>-        // Ajax Cat
-        $('#newcat').one( 'focus', function() { $(this).val( '' ).removeClass( 'form-input-tip' ) } );
-        $('#category-add-sumbit').click(function(){$('#newcat').focus();});
</del><ins>+                catAddAfter = function( r, s ) {
+                        var sup, drop = $('#newcat_parent');
</ins><span class="cx"> 
</span><del>-        syncChecks = function() {
-                if ( noSyncChecks )
-                        return;
-                noSyncChecks = true;
-                var th = jQuery(this), c = th.is(':checked'), id = th.val().toString();
-                $('#in-category-' + id + ', #in-popular-category-' + id).attr( 'checked', c );
-                noSyncChecks = false;
-        };
</del><ins>+                        if ( 'undefined' != s.parsed.responses[0] &amp;&amp; (sup = s.parsed.responses[0].supplemental.newcat_parent) ) {
+                                drop.before(sup);
+                                drop.remove();
+                        }
+                };
</ins><span class="cx"> 
</span><del>-        popularCats = $('#categorychecklist-pop :checkbox').map( function() { return parseInt(jQuery(this).val(), 10); } ).get().join(',');
-        catAddBefore = function( s ) {
-                if ( !$('#newcat').val() )
</del><ins>+                $('#categorychecklist').wpList({
+                        alt: '',
+                        response: 'category-ajax-response',
+                        addBefore: catAddBefore,
+                        addAfter: catAddAfter
+                });
+
+                $('#category-add-toggle').click( function() {
+                        $('#category-adder').toggleClass( 'wp-hidden-children' );
+                        $('a[href=&quot;#categories-all&quot;]', '#category-tabs').click();
</ins><span class="cx">                         return false;
</span><del>-                s.data += '&amp;popular_ids=' + popularCats + '&amp;' + jQuery( '#categorychecklist :checked' ).serialize();
-                return s;
-        };
</del><ins>+                });
</ins><span class="cx"> 
</span><del>-        catAddAfter = function( r, s ) {
-                var newCatParent = jQuery('#newcat_parent'), newCatParentOption = newCatParent.find( 'option[value=&quot;-1&quot;]' );
-                $(s.what + ' response_data', r).each( function() {
-                        var t = $($(this).text());
-                        t.find( 'label' ).each( function() {
-                                var th = $(this), val = th.find('input').val(), id = th.find('input')[0].id, name, o;
-                                $('#' + id).change( syncChecks ).change();
-                                if ( newCatParent.find( 'option[value=&quot;' + val + '&quot;]' ).size() )
-                                        return;
-                                name = $.trim( th.text() );
-                                o = $( '&lt;option value=&quot;' +  parseInt( val, 10 ) + '&quot;&gt;&lt;/option&gt;' ).text( name );
-                                newCatParent.prepend( o );
-                        } );
-                        newCatParentOption.attr( 'selected', 'selected' );
-                } );
-        };
</del><ins>+                $('#categorychecklist').children('li.popular-category').add( $('#categorychecklist-pop').children() ).find(':checkbox').live( 'click', function(){
+                        var t = $(this), c = t.is(':checked'), id = t.val();
+                        $('#in-category-' + id + ', #in-popular-category-' + id).attr( 'checked', c );
+                });
</ins><span class="cx"> 
</span><del>-        $('#categorychecklist').wpList( {
-                alt: '',
-                response: 'category-ajax-response',
-                addBefore: catAddBefore,
-                addAfter: catAddAfter
-        } );
</del><ins>+        } // end cats
</ins><span class="cx"> 
</span><del>-        $('#category-add-toggle').click( function() {
-                $('#category-adder').toggleClass( 'wp-hidden-children' );
-                $('#category-tabs a[href=&quot;#categories-all&quot;]').click();
-                return false;
-        } );
-
-        $('.categorychecklist .popular-category :checkbox').change( syncChecks ).filter( ':checked' ).change(), sticky = '';
-
-        function updateVisibility() {
-                if ( $('#post-visibility-select input:radio:checked').val() != 'public' ) {
-                        $('#sticky').attr('checked', false);
-                        $('#sticky-span').hide();
-                } else {
-                        $('#sticky-span').show();
</del><ins>+        // Custom Fields
+        if ( $('#postcustom').length ) {
+                $('#the-list').wpList( { addAfter: function( xml, s ) {
+                        $('table#list-table').show();
+                        if ( typeof( autosave_update_post_ID ) != 'undefined' ) {
+                                autosave_update_post_ID(s.parsed.responses[0].supplemental.postid);
+                        }
+                }, addBefore: function( s ) {
+                        s.data += '&amp;post_id=' + $('#post_ID').val();
+                        return s;
</ins><span class="cx">                 }
</span><del>-                if ( $('#post-visibility-select input:radio:checked').val() != 'password' ) {
-                        $('#password-span').hide();
-                } else {
-                        $('#password-span').show();
-                }
</del><ins>+                });
</ins><span class="cx">         }
</span><span class="cx"> 
</span><del>-        function updateText() {
-                var attemptedDate, originalDate, currentDate, publishOn;
</del><ins>+        // submitdiv
+        if ( $('#submitdiv').length ) {
+                stamp = $('#timestamp').html();
+                visibility = $('#post-visibility-display').html();
</ins><span class="cx"> 
</span><del>-                attemptedDate = new Date( $('#aa').val(), $('#mm').val() -1, $('#jj').val(), $('#hh').val(), $('#mn').val());
-                originalDate = new Date( $('#hidden_aa').val(), $('#hidden_mm').val() -1, $('#hidden_jj').val(), $('#hidden_hh').val(), $('#hidden_mn').val());
-                currentDate = new Date( $('#cur_aa').val(), $('#cur_mm').val() -1, $('#cur_jj').val(), $('#cur_hh').val(), $('#cur_mn').val());
-                if ( attemptedDate &gt; currentDate &amp;&amp; $('#original_post_status').val() != 'future' ) {
-                        publishOn = postL10n.publishOnFuture;
-                        $('#publish').val( postL10n.schedule );
-                } else if ( attemptedDate &lt;= currentDate &amp;&amp; $('#original_post_status').val() != 'publish' ) {
-                        publishOn = postL10n.publishOn;
-                        $('#publish').val( postL10n.publish );
-                } else {
-                        publishOn = postL10n.publishOnPast;
-                        $('#publish').val( postL10n.update );
</del><ins>+                function updateVisibility() {
+                        var pvSelect = $('#post-visibility-select');
+                        if ( $('input:radio:checked', pvSelect).val() != 'public' ) {
+                                $('#sticky').attr('checked', false);
+                                $('#sticky-span').hide();
+                        } else {
+                                $('#sticky-span').show();
+                        }
+                        if ( $('input:radio:checked', pvSelect).val() != 'password' ) {
+                                $('#password-span').hide();
+                        } else {
+                                $('#password-span').show();
+                        }
</ins><span class="cx">                 }
</span><del>-                if ( originalDate.toUTCString() == attemptedDate.toUTCString() ) { //hack
-                        $('#timestamp').html(stamp);
-                } else {
-                        $('#timestamp').html(
-                                publishOn + ' &lt;b&gt;' +
-                                $( '#mm option[value=' + $('#mm').val() + ']' ).text() + ' ' +
-                                $('#jj').val() + ', ' +
-                                $('#aa').val() + ' @ ' +
-                                $('#hh').val() + ':' +
-                                $('#mn').val() + '&lt;/b&gt; '
-                        );
-                }
</del><span class="cx"> 
</span><del>-                if ( $('#post-visibility-select input:radio:checked').val() == 'private' ) {
-                        $('#publish').val( postL10n.update );
-                        if ( $('#post_status option[value=publish]').length == 0 ) {
-                                $('#post_status').append('&lt;option value=&quot;publish&quot;&gt;' + postL10n.privatelyPublished + '&lt;/option&gt;');
</del><ins>+                function updateText() {
+                        var attemptedDate, originalDate, currentDate, publishOn, postStatus = $('#post_status'), optPublish = $('option[value=publish]', postStatus);
+
+                        attemptedDate = new Date( $('#aa').val(), $('#mm').val() -1, $('#jj').val(), $('#hh').val(), $('#mn').val() );
+                        originalDate = new Date( $('#hidden_aa').val(), $('#hidden_mm').val() -1, $('#hidden_jj').val(), $('#hidden_hh').val(), $('#hidden_mn').val() );
+                        currentDate = new Date( $('#cur_aa').val(), $('#cur_mm').val() -1, $('#cur_jj').val(), $('#cur_hh').val(), $('#cur_mn').val() );
+                        if ( attemptedDate &gt; currentDate &amp;&amp; $('#original_post_status').val() != 'future' ) {
+                                publishOn = postL10n.publishOnFuture;
+                                $('#publish').val( postL10n.schedule );
+                        } else if ( attemptedDate &lt;= currentDate &amp;&amp; $('#original_post_status').val() != 'publish' ) {
+                                publishOn = postL10n.publishOn;
+                                $('#publish').val( postL10n.publish );
+                        } else {
+                                publishOn = postL10n.publishOnPast;
+                                if ( page )
+                                        $('#publish').val( postL10n.updatePage );
+                                else
+                                        $('#publish').val( postL10n.updatePost );
</ins><span class="cx">                         }
</span><del>-                        $('#post_status option[value=publish]').html( postL10n.privatelyPublished );
-                        $('#post_status option[value=publish]').attr('selected', true);
-                        $('.edit-post-status').hide();
-                } else {
-                        if ( $('#original_post_status').val() == 'future' || $('#original_post_status').val() == 'draft' ) {
-                                if ( $('#post_status option[value=publish]').length != 0 ) {
-                                        $('#post_status option[value=publish]').remove();
-                                        $('#post_status').val($('#hidden_post_status').val());
</del><ins>+                        if ( originalDate.toUTCString() == attemptedDate.toUTCString() ) { //hack
+                                $('#timestamp').html(stamp);
+                        } else {
+                                $('#timestamp').html(
+                                        publishOn + ' &lt;b&gt;' +
+                                        $('option[value=' + $('#mm').val() + ']', '#mm').text() + ' ' +
+                                        $('#jj').val() + ', ' +
+                                        $('#aa').val() + ' @ ' +
+                                        $('#hh').val() + ':' +
+                                        $('#mn').val() + '&lt;/b&gt; '
+                                );
+                        }
+
+                        if ( $('input:radio:checked', '#post-visibility-select').val() == 'private' ) {
+                                if ( page )
+                                        $('#publish').val( postL10n.updatePage );
+                                else
+                                        $('#publish').val( postL10n.updatePost );
+                                if ( optPublish.length == 0 ) {
+                                        postStatus.append('&lt;option value=&quot;publish&quot;&gt;' + postL10n.privatelyPublished + '&lt;/option&gt;');
+                                } else {
+                                        optPublish.html( postL10n.privatelyPublished );
</ins><span class="cx">                                 }
</span><ins>+                                $('option[value=publish]', postStatus).attr('selected', true);
+                                $('.edit-post-status', '#misc-publishing-actions').hide();
</ins><span class="cx">                         } else {
</span><del>-                                $('#post_status option[value=publish]').html( postL10n.published );
</del><ins>+                                if ( $('#original_post_status').val() == 'future' || $('#original_post_status').val() == 'draft' ) {
+                                        if ( optPublish.length ) {
+                                                optPublish.remove();
+                                                postStatus.val($('#hidden_post_status').val());
+                                        }
+                                } else {
+                                        optPublish.html( postL10n.published );
+                                }
+                                $('.edit-post-status', '#misc-publishing-actions').show();
</ins><span class="cx">                         }
</span><del>-                        $('.edit-post-status').show();
-                }
-                $('#post-status-display').html($('#post_status :selected').text());
-                if ( $('#post_status :selected').val() == 'private' || $('#post_status :selected').val() == 'publish' ) {
-                        $('#save-post').hide();
-                } else {
-                        $('#save-post').show();
-                        if ( $('#post_status :selected').val() == 'pending' ) {
-                                $('#save-post').show().val( postL10n.savePending );
</del><ins>+                        $('#post-status-display').html($('option:selected', postStatus).text());
+                        if ( $('option:selected', postStatus).val() == 'private' || $('option:selected', postStatus).val() == 'publish' ) {
+                                $('#save-post').hide();
</ins><span class="cx">                         } else {
</span><del>-                                $('#save-post').show().val( postL10n.saveDraft );
</del><ins>+                                $('#save-post').show();
+                                if ( $('option:selected', postStatus).val() == 'pending' ) {
+                                        $('#save-post').show().val( postL10n.savePending );
+                                } else {
+                                        $('#save-post').show().val( postL10n.saveDraft );
+                                }
</ins><span class="cx">                         }
</span><span class="cx">                 }
</span><del>-        }
</del><span class="cx"> 
</span><del>-        $('.edit-visibility').click(function () {
-                if ($('#post-visibility-select').is(&quot;:hidden&quot;)) {
-                        updateVisibility();
-                        $('#post-visibility-select').slideDown(&quot;normal&quot;);
-                        $('.edit-visibility').hide();
-                }
-                return false;
-        });
</del><ins>+                $('.edit-visibility', '#visibility').click(function () {
+                        if ($('#post-visibility-select').is(&quot;:hidden&quot;)) {
+                                updateVisibility();
+                                $('#post-visibility-select').slideDown(&quot;normal&quot;);
+                                $(this).hide();
+                        }
+                        return false;
+                });
</ins><span class="cx"> 
</span><del>-        $('.cancel-post-visibility').click(function () {
-                $('#post-visibility-select').slideUp(&quot;normal&quot;);
-                $('#visibility-radio-' + $('#hidden-post-visibility').val()).attr('checked', true);
-                $('#post_password').val($('#hidden_post_password').val());
-                $('#sticky').attr('checked', $('#hidden-post-sticky').attr('checked'));
-                $('#post-visibility-display').html(visibility);
-                $('.edit-visibility').show();
-                updateText();
-                return false;
-        });
</del><ins>+                $('.cancel-post-visibility', '#post-visibility-select').click(function () {
+                        $('#post-visibility-select').slideUp(&quot;normal&quot;);
+                        $('#visibility-radio-' + $('#hidden-post-visibility').val()).attr('checked', true);
+                        $('#post_password').val($('#hidden_post_password').val());
+                        $('#sticky').attr('checked', $('#hidden-post-sticky').attr('checked'));
+                        $('#post-visibility-display').html(visibility);
+                        $('.edit-visibility', '#visibility').show();
+                        updateText();
+                        return false;
+                });
</ins><span class="cx"> 
</span><del>-        $('.save-post-visibility').click(function () { // crazyhorse - multiple ok cancels
-                $('#post-visibility-select').slideUp(&quot;normal&quot;);
-                $('.edit-visibility').show();
-                updateText();
-                if ( $('#post-visibility-select input:radio:checked').val() != 'public' ) {
-                        $('#sticky').attr('checked', false);
-                }
</del><ins>+                $('.save-post-visibility', '#post-visibility-select').click(function () { // crazyhorse - multiple ok cancels
+                        var pvSelect = $('#post-visibility-select');
</ins><span class="cx"> 
</span><del>-                if ( true == $('#sticky').attr('checked') ) {
-                        sticky = 'Sticky';
-                } else {
-                        sticky = '';
-                }
</del><ins>+                        pvSelect.slideUp(&quot;normal&quot;);
+                        $('.edit-visibility', '#visibility').show();
+                        updateText();
</ins><span class="cx"> 
</span><del>-                $('#post-visibility-display').html(
-                        postL10n[$('#post-visibility-select input:radio:checked').val() + sticky]
-                );
</del><ins>+                        if ( $('input:radio:checked', pvSelect).val() != 'public' ) {
+                                $('#sticky').attr('checked', false);
+                        }
</ins><span class="cx"> 
</span><del>-                return false;
-        });
</del><ins>+                        if ( true == $('#sticky').attr('checked') ) {
+                                sticky = 'Sticky';
+                        } else {
+                                sticky = '';
+                        }
</ins><span class="cx"> 
</span><del>-        $('#post-visibility-select input:radio').change(function() {
-                updateVisibility();
-        });
</del><ins>+                        $('#post-visibility-display').html(        postL10n[$('input:radio:checked', pvSelect).val() + sticky]        );
+                        return false;
+                });
</ins><span class="cx"> 
</span><del>-        $('.edit-timestamp').click(function () {
-                if ($('#timestampdiv').is(&quot;:hidden&quot;)) {
-                        $('#timestampdiv').slideDown(&quot;normal&quot;);
-                        $('.edit-timestamp').hide();
-                }
</del><ins>+                $('input:radio', '#post-visibility-select').change(function() {
+                        updateVisibility();
+                });
</ins><span class="cx"> 
</span><del>-                return false;
-        });
</del><ins>+                $('#timestampdiv').siblings('a.edit-timestamp').click(function() {
+                        if ($('#timestampdiv').is(&quot;:hidden&quot;)) {
+                                $('#timestampdiv').slideDown(&quot;normal&quot;);
+                                $(this).hide();
+                        }
+                        return false;
+                });
</ins><span class="cx"> 
</span><del>-        $('.cancel-timestamp').click(function() {
-                $('#timestampdiv').slideUp(&quot;normal&quot;);
-                $('#mm').val($('#hidden_mm').val());
-                $('#jj').val($('#hidden_jj').val());
-                $('#aa').val($('#hidden_aa').val());
-                $('#hh').val($('#hidden_hh').val());
-                $('#mn').val($('#hidden_mn').val());
-                $('.edit-timestamp').show();
-                updateText();
-                return false;
-        });
</del><ins>+                $('.cancel-timestamp', '#timestampdiv').click(function() {
+                        $('#timestampdiv').slideUp(&quot;normal&quot;);
+                        $('#mm').val($('#hidden_mm').val());
+                        $('#jj').val($('#hidden_jj').val());
+                        $('#aa').val($('#hidden_aa').val());
+                        $('#hh').val($('#hidden_hh').val());
+                        $('#mn').val($('#hidden_mn').val());
+                        $('#timestampdiv').siblings('a.edit-timestamp').show();
+                        updateText();
+                        return false;
+                });
</ins><span class="cx"> 
</span><del>-        $('.save-timestamp').click(function () { // crazyhorse - multiple ok cancels
-                $('#timestampdiv').slideUp(&quot;normal&quot;);
-                $('.edit-timestamp').show();
-                updateText();
</del><ins>+                $('.save-timestamp', '#timestampdiv').click(function () { // crazyhorse - multiple ok cancels
+                        $('#timestampdiv').slideUp(&quot;normal&quot;);
+                        $('#timestampdiv').siblings('a.edit-timestamp').show();
+                        updateText();
+                        return false;
+                });
</ins><span class="cx"> 
</span><del>-                return false;
-        });
</del><ins>+                $('#post-status-select').siblings('a.edit-post-status').click(function() {
+                        if ($('#post-status-select').is(&quot;:hidden&quot;)) {
+                                $('#post-status-select').slideDown(&quot;normal&quot;);
+                                $(this).hide();
+                        }
+                        return false;
+                });
</ins><span class="cx"> 
</span><del>-        $('.edit-post-status').click(function() {
-                if ($('#post-status-select').is(&quot;:hidden&quot;)) {
-                        $('#post-status-select').slideDown(&quot;normal&quot;);
-                        $(this).hide();
-                }
</del><ins>+                $('.save-post-status', '#post-status-select').click(function() {
+                        $('#post-status-select').slideUp(&quot;normal&quot;);
+                        $('#post-status-select').siblings('a.edit-post-status').show();
+                        updateText();
+                        return false;
+                });
</ins><span class="cx"> 
</span><del>-                return false;
-        });
</del><ins>+                $('.cancel-post-status', '#post-status-select').click(function() {
+                        $('#post-status-select').slideUp(&quot;normal&quot;);
+                        $('#post_status').val($('#hidden_post_status').val());
+                        $('#post-status-select').siblings('a.edit-post-status').show();
+                        updateText();
+                        return false;
+                });
+        } // end submitdiv
</ins><span class="cx"> 
</span><del>-        $('.save-post-status').click(function() {
-                $('#post-status-select').slideUp(&quot;normal&quot;);
-                $('.edit-post-status').show();
-                updateText();
-                return false;
-        });
</del><ins>+        // permalink
+        if ( $('#edit-slug-box').length ) {
+                editPermalink = function(post_id) {
+                        var i, c = 0, e = $('#editable-post-name'), revert_e = e.html(), real_slug = $('#post_name'), revert_slug = real_slug.html(), b = $('#edit-slug-buttons'), revert_b = b.html(), full = $('#editable-post-name-full').html();
</ins><span class="cx"> 
</span><del>-        $('.cancel-post-status').click(function() {
-                $('#post-status-select').slideUp(&quot;normal&quot;);
-                $('#post_status').val($('#hidden_post_status').val());
-                $('.edit-post-status').show();
-                updateText();
-                return false;
-        });
</del><ins>+                        $('#view-post-btn').hide();
+                        b.html('&lt;a href=&quot;#&quot; class=&quot;save button&quot;&gt;'+postL10n.ok+'&lt;/a&gt; &lt;a class=&quot;cancel&quot; href=&quot;#&quot;&gt;'+postL10n.cancel+'&lt;/a&gt;');
+                        b.children('.save').click(function() {
+                                var new_slug = e.children('input').val();
+                                $.post(ajaxurl, {
+                                        action: 'sample-permalink',
+                                        post_id: post_id,
+                                        new_slug: new_slug,
+                                        new_title: $('#title').val(),
+                                        samplepermalinknonce: $('#samplepermalinknonce').val()
+                                }, function(data) {
+                                        $('#edit-slug-box').html(data);
+                                        b.html(revert_b);
+                                        real_slug.attr('value', new_slug);
+                                        makeSlugeditClickable();
+                                        $('#view-post-btn').show();
+                                });
+                                return false;
+                        });
</ins><span class="cx"> 
</span><del>-        // Custom Fields
-        $('#the-list').wpList( { addAfter: function( xml, s ) {
-                $('table#list-table').show();
-                if ( typeof( autosave_update_post_ID ) != 'undefined' ) {
-                        autosave_update_post_ID(s.parsed.responses[0].supplemental.postid);
</del><ins>+                        $('.cancel', '#edit-slug-buttons').click(function() {
+                                $('#view-post-btn').show();
+                                e.html(revert_e);
+                                b.html(revert_b);
+                                real_slug.attr('value', revert_slug);
+                                return false;
+                        });
+
+                        for ( i = 0; i &lt; full.length; ++i ) {
+                                if ( '%' == full.charAt(i) )
+                                        c++;
+                        }
+
+                        slug_value = ( c &gt; full.length / 4 ) ? '' : full;
+                        e.html('&lt;input type=&quot;text&quot; id=&quot;new-post-slug&quot; value=&quot;'+slug_value+'&quot; /&gt;').children('input').keypress(function(e){
+                                var key = e.keyCode || 0;
+                                // on enter, just save the new slug, don't save the post
+                                if ( 13 == key ) {
+                                        b.children('.save').click();
+                                        return false;
+                                }
+                                if ( 27 == key ) {
+                                        b.children('.cancel').click();
+                                        return false;
+                                }
+                                real_slug.attr('value', this.value);
+                        }).focus();
</ins><span class="cx">                 }
</span><del>-        }, addBefore: function( s ) {
-                s.data += '&amp;post_id=' + $('#post_ID').val();
-                return s;
</del><ins>+
+                makeSlugeditClickable = function() {
+                        $('#editable-post-name').click(function() {
+                                $('#edit-slug-buttons').children('.edit-slug').click();
+                        });
+                }
+                makeSlugeditClickable();
</ins><span class="cx">         }
</span><del>-        });
</del><span class="cx"> });
</span></span></pre></div>
<a id="trunkwpadminjspostjs"></a>
<div class="modfile"><h4>Modified: trunk/wp-admin/js/post.js (12021 => 12022)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/wp-admin/js/post.js        2009-10-11 11:26:59 UTC (rev 12021)
+++ trunk/wp-admin/js/post.js        2009-10-13 10:02:42 UTC (rev 12022)
</span><span class="lines">@@ -1 +1 @@
</span><del>-function array_unique_noempty(b){var c=[];jQuery.each(b,function(a,d){d=jQuery.trim(d);if(d&amp;&amp;jQuery.inArray(d,c)==-1){c.push(d)}});return c}function new_tag_remove_tag(){var e=jQuery(this).attr(&quot;id&quot;),a=e.split(&quot;-check-num-&quot;)[1],c=jQuery(this).parents(&quot;.tagsdiv&quot;),b=c.find(&quot;.the-tags&quot;).val().split(&quot;,&quot;),d=[];delete b[a];jQuery.each(b,function(f,g){g=jQuery.trim(g);if(g){d.push(g)}});c.find(&quot;.the-tags&quot;).val(d.join(&quot;,&quot;).replace(/\s*,+\s*/,&quot;,&quot;).replace(/,+/,&quot;,&quot;).replace(/,+\s+,+/,&quot;,&quot;).replace(/,+\s*$/,&quot;&quot;).replace(/^\s*,+/,&quot;&quot;));tag_update_quickclicks(c);return false}function tag_update_quickclicks(b){if(jQuery(b).find(&quot;.the-tags&quot;).length==0){return}var a=jQuery(b).find(&quot;.the-tags&quot;).val().split(&quot;,&quot;);jQuery(b).find(&quot;.tagchecklist&quot;).empty();shown=false;jQuery.each(a,function(e,f){var c,d;f=jQuery.trim(f);if(!f.match(/^\s+$/)&amp;&amp;&quot;&quot;!=f){d=jQuery(b).attr(&quot;id&quot;)+&quot;-check-num-&quot;+e;c='&lt;span&gt;&lt;a id=&quot;'+d+'&quot; class=&quot;ntdelbutton&quot;&gt;X&lt;/a&gt;&amp;nbsp;'+f+&quot;&lt;/span&gt; &quot;;jQuery(b).find(&quot;.tagchecklist&quot;).append(c);jQuery(&quot;#&quot;+d).click(new_tag_remove_tag)}});if(shown){jQuery(b).find(&quot;.tagchecklist&quot;).prepend(&quot;&lt;strong&gt;&quot;+postL10n.tagsUsed+&quot;&lt;/strong&gt;&lt;br /&gt;&quot;)}}function tag_flush_to_text(g,b){b=b||false;var e,f,c,d;e=jQuery(&quot;#&quot;+g);f=b?jQuery(b).text():e.find(&quot;input.newtag&quot;).val();if(e.find(&quot;input.newtag&quot;).hasClass(&quot;form-input-tip&quot;)&amp;&amp;!b){return false}c=e.find(&quot;.the-tags&quot;).val();d=c?c+&quot;,&quot;+f:f;d=d.replace(/\s+,+\s*/g,&quot;,&quot;).replace(/,+/g,&quot;,&quot;).replace(/,+\s+,+/g,&quot;,&quot;).replace(/,+\s*$/g,&quot;&quot;).replace(/^\s*,+/g,&quot;&quot;);d=array_unique_noempty(d.split(&quot;,&quot;)).join(&quot;,&quot;);e.find(&quot;.the-tags&quot;).val(d);tag_update_quickclicks(e);if(!b){e.find(&quot;input.newtag&quot;).val(&quot;&quot;).focus()}return false}function tag_save_on_publish(){jQuery(&quot;.tagsdiv&quot;).each(function(a){if(!jQuery(this).find(&quot;input.newtag&quot;).hasClass(&quot;form-input-tip&quot;)){tag_flush_to_text(jQuery(this).parents(&quot;.tagsdiv&quot;).attr(&quot;id&quot;))}})}function tag_press_key(a){if(13==a.which){tag_flush_to_text(jQuery(a.target).parents(&quot;.tagsdiv&quot;).attr(&quot;id&quot;));return false}}function tag_init(){jQuery(&quot;.ajaxtag&quot;).show();jQuery(&quot;.tagsdiv&quot;).each(function(a){tag_update_quickclicks(this)});jQuery(&quot;.ajaxtag input.tagadd&quot;).click(function(){tag_flush_to_text(jQuery(this).parents(&quot;.tagsdiv&quot;).attr(&quot;id&quot;))});jQuery(&quot;.ajaxtag input.newtag&quot;).focus(function(){if(!this.cleared){this.cleared=true;jQuery(this).val(&quot;&quot;).removeClass(&quot;form-input-tip&quot;)}});jQuery(&quot;.ajaxtag input.newtag&quot;).blur(function(){if(this.value==&quot;&quot;){this.cleared=false;jQuery(this).val(postL10n.addTag).addClass(&quot;form-input-tip&quot;)}});jQuery(&quot;#publish&quot;).click(tag_save_on_publish);jQuery(&quot;#save-post&quot;).click(tag_save_on_publish);jQuery(&quot;.ajaxtag input.newtag&quot;).keypress(tag_press_key)}var commentsBox,tagCloud;(function(a){commentsBox={st:0,get:function(d,c){var b=this.st,e;if(!c){c=20}this.st+=c;this.total=d;a(&quot;#commentsdiv img.waiting&quot;).show();e={action:&quot;get-comments&quot;,mode:&quot;single&quot;,_ajax_nonce:a(&quot;#add_comment_nonce&quot;).val(),post_ID:a(&quot;#post_ID&quot;).val(),start:b,num:c};a.post(ajaxurl,e,function(f){f=wpAjax.parseAjaxResponse(f);a(&quot;#commentsdiv .widefat&quot;).show();a(&quot;#commentsdiv img.waiting&quot;).hide();if(&quot;object&quot;==typeof f&amp;&amp;f.responses[0]){a(&quot;#the-comment-list&quot;).append(f.responses[0].data);theList=theExtraList=null;a(&quot;a[className*=':']&quot;).unbind();setCommentsList();if(commentsBox.st&gt;commentsBox.total){a(&quot;#show-comments&quot;).hide()}else{a(&quot;#show-comments&quot;).html(postL10n.showcomm)}return}else{if(1==f){a(&quot;#show-comments&quot;).parent().html(postL10n.endcomm);return}}a(&quot;#the-comment-list&quot;).append('&lt;tr&gt;&lt;td colspan=&quot;5&quot;&gt;'+wpAjax.broken+&quot;&lt;/td&gt;&lt;/tr&gt;&quot;)});return false}};tagCloud={init:function(){a(&quot;.tagcloud-link&quot;).click(function(){tagCloud.get(a(this).attr(&quot;id&quot;));a(this).unbind().click(function(){a(this).siblings(&quot;.the-tagcloud&quot;).toggle();return false});return false})},get:function(c){var b=c.substr(c.indexOf(&quot;-&quot;)+1);a.post(ajaxurl,{action:&quot;get-tagcloud&quot;,tax:b},function(e,d){if(0==e||&quot;success&quot;!=d){e=wpAjax.broken}e=a('&lt;p id=&quot;tagcloud-'+b+'&quot; class=&quot;the-tagcloud&quot;&gt;'+e+&quot;&lt;/p&gt;&quot;);a(&quot;a&quot;,e).click(function(){var f=a(this).parents(&quot;p&quot;).attr(&quot;id&quot;);tag_flush_to_text(f.substr(f.indexOf(&quot;-&quot;)+1),this);return false});a(&quot;#&quot;+c).after(e)})}};a(document).ready(function(){tagCloud.init()})})(jQuery);jQuery(document).ready(function(g){var d=false,i,e,a=g(&quot;#timestamp&quot;).html(),b=g(&quot;#post-visibility-display&quot;).html(),h=&quot;&quot;;postboxes.add_postbox_toggles(&quot;post&quot;);make_slugedit_clickable();tag_init();g(&quot;.newtag&quot;).each(function(){var j=g(this).parents(&quot;div.tagsdiv&quot;).attr(&quot;id&quot;);g(this).suggest(&quot;admin-ajax.php?action=ajax-tag-search&amp;tax=&quot;+j,{delay:500,minchars:2,multiple:true,multipleSep:&quot;, &quot;})});g(&quot;#category-tabs a&quot;).click(function(){var j=g(this).attr(&quot;href&quot;);g(this).parent().addClass(&quot;tabs&quot;).siblings(&quot;li&quot;).removeClass(&quot;tabs&quot;);g(&quot;.tabs-panel&quot;).hide();g(j).show();if(&quot;#categories-all&quot;==j){deleteUserSetting(&quot;cats&quot;)}else{setUserSetting(&quot;cats&quot;,&quot;pop&quot;)}return false});if(getUserSetting(&quot;cats&quot;)){g('#category-tabs a[href=&quot;#categories-pop&quot;]').click()}g(&quot;#newcat&quot;).one(&quot;focus&quot;,function(){g(this).val(&quot;&quot;).removeClass(&quot;form-input-tip&quot;)});g(&quot;#category-add-sumbit&quot;).click(function(){g(&quot;#newcat&quot;).focus()});i=function(){if(d){return}d=true;var j=jQuery(this),l=j.is(&quot;:checked&quot;),k=j.val().toString();g(&quot;#in-category-&quot;+k+&quot;, #in-popular-category-&quot;+k).attr(&quot;checked&quot;,l);d=false};popularCats=g(&quot;#categorychecklist-pop :checkbox&quot;).map(function(){return parseInt(jQuery(this).val(),10)}).get().join(&quot;,&quot;);catAddBefore=function(j){if(!g(&quot;#newcat&quot;).val()){return false}j.data+=&quot;&amp;popular_ids=&quot;+popularCats+&quot;&amp;&quot;+jQuery(&quot;#categorychecklist :checked&quot;).serialize();return j};e=function(m,k){var j=jQuery(&quot;#newcat_parent&quot;),l=j.find('option[value=&quot;-1&quot;]');g(k.what+&quot; response_data&quot;,m).each(function(){var n=g(g(this).text());n.find(&quot;label&quot;).each(function(){var q=g(this),s=q.find(&quot;input&quot;).val(),t=q.find(&quot;input&quot;)[0].id,p,r;g(&quot;#&quot;+t).change(i).change();if(j.find('option[value=&quot;'+s+'&quot;]').size()){return}p=g.trim(q.text());r=g('&lt;option value=&quot;'+parseInt(s,10)+'&quot;&gt;&lt;/option&gt;').text(p);j.prepend(r)});l.attr(&quot;selected&quot;,&quot;selected&quot;)})};g(&quot;#categorychecklist&quot;).wpList({alt:&quot;&quot;,response:&quot;category-ajax-response&quot;,addBefore:catAddBefore,addAfter:e});g(&quot;#category-add-toggle&quot;).click(function(){g(&quot;#category-adder&quot;).toggleClass(&quot;wp-hidden-children&quot;);g('#category-tabs a[href=&quot;#categories-all&quot;]').click();return false});g(&quot;.categorychecklist .popular-category :checkbox&quot;).change(i).filter(&quot;:checked&quot;).change(),h=&quot;&quot;;function f(){if(g(&quot;#post-visibility-select input:radio:checked&quot;).val()!=&quot;public&quot;){g(&quot;#sticky&quot;).attr(&quot;checked&quot;,false);g(&quot;#sticky-span&quot;).hide()}else{g(&quot;#sticky-span&quot;).show()}if(g(&quot;#post-visibility-select input:radio:checked&quot;).val()!=&quot;password&quot;){g(&quot;#password-span&quot;).hide()}else{g(&quot;#password-span&quot;).show()}}function c(){var j,l,k,m;j=new Date(g(&quot;#aa&quot;).val(),g(&quot;#mm&quot;).val()-1,g(&quot;#jj&quot;).val(),g(&quot;#hh&quot;).val(),g(&quot;#mn&quot;).val());l=new Date(g(&quot;#hidden_aa&quot;).val(),g(&quot;#hidden_mm&quot;).val()-1,g(&quot;#hidden_jj&quot;).val(),g(&quot;#hidden_hh&quot;).val(),g(&quot;#hidden_mn&quot;).val());k=new Date(g(&quot;#cur_aa&quot;).val(),g(&quot;#cur_mm&quot;).val()-1,g(&quot;#cur_jj&quot;).val(),g(&quot;#cur_hh&quot;).val(),g(&quot;#cur_mn&quot;).val());if(j&gt;k&amp;&amp;g(&quot;#original_post_status&quot;).val()!=&quot;future&quot;){m=postL10n.publishOnFuture;g(&quot;#publish&quot;).val(postL10n.schedule)}else{if(j&lt;=k&amp;&amp;g(&quot;#original_post_status&quot;).val()!=&quot;publish&quot;){m=postL10n.publishOn;g(&quot;#publish&quot;).val(postL10n.publish)}else{m=postL10n.publishOnPast;g(&quot;#publish&quot;).val(postL10n.update)}}if(l.toUTCString()==j.toUTCString()){g(&quot;#timestamp&quot;).html(a)}else{g(&quot;#timestamp&quot;).html(m+&quot; &lt;b&gt;&quot;+g(&quot;#mm option[value=&quot;+g(&quot;#mm&quot;).val()+&quot;]&quot;).text()+&quot; &quot;+g(&quot;#jj&quot;).val()+&quot;, &quot;+g(&quot;#aa&quot;).val()+&quot; @ &quot;+g(&quot;#hh&quot;).val()+&quot;:&quot;+g(&quot;#mn&quot;).val()+&quot;&lt;/b&gt; &quot;)}if(g(&quot;#post-visibility-select input:radio:checked&quot;).val()==&quot;private&quot;){g(&quot;#publish&quot;).val(postL10n.update);if(g(&quot;#post_status option[value=publish]&quot;).length==0){g(&quot;#post_status&quot;).append('&lt;option value=&quot;publish&quot;&gt;'+postL10n.privatelyPublished+&quot;&lt;/option&gt;&quot;)}g(&quot;#post_status option[value=publish]&quot;).html(postL10n.privatelyPublished);g(&quot;#post_status option[value=publish]&quot;).attr(&quot;selected&quot;,true);g(&quot;.edit-post-status&quot;).hide()}else{if(g(&quot;#original_post_status&quot;).val()==&quot;future&quot;||g(&quot;#original_post_status&quot;).val()==&quot;draft&quot;){if(g(&quot;#post_status option[value=publish]&quot;).length!=0){g(&quot;#post_status option[value=publish]&quot;).remove();g(&quot;#post_status&quot;).val(g(&quot;#hidden_post_status&quot;).val())}}else{g(&quot;#post_status option[value=publish]&quot;).html(postL10n.published)}g(&quot;.edit-post-status&quot;).show()}g(&quot;#post-status-display&quot;).html(g(&quot;#post_status :selected&quot;).text());if(g(&quot;#post_status :selected&quot;).val()==&quot;private&quot;||g(&quot;#post_status :selected&quot;).val()==&quot;publish&quot;){g(&quot;#save-post&quot;).hide()}else{g(&quot;#save-post&quot;).show();if(g(&quot;#post_status :selected&quot;).val()==&quot;pending&quot;){g(&quot;#save-post&quot;).show().val(postL10n.savePending)}else{g(&quot;#save-post&quot;).show().val(postL10n.saveDraft)}}}g(&quot;.edit-visibility&quot;).click(function(){if(g(&quot;#post-visibility-select&quot;).is(&quot;:hidden&quot;)){f();g(&quot;#post-visibility-select&quot;).slideDown(&quot;normal&quot;);g(&quot;.edit-visibility&quot;).hide()}return false});g(&quot;.cancel-post-visibility&quot;).click(function(){g(&quot;#post-visibility-select&quot;).slideUp(&quot;normal&quot;);g(&quot;#visibility-radio-&quot;+g(&quot;#hidden-post-visibility&quot;).val()).attr(&quot;checked&quot;,true);g(&quot;#post_password&quot;).val(g(&quot;#hidden_post_password&quot;).val());g(&quot;#sticky&quot;).attr(&quot;checked&quot;,g(&quot;#hidden-post-sticky&quot;).attr(&quot;checked&quot;));g(&quot;#post-visibility-display&quot;).html(b);g(&quot;.edit-visibility&quot;).show();c();return false});g(&quot;.save-post-visibility&quot;).click(function(){g(&quot;#post-visibility-select&quot;).slideUp(&quot;normal&quot;);g(&quot;.edit-visibility&quot;).show();c();if(g(&quot;#post-visibility-select input:radio:checked&quot;).val()!=&quot;public&quot;){g(&quot;#sticky&quot;).attr(&quot;checked&quot;,false)}if(true==g(&quot;#sticky&quot;).attr(&quot;checked&quot;)){h=&quot;Sticky&quot;}else{h=&quot;&quot;}g(&quot;#post-visibility-display&quot;).html(postL10n[g(&quot;#post-visibility-select input:radio:checked&quot;).val()+h]);return false});g(&quot;#post-visibility-select input:radio&quot;).change(function(){f()});g(&quot;.edit-timestamp&quot;).click(function(){if(g(&quot;#timestampdiv&quot;).is(&quot;:hidden&quot;)){g(&quot;#timestampdiv&quot;).slideDown(&quot;normal&quot;);g(&quot;.edit-timestamp&quot;).hide()}return false});g(&quot;.cancel-timestamp&quot;).click(function(){g(&quot;#timestampdiv&quot;).slideUp(&quot;normal&quot;);g(&quot;#mm&quot;).val(g(&quot;#hidden_mm&quot;).val());g(&quot;#jj&quot;).val(g(&quot;#hidden_jj&quot;).val());g(&quot;#aa&quot;).val(g(&quot;#hidden_aa&quot;).val());g(&quot;#hh&quot;).val(g(&quot;#hidden_hh&quot;).val());g(&quot;#mn&quot;).val(g(&quot;#hidden_mn&quot;).val());g(&quot;.edit-timestamp&quot;).show();c();return false});g(&quot;.save-timestamp&quot;).click(function(){g(&quot;#timestampdiv&quot;).slideUp(&quot;normal&quot;);g(&quot;.edit-timestamp&quot;).show();c();return false});g(&quot;.edit-post-status&quot;).click(function(){if(g(&quot;#post-status-select&quot;).is(&quot;:hidden&quot;)){g(&quot;#post-status-select&quot;).slideDown(&quot;normal&quot;);g(this).hide()}return false});g(&quot;.save-post-status&quot;).click(function(){g(&quot;#post-status-select&quot;).slideUp(&quot;normal&quot;);g(&quot;.edit-post-status&quot;).show();c();return false});g(&quot;.cancel-post-status&quot;).click(function(){g(&quot;#post-status-select&quot;).slideUp(&quot;normal&quot;);g(&quot;#post_status&quot;).val(g(&quot;#hidden_post_status&quot;).val());g(&quot;.edit-post-status&quot;).show();c();return false});g(&quot;#the-list&quot;).wpList({addAfter:function(j,k){g(&quot;table#list-table&quot;).show();if(typeof(autosave_update_post_ID)!=&quot;undefined&quot;){autosave_update_post_ID(k.parsed.responses[0].supplemental.postid)}},addBefore:function(j){j.data+=&quot;&amp;post_id=&quot;+g(&quot;#post_ID&quot;).val();return j}})});
</del><span class="cx">\ No newline at end of file
</span><ins>+var tagBox,commentsBox,editPermalink,makeSlugeditClickable;function array_unique_noempty(b){var c=[];jQuery.each(b,function(a,d){d=jQuery.trim(d);if(d&amp;&amp;jQuery.inArray(d,c)==-1){c.push(d)}});return c}(function(a){tagBox={clean:function(b){return b.replace(/\s*,\s*/g,&quot;,&quot;).replace(/,+/g,&quot;,&quot;).replace(/[,\s]+$/,&quot;&quot;).replace(/^[,\s]+/,&quot;&quot;)},parseTags:function(e){var h=e.id,b=h.split(&quot;-check-num-&quot;)[1],d=a(e).closest(&quot;.tagsdiv&quot;),g=d.find(&quot;.the-tags&quot;),c=g.val().split(&quot;,&quot;),f=[];delete c[b];a.each(c,function(i,j){j=a.trim(j);if(j){f.push(j)}});g.val(this.clean(f.join(&quot;,&quot;)));this.quickClicks(d);return false},quickClicks:function(c){var e=a(&quot;.the-tags&quot;,c),d=a(&quot;.tagchecklist&quot;,c),b;if(!e.length){return}b=e.val().split(&quot;,&quot;);d.empty();a.each(b,function(h,i){var f,g,j=a(c).attr(&quot;id&quot;);i=a.trim(i);if(!i.match(/^\s+$/)&amp;&amp;&quot;&quot;!=i){g=j+&quot;-check-num-&quot;+h;f='&lt;span&gt;&lt;a id=&quot;'+g+'&quot; class=&quot;ntdelbutton&quot;&gt;X&lt;/a&gt;&amp;nbsp;'+i+&quot;&lt;/span&gt; &quot;;d.append(f);a(&quot;#&quot;+g).click(function(){tagBox.parseTags(this)})}})},flushTags:function(e,b){b=b||false;var g,c=a(&quot;.the-tags&quot;,e),f=a(&quot;input.newtag&quot;,e),d;g=b?a(b).text():f.val();tagsval=c.val();d=tagsval?tagsval+&quot;,&quot;+g:g;d=this.clean(d);d=array_unique_noempty(d.split(&quot;,&quot;)).join(&quot;,&quot;);c.val(d);this.quickClicks(e);if(!b){f.val(&quot;&quot;).focus()}return false},get:function(c){var b=c.substr(c.indexOf(&quot;-&quot;)+1);a.post(ajaxurl,{action:&quot;get-tagcloud&quot;,tax:b},function(e,d){if(0==e||&quot;success&quot;!=d){e=wpAjax.broken}e=a('&lt;p id=&quot;tagcloud-'+b+'&quot; class=&quot;the-tagcloud&quot;&gt;'+e+&quot;&lt;/p&gt;&quot;);a(&quot;a&quot;,e).click(function(){tagBox.flushTags(a(this).closest(&quot;.inside&quot;).children(&quot;.tagsdiv&quot;),this);return false});a(&quot;#&quot;+c).after(e)})},init:function(){var b=this,c=a(&quot;div.ajaxtag&quot;);a(&quot;.tagsdiv&quot;).each(function(){tagBox.quickClicks(this)});a(&quot;input.tagadd&quot;,c).click(function(){b.flushTags(a(this).closest(&quot;.tagsdiv&quot;))});a(&quot;input.newtag&quot;,c).blur(function(){var d=a(this).siblings(&quot;.taghint&quot;);if(this.value==&quot;&quot;){d.css(&quot;visibility&quot;,&quot;&quot;)}else{d.css(&quot;visibility&quot;,&quot;hidden&quot;)}}).keyup(function(d){if(13==d.which){tagBox.flushTags(a(this).closest(&quot;.tagsdiv&quot;));return false}}).keypress(function(d){if(13==d.which){d.preventDefault();return false}}).each(function(){var d=a(this).closest(&quot;div.tagsdiv&quot;).attr(&quot;id&quot;);a(this).suggest(ajaxurl+&quot;?action=ajax-tag-search&amp;tax=&quot;+d,{delay:500,minchars:2,multiple:true,multipleSep:&quot;, &quot;})});a(&quot;#post&quot;).submit(function(){a(&quot;div.tagsdiv&quot;).each(function(){tagBox.flushTags(this)})});a(&quot;a.tagcloud-link&quot;).click(function(){tagBox.get(a(this).attr(&quot;id&quot;));a(this).unbind().click(function(){a(this).siblings(&quot;.the-tagcloud&quot;).toggle();return false});return false})}};commentsBox={st:0,get:function(d,c){var b=this.st,e;if(!c){c=20}this.st+=c;this.total=d;a(&quot;#commentsdiv img.waiting&quot;).show();e={action:&quot;get-comments&quot;,mode:&quot;single&quot;,_ajax_nonce:a(&quot;#add_comment_nonce&quot;).val(),post_ID:a(&quot;#post_ID&quot;).val(),start:b,num:c};a.post(ajaxurl,e,function(f){f=wpAjax.parseAjaxResponse(f);a(&quot;#commentsdiv .widefat&quot;).show();a(&quot;#commentsdiv img.waiting&quot;).hide();if(&quot;object&quot;==typeof f&amp;&amp;f.responses[0]){a(&quot;#the-comment-list&quot;).append(f.responses[0].data);theList=theExtraList=null;a(&quot;a[className*=':']&quot;).unbind();setCommentsList();if(commentsBox.st&gt;commentsBox.total){a(&quot;#show-comments&quot;).hide()}else{a(&quot;#show-comments&quot;).html(postL10n.showcomm)}return}else{if(1==f){a(&quot;#show-comments&quot;).parent().html(postL10n.endcomm);return}}a(&quot;#the-comment-list&quot;).append('&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;'+wpAjax.broken+&quot;&lt;/td&gt;&lt;/tr&gt;&quot;)});return false}}})(jQuery);jQuery(document).ready(function(f){var d,a,b,h=&quot;&quot;,i=&quot;post&quot;==pagenow||&quot;post-new&quot;==pagenow,g=&quot;page&quot;==pagenow||&quot;page-new&quot;==pagenow;if(i){postboxes.add_postbox_toggles(&quot;post&quot;)}else{if(g){postboxes.add_postbox_toggles(&quot;page&quot;)}}f(&quot;div.postbox&quot;).each(function(){if(this.id.indexOf(&quot;tagsdiv-&quot;)===0){tagBox.init();return false}});if(f(&quot;#categorydiv&quot;).length){f(&quot;a&quot;,&quot;#category-tabs&quot;).click(function(){var j=f(this).attr(&quot;href&quot;);f(this).parent().addClass(&quot;tabs&quot;).siblings(&quot;li&quot;).removeClass(&quot;tabs&quot;);f(&quot;#category-tabs&quot;).siblings(&quot;.tabs-panel&quot;).hide();f(j).show();if(&quot;#categories-all&quot;==j){deleteUserSetting(&quot;cats&quot;)}else{setUserSetting(&quot;cats&quot;,&quot;pop&quot;)}return false});if(getUserSetting(&quot;cats&quot;)){f('a[href=&quot;#categories-pop&quot;]',&quot;#category-tabs&quot;).click()}f(&quot;#newcat&quot;).one(&quot;focus&quot;,function(){f(this).val(&quot;&quot;).removeClass(&quot;form-input-tip&quot;)});f(&quot;#category-add-sumbit&quot;).click(function(){f(&quot;#newcat&quot;).focus()});catAddBefore=function(j){if(!f(&quot;#newcat&quot;).val()){return false}j.data+=&quot;&amp;&quot;+f(&quot;:checked&quot;,&quot;#categorychecklist&quot;).serialize();return j};d=function(m,l){var k,j=f(&quot;#newcat_parent&quot;);if(&quot;undefined&quot;!=l.parsed.responses[0]&amp;&amp;(k=l.parsed.responses[0].supplemental.newcat_parent)){j.before(k);j.remove()}};f(&quot;#categorychecklist&quot;).wpList({alt:&quot;&quot;,response:&quot;category-ajax-response&quot;,addBefore:catAddBefore,addAfter:d});f(&quot;#category-add-toggle&quot;).click(function(){f(&quot;#category-adder&quot;).toggleClass(&quot;wp-hidden-children&quot;);f('a[href=&quot;#categories-all&quot;]',&quot;#category-tabs&quot;).click();return false});f(&quot;#categorychecklist&quot;).children(&quot;li.popular-category&quot;).add(f(&quot;#categorychecklist-pop&quot;).children()).find(&quot;:checkbox&quot;).live(&quot;click&quot;,function(){var j=f(this),l=j.is(&quot;:checked&quot;),k=j.val();f(&quot;#in-category-&quot;+k+&quot;, #in-popular-category-&quot;+k).attr(&quot;checked&quot;,l)})}if(f(&quot;#postcustom&quot;).length){f(&quot;#the-list&quot;).wpList({addAfter:function(j,k){f(&quot;table#list-table&quot;).show();if(typeof(autosave_update_post_ID)!=&quot;undefined&quot;){autosave_update_post_ID(k.parsed.responses[0].supplemental.postid)}},addBefore:function(j){j.data+=&quot;&amp;post_id=&quot;+f(&quot;#post_ID&quot;).val();return j}})}if(f(&quot;#submitdiv&quot;).length){a=f(&quot;#timestamp&quot;).html();b=f(&quot;#post-visibility-display&quot;).html();function e(){var j=f(&quot;#post-visibility-select&quot;);if(f(&quot;input:radio:checked&quot;,j).val()!=&quot;public&quot;){f(&quot;#sticky&quot;).attr(&quot;checked&quot;,false);f(&quot;#sticky-span&quot;).hide()}else{f(&quot;#sticky-span&quot;).show()}if(f(&quot;input:radio:checked&quot;,j).val()!=&quot;password&quot;){f(&quot;#password-span&quot;).hide()}else{f(&quot;#password-span&quot;).show()}}function c(){var j,m,k,o,l=f(&quot;#post_status&quot;),n=f(&quot;option[value=publish]&quot;,l);j=new Date(f(&quot;#aa&quot;).val(),f(&quot;#mm&quot;).val()-1,f(&quot;#jj&quot;).val(),f(&quot;#hh&quot;).val(),f(&quot;#mn&quot;).val());m=new Date(f(&quot;#hidden_aa&quot;).val(),f(&quot;#hidden_mm&quot;).val()-1,f(&quot;#hidden_jj&quot;).val(),f(&quot;#hidden_hh&quot;).val(),f(&quot;#hidden_mn&quot;).val());k=new Date(f(&quot;#cur_aa&quot;).val(),f(&quot;#cur_mm&quot;).val()-1,f(&quot;#cur_jj&quot;).val(),f(&quot;#cur_hh&quot;).val(),f(&quot;#cur_mn&quot;).val());if(j&gt;k&amp;&amp;f(&quot;#original_post_status&quot;).val()!=&quot;future&quot;){o=postL10n.publishOnFuture;f(&quot;#publish&quot;).val(postL10n.schedule)}else{if(j&lt;=k&amp;&amp;f(&quot;#original_post_status&quot;).val()!=&quot;publish&quot;){o=postL10n.publishOn;f(&quot;#publish&quot;).val(postL10n.publish)}else{o=postL10n.publishOnPast;if(g){f(&quot;#publish&quot;).val(postL10n.updatePage)}else{f(&quot;#publish&quot;).val(postL10n.updatePost)}}}if(m.toUTCString()==j.toUTCString()){f(&quot;#timestamp&quot;).html(a)}else{f(&quot;#timestamp&quot;).html(o+&quot; &lt;b&gt;&quot;+f(&quot;option[value=&quot;+f(&quot;#mm&quot;).val()+&quot;]&quot;,&quot;#mm&quot;).text()+&quot; &quot;+f(&quot;#jj&quot;).val()+&quot;, &quot;+f(&quot;#aa&quot;).val()+&quot; @ &quot;+f(&quot;#hh&quot;).val()+&quot;:&quot;+f(&quot;#mn&quot;).val()+&quot;&lt;/b&gt; &quot;)}if(f(&quot;input:radio:checked&quot;,&quot;#post-visibility-select&quot;).val()==&quot;private&quot;){if(g){f(&quot;#publish&quot;).val(postL10n.updatePage)}else{f(&quot;#publish&quot;).val(postL10n.updatePost)}if(n.length==0){l.append('&lt;option value=&quot;publish&quot;&gt;'+postL10n.privatelyPublished+&quot;&lt;/option&gt;&quot;)}else{n.html(postL10n.privatelyPublished)}f(&quot;option[value=publish]&quot;,l).attr(&quot;selected&quot;,true);f(&quot;.edit-post-status&quot;,&quot;#misc-publishing-actions&quot;).hide()}else{if(f(&quot;#original_post_status&quot;).val()==&quot;future&quot;||f(&quot;#original_post_status&quot;).val()==&quot;draft&quot;){if(n.length){n.remove();l.val(f(&quot;#hidden_post_status&quot;).val())}}else{n.html(postL10n.published)}f(&quot;.edit-post-status&quot;,&quot;#misc-publishing-actions&quot;).show()}f(&quot;#post-status-display&quot;).html(f(&quot;option:selected&quot;,l).text());if(f(&quot;option:selected&quot;,l).val()==&quot;private&quot;||f(&quot;option:selected&quot;,l).val()==&quot;publish&quot;){f(&quot;#save-post&quot;).hide()}else{f(&quot;#save-post&quot;).show();if(f(&quot;option:selected&quot;,l).val()==&quot;pending&quot;){f(&quot;#save-post&quot;).show().val(postL10n.savePending)}else{f(&quot;#save-post&quot;).show().val(postL10n.saveDraft)}}}f(&quot;.edit-visibility&quot;,&quot;#visibility&quot;).click(function(){if(f(&quot;#post-visibility-select&quot;).is(&quot;:hidden&quot;)){e();f(&quot;#post-visibility-select&quot;).slideDown(&quot;normal&quot;);f(this).hide()}return false});f(&quot;.cancel-post-visibility&quot;,&quot;#post-visibility-select&quot;).click(function(){f(&quot;#post-visibility-select&quot;).slideUp(&quot;normal&quot;);f(&quot;#visibility-radio-&quot;+f(&quot;#hidden-post-visibility&quot;).val()).attr(&quot;checked&quot;,true);f(&quot;#post_password&quot;).val(f(&quot;#hidden_post_password&quot;).val());f(&quot;#sticky&quot;).attr(&quot;checked&quot;,f(&quot;#hidden-post-sticky&quot;).attr(&quot;checked&quot;));f(&quot;#post-visibility-display&quot;).html(b);f(&quot;.edit-visibility&quot;,&quot;#visibility&quot;).show();c();return false});f(&quot;.save-post-visibility&quot;,&quot;#post-visibility-select&quot;).click(function(){var j=f(&quot;#post-visibility-select&quot;);j.slideUp(&quot;normal&quot;);f(&quot;.edit-visibility&quot;,&quot;#visibility&quot;).show();c();if(f(&quot;input:radio:checked&quot;,j).val()!=&quot;public&quot;){f(&quot;#sticky&quot;).attr(&quot;checked&quot;,false)}if(true==f(&quot;#sticky&quot;).attr(&quot;checked&quot;)){h=&quot;Sticky&quot;}else{h=&quot;&quot;}f(&quot;#post-visibility-display&quot;).html(postL10n[f(&quot;input:radio:checked&quot;,j).val()+h]);return false});f(&quot;input:radio&quot;,&quot;#post-visibility-select&quot;).change(function(){e()});f(&quot;#timestampdiv&quot;).siblings(&quot;a.edit-timestamp&quot;).click(function(){if(f(&quot;#timestampdiv&quot;).is(&quot;:hidden&quot;)){f(&quot;#timestampdiv&quot;).slideDown(&quot;normal&quot;);f(this).hide()}return false});f(&quot;.cancel-timestamp&quot;,&quot;#timestampdiv&quot;).click(function(){f(&quot;#timestampdiv&quot;).slideUp(&quot;normal&quot;);f(&quot;#mm&quot;).val(f(&quot;#hidden_mm&quot;).val());f(&quot;#jj&quot;).val(f(&quot;#hidden_jj&quot;).val());f(&quot;#aa&quot;).val(f(&quot;#hidden_aa&quot;).val());f(&quot;#hh&quot;).val(f(&quot;#hidden_hh&quot;).val());f(&quot;#mn&quot;).val(f(&quot;#hidden_mn&quot;).val());f(&quot;#timestampdiv&quot;).siblings(&quot;a.edit-timestamp&quot;).show();c();return false});f(&quot;.save-timestamp&quot;,&quot;#timestampdiv&quot;).click(function(){f(&quot;#timestampdiv&quot;).slideUp(&quot;normal&quot;);f(&quot;#timestampdiv&quot;).siblings(&quot;a.edit-timestamp&quot;).show();c();return false});f(&quot;#post-status-select&quot;).siblings(&quot;a.edit-post-status&quot;).click(function(){if(f(&quot;#post-status-select&quot;).is(&quot;:hidden&quot;)){f(&quot;#post-status-select&quot;).slideDown(&quot;normal&quot;);f(this).hide()}return false});f(&quot;.save-post-status&quot;,&quot;#post-status-select&quot;).click(function(){f(&quot;#post-status-select&quot;).slideUp(&quot;normal&quot;);f(&quot;#post-status-select&quot;).siblings(&quot;a.edit-post-status&quot;).show();c();return false});f(&quot;.cancel-post-status&quot;,&quot;#post-status-select&quot;).click(function(){f(&quot;#post-status-select&quot;).slideUp(&quot;normal&quot;);f(&quot;#post_status&quot;).val(f(&quot;#hidden_post_status&quot;).val());f(&quot;#post-status-select&quot;).siblings(&quot;a.edit-post-status&quot;).show();c();return false})}if(f(&quot;#edit-slug-box&quot;).length){editPermalink=function(j){var k,n=0,m=f(&quot;#editable-post-name&quot;),o=m.html(),r=f(&quot;#post_name&quot;),s=r.html(),p=f(&quot;#edit-slug-buttons&quot;),q=p.html(),l=f(&quot;#editable-post-name-full&quot;).html();f(&quot;#view-post-btn&quot;).hide();p.html('&lt;a href=&quot;#&quot; class=&quot;save button&quot;&gt;'+postL10n.ok+'&lt;/a&gt; &lt;a class=&quot;cancel&quot; href=&quot;#&quot;&gt;'+postL10n.cancel+&quot;&lt;/a&gt;&quot;);p.children(&quot;.save&quot;).click(function(){var t=m.children(&quot;input&quot;).val();f.post(ajaxurl,{action:&quot;sample-permalink&quot;,post_id:j,new_slug:t,new_title:f(&quot;#title&quot;).val(),samplepermalinknonce:f(&quot;#samplepermalinknonce&quot;).val()},function(u){f(&quot;#edit-slug-box&quot;).html(u);p.html(q);r.attr(&quot;value&quot;,t);makeSlugeditClickable();f(&quot;#view-post-btn&quot;).show()});return false});f(&quot;.cancel&quot;,&quot;#edit-slug-buttons&quot;).click(function(){f(&quot;#view-post-btn&quot;).show();m.html(o);p.html(q);r.attr(&quot;value&quot;,s);return false});for(k=0;k&lt;l.length;++k){if(&quot;%&quot;==l.charAt(k)){n++}}slug_value=(n&gt;l.length/4)?&quot;&quot;:l;m.html('&lt;input type=&quot;text&quot; id=&quot;new-post-slug&quot; value=&quot;'+slug_value+'&quot; /&gt;').children(&quot;input&quot;).keypress(function(u){var t=u.keyCode||0;if(13==t){p.children(&quot;.save&quot;).click();return false}if(27==t){p.children(&quot;.cancel&quot;).click();return false}r.attr(&quot;value&quot;,this.value)}).focus()};makeSlugeditClickable=function(){f(&quot;#editable-post-name&quot;).click(function(){f(&quot;#edit-slug-buttons&quot;).children(&quot;.edit-slug&quot;).click()})};makeSlugeditClickable()}});
</ins><span class="cx">\ No newline at end of file
</span></span></pre></div>
<a id="trunkwpadminjspostboxdevjs"></a>
<div class="modfile"><h4>Modified: trunk/wp-admin/js/postbox.dev.js (12021 => 12022)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/wp-admin/js/postbox.dev.js        2009-10-11 11:26:59 UTC (rev 12021)
+++ trunk/wp-admin/js/postbox.dev.js        2009-10-13 10:02:42 UTC (rev 12022)
</span><span class="lines">@@ -116,7 +116,7 @@
</span><span class="cx">                 save_state : function(page) {
</span><span class="cx">                         var closed = $('.postbox').filter('.closed').map(function() { return this.id; }).get().join(','),
</span><span class="cx">                         hidden = $('.postbox').filter(':hidden').map(function() { return this.id; }).get().join(',');
</span><del>-                        $.post(postboxL10n.requestFile, {
</del><ins>+                        $.post(ajaxurl, {
</ins><span class="cx">                                 action: 'closed-postboxes',
</span><span class="cx">                                 closed: closed,
</span><span class="cx">                                 hidden: hidden,
</span><span class="lines">@@ -136,7 +136,7 @@
</span><span class="cx">                         $('.meta-box-sortables').each( function() {
</span><span class="cx">                                 postVars[&quot;order[&quot; + this.id.split('-')[0] + &quot;]&quot;] = $(this).sortable( 'toArray' ).join(',');
</span><span class="cx">                         } );
</span><del>-                        $.post( postboxL10n.requestFile, postVars );
</del><ins>+                        $.post( ajaxurl, postVars );
</ins><span class="cx">                 },
</span><span class="cx"> 
</span><span class="cx">                 /* Callbacks */
</span></span></pre></div>
<a id="trunkwpadminjspostboxjs"></a>
<div class="modfile"><h4>Modified: trunk/wp-admin/js/postbox.js (12021 => 12022)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/wp-admin/js/postbox.js        2009-10-11 11:26:59 UTC (rev 12021)
+++ trunk/wp-admin/js/postbox.js        2009-10-13 10:02:42 UTC (rev 12022)
</span><span class="lines">@@ -1 +1 @@
</span><del>-var postboxes;(function(a){postboxes={add_postbox_toggles:function(c,b){this.init(c,b);a(&quot;.postbox h3, .postbox .handlediv&quot;).click(function(){var e=a(this).parent(&quot;.postbox&quot;),f=e.attr(&quot;id&quot;);e.toggleClass(&quot;closed&quot;);postboxes.save_state(c);if(f){if(!e.hasClass(&quot;closed&quot;)&amp;&amp;a.isFunction(postboxes.pbshow)){postboxes.pbshow(f)}else{if(e.hasClass(&quot;closed&quot;)&amp;&amp;a.isFunction(postboxes.pbhide)){postboxes.pbhide(f)}}}});a(&quot;.postbox h3 a&quot;).click(function(f){f.stopPropagation()});a(&quot;.hide-postbox-tog&quot;).click(function(){var e=a(this).val();if(a(this).attr(&quot;checked&quot;)){a(&quot;#&quot;+e).show();if(a.isFunction(postboxes.pbshow)){postboxes.pbshow(e)}}else{a(&quot;#&quot;+e).hide();if(a.isFunction(postboxes.pbhide)){postboxes.pbhide(e)}}postboxes.save_state(c)});a('.columns-prefs input[type=&quot;radio&quot;]').click(function(){var e=a(this).val(),f,g,h=a(&quot;#poststuff&quot;);if(h.length){if(e==2){h.addClass(&quot;has-right-sidebar&quot;);a(&quot;#side-sortables&quot;).addClass(&quot;temp-border&quot;)}else{if(e==1){h.removeClass(&quot;has-right-sidebar&quot;);a(&quot;#normal-sortables&quot;).append(a(&quot;#side-sortables&quot;).children(&quot;.postbox&quot;))}}}else{for(f=4;(f&gt;e&amp;&amp;f&gt;1);f--){g=a(&quot;#&quot;+d(f)+&quot;-sortables&quot;);a(&quot;#&quot;+d(f-1)+&quot;-sortables&quot;).append(g.children(&quot;.postbox&quot;));g.parent().hide()}for(f=1;f&lt;=e;f++){g=a(&quot;#&quot;+d(f)+&quot;-sortables&quot;);if(g.parent().is(&quot;:hidden&quot;)){g.addClass(&quot;temp-border&quot;).parent().show()}}a(&quot;.postbox-container:visible&quot;).css(&quot;width&quot;,98/e+&quot;%&quot;)}postboxes.save_order(c)});function d(e){switch(e){case 1:return&quot;normal&quot;;break;case 2:return&quot;side&quot;;break;case 3:return&quot;column3&quot;;break;case 4:return&quot;column4&quot;;break;default:return&quot;&quot;}}},init:function(c,b){a.extend(this,b||{});a(&quot;#wpbody-content&quot;).css(&quot;overflow&quot;,&quot;hidden&quot;);a(&quot;.meta-box-sortables&quot;).sortable({placeholder:&quot;sortable-placeholder&quot;,connectWith:&quot;.meta-box-sortables&quot;,items:&quot;.postbox&quot;,handle:&quot;.hndle&quot;,cursor:&quot;move&quot;,distance:2,tolerance:&quot;pointer&quot;,forcePlaceholderSize:true,helper:&quot;clone&quot;,opacity:0.65,start:function(f,d){a(&quot;body&quot;).css({WebkitUserSelect:&quot;none&quot;,KhtmlUserSelect:&quot;none&quot;})},stop:function(f,d){postboxes.save_order(c);d.item.parent().removeClass(&quot;temp-border&quot;);a(&quot;body&quot;).css({WebkitUserSelect:&quot;&quot;,KhtmlUserSelect:&quot;&quot;})}})},save_state:function(d){var b=a(&quot;.postbox&quot;).filter(&quot;.closed&quot;).map(function(){return this.id}).get().join(&quot;,&quot;),c=a(&quot;.postbox&quot;).filter(&quot;:hidden&quot;).map(function(){return this.id}).get().join(&quot;,&quot;);a.post(postboxL10n.requestFile,{action:&quot;closed-postboxes&quot;,closed:b,hidden:c,closedpostboxesnonce:jQuery(&quot;#closedpostboxesnonce&quot;).val(),page:d})},save_order:function(c){var b,d=a(&quot;.columns-prefs input:checked&quot;).val()||0;b={action:&quot;meta-box-order&quot;,_ajax_nonce:a(&quot;#meta-box-order-nonce&quot;).val(),page_columns:d,page:c};a(&quot;.meta-box-sortables&quot;).each(function(){b[&quot;order[&quot;+this.id.split(&quot;-&quot;)[0]+&quot;]&quot;]=a(this).sortable(&quot;toArray&quot;).join(&quot;,&quot;)});a.post(postboxL10n.requestFile,b)},pbshow:false,pbhide:false}}(jQuery));
</del><span class="cx">\ No newline at end of file
</span><ins>+var postboxes;(function(a){postboxes={add_postbox_toggles:function(c,b){this.init(c,b);a(&quot;.postbox h3, .postbox .handlediv&quot;).click(function(){var e=a(this).parent(&quot;.postbox&quot;),f=e.attr(&quot;id&quot;);e.toggleClass(&quot;closed&quot;);postboxes.save_state(c);if(f){if(!e.hasClass(&quot;closed&quot;)&amp;&amp;a.isFunction(postboxes.pbshow)){postboxes.pbshow(f)}else{if(e.hasClass(&quot;closed&quot;)&amp;&amp;a.isFunction(postboxes.pbhide)){postboxes.pbhide(f)}}}});a(&quot;.postbox h3 a&quot;).click(function(f){f.stopPropagation()});a(&quot;.hide-postbox-tog&quot;).click(function(){var e=a(this).val();if(a(this).attr(&quot;checked&quot;)){a(&quot;#&quot;+e).show();if(a.isFunction(postboxes.pbshow)){postboxes.pbshow(e)}}else{a(&quot;#&quot;+e).hide();if(a.isFunction(postboxes.pbhide)){postboxes.pbhide(e)}}postboxes.save_state(c)});a('.columns-prefs input[type=&quot;radio&quot;]').click(function(){var e=a(this).val(),f,g,h=a(&quot;#poststuff&quot;);if(h.length){if(e==2){h.addClass(&quot;has-right-sidebar&quot;);a(&quot;#side-sortables&quot;).addClass(&quot;temp-border&quot;)}else{if(e==1){h.removeClass(&quot;has-right-sidebar&quot;);a(&quot;#normal-sortables&quot;).append(a(&quot;#side-sortables&quot;).children(&quot;.postbox&quot;))}}}else{for(f=4;(f&gt;e&amp;&amp;f&gt;1);f--){g=a(&quot;#&quot;+d(f)+&quot;-sortables&quot;);a(&quot;#&quot;+d(f-1)+&quot;-sortables&quot;).append(g.children(&quot;.postbox&quot;));g.parent().hide()}for(f=1;f&lt;=e;f++){g=a(&quot;#&quot;+d(f)+&quot;-sortables&quot;);if(g.parent().is(&quot;:hidden&quot;)){g.addClass(&quot;temp-border&quot;).parent().show()}}a(&quot;.postbox-container:visible&quot;).css(&quot;width&quot;,98/e+&quot;%&quot;)}postboxes.save_order(c)});function d(e){switch(e){case 1:return&quot;normal&quot;;break;case 2:return&quot;side&quot;;break;case 3:return&quot;column3&quot;;break;case 4:return&quot;column4&quot;;break;default:return&quot;&quot;}}},init:function(c,b){a.extend(this,b||{});a(&quot;#wpbody-content&quot;).css(&quot;overflow&quot;,&quot;hidden&quot;);a(&quot;.meta-box-sortables&quot;).sortable({placeholder:&quot;sortable-placeholder&quot;,connectWith:&quot;.meta-box-sortables&quot;,items:&quot;.postbox&quot;,handle:&quot;.hndle&quot;,cursor:&quot;move&quot;,distance:2,tolerance:&quot;pointer&quot;,forcePlaceholderSize:true,helper:&quot;clone&quot;,opacity:0.65,start:function(f,d){a(&quot;body&quot;).css({WebkitUserSelect:&quot;none&quot;,KhtmlUserSelect:&quot;none&quot;})},stop:function(f,d){postboxes.save_order(c);d.item.parent().removeClass(&quot;temp-border&quot;);a(&quot;body&quot;).css({WebkitUserSelect:&quot;&quot;,KhtmlUserSelect:&quot;&quot;})}})},save_state:function(d){var b=a(&quot;.postbox&quot;).filter(&quot;.closed&quot;).map(function(){return this.id}).get().join(&quot;,&quot;),c=a(&quot;.postbox&quot;).filter(&quot;:hidden&quot;).map(function(){return this.id}).get().join(&quot;,&quot;);a.post(ajaxurl,{action:&quot;closed-postboxes&quot;,closed:b,hidden:c,closedpostboxesnonce:jQuery(&quot;#closedpostboxesnonce&quot;).val(),page:d})},save_order:function(c){var b,d=a(&quot;.columns-prefs input:checked&quot;).val()||0;b={action:&quot;meta-box-order&quot;,_ajax_nonce:a(&quot;#meta-box-order-nonce&quot;).val(),page_columns:d,page:c};a(&quot;.meta-box-sortables&quot;).each(function(){b[&quot;order[&quot;+this.id.split(&quot;-&quot;)[0]+&quot;]&quot;]=a(this).sortable(&quot;toArray&quot;).join(&quot;,&quot;)});a.post(ajaxurl,b)},pbshow:false,pbhide:false}}(jQuery));
</ins><span class="cx">\ No newline at end of file
</span></span></pre></div>
<a id="trunkwpadminjsslugdevjs"></a>
<div class="delfile"><h4>Deleted: trunk/wp-admin/js/slug.dev.js (12021 => 12022)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/wp-admin/js/slug.dev.js        2009-10-11 11:26:59 UTC (rev 12021)
+++ trunk/wp-admin/js/slug.dev.js        2009-10-13 10:02:42 UTC (rev 12022)
</span><span class="lines">@@ -1,44 +0,0 @@
</span><del>-function edit_permalink(post_id) {
-        var i, c = 0, e = jQuery('#editable-post-name'), revert_e = e.html(), real_slug = jQuery('#post_name'), revert_slug = real_slug.html(), b = jQuery('#edit-slug-buttons'), revert_b = b.html(), full = jQuery('#editable-post-name-full').html();
-
-        jQuery('#view-post-btn').hide();
-        b.html('&lt;a href=&quot;#&quot; class=&quot;save button&quot;&gt;'+slugL10n.save+'&lt;/a&gt; &lt;a class=&quot;cancel&quot; href=&quot;#&quot;&gt;'+slugL10n.cancel+'&lt;/a&gt;');
-        b.children('.save').click(function() {
-                var new_slug = e.children('input').val();
-                jQuery.post(slugL10n.requestFile, {
-                        action: 'sample-permalink',
-                        post_id: post_id,
-                        new_slug: new_slug,
-                        new_title: jQuery('#title').val(),
-                        samplepermalinknonce: jQuery('#samplepermalinknonce').val()}, function(data) {
-                                jQuery('#edit-slug-box').html(data);
-                                b.html(revert_b);
-                                real_slug.attr('value', new_slug);
-                                make_slugedit_clickable();
-                                jQuery('#view-post-btn').show();
-                        });
-                return false;
-        });
-        jQuery('#edit-slug-buttons .cancel').click(function() {
-                jQuery('#view-post-btn').show();
-                e.html(revert_e);
-                b.html(revert_b);
-                real_slug.attr('value', revert_slug);
-                return false;
-        });
-        for(i=0; i &lt; full.length; ++i) {
-                if ('%' == full.charAt(i)) c++;
-        }
-        slug_value = (c &gt; full.length/4)? '' : full;
-        e.html('&lt;input type=&quot;text&quot; id=&quot;new-post-slug&quot; value=&quot;'+slug_value+'&quot; /&gt;').children('input').keypress(function(e){
-                var key = e.charCode ? e.charCode : e.keyCode ? e.keyCode : 0;
-                // on enter, just save the new slug, don't save the post
-                if (13 == key) {b.children('.save').click();return false;}
-                if (27 == key) {b.children('.cancel').click();return false;}
-                real_slug.attr('value', this.value)}).focus();
-}
-
-function make_slugedit_clickable() {
-        jQuery('#editable-post-name').click(function() {jQuery('#edit-slug-buttons').children('.edit-slug').click()});
-}
-
</del></span></pre></div>
<a id="trunkwpadminjsslugjs"></a>
<div class="delfile"><h4>Deleted: trunk/wp-admin/js/slug.js (12021 => 12022)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/wp-admin/js/slug.js        2009-10-11 11:26:59 UTC (rev 12021)
+++ trunk/wp-admin/js/slug.js        2009-10-13 10:02:42 UTC (rev 12022)
</span><span class="lines">@@ -1 +0,0 @@
</span><del>-function edit_permalink(a){var d,h=0,g=jQuery(&quot;#editable-post-name&quot;),j=g.html(),m=jQuery(&quot;#post_name&quot;),n=m.html(),k=jQuery(&quot;#edit-slug-buttons&quot;),l=k.html(),f=jQuery(&quot;#editable-post-name-full&quot;).html();jQuery(&quot;#view-post-btn&quot;).hide();k.html('&lt;a href=&quot;#&quot; class=&quot;save button&quot;&gt;'+slugL10n.save+'&lt;/a&gt; &lt;a class=&quot;cancel&quot; href=&quot;#&quot;&gt;'+slugL10n.cancel+&quot;&lt;/a&gt;&quot;);k.children(&quot;.save&quot;).click(function(){var b=g.children(&quot;input&quot;).val();jQuery.post(slugL10n.requestFile,{action:&quot;sample-permalink&quot;,post_id:a,new_slug:b,new_title:jQuery(&quot;#title&quot;).val(),samplepermalinknonce:jQuery(&quot;#samplepermalinknonce&quot;).val()},function(c){jQuery(&quot;#edit-slug-box&quot;).html(c);k.html(l);m.attr(&quot;value&quot;,b);make_slugedit_clickable();jQuery(&quot;#view-post-btn&quot;).show()});return false});jQuery(&quot;#edit-slug-buttons .cancel&quot;).click(function(){jQuery(&quot;#view-post-btn&quot;).show();g.html(j);k.html(l);m.attr(&quot;value&quot;,n);return false});for(d=0;d&lt;f.length;++d){if(&quot;%&quot;==f.charAt(d)){h++}}slug_value=(h&gt;f.length/4)?&quot;&quot;:f;g.html('&lt;input type=&quot;text&quot; id=&quot;new-post-slug&quot; value=&quot;'+slug_value+'&quot; /&gt;').children(&quot;input&quot;).keypress(function(c){var b=c.charCode?c.charCode:c.keyCode?c.keyCode:0;if(13==b){k.children(&quot;.save&quot;).click();return false}if(27==b){k.children(&quot;.cancel&quot;).click();return false}m.attr(&quot;value&quot;,this.value)}).focus()}function make_slugedit_clickable(){jQuery(&quot;#editable-post-name&quot;).click(function(){jQuery(&quot;#edit-slug-buttons&quot;).children(&quot;.edit-slug&quot;).click()})};
</del><span class="cx">\ No newline at end of file
</span></span></pre></div>
<a id="trunkwpadminpagenewphp"></a>
<div class="modfile"><h4>Modified: trunk/wp-admin/page-new.php (12021 => 12022)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/wp-admin/page-new.php        2009-10-11 11:26:59 UTC (rev 12021)
+++ trunk/wp-admin/page-new.php        2009-10-13 10:02:42 UTC (rev 12022)
</span><span class="lines">@@ -12,7 +12,7 @@
</span><span class="cx"> $parent_file = 'edit-pages.php';
</span><span class="cx"> $editing = true;
</span><span class="cx"> wp_enqueue_script('autosave');
</span><del>-wp_enqueue_script('page');
</del><ins>+wp_enqueue_script('post');
</ins><span class="cx"> if ( user_can_richedit() )
</span><span class="cx">         wp_enqueue_script('editor');
</span><span class="cx"> add_thickbox();
</span></span></pre></div>
<a id="trunkwpadminpagephp"></a>
<div class="modfile"><h4>Modified: trunk/wp-admin/page.php (12021 => 12022)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/wp-admin/page.php        2009-10-11 11:26:59 UTC (rev 12021)
+++ trunk/wp-admin/page.php        2009-10-13 10:02:42 UTC (rev 12022)
</span><span class="lines">@@ -104,7 +104,7 @@
</span><span class="cx">                 exit();
</span><span class="cx">         }
</span><span class="cx"> 
</span><del>-        wp_enqueue_script('page');
</del><ins>+        wp_enqueue_script('post');
</ins><span class="cx">         if ( user_can_richedit() )
</span><span class="cx">                 wp_enqueue_script('editor');
</span><span class="cx">         add_thickbox();
</span></span></pre></div>
<a id="trunkwpadminwpadmincss"></a>
<div class="modfile"><h4>Modified: trunk/wp-admin/wp-admin.css (12021 => 12022)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/wp-admin/wp-admin.css        2009-10-11 11:26:59 UTC (rev 12021)
+++ trunk/wp-admin/wp-admin.css        2009-10-13 10:02:42 UTC (rev 12022)
</span><span class="lines">@@ -1 +1 @@
</span><del>-textarea,input,select{border-width:1px;border-style:solid;-moz-border-radius:4px;-khtml-border-radius:4px;-webkit-border-radius:4px;border-radius:4px;}input[type=&quot;checkbox&quot;],input[type=&quot;radio&quot;],input[type=&quot;image&quot;]{border:0 none;}p,ul,ol,blockquote,input,select{font-size:12px;}select option{padding:2px;}.plugins .name,#pass-strength-result.strong,#pass-strength-result.short,.button-highlighted,#quicktags #ed_strong,#ed_reply_toolbar #ed_reply_strong{font-weight:bold;}.plugins p{margin:0 4px;padding:0;}.plugins .desc p{margin:0 0 8px;}.plugins td.desc{line-height:1.5em;}.plugins .desc ul,.plugins .desc ol{margin:0 0 0 2em;}.plugins .desc ul{list-style-type:disc;}.plugins .action-links{white-space:nowrap;}.plugins .row-actions-visible{padding:0;}.widefat tbody.plugins th.check-column{padding:7px 0;}.widefat .plugins td,.widefat .plugins th{border-bottom:0 none;}#install-plugins .plugins td,#install-plugins .plugins th{border-bottom-style:solid;border-bottom-width:1px;}.plugins .inactive td,.plugins .inactive th,.plugins .active td,.plugins .active th{border-top-style:solid;border-top-width:1px;padding:5px 7px 0;}#wpbody-content .plugins .plugin-title{padding-right:12px;}.plugins .second td,.plugins .second th{border-top:0 none;padding:0 7px 5px;}.plugins-php .widefat tfoot th,.plugins-php .widefat tfoot td{border-top-style:solid;border-top-width:1px;}.import-system{font-size:16px;}.anchors{margin:10px 20px 10px 20px;}table#availablethemes{border-spacing:0;border-width:1px 0;border-style:solid none;margin:10px auto;width:100%;}td.available-theme{vertical-align:top;width:240px;margin:0;padding:20px;text-align:left;}table#availablethemes td{border-width:0 1px 1px;border-style:none solid solid;}table#availablethemes td.right,table#availablethemes td.left{border-right:0 none;border-left:0 none;}table#availablethemes td.bottom{border-bottom:0 none;}.available-theme a.screenshot{width:240px;height:180px;display:block;border-width:1px;border-style:solid;margin-bottom:10px;overflow:hidden;}.available-theme img{width:240px;}.available-theme h3{margin:15px 0 5px;}#current-theme{margin:1em 0 1.5em;}#current-theme a{border-bottom:none;}#current-theme h3{font-size:17px;font-weight:normal;margin:0;}#current-theme .theme-description{margin-top:5px;}#current-theme img{float:left;border-width:1px;border-style:solid;margin-right:1em;margin-bottom:1.5em;width:150px;}#TB_window #TB_title a.tb-theme-preview-link,#TB_window #TB_title a.tb-theme-preview-link:visited{font-weight:bold;text-decoration:none;}#TB_window #TB_title{background-color:#222;color:#cfcfcf;}.checkbox{border:none;margin:0;padding:0;}.code,code{font-family:Consolas,Monaco,Courier,monospace;}kbd,code{padding:1px 3px;margin:0 1px;font-size:11px;}.commentlist li{padding:1em 1em .2em;margin:0;border-bottom-width:1px;border-bottom-style:solid;}.commentlist li li{border-bottom:0;padding:0;}.commentlist p{padding:0;margin:0 0 .8em;}.post-categories{display:inline;margin:0;padding:0;}.post-categories li{display:inline;}.quicktags,.search{font:12px Georgia,&quot;Times New Roman&quot;,&quot;Bitstream Charter&quot;,Times,serif;}.submit{padding:1.5em 0;margin:5px 0;-moz-border-radius:0 0 3px 3px;-webkit-border-bottom-left-radius:3px;-webkit-border-bottom-right-radius:3px;-khtml-border-bottom-left-radius:3px;-khtml-border-bottom-right-radius:3px;border-bottom-left-radius:3px;border-bottom-right-radius:3px;}form p.submit a.cancel:hover{text-decoration:none;}#submitdiv h3,#pagesubmitdiv h3{margin-bottom:0!important;}#misc-publishing-actions{padding:6px 0 16px 0;}.misc-pub-section{padding:6px;border-bottom-width:1px;border-bottom-style:solid;}.misc-pub-section-last{border-bottom:0 none;}#minor-publishing-actions{padding:6px;text-align:right;}#minor-publishing{border-bottom-width:1px;border-bottom-style:solid;}#save-post{float:left;}.preview{float:right;}#major-publishing-actions{padding:6px;clear:both;border-top:none;}#minor-publishing-actions input,#major-publishing-actions input,#minor-publishing-actions .preview{min-width:80px;text-align:center;}#delete-action{line-height:25px;vertical-align:middle;text-align:left;float:left;}#publishing-action{text-align:right;float:right;line-height:23px;}#post-body #minor-publishing{padding-bottom:10px;}#post-body #misc-publishing-actions{padding:0;}#post-body .misc-pub-section{border-right-width:1px;border-right-style:solid;border-bottom:0 none;min-height:30px;float:left;max-width:32%;}#post-body .misc-pub-section-last{border-right:0;}#sticky-span{margin-left:18px;}#post-status-display,#post-visibility-display{font-weight:bold;}.side-info{margin:0;padding:4px;font-size:11px;}.side-info h5{padding-bottom:7px;font-size:14px;margin:12px 2px 5px;border-bottom-width:1px;border-bottom-style:solid;}.side-info ul{margin:0;padding-left:18px;list-style:square;}.submit input,.button,.button-primary,.button-secondary,.button-highlighted,#postcustomstuff .submit input{text-decoration:none;font-size:11px!important;line-height:14px;padding:2px 8px;cursor:pointer;border-width:1px;border-style:solid;-moz-border-radius:11px;-khtml-border-radius:11px;-webkit-border-radius:11px;border-radius:11px;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;-khtml-box-sizing:content-box;box-sizing:content-box;}a.button,a.button-primary,a.button-secondary{line-height:15px;padding:3px 10px;white-space:nowrap;-webkit-border-radius:10px;}#doaction,#doaction2,#post-query-submit{margin-right:8px;}.tablenav select[name=&quot;action&quot;],.tablenav select[name=&quot;action2&quot;]{width:120px;}.tablenav select[name=&quot;m&quot;]{width:120px;}.tablenav select#cat{width:150px;}#wpcontent select{padding:2px;height:2em;font-size:11px;}#wpcontent option{padding:2px;}#timezone_string option{margin-left:1em;}.approve{display:none;}.unapproved .approve,.spam .approve,.trash .approve{display:inline;}.unapproved .unapprove{display:none;}.narrow{width:70%;margin-bottom:40px;}.narrow p{line-height:150%;}textarea.all-options,input.all-options{width:250px;}#namediv table{width:100%;}#namediv td.first{width:10px;white-space:nowrap;}#namediv input{width:98%;}#namediv p{margin:10px 0;}#wpbody-content .metabox-holder{padding-top:10px;}#content{margin:0;width:100%;}#editorcontainer #content{padding:6px;line-height:150%;border:0 none;outline:none;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;-khtml-box-sizing:border-box;box-sizing:border-box;}#editorcontainer,#quicktags{border-style:solid;border-width:1px;border-collapse:separate;-moz-border-radius:6px 6px 0 0;-webkit-border-top-right-radius:6px;-webkit-border-top-left-radius:6px;-khtml-border-top-right-radius:6px;-khtml-border-top-left-radius:6px;border-top-right-radius:6px;border-top-left-radius:6px;}#quicktags{padding:0;margin-bottom:-3px;border-bottom-width:3px;background-image:url(&quot;images/ed-bg.gif&quot;);background-position:left top;background-repeat:repeat-x;}#quicktags #ed_toolbar{padding:2px 4px 0;}#ed_toolbar input,#ed_reply_toolbar input{margin:3px 1px 4px;line-height:18px;display:inline-block;min-width:26px;padding:2px 4px;font-size:12px;}#ed_reply_toolbar input{margin:1px 2px 1px 1px;}#quicktags #ed_link,#ed_reply_toolbar #ed_reply_link{text-decoration:underline;}#quicktags #ed_del,#ed_reply_toolbar #ed_reply_del{text-decoration:line-through;}#quicktags #ed_em,#ed_reply_toolbar #ed_reply_em{font-style:italic;}#excerpt,.attachmentlinks{margin:0;height:4em;width:98%;}#postcustomstuff table,#postcustomstuff input,#postcustomstuff textarea{border-width:1px;border-style:solid;-moz-border-radius:3px;-khtml-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;}#postcustomstuff .updatemeta,#postcustomstuff .deletemeta{margin:auto;}#postcustomstuff thead th{padding:5px 8px 8px;}#postcustom #postcustomstuff .submit,#pagecustomdiv #postcustomstuff .submit{border:0 none;float:none;padding:5px 8px;}#side-sortables #postcustom #postcustomstuff .submit,#side-sortables #pagecustomdiv #postcustomstuff .submit{padding:0 5px;}#side-sortables #postcustom #postcustomstuff td.left input,#side-sortables #pagecustomdiv #postcustomstuff td.left input{margin:3px 3px 0;}#side-sortables #postcustom #postcustomstuff #the-list textarea,#side-sortables #pagecustomdiv #postcustomstuff #the-list textarea{height:85px;margin:3px;}#postcustomstuff table{margin:0;width:100%;border-width:1px;border-style:solid;border-spacing:0;}#postcustomstuff table input,#postcustomstuff table select,#postcustomstuff table textarea{width:95%;margin:8px 0 8px 8px;}#postcustomstuff th.left,#postcustomstuff td.left{width:38%;}#postcustomstuff .submit input{width:auto;}#postcustomstuff #newmeta .submit{padding:0 8px;}#postcustomstuff table #addmetasub{width:auto;}#postcustomstuff #newmetaleft{vertical-align:top;}#postcustomstuff #newmetaleft a{padding:0 10px;text-decoration:none;}#save{width:15em;}#template div{margin-right:190px;}* html #template div{margin-right:0;}.zerosize{height:0;width:0;margin:0;border:0;padding:0;overflow:hidden;position:absolute;}* html #themeselect{padding:0 3px;height:22px;}#your-profile legend{font-family:Georgia,&quot;Times New Roman&quot;,&quot;Bitstream Charter&quot;,Times,serif;font-size:22px;}#your-profile #rich_editing{border:none;}#howto{font-size:11px;margin:0 5px;display:block;}#ajax-response.alignleft{margin-left:2em;}div.nav{height:2em;padding:7px 10px;vertical-align:text-top;margin:5px 0;}.nav .button-secondary{padding:2px 4px;}a.page-numbers{border-bottom-style:solid;border-bottom-width:2px;font-weight:bold;margin-right:1px;padding:0 2px;}p.pagenav{margin:0;display:inline;}.pagenav span{font-weight:bold;margin:0 6px;}.row-title{font-size:12px!important;font-weight:bold;}.widefat .column-comment p{margin:.6em 0;}.column-author img,.column-username img{float:left;margin-right:10px;margin-top:3px;}.tablenav a.button-secondary{display:block;margin:3px 8px 0 0;}.tablenav{clear:both;height:30px;margin:6px 0 4px;vertical-align:middle;}.tablenav .tablenav-pages{float:right;display:block;cursor:default;height:30px;line-height:30px;font-size:11px;}.tablenav .tablenav-pages a,.tablenav-pages span.current{text-decoration:none;border:none;padding:3px 6px;border-width:1px;border-style:solid;-moz-border-radius:5px;-khtml-border-radius:5px;-webkit-border-radius:5px;border-radius:5px;}.tablenav .displaying-num{margin-right:10px;font-size:12px;font-family:Georgia,&quot;Times New Roman&quot;,&quot;Bitstream Charter&quot;,Times,serif;font-style:italic;}.tablenav .actions{padding:2px 8px 0 0;}td.media-icon{text-align:center;width:80px;padding-top:8px;}td.media-icon img{max-width:80px;max-height:60px;}#update-nag{line-height:29px;font-size:12px;text-align:center;}#update-nag{border-width:1px 0;border-style:solid none;}.plugins .plugin-update{padding:0;}.plugin-update .update-message{margin:0 10px 8px 31px;font-weight:bold;}#pass-strength-result{border-style:solid;border-width:1px;float:left;margin:12px 5px 5px 1px;padding:3px 5px;text-align:center;width:200px;}.row-actions{visibility:hidden;padding:2px 0 0;}tr:hover .row-actions,div.comment-item:hover .row-actions{visibility:visible;}.row-actions-visible{padding:2px 0 0;cursor:pointer;}#wphead-info{margin:0 0 0 15px;padding-right:15px;}#user_info{float:right;font-size:12px;line-height:46px;height:46px;}#user_info p{margin:0;padding:0;line-height:46px;}#wphead{height:46px;}#wphead a,#adminmenu a,#sidemenu a,#taglist a,#catlist a,#show-settings a{text-decoration:none;}#header-logo{float:left;margin:7px 0 0 15px;}#wphead h1{font:normal 22px Georgia,&quot;Times New Roman&quot;,&quot;Bitstream Charter&quot;,Times,serif;padding:10px 8px 5px;margin:0;float:left;}#wphead h1.long-title{font:normal 18px Georgia,&quot;Times New Roman&quot;,&quot;Bitstream Charter&quot;,Times,serif;padding:12px 10px 5px;}#wphead #site-visit-button{background-repeat:repeat-x;background-position:0 0;-moz-border-radius:3px;-webkit-border-radius:3px;-khtml-border-radius:3px;border-radius:3px;cursor:pointer;display:-moz-inline-stack;display:inline-block;font-size:50%;font-style:normal;line-height:17px;margin-left:5px;padding:0 6px;vertical-align:middle;}#wphead h1 a:hover{text-decoration:none;}#wphead h1 a:hover #site-title{text-decoration:underline;}#adminmenu *{-webkit-user-select:none;-moz-user-select:none;-khtml-user-select:none;user-select:none;}#adminmenu .wp-submenu{display:none;list-style:none;padding:0;margin:0;position:relative;z-index:2;border-width:1px 0 0;border-style:solid none none;}#adminmenu .wp-submenu a{font:normal 11px/18px &quot;Lucida Grande&quot;,Verdana,Arial,&quot;Bitstream Vera Sans&quot;,sans-serif;}#adminmenu .wp-submenu li.current,#adminmenu .wp-submenu li.current a,#adminmenu .wp-submenu li.current a:hover{font-weight:bold;}#adminmenu a.menu-top,#adminmenu .wp-submenu-head{font:normal 13px/18px Georgia,&quot;Times New Roman&quot;,&quot;Bitstream Charter&quot;,Times,serif;}#adminmenu div.wp-submenu-head{display:none;}.folded #adminmenu div.wp-submenu-head,.folded #adminmenu li.wp-has-submenu div.sub-open{display:block;}.folded #adminmenu a.menu-top,.folded #adminmenu .wp-submenu,.folded #adminmenu li.wp-menu-open .wp-submenu,.folded #adminmenu div.wp-menu-toggle{display:none;}#adminmenu li.wp-menu-open .wp-submenu,.no-js #adminmenu .open-if-no-js .wp-submenu{display:block;}#adminmenu div.wp-menu-image{float:left;width:28px;height:28px;}#adminmenu li{margin:0;padding:0;cursor:pointer;}#adminmenu a{display:block;line-height:18px;padding:1px 5px 3px;}#adminmenu li.menu-top{min-height:26px;}#adminmenu a.menu-top{line-height:18px;min-width:10em;padding:5px 5px;border-width:1px 1px 0;border-style:solid solid none;}#adminmenu .wp-submenu a{margin:0;padding-left:12px;border-width:0 1px 0 0;border-style:none solid none none;}#adminmenu .menu-top-last ul.wp-submenu{border-width:0 0 1px;border-style:none none solid;}#adminmenu .wp-submenu li{padding:0;margin:0;}.folded #adminmenu li.menu-top{width:28px;height:30px;overflow:hidden;border-width:1px 1px 0;border-style:solid solid none;}#adminmenu .menu-top-first a.menu-top,.folded #adminmenu li.menu-top-first,#adminmenu .wp-submenu .wp-submenu-head{border-width:1px 1px 0;border-style:solid solid none;-moz-border-radius-topleft:6px;-moz-border-radius-topright:6px;-webkit-border-top-right-radius:6px;-webkit-border-top-left-radius:6px;-khtml-border-top-right-radius:6px;-khtml-border-top-left-radius:6px;border-top-right-radius:6px;border-top-left-radius:6px;}#adminmenu .menu-top-last a.menu-top,.folded #adminmenu li.menu-top-last{border-width:1px;border-style:solid;-moz-border-radius-bottomleft:6px;-moz-border-radius-bottomright:6px;-webkit-border-bottom-right-radius:6px;-webkit-border-bottom-left-radius:6px;-khtml-border-bottom-right-radius:6px;-khtml-border-bottom-left-radius:6px;border-bottom-right-radius:6px;border-bottom-left-radius:6px;}#adminmenu li.wp-menu-open a.menu-top-last{border-bottom:0 none;-moz-border-radius-bottomright:0;-moz-border-radius-bottomleft:0;-webkit-border-bottom-right-radius:0;-webkit-border-bottom-left-radius:0;-khtml-border-bottom-right-radius:0;-khtml-border-bottom-left-radius:0;border-bottom-right-radius:0;border-bottom-left-radius:0;}#adminmenu .wp-menu-image img{float:left;padding:8px 6px 0;opacity:.6;filter:alpha(opacity=60);}#adminmenu li.menu-top:hover .wp-menu-image img,#adminmenu li.wp-has-current-submenu .wp-menu-image img{opacity:1;filter:alpha(opacity=100);}#adminmenu li.wp-menu-separator{height:21px;padding:0;margin:0;}#adminmenu a.separator{cursor:w-resize;height:20px;padding:0;}.folded #adminmenu a.separator{cursor:e-resize;}#adminmenu .wp-menu-separator-last{height:10px;width:1px;}#adminmenu .wp-submenu .wp-submenu-head{border-width:1px;border-style:solid;padding:6px 4px 6px 10px;cursor:default;}.folded #adminmenu .wp-submenu{position:absolute;margin:-1px 0 0 28px;padding:0 8px 8px;z-index:999;border:0 none;}.folded #adminmenu .wp-submenu ul{width:140px;border-width:0 0 1px;border-style:none none solid;}.folded #adminmenu .wp-submenu li.wp-first-item{border-top:0 none;}.folded #adminmenu .wp-submenu a{padding-left:10px;}.folded #adminmenu a.wp-has-submenu{margin-left:40px;}#adminmenu li.menu-top-last .wp-submenu ul{border-width:0 0 1px;border-style:none none solid;}#adminmenu .wp-menu-toggle{width:22px;clear:right;float:right;margin:1px 0 0;height:27px;padding:1px 2px 0 0;cursor:default;}#adminmenu li.wp-has-current-submenu ul{border-bottom-width:1px;border-bottom-style:solid;}#adminmenu .wp-menu-image a{height:24px;}#adminmenu .wp-menu-image img{padding:6px 0 0 1px;}#adminmenu #awaiting-mod,#adminmenu span.update-plugins,#sidemenu li a span.update-plugins{position:absolute;font-family:Helvetica,Arial,sans-serif;font-size:7pt;font-weight:bold;margin-top:2px;margin-left:2px;-moz-border-radius:7px;-khtml-border-radius:7px;-webkit-border-radius:7px;border-radius:7px;}#adminmenu li #awaiting-mod span,#adminmenu li span.update-plugins span,#sidemenu li a span.update-plugins span{float:left;display:block;height:1.6em;line-height:1.6em;padding:0 6px;}#adminmenu li span.count-0,#sidemenu li a .count-0{display:none;}.post-com-count-wrapper{min-width:22px;font-family:Helvetica,Arial,sans-serif;}.post-com-count{height:1.3em;line-height:1.1em;display:block;text-decoration:none;padding:0 0 6px;cursor:pointer;background-position:center -80px;background-repeat:no-repeat;}.post-com-count span{font-size:9px;font-weight:bold;height:1.7em;line-height:1.70em;min-width:.7em;padding:0 6px;display:inline-block;cursor:pointer;-moz-border-radius:5px;-khtml-border-radius:5px;-webkit-border-radius:5px;border-radius:5px;}strong .post-com-count{background-position:center -55px;}.post-com-count:hover{background-position:center -3px;}.column-response .post-com-count{float:left;margin-right:5px;text-align:center;}.response-links{float:left;}#the-comment-list .attachment-80x60{padding:4px 8px;}#footer{margin-top:-45px;}#footer,#footer a{font-size:12px;font-family:Georgia,&quot;Times New Roman&quot;,&quot;Bitstream Charter&quot;,Times,serif;font-style:italic;}#footer p{margin:0;padding:15px;line-height:15px;}#footer a{text-decoration:none;}#footer a:hover{text-decoration:underline;}.form-table{border-collapse:collapse;margin-top:.5em;width:100%;margin-bottom:-8px;clear:both;}.form-table td{margin-bottom:9px;padding:8px 10px;line-height:20px;font-size:11px;}.form-table th,.form-wrap label{font-weight:normal;text-shadow:rgba(255,255,255,1) 0 1px 0;}.form-table th{vertical-align:top;text-align:left;padding:10px;width:200px;}.form-table th.th-full{width:auto;}.form-table input,.form-table textarea,#wpbody-content .describe input,#wpbody-content .describe textarea{border-width:1px;border-style:solid;}.form-table div.color-option{display:block;clear:both;margin-top:12px;}.form-table input.tog{margin-top:2px;margin-right:2px;float:left;}.form-table table.color-palette{vertical-align:bottom;float:left;margin:-12px 3px 11px;}.form-table .color-palette td{border-width:1px 1px 0;border-style:solid solid none;height:10px;line-height:20px;width:10px;}textarea.large-text{width:99%;}.form-table input.regular-text,#adduser .form-field input{width:25em;}.form-table input.small-text{width:50px;}#profile-page .form-table textarea{width:500px;margin-bottom:6px;}#profile-page .form-table #rich_editing{margin-right:5px;}.form-table .pre{padding:8px;margin:0;}.pre{white-space:pre-wrap;white-space:-moz-pre-wrap!important;white-space:-pre-wrap;white-space:-o-pre-wrap;word-wrap:break-word;}table.form-table td .updated{font-size:13px;}.form-wrap{margin:10px 0;width:97%;}.form-wrap p,.form-wrap label{font-size:11px;}.form-wrap label{display:block;padding:2px;font-size:12px;}.form-field input,.form-field textarea{border-style:solid;border-width:1px;width:95%;}p.description,.form-wrap p{margin:2px 0 5px;}p.help,p.description,span.description,.form-wrap p{font-size:12px;font-style:italic;font-family:&quot;Lucida Grande&quot;,Verdana,Arial,&quot;Bitstream Vera Sans&quot;,sans-serif;}.form-wrap .form-field{margin:0 0 10px;padding:8px;}.col-wrap h3{margin:12px 0;font-size:1.1em;}.col-wrap p.submit{margin-top:-10px;}.tagcloud{width:97%;margin:0 0 40px;text-align:justify;}.tagcloud h3{margin:2px 0 12px;}#post-body #normal-sortables{min-height:50px;}#post-body #advanced-sortables{min-height:20px;}.postbox{position:relative;min-width:255px;width:99.5%;}#trackback_url{width:99%;}#normal-sortables .postbox .submit{background:transparent none;border:0 none;float:right;padding:0 12px;margin:0;}#normal-sortables .postbox #replyrow .submit{float:none;margin:0;padding:3px 7px;}#side-sortables .submitbox .submit input,#side-sortables .submitbox .submit .preview,#side-sortables .submitbox .submit a.preview:hover{border:0 none;}#side-sortables .inside-submitbox .insidebox,.stuffbox .insidebox{margin:11px 0;}#side-sortables .comments-box,#normal-sortables .comments-box{border:0 none;}#side-sortables .comments-box thead th,#normal-sortables .comments-box thead th{background:transparent;padding:0 7px 4px;font-style:italic;}#commentsdiv img.waiting{padding-left:5px;vertical-align:middle;}#post-body .tagsdiv #newtag{margin-right:5px;width:16em;}#side-sortables input#post_password{width:94%;}#side-sortables .tagsdiv #newtag{width:68%;}#post-status-info{border-width:0 1px 1px;border-style:none solid solid;width:100%;-moz-border-radius:0 0 6px 6px;-webkit-border-bottom-left-radius:6px;-webkit-border-bottom-right-radius:6px;-khtml-border-bottom-left-radius:6px;-khtml-border-bottom-right-radius:6px;border-bottom-left-radius:6px;border-bottom-right-radius:6px;}#post-status-info td{font-size:11px;}.autosave-info{padding:2px 15px 2px 2px;text-align:right;}#editorcontent #post-status-info{border:none;}#post-body .wp_themeSkin .mceStatusbar a.mceResize{display:block;background:transparent url(images/resize.gif) no-repeat scroll right bottom;width:12px;cursor:se-resize;margin:0 2px;position:relative;top:22px;}#pagesubmitdiv div.inside,#linksubmitdiv div.inside,div.inside{padding:0;margin:0;}#comment-status-radio p{margin:3px 0 5px;}#comment-status-radio input{margin:2px 3px 5px 0;vertical-align:middle;}#comment-status-radio label{padding:5px 0;}.tagchecklist{margin-left:10px;font-size:12px;overflow:auto;}.tagchecklist strong{margin-left:-8px;position:absolute;}.tagchecklist span{margin-right:25px;display:block;float:left;font-size:11px;line-height:1.8em;white-space:nowrap;cursor:default;}.tagchecklist span a{margin:6px 0 0 -9px;cursor:pointer;width:10px;height:10px;display:block;float:left;text-indent:-9999px;overflow:hidden;position:absolute;}.howto{font-style:italic;display:block;font-family:&quot;Lucida Grande&quot;,Verdana,Arial,&quot;Bitstream Vera Sans&quot;,sans-serif;}.ac_results{padding:0;margin:0;list-style:none;position:absolute;z-index:10000;display:none;border-width:1px;border-style:solid;}.ac_results li{padding:2px 5px;white-space:nowrap;text-align:left;}.ac_over{cursor:pointer;}.ac_match{text-decoration:underline;}#poststuff h2{margin-top:20px;font-size:1.5em;margin-bottom:15px;padding:0 0 3px;clear:left;}.widget .widget-top,.postbox h3{cursor:move;-webkit-user-select:none;-moz-user-select:none;-khtml-user-select:none;user-select:none;}.postbox .hndle span{padding:6px 0;}.postbox .hndle{cursor:move;}.hndle a{font-size:11px;font-weight:normal;}#dashboard-widgets .meta-box-sortables{margin:0 5px;}.postbox .handlediv{float:right;width:23px;height:26px;}.sortable-placeholder{border-width:1px;border-style:dashed;margin-bottom:20px;}#poststuff h3,.metabox-holder h3{font-size:12px;font-weight:bold;padding:7px 9px;margin:0;line-height:1;}.widget,.postbox,.stuffbox{margin-bottom:20px;border-width:1px;border-style:solid;line-height:1;-moz-border-radius:6px;-khtml-border-radius:6px;-webkit-border-radius:6px;border-radius:6px;}.widget .widget-top,.postbox h3,.postbox h3,.stuffbox h3{-moz-border-radius:6px 6px 0 0;-webkit-border-top-right-radius:6px;-webkit-border-top-left-radius:6px;-khtml-border-top-right-radius:6px;-khtml-border-top-left-radius:6px;border-top-right-radius:6px;border-top-left-radius:6px;}.postbox.closed h3{-moz-border-radius-bottomleft:4px;-webkit-border-bottom-left-radius:4px;-khtml-border-bottom-left-radius:4px;border-bottom-left-radius:4px;-moz-border-radius-bottomright:4px;-webkit-border-bottom-right-radius:4px;-khtml-border-bottom-right-radius:4px;border-bottom-right-radius:4px;}.postbox table.form-table{margin-bottom:0;}.postbox input[type=&quot;text&quot;],.postbox textarea,.stuffbox input[type=&quot;text&quot;],.stuffbox textarea{border-width:1px;border-style:solid;}#poststuff .inside,#poststuff .inside p{font-size:11px;margin:6px;}#poststuff .inside .submitbox p{margin:1em 0;}#post-visibility-select{line-height:1.5em;margin-top:3px;}#poststuff #submitdiv .inside{margin:0;}#titlediv,#poststuff .postarea{margin-bottom:20px;}#titlediv{margin-bottom:20px;}#titlediv label{cursor:text;}#titlediv div.inside{margin:0;}#poststuff #titlewrap{border:0;padding:0;}#titlediv #title{padding:3px 4px;border-width:1px;border-style:solid;-moz-border-radius:6px;-khtml-border-radius:6px;-webkit-border-radius:6px;border-radius:6px;font-size:1.7em;width:100%;outline:none;}#poststuff .inside-submitbox,#side-sortables .inside-submitbox{margin:0 3px;font-size:11px;}input#link_description,input#link_url{width:98%;}#pending{background:0 none;border:0 none;padding:0;font-size:11px;margin-top:-1px;}#edit-slug-box{height:1em;margin-top:8px;padding:0 7px;}#editable-post-name-full{display:none;}#editable-post-name input{width:16em;}.postarea h3 label{float:left;}.postarea #add-media-button{float:right;margin:7px 0 0;position:relative;right:10px;}#poststuff #editor-toolbar{height:30px;}.wp_themeSkin tr.mceFirst td.mceToolbar{border-width:0 0 1px;border-style:none none solid;}#edButtonPreview,#edButtonHTML{height:18px;margin:5px 5px 0 0;padding:4px 5px 2px;float:right;cursor:pointer;border-width:1px;border-style:solid;-moz-border-radius:3px 3px 0 0;-webkit-border-top-right-radius:3px;-webkit-border-top-left-radius:3px;-khtml-border-top-right-radius:3px;-khtml-border-top-left-radius:3px;border-top-right-radius:3px;border-top-left-radius:3px;}.js .theEditor{color:white;}#poststuff #edButtonHTML{margin-right:15px;}#media-buttons{cursor:default;padding:8px 8px 0;}#media-buttons a{cursor:pointer;padding:0 0 5px 10px;}#media-buttons img,#submitpost #ajax-loading{vertical-align:middle;}.submitbox .submit{text-align:left;padding:12px 10px 10px;font-size:11px;}.submitbox .submitdelete{border-bottom-width:1px;border-bottom-style:solid;text-decoration:none;padding:1px 2px;}.inside-submitbox #post_status{margin:2px 0 2px -2px;}.submitbox .submit a:hover{border-bottom-width:1px;border-bottom-style:solid;}.submitbox .submit input{margin-bottom:8px;margin-right:4px;padding:6px;}#post-status-select{line-height:2.5em;margin-top:3px;}#category-adder{margin-left:120px;padding:4px 0;}#category-adder h4{margin:0 0 8px;}#side-sortables #category-adder{margin:0;}#post-body #category-add input,#category-add select{width:30%;}#side-sortables #category-add input{width:94%;}#side-sortables #category-add select{width:100%;}#category-add input#category-add-sumbit{width:auto;}#post-body ul#category-tabs{float:left;width:120px;text-align:right;margin:0 -120px 0 5px;padding:0;}#post-body ul#category-tabs li{padding:8px;}#post-body ul#category-tabs li.tabs{-moz-border-radius:3px 0 0 3px;-webkit-border-top-left-radius:3px;-webkit-border-bottom-left-radius:3px;-khtml-border-top-left-radius:3px;-khtml-border-bottom-left-radius:3px;border-top-left-radius:3px;border-bottom-left-radius:3px;}#post-body ul#category-tabs li.tabs a{font-weight:bold;text-decoration:none;}#categorydiv div.tabs-panel,#linkcategorydiv div.tabs-panel{height:150px;overflow:auto;padding:.5em .9em;border-style:solid;border-width:1px;}#post-body #categorydiv div.tabs-panel,#post-body #linkcategorydiv div.tabs-panel{margin:0 5px 0 125px;}#side-sortables #category-tabs li{display:inline;padding-right:8px;}#side-sortables #category-tabs a{text-decoration:none;}#side-sortables #category-tabs{margin-bottom:3px;}#categorydiv ul,#linkcategorydiv ul{list-style:none;padding:0;margin:0;}#categorydiv ul.categorychecklist ul,#linkcategorydiv ul.categorychecklist ul{margin-left:18px;}ul.categorychecklist li{margin:0;padding:0;line-height:19px;}#category-adder h4{margin-top:4px;margin-bottom:0;}#categorydiv .tabs-panel{border-width:3px;border-style:solid;}ul#category-tabs{margin-top:12px;}ul#category-tabs li.tabs{border-style:solid solid none;border-width:1px 1px 0;}#post-body #category-tabs li.tabs{border-style:solid none solid solid;border-width:1px 0 1px 1px;margin-right:-1px;}ul#category-tabs li{padding:5px 8px;-moz-border-radius:3px 3px 0 0;-webkit-border-top-left-radius:3px;-webkit-border-top-right-radius:3px;-khtml-border-top-left-radius:3px;-khtml-border-top-right-radius:3px;border-top-left-radius:3px;border-top-right-radius:3px;}form#tags-filter{position:relative;}p.search-box{float:right;margin:-5px 0 0;}.screen-per-page{width:3em;}#posts-filter fieldset{float:left;margin:0 1.5ex 1em 0;padding:0;}#posts-filter fieldset legend{padding:0 0 .2em 1px;}td.post-title strong,td.plugin-title strong{display:block;margin-bottom:.2em;}td.post-title p,td.plugin-title p{margin:6px 0;}td.plugin-title{white-space:nowrap;}.wp-hidden-children .wp-hidden-child,.ui-tabs-hide,#codepress-off{display:none;}.commentlist .avatar{vertical-align:text-top;}.defaultavatarpicker .avatar{margin:2px 0;vertical-align:middle;}body.wp-admin{min-width:785px;}.view-switch{float:right;margin:6px 8px 0;}.view-switch a{text-decoration:none;}.filter{float:left;margin:-5px 0 0 10px;}.filter .subsubsub{margin-left:-10px;margin-top:13px;}#the-comment-list td.comment p.comment-author{margin-top:0;margin-left:0;}#the-comment-list p.comment-author img{float:left;margin-right:8px;}#the-comment-list p.comment-author strong a{border:none;}#the-comment-list td{vertical-align:top;}#the-comment-list td.comment{word-wrap:break-word;}#the-comment-list .check-column{padding-top:8px;}#templateside ul li a{text-decoration:none;}.indicator-hint{padding-top:8px;}#display_name{width:15em;}.tablenav .delete{margin-right:20px;}td.action-links,th.action-links{text-align:right;}table.diff{width:100%;}table.diff col.content{width:50%;}table.diff tr{background-color:transparent;}table.diff td,table.diff th{padding:.5em;font-family:Consolas,Monaco,Courier,monospace;border:none;}table.diff .diff-deletedline del,table.diff .diff-addedline ins{text-decoration:none;}#wp-word-count{display:block;padding:2px 7px;}fieldset{border:0;padding:0;margin:0;}.tool-box{margin:15px 0 35px;}.tool-box .buttons{margin:15px 0;}.tool-box .title{margin:8px 0;font:18px/24px Georgia,&quot;Times New Roman&quot;,&quot;Bitstream Charter&quot;,Times,serif;}.pressthis a{font-size:1.2em;}#wp_editbtns,#wp_gallerybtns{padding:2px;position:absolute;display:none;z-index:999998;}#wp_editimgbtn,#wp_delimgbtn,#wp_editgallery,#wp_delgallery{margin:2px;padding:2px;border-width:1px;border-style:solid;-moz-border-radius:3px;-khtml-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;}.settings-toggle{text-align:right;margin:5px 7px 15px 0;font-size:12px;}.settings-toggle h3{margin:0;}#timestampdiv select{height:20px;line-height:20px;padding:0;}#jj,#hh,#mn{width:2em;padding:1px;font-size:12px;}#aa{width:3.4em;padding:1px;font-size:12px;}.curtime #timestamp{background-repeat:no-repeat;background-position:left top;padding-left:18px;}#timestampdiv{padding-top:5px;line-height:23px;}#timestampdiv p{margin:8px 0 6px;}#timestampdiv input{border-width:1px;border-style:solid;}#sidemenu{margin:-30px 15px 0 315px;list-style:none;position:relative;float:right;padding-left:10px;font-size:12px;}#sidemenu a{padding:0 7px;display:block;float:left;line-height:28px;border-top-width:1px;border-top-style:solid;border-bottom-width:1px;border-bottom-style:solid;}#sidemenu li{display:inline;line-height:200%;list-style:none;text-align:center;white-space:nowrap;margin:0;padding:0;}#sidemenu a.current{font-weight:normal;padding-left:6px;padding-right:6px;-moz-border-radius:4px 4px 0 0;-webkit-border-top-left-radius:4px;-webkit-border-top-right-radius:4px;-khtml-border-top-left-radius:4px;-khtml-border-top-right-radius:4px;border-top-left-radius:4px;border-top-right-radius:4px;border-width:1px;border-style:solid;}#sidemenu{margin:-30px 15px 0 315px;list-style:none;position:relative;float:right;padding-left:10px;font-size:12px;}#sidemenu a{padding:0 7px;display:block;float:left;line-height:28px;border-top-width:1px;border-top-style:solid;border-bottom-width:1px;border-bottom-style:solid;}#sidemenu li a .count-0{display:none;}#replyrow{font-size:11px;}#replyrow input{border-width:1px;border-style:solid;}#replyrow td{padding:2px;}#replyrow #editorcontainer{border:0 none;}#replysubmit{margin:0;padding:3px 7px;}#replysubmit img.waiting,.inline-edit-save img.waiting,#commentstatusdiv img.waiting{padding:2px 10px 0;vertical-align:top;}#replysubmit .button{margin-right:5px;}#replyrow #editor-toolbar{display:none;}#replyhead{font-size:12px;font-weight:bold;padding:2px 10px 4px;}#edithead .inside{float:left;padding:3px 0 2px 5px;margin:0;text-align:center;font-size:11px;}#edithead .inside input{width:180px;font-size:11px;}#edithead label{padding:2px 0;}#replycontainer{padding:5px;border:0 none;height:120px;overflow:hidden;position:relative;}#replycontent{resize:none;margin:0;width:100%;height:100%;padding:0;line-height:150%;border:0 none;outline:none;font-size:12px;}#replyrow #ed_reply_toolbar{margin:0;padding:2px 3px;}#screen-meta{position:relative;clear:both;}#screen-meta-links{margin:0 9px 0 0;}#screen-meta .screen-reader-text{visibility:hidden;}#screen-options-link-wrap,#contextual-help-link-wrap{float:right;background:transparent url(images/screen-options-left.gif) no-repeat 0 0;font-family:&quot;Lucida Grande&quot;,Verdana,Arial,&quot;Bitstream Vera Sans&quot;,sans-serif;height:22px;padding:0;margin:0 6px 0 0;}#screen-meta a.show-settings{text-decoration:none;z-index:1;padding:0 16px 0 6px;height:22px;line-height:22px;font-size:10px;display:block;background-repeat:no-repeat;background-position:right bottom;}#screen-meta a.show-settings{background-image:url(images/screen-options-right.gif);}#screen-meta a.show-settings:hover{text-decoration:none;}#screen-options-wrap h5,#contextual-help-wrap h5{margin:8px 0;font-size:13px;}#screen-options-wrap,#contextual-help-wrap{border-style:none solid solid;border-top:0 none;border-width:0 1px 1px;margin:0 15px;padding:8px 12px 12px;-moz-border-radius:0 0 0 4px;-webkit-border-bottom-left-radius:4px;-khtml-border-bottom-left-radius:4px;border-bottom-left-radius:4px;}.metabox-prefs label{padding-right:15px;white-space:nowrap;line-height:30px;}.metabox-prefs label input{margin:0 5px 0 2px;}.metabox-prefs label a{display:none;}tr.inline-edit-row td{padding:0 .5em;}#wpbody-content .inline-edit-row fieldset{font-size:12px;float:left;margin:0;padding:0;width:100%;}#wpbody-content .inline-edit-row fieldset .inline-edit-col{padding:0 .5em;}#wpbody-content .quick-edit-row-page fieldset.inline-edit-col-right .inline-edit-col{border-width:0 0 0 1px;border-style:none none none solid;}#wpbody-content .quick-edit-row-post .inline-edit-col-left{width:40%;}#wpbody-content .quick-edit-row-post .inline-edit-col-right{width:39%;}#wpbody-content .inline-edit-row-post .inline-edit-col-center{width:20%;}#wpbody-content .quick-edit-row-page .inline-edit-col-left{width:50%;}#wpbody-content .quick-edit-row-page .inline-edit-col-right,#wpbody-content .bulk-edit-row-post .inline-edit-col-right{width:49%;}#wpbody-content .bulk-edit-row .inline-edit-col-left{width:30%;}#wpbody-content .bulk-edit-row-page .inline-edit-col-right{width:69%;}#wpbody-content .bulk-edit-row .inline-edit-col-bottom{float:right;width:69%;}#wpbody-content .inline-edit-row-page .inline-edit-col-right,#owpbody-content .bulk-edit-row-post .inline-edit-col-right{margin-top:27px;}.inline-edit-row fieldset .inline-edit-group{clear:both;}.inline-edit-row fieldset .inline-edit-group:after{content:&quot;.&quot;;display:block;height:0;clear:both;visibility:hidden;}.inline-edit-row p.submit{clear:both;padding:.5em;margin:.5em 0 0;}.inline-edit-row span.error{line-height:22px;margin:0 15px;padding:3px 5px;}.inline-edit-row h4{margin:.2em 0;padding:0;line-height:23px;}.inline-edit-row fieldset span.title,.inline-edit-row fieldset span.checkbox-title{margin:0;padding:0;line-height:27px;}.inline-edit-row fieldset label,.inline-edit-row fieldset span.inline-edit-categories-label{display:block;margin:.2em 0;}.inline-edit-row fieldset label.inline-edit-tags{margin-top:0;}.inline-edit-row fieldset label.inline-edit-tags span.title{margin:.2em 0;}.inline-edit-row fieldset label span.title{display:block;float:left;width:5em;}.inline-edit-row fieldset label span.input-text-wrap{display:block;margin-left:5em;}.quick-edit-row-post fieldset.inline-edit-col-right label span.title{width:auto;padding-right:.5em;}.inline-edit-row .input-text-wrap input[type=text]{width:100%;}.inline-edit-row fieldset label input[type=checkbox]{vertical-align:text-bottom;}.inline-edit-row fieldset label textarea{width:100%;height:4em;}#wpbody-content .bulk-edit-row fieldset .inline-edit-group label{max-width:50%;}#wpbody-content .quick-edit-row fieldset .inline-edit-group label.alignleft:first-child{margin-right:.5em;}.inline-edit-row h4{text-transform:uppercase;}.inline-edit-row fieldset span.title,.inline-edit-row fieldset span.checkbox-title{font-family:Georgia,&quot;Times New Roman&quot;,&quot;Bitstream Charter&quot;,Times,serif;font-style:italic;line-height:1.8em;}.inline-edit-row fieldset input[type=&quot;text&quot;],.inline-edit-row fieldset textarea{border-style:solid;border-width:1px;}.inline-edit-row fieldset .inline-edit-date{float:left;}.inline-edit-row fieldset input[name=jj],.inline-edit-row fieldset input[name=hh],.inline-edit-row fieldset input[name=mn]{font-size:12px;width:2.1em;}.inline-edit-row fieldset input[name=aa]{font-size:12px;width:3.5em;}.inline-edit-row fieldset label input.inline-edit-password-input{width:8em;}.inline-edit-row .catshow,.inline-edit-row .cathide{cursor:pointer;}ul.cat-checklist{height:12em;border-style:solid;border-width:1px;overflow-y:scroll;padding:0 5px;margin:0;}#bulk-titles{display:block;height:12em;border-style:solid;border-width:1px;overflow-y:scroll;padding:0 5px;margin:0 0 5px;}.inline-edit-row fieldset ul.cat-checklist li,.inline-edit-row fieldset ul.cat-checklist input{margin:0;}.inline-edit-row fieldset ul.cat-checklist label,.inline-edit-row .catshow,.inline-edit-row .cathide,.inline-edit-row #bulk-titles div{font-family:&quot;Lucida Grande&quot;,Verdana,Arial,&quot;Bitstream Vera Sans&quot;,sans-serif;font-style:normal;font-size:11px;}table .inline-edit-row fieldset ul.cat-hover{height:auto;max-height:30em;overflow-y:auto;position:absolute;}.inline-edit-row fieldset label input.inline-edit-menu-order-input{width:3em;}.inline-edit-row fieldset label input.inline-edit-slug-input{width:75%;}.quick-edit-row-post fieldset label.inline-edit-status{float:left;}#bulk-titles{line-height:140%;}#bulk-titles div{margin:.2em .3em;}#bulk-titles div a{cursor:pointer;display:block;float:left;height:10px;margin:3px 3px 0 -2px;overflow:hidden;position:relative;text-indent:-9999px;width:10px;}#wpbody-content #media-items .describe{border-collapse:collapse;width:100%;border-top-style:solid;border-top-width:1px;clear:both;cursor:default;padding:5px;}#wpbody-content .describe th{vertical-align:top;text-align:left;padding:10px;width:140px;}#wpbody-content .describe .media-item-info tr{background-color:transparent;}#wpbody-content .describe .media-item-info td{padding:4px 10px 0;}.describe .media-item-info .A1B1{padding:0 15px 8px 0;}#wpbody-content .filename{padding:0 10px;}#wpbody-content .media-item .thumbnail{max-height:128px;max-width:128px;}.media-upload-form td label{margin-right:6px;margin-left:2px;}.media-upload-form .align .field label{display:inline;padding:0 0 0 22px;margin:0 1em 0 0;font-weight:bold;}.media-upload-form tr.image-size label{margin:0 0 0 3px;font-weight:bold;}.media-upload-form th.label label{font-weight:bold;margin:.5em;font-size:13px;}.media-upload-form th.label label span{padding:0 5px;}abbr.required{border:medium none;text-decoration:none;}#wpbody-content .describe input[type=&quot;text&quot;],#wpbody-content .describe textarea{width:460px;}#wpbody-content .describe p.help{margin:0;padding:0 0 0 5px;}.describe-toggle-on,.describe-toggle-off{display:block;line-height:36px;float:right;margin-right:20px;}.describe-toggle-off{display:none;}#wpbody-content .media-item{border-bottom-style:solid;border-bottom-width:1px;min-height:36px;position:relative;width:100%;}#wpbody-content .media-single .media-item{border-bottom-style:none;border-bottom-width:0;}#wpbody-content #media-items{border-style:solid solid none;border-width:1px;width:670px;}#wpbody-content #media-items .filename{line-height:36px;overflow:hidden;}.media-item .pinkynail{float:left;margin:2px;max-width:40px;max-height:32px;}.media-item .startopen,.media-item .startclosed{display:none;}.media-item .original{position:relative;height:34px;text-align:center;}.media-item .percent{font-weight:bold;}.crunching{display:block;line-height:32px;text-align:right;margin-right:5px;}button.dismiss{position:absolute;top:7px;right:5px;z-index:4;width:8em;}.file-error{float:left;font-weight:bold;padding:10px;}.progress{position:relative;margin-bottom:-36px;height:36px;}.bar{width:0;height:100%;border-right-width:3px;border-right-style:solid;}#media-items a.delete,#media-items a.del-link{padding:1px 4px 2px;}.upload-php .fixed .column-parent{width:25%;}.find-box{width:500px;height:300px;overflow:hidden;padding:33px 5px 40px;position:absolute;z-index:1000;}.find-box-head{cursor:move;font-weight:bold;height:2em;line-height:2em;padding:1px 12px;position:absolute;top:5px;width:100%;}.find-box-inside{overflow:auto;width:100%;height:100%;}.find-box-search{padding:12px;border-width:1px;border-style:none none solid;}#find-posts-response{margin:8px 0;padding:0 1px;}#find-posts-response table{width:100%;}#find-posts-response .found-radio{padding:5px 0 0 8px;width:15px;}.find-box-buttons{width:480px;margin:8px;}.find-box-search label{padding-right:6px;}.find-box #resize-se{position:absolute;right:1px;bottom:1px;}#favorite-actions{float:right;margin:11px 12px 0;min-width:130px;position:relative;}#favorite-first{-moz-border-radius:12px;-khtml-border-radius:12px;-webkit-border-radius:12px;border-radius:12px;line-height:15px;padding:3px 30px 4px 12px;border-width:1px;border-style:solid;}#favorite-inside{margin:0;padding:0 1px 6px 1px;border-width:1px;border-style:solid;position:absolute;z-index:11;display:none;-moz-border-radius:0 0 12px 12px;-webkit-border-bottom-right-radius:12px;-webkit-border-bottom-left-radius:12px;-khtml-border-bottom-right-radius:12px;-khtml-border-bottom-left-radius:12px;border-bottom-right-radius:12px;border-bottom-left-radius:12px;}#favorite-actions a{display:block;text-decoration:none;font-size:11px;}#favorite-inside a{padding:3px 5px 3px 10px;}#favorite-toggle{height:22px;position:absolute;right:0;top:1px;width:28px;}#favorite-actions .slide-down{-moz-border-radius:12px 12px 0 0;-webkit-border-bottom-right-radius:0;-webkit-border-bottom-left-radius:0;-khtml-border-bottom-right-radius:0;-khtml-border-bottom-left-radius:0;border-bottom-right-radius:0;border-bottom-left-radius:0;border-bottom-width:1px;border-bottom-style:solid;}#utc-time,#local-time{padding-left:25px;font-style:italic;font-family:&quot;Lucida Grande&quot;,Verdana,Arial,&quot;Bitstream Vera Sans&quot;,sans-serif;}ul#dismissed-updates{display:none;}form.upgrade{margin-top:8px;}form.upgrade .hint{font-style:italic;font-size:85%;margin:-0.5em 0 2em 0;}#poststuff .inside .the-tagcloud{margin:5px 0 10px;padding:8px;border-width:1px;border-style:solid;line-height:1.8em;word-spacing:3px;-moz-border-radius:6px;-khtml-border-radius:6px;-webkit-border-radius:6px;border-radius:6px;}br.clear{height:2px;line-height:2px;}.swfupload{margin:5px 10px;vertical-align:middle;}table.fixed{table-layout:fixed;}.fixed .column-rating,.fixed .column-visible{width:8%;}.fixed .column-date,.fixed .column-parent,.fixed .column-links{width:10%;}.fixed .column-response,.fixed .column-author,.fixed .column-categories,.fixed .column-tags,.fixed .column-rel,.fixed .column-role{width:15%;}.fixed .column-comments{width:4em;padding-top:8px;}.fixed .column-slug{width:25%;}.fixed .column-posts{width:10%;}.fixed .column-icon{width:80px;}#commentstatusdiv .fixed .column-author,#comments-form .fixed .column-author,#commentstatusdiv .fixed .column-date{width:20%;}.widefat th,.widefat td{overflow:hidden;}.widefat td p{margin:2px 0 .8em;}table .vers,table .column-visible,table .column-rating{text-align:center;}.icon32{float:left;height:36px;margin:14px 6px 0 0;width:36px;}.key-labels label{line-height:24px;}.subtitle{font-size:.75em;line-height:1;padding-left:25px;}ol{list-style-type:decimal;margin-left:2em;}.postbox-container{float:left;padding-right:.5%;}.postbox-container .meta-box-sortables{min-height:300px;}.temp-border{border:1px dotted #ccc;}.columns-prefs label{padding:0 5px;}.theme-install-php h4,.plugin-install-php h4{margin:2.5em 0 8px;}p.install-help{margin:8px 0;font-style:italic;}p.popular-tags{-moz-border-radius:8px;-khtml-border-radius:8px;-webkit-border-radius:8px;border-radius:8px;border-width:1px;border-style:solid;line-height:2em;padding:8px 12px 12px;text-align:justify;}p.popular-tags a{padding:0 3px;}.stuffbox .editcomment{clear:none;}.ajax-feedback{visibility:hidden;vertical-align:bottom;}.tagsdiv .newtag{width:180px;}.tagsdiv .the-tags{display:block;height:60px;margin:0 auto;overflow:auto;width:260px;}#post-body-content .tagsdiv .the-tags{margin:0 5px;}label,#your-profile label+a{vertical-align:middle;}#misc-publishing-actions label{vertical-align:baseline;}.plugin-update-tr .update-message{margin:5px;padding:3px 5px;border-width:1px;border-style:solid;-moz-border-radius:5px;-khtml-border-radius:5px;-webkit-border-radius:5px;border-radius:5px;}.add-new-h2{font-style:normal;margin:0 6px;position:relative;top:-3px;}.describe .image-editor{vertical-align:top;}.imgedit-wrap{position:relative;}.imgedit-settings p{margin:8px 0;}.describe .imgedit-wrap table td{vertical-align:top;padding-top:0;}.imgedit-wrap p,.describe .imgedit-wrap table td{font-size:11px;line-height:18px;}.describe .imgedit-wrap table td.imgedit-settings{padding:0 5px;}td.imgedit-settings input{vertical-align:middle;}.imgedit-wait{position:absolute;top:0;background:#FFF url(images/wpspin_light.gif) no-repeat scroll 22px 10px;opacity:.7;filter:alpha(opacity=70);width:100%;height:500px;display:none;}.media-disabled,.imgedit-settings .disabled{color:grey;}.imgedit-wait-spin{padding:0 4px 4px;vertical-align:bottom;visibility:hidden;}.imgedit-menu{margin:0 0 12px;min-width:315px;}.imgedit-menu div{float:left;width:34px;height:34px;-moz-border-radius:4px;-khtml-border-radius:4px;-webkit-border-radius:4px;border-radius:4px;border-width:1px;border-style:solid;}.imgedit-crop-wrap{position:relative;}.imgedit-crop{background:transparent url(images/imgedit.gif) no-repeat scroll -62px 2px;margin:0 8px 0 0;}.imgedit-rleft{background:transparent url(images/imgedit.gif) no-repeat scroll -31px 2px;margin:0 3px;}.imgedit-rright{background:transparent url(images/imgedit.gif) no-repeat scroll 1px 2px;margin:0 8px 0 3px;}.imgedit-fliph{background:transparent url(images/imgedit.gif) no-repeat scroll -127px 2px;margin:0 3px;}.imgedit-flipv{background:transparent url(images/imgedit.gif) no-repeat scroll -95px 3px;margin:0 8px 0 3px;}.imgedit-undo{background:transparent url(images/imgedit.gif) no-repeat scroll -161px 2px;margin:0 3px;}.imgedit-redo{background:transparent url(images/imgedit.gif) no-repeat scroll -195px 2px;margin:0 8px 0 3px;}.imgedit-applyto img{margin:0 8px 0 0;}.imgedit-group-top{margin:5px 0;}.imgedit-applyto .imgedit-label{padding:2px 0 0;display:block;}.imgedit-help{display:none;font-style:italic;margin-bottom:8px;}.imgedit-help ul li{font-size:11px;}a.imgedit-help-toggle{text-decoration:none;}#wpbody-content .imgedit-response div{width:600px;margin:8px;}.form-table td.imgedit-response{padding:0;}.imgedit-submit{margin:8px 0;}.imgedit-submit-btn{margin-left:20px;}.imgedit-wrap .nowrap{white-space:nowrap;}span.imgedit-scale-warn{color:red;font-size:20px;font-style:normal;visibility:hidden;vertical-align:middle;}.imgedit-group{border-width:1px;border-style:solid;-moz-border-radius:8px;-khtml-border-radius:8px;-webkit-border-radius:8px;border-radius:8px;margin-bottom:8px;padding:2px 10px;}
</del><span class="cx">\ No newline at end of file
</span><ins>+textarea,input,select{border-width:1px;border-style:solid;-moz-border-radius:4px;-khtml-border-radius:4px;-webkit-border-radius:4px;border-radius:4px;}input[type=&quot;checkbox&quot;],input[type=&quot;radio&quot;],input[type=&quot;image&quot;]{border:0 none;}p,ul,ol,blockquote,input,select{font-size:12px;}select option{padding:2px;}.plugins .name,#pass-strength-result.strong,#pass-strength-result.short,.button-highlighted,#quicktags #ed_strong,#ed_reply_toolbar #ed_reply_strong{font-weight:bold;}.plugins p{margin:0 4px;padding:0;}.plugins .desc p{margin:0 0 8px;}.plugins td.desc{line-height:1.5em;}.plugins .desc ul,.plugins .desc ol{margin:0 0 0 2em;}.plugins .desc ul{list-style-type:disc;}.plugins .action-links{white-space:nowrap;}.plugins .row-actions-visible{padding:0;}.widefat tbody.plugins th.check-column{padding:7px 0;}.widefat .plugins td,.widefat .plugins th{border-bottom:0 none;}#install-plugins .plugins td,#install-plugins .plugins th{border-bottom-style:solid;border-bottom-width:1px;}.plugins .inactive td,.plugins .inactive th,.plugins .active td,.plugins .active th{border-top-style:solid;border-top-width:1px;padding:5px 7px 0;}#wpbody-content .plugins .plugin-title{padding-right:12px;}.plugins .second td,.plugins .second th{border-top:0 none;padding:0 7px 5px;}.plugins-php .widefat tfoot th,.plugins-php .widefat tfoot td{border-top-style:solid;border-top-width:1px;}.import-system{font-size:16px;}.anchors{margin:10px 20px 10px 20px;}table#availablethemes{border-spacing:0;border-width:1px 0;border-style:solid none;margin:10px auto;width:100%;}td.available-theme{vertical-align:top;width:240px;margin:0;padding:20px;text-align:left;}table#availablethemes td{border-width:0 1px 1px;border-style:none solid solid;}table#availablethemes td.right,table#availablethemes td.left{border-right:0 none;border-left:0 none;}table#availablethemes td.bottom{border-bottom:0 none;}.available-theme a.screenshot{width:240px;height:180px;display:block;border-width:1px;border-style:solid;margin-bottom:10px;overflow:hidden;}.available-theme img{width:240px;}.available-theme h3{margin:15px 0 5px;}#current-theme{margin:1em 0 1.5em;}#current-theme a{border-bottom:none;}#current-theme h3{font-size:17px;font-weight:normal;margin:0;}#current-theme .theme-description{margin-top:5px;}#current-theme img{float:left;border-width:1px;border-style:solid;margin-right:1em;margin-bottom:1.5em;width:150px;}#TB_window #TB_title a.tb-theme-preview-link,#TB_window #TB_title a.tb-theme-preview-link:visited{font-weight:bold;text-decoration:none;}#TB_window #TB_title{background-color:#222;color:#cfcfcf;}.checkbox{border:none;margin:0;padding:0;}.code,code{font-family:Consolas,Monaco,Courier,monospace;}kbd,code{padding:1px 3px;margin:0 1px;font-size:11px;}.commentlist li{padding:1em 1em .2em;margin:0;border-bottom-width:1px;border-bottom-style:solid;}.commentlist li li{border-bottom:0;padding:0;}.commentlist p{padding:0;margin:0 0 .8em;}.post-categories{display:inline;margin:0;padding:0;}.post-categories li{display:inline;}.quicktags,.search{font:12px Georgia,&quot;Times New Roman&quot;,&quot;Bitstream Charter&quot;,Times,serif;}.submit{padding:1.5em 0;margin:5px 0;-moz-border-radius:0 0 3px 3px;-webkit-border-bottom-left-radius:3px;-webkit-border-bottom-right-radius:3px;-khtml-border-bottom-left-radius:3px;-khtml-border-bottom-right-radius:3px;border-bottom-left-radius:3px;border-bottom-right-radius:3px;}form p.submit a.cancel:hover{text-decoration:none;}#submitdiv h3{margin-bottom:0!important;}#misc-publishing-actions{padding:6px 0 16px 0;}.misc-pub-section{padding:6px;border-bottom-width:1px;border-bottom-style:solid;}.misc-pub-section-last{border-bottom:0 none;}#minor-publishing-actions{padding:6px;text-align:right;}#minor-publishing{border-bottom-width:1px;border-bottom-style:solid;}#save-post{float:left;}.preview{float:right;}#major-publishing-actions{padding:6px;clear:both;border-top:none;}#minor-publishing-actions input,#major-publishing-actions input,#minor-publishing-actions .preview{min-width:80px;text-align:center;}#delete-action{line-height:25px;vertical-align:middle;text-align:left;float:left;}#publishing-action{text-align:right;float:right;line-height:23px;}#post-body #minor-publishing{padding-bottom:10px;}#post-body #misc-publishing-actions{padding:0;}#post-body .misc-pub-section{border-right-width:1px;border-right-style:solid;border-bottom:0 none;min-height:30px;float:left;max-width:32%;}#post-body .misc-pub-section-last{border-right:0;}#sticky-span{margin-left:18px;}#post-status-display,#post-visibility-display{font-weight:bold;}.side-info{margin:0;padding:4px;font-size:11px;}.side-info h5{padding-bottom:7px;font-size:14px;margin:12px 2px 5px;border-bottom-width:1px;border-bottom-style:solid;}.side-info ul{margin:0;padding-left:18px;list-style:square;}.submit input,.button,.button-primary,.button-secondary,.button-highlighted,#postcustomstuff .submit input{text-decoration:none;font-size:11px!important;line-height:14px;padding:2px 8px;cursor:pointer;border-width:1px;border-style:solid;-moz-border-radius:11px;-khtml-border-radius:11px;-webkit-border-radius:11px;border-radius:11px;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;-khtml-box-sizing:content-box;box-sizing:content-box;}a.button,a.button-primary,a.button-secondary{line-height:15px;padding:3px 10px;white-space:nowrap;-webkit-border-radius:10px;}#doaction,#doaction2,#post-query-submit{margin-right:8px;}.tablenav select[name=&quot;action&quot;],.tablenav select[name=&quot;action2&quot;]{width:120px;}.tablenav select[name=&quot;m&quot;]{width:120px;}.tablenav select#cat{width:150px;}#wpcontent select{padding:2px;height:2em;font-size:11px;}#wpcontent option{padding:2px;}#timezone_string option{margin-left:1em;}.approve{display:none;}.unapproved .approve,.spam .approve,.trash .approve{display:inline;}.unapproved .unapprove{display:none;}.narrow{width:70%;margin-bottom:40px;}.narrow p{line-height:150%;}textarea.all-options,input.all-options{width:250px;}#namediv table{width:100%;}#namediv td.first{width:10px;white-space:nowrap;}#namediv input{width:98%;}#namediv p{margin:10px 0;}#wpbody-content .metabox-holder{padding-top:10px;}#content{margin:0;width:100%;}#editorcontainer #content{padding:6px;line-height:150%;border:0 none;outline:none;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;-khtml-box-sizing:border-box;box-sizing:border-box;}#editorcontainer,#quicktags{border-style:solid;border-width:1px;border-collapse:separate;-moz-border-radius:6px 6px 0 0;-webkit-border-top-right-radius:6px;-webkit-border-top-left-radius:6px;-khtml-border-top-right-radius:6px;-khtml-border-top-left-radius:6px;border-top-right-radius:6px;border-top-left-radius:6px;}#quicktags{padding:0;margin-bottom:-3px;border-bottom-width:3px;background-image:url(&quot;images/ed-bg.gif&quot;);background-position:left top;background-repeat:repeat-x;}#quicktags #ed_toolbar{padding:2px 4px 0;}#ed_toolbar input,#ed_reply_toolbar input{margin:3px 1px 4px;line-height:18px;display:inline-block;min-width:26px;padding:2px 4px;font-size:12px;}#ed_reply_toolbar input{margin:1px 2px 1px 1px;}#quicktags #ed_link,#ed_reply_toolbar #ed_reply_link{text-decoration:underline;}#quicktags #ed_del,#ed_reply_toolbar #ed_reply_del{text-decoration:line-through;}#quicktags #ed_em,#ed_reply_toolbar #ed_reply_em{font-style:italic;}#excerpt,.attachmentlinks{margin:0;height:4em;width:98%;}#postcustomstuff table,#postcustomstuff input,#postcustomstuff textarea{border-width:1px;border-style:solid;-moz-border-radius:3px;-khtml-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;}#postcustomstuff .updatemeta,#postcustomstuff .deletemeta{margin:auto;}#postcustomstuff thead th{padding:5px 8px 8px;}#postcustom #postcustomstuff .submit{border:0 none;float:none;padding:5px 8px;}#side-sortables #postcustom #postcustomstuff .submit{padding:0 5px;}#side-sortables #postcustom #postcustomstuff td.left input{margin:3px 3px 0;}#side-sortables #postcustom #postcustomstuff #the-list textarea{height:85px;margin:3px;}#postcustomstuff table{margin:0;width:100%;border-width:1px;border-style:solid;border-spacing:0;}#postcustomstuff table input,#postcustomstuff table select,#postcustomstuff table textarea{width:95%;margin:8px 0 8px 8px;}#postcustomstuff th.left,#postcustomstuff td.left{width:38%;}#postcustomstuff .submit input{width:auto;}#postcustomstuff #newmeta .submit{padding:0 8px;}#postcustomstuff table #addmetasub{width:auto;}#postcustomstuff #newmetaleft{vertical-align:top;}#postcustomstuff #newmetaleft a{padding:0 10px;text-decoration:none;}#save{width:15em;}#template div{margin-right:190px;}* html #template div{margin-right:0;}.zerosize{height:0;width:0;margin:0;border:0;padding:0;overflow:hidden;position:absolute;}* html #themeselect{padding:0 3px;height:22px;}#your-profile legend{font-family:Georgia,&quot;Times New Roman&quot;,&quot;Bitstream Charter&quot;,Times,serif;font-size:22px;}#your-profile #rich_editing{border:none;}#howto{font-size:11px;margin:0 5px;display:block;}#ajax-response.alignleft{margin-left:2em;}div.nav{height:2em;padding:7px 10px;vertical-align:text-top;margin:5px 0;}.nav .button-secondary{padding:2px 4px;}a.page-numbers{border-bottom-style:solid;border-bottom-width:2px;font-weight:bold;margin-right:1px;padding:0 2px;}p.pagenav{margin:0;display:inline;}.pagenav span{font-weight:bold;margin:0 6px;}.row-title{font-size:12px!important;font-weight:bold;}.widefat .column-comment p{margin:.6em 0;}.column-author img,.column-username img{float:left;margin-right:10px;margin-top:3px;}.tablenav a.button-secondary{display:block;margin:3px 8px 0 0;}.tablenav{clear:both;height:30px;margin:6px 0 4px;vertical-align:middle;}.tablenav .tablenav-pages{float:right;display:block;cursor:default;height:30px;line-height:30px;font-size:11px;}.tablenav .tablenav-pages a,.tablenav-pages span.current{text-decoration:none;border:none;padding:3px 6px;border-width:1px;border-style:solid;-moz-border-radius:5px;-khtml-border-radius:5px;-webkit-border-radius:5px;border-radius:5px;}.tablenav .displaying-num{margin-right:10px;font-size:12px;font-family:Georgia,&quot;Times New Roman&quot;,&quot;Bitstream Charter&quot;,Times,serif;font-style:italic;}.tablenav .actions{padding:2px 8px 0 0;}td.media-icon{text-align:center;width:80px;padding-top:8px;}td.media-icon img{max-width:80px;max-height:60px;}#update-nag{line-height:29px;font-size:12px;text-align:center;}#update-nag{border-width:1px 0;border-style:solid none;}.plugins .plugin-update{padding:0;}.plugin-update .update-message{margin:0 10px 8px 31px;font-weight:bold;}#pass-strength-result{border-style:solid;border-width:1px;float:left;margin:12px 5px 5px 1px;padding:3px 5px;text-align:center;width:200px;}.row-actions{visibility:hidden;padding:2px 0 0;}tr:hover .row-actions,div.comment-item:hover .row-actions{visibility:visible;}.row-actions-visible{padding:2px 0 0;cursor:pointer;}#wphead-info{margin:0 0 0 15px;padding-right:15px;}#user_info{float:right;font-size:12px;line-height:46px;height:46px;}#user_info p{margin:0;padding:0;line-height:46px;}#wphead{height:46px;}#wphead a,#adminmenu a,#sidemenu a,#taglist a,#catlist a,#show-settings a{text-decoration:none;}#header-logo{float:left;margin:7px 0 0 15px;}#wphead h1{font:normal 22px Georgia,&quot;Times New Roman&quot;,&quot;Bitstream Charter&quot;,Times,serif;padding:10px 8px 5px;margin:0;float:left;}#wphead h1.long-title{font:normal 18px Georgia,&quot;Times New Roman&quot;,&quot;Bitstream Charter&quot;,Times,serif;padding:12px 10px 5px;}#wphead #site-visit-button{background-repeat:repeat-x;background-position:0 0;-moz-border-radius:3px;-webkit-border-radius:3px;-khtml-border-radius:3px;border-radius:3px;cursor:pointer;display:-moz-inline-stack;display:inline-block;font-size:50%;font-style:normal;line-height:17px;margin-left:5px;padding:0 6px;vertical-align:middle;}#wphead h1 a:hover{text-decoration:none;}#wphead h1 a:hover #site-title{text-decoration:underline;}#adminmenu *{-webkit-user-select:none;-moz-user-select:none;-khtml-user-select:none;user-select:none;}#adminmenu .wp-submenu{display:none;list-style:none;padding:0;margin:0;position:relative;z-index:2;border-width:1px 0 0;border-style:solid none none;}#adminmenu .wp-submenu a{font:normal 11px/18px &quot;Lucida Grande&quot;,Verdana,Arial,&quot;Bitstream Vera Sans&quot;,sans-serif;}#adminmenu .wp-submenu li.current,#adminmenu .wp-submenu li.current a,#adminmenu .wp-submenu li.current a:hover{font-weight:bold;}#adminmenu a.menu-top,#adminmenu .wp-submenu-head{font:normal 13px/18px Georgia,&quot;Times New Roman&quot;,&quot;Bitstream Charter&quot;,Times,serif;}#adminmenu div.wp-submenu-head{display:none;}.folded #adminmenu div.wp-submenu-head,.folded #adminmenu li.wp-has-submenu div.sub-open{display:block;}.folded #adminmenu a.menu-top,.folded #adminmenu .wp-submenu,.folded #adminmenu li.wp-menu-open .wp-submenu,.folded #adminmenu div.wp-menu-toggle{display:none;}#adminmenu li.wp-menu-open .wp-submenu,.no-js #adminmenu .open-if-no-js .wp-submenu{display:block;}#adminmenu div.wp-menu-image{float:left;width:28px;height:28px;}#adminmenu li{margin:0;padding:0;cursor:pointer;}#adminmenu a{display:block;line-height:18px;padding:1px 5px 3px;}#adminmenu li.menu-top{min-height:26px;}#adminmenu a.menu-top{line-height:18px;min-width:10em;padding:5px 5px;border-width:1px 1px 0;border-style:solid solid none;}#adminmenu .wp-submenu a{margin:0;padding-left:12px;border-width:0 1px 0 0;border-style:none solid none none;}#adminmenu .menu-top-last ul.wp-submenu{border-width:0 0 1px;border-style:none none solid;}#adminmenu .wp-submenu li{padding:0;margin:0;}.folded #adminmenu li.menu-top{width:28px;height:30px;overflow:hidden;border-width:1px 1px 0;border-style:solid solid none;}#adminmenu .menu-top-first a.menu-top,.folded #adminmenu li.menu-top-first,#adminmenu .wp-submenu .wp-submenu-head{border-width:1px 1px 0;border-style:solid solid none;-moz-border-radius-topleft:6px;-moz-border-radius-topright:6px;-webkit-border-top-right-radius:6px;-webkit-border-top-left-radius:6px;-khtml-border-top-right-radius:6px;-khtml-border-top-left-radius:6px;border-top-right-radius:6px;border-top-left-radius:6px;}#adminmenu .menu-top-last a.menu-top,.folded #adminmenu li.menu-top-last{border-width:1px;border-style:solid;-moz-border-radius-bottomleft:6px;-moz-border-radius-bottomright:6px;-webkit-border-bottom-right-radius:6px;-webkit-border-bottom-left-radius:6px;-khtml-border-bottom-right-radius:6px;-khtml-border-bottom-left-radius:6px;border-bottom-right-radius:6px;border-bottom-left-radius:6px;}#adminmenu li.wp-menu-open a.menu-top-last{border-bottom:0 none;-moz-border-radius-bottomright:0;-moz-border-radius-bottomleft:0;-webkit-border-bottom-right-radius:0;-webkit-border-bottom-left-radius:0;-khtml-border-bottom-right-radius:0;-khtml-border-bottom-left-radius:0;border-bottom-right-radius:0;border-bottom-left-radius:0;}#adminmenu .wp-menu-image img{float:left;padding:8px 6px 0;opacity:.6;filter:alpha(opacity=60);}#adminmenu li.menu-top:hover .wp-menu-image img,#adminmenu li.wp-has-current-submenu .wp-menu-image img{opacity:1;filter:alpha(opacity=100);}#adminmenu li.wp-menu-separator{height:21px;padding:0;margin:0;}#adminmenu a.separator{cursor:w-resize;height:20px;padding:0;}.folded #adminmenu a.separator{cursor:e-resize;}#adminmenu .wp-menu-separator-last{height:10px;width:1px;}#adminmenu .wp-submenu .wp-submenu-head{border-width:1px;border-style:solid;padding:6px 4px 6px 10px;cursor:default;}.folded #adminmenu .wp-submenu{position:absolute;margin:-1px 0 0 28px;padding:0 8px 8px;z-index:999;border:0 none;}.folded #adminmenu .wp-submenu ul{width:140px;border-width:0 0 1px;border-style:none none solid;}.folded #adminmenu .wp-submenu li.wp-first-item{border-top:0 none;}.folded #adminmenu .wp-submenu a{padding-left:10px;}.folded #adminmenu a.wp-has-submenu{margin-left:40px;}#adminmenu li.menu-top-last .wp-submenu ul{border-width:0 0 1px;border-style:none none solid;}#adminmenu .wp-menu-toggle{width:22px;clear:right;float:right;margin:1px 0 0;height:27px;padding:1px 2px 0 0;cursor:default;}#adminmenu li.wp-has-current-submenu ul{border-bottom-width:1px;border-bottom-style:solid;}#adminmenu .wp-menu-image a{height:24px;}#adminmenu .wp-menu-image img{padding:6px 0 0 1px;}#adminmenu #awaiting-mod,#adminmenu span.update-plugins,#sidemenu li a span.update-plugins{position:absolute;font-family:Helvetica,Arial,sans-serif;font-size:7pt;font-weight:bold;margin-top:2px;margin-left:2px;-moz-border-radius:7px;-khtml-border-radius:7px;-webkit-border-radius:7px;border-radius:7px;}#adminmenu li #awaiting-mod span,#adminmenu li span.update-plugins span,#sidemenu li a span.update-plugins span{float:left;display:block;height:1.6em;line-height:1.6em;padding:0 6px;}#adminmenu li span.count-0,#sidemenu li a .count-0{display:none;}.post-com-count-wrapper{min-width:22px;font-family:Helvetica,Arial,sans-serif;}.post-com-count{height:1.3em;line-height:1.1em;display:block;text-decoration:none;padding:0 0 6px;cursor:pointer;background-position:center -80px;background-repeat:no-repeat;}.post-com-count span{font-size:9px;font-weight:bold;height:1.7em;line-height:1.70em;min-width:.7em;padding:0 6px;display:inline-block;cursor:pointer;-moz-border-radius:5px;-khtml-border-radius:5px;-webkit-border-radius:5px;border-radius:5px;}strong .post-com-count{background-position:center -55px;}.post-com-count:hover{background-position:center -3px;}.column-response .post-com-count{float:left;margin-right:5px;text-align:center;}.response-links{float:left;}#the-comment-list .attachment-80x60{padding:4px 8px;}#footer{margin-top:-45px;}#footer,#footer a{font-size:12px;font-family:Georgia,&quot;Times New Roman&quot;,&quot;Bitstream Charter&quot;,Times,serif;font-style:italic;}#footer p{margin:0;padding:15px;line-height:15px;}#footer a{text-decoration:none;}#footer a:hover{text-decoration:underline;}.form-table{border-collapse:collapse;margin-top:.5em;width:100%;margin-bottom:-8px;clear:both;}.form-table td{margin-bottom:9px;padding:8px 10px;line-height:20px;font-size:11px;}.form-table th,.form-wrap label{font-weight:normal;text-shadow:rgba(255,255,255,1) 0 1px 0;}.form-table th{vertical-align:top;text-align:left;padding:10px;width:200px;}.form-table th.th-full{width:auto;}.form-table input,.form-table textarea,#wpbody-content .describe input,#wpbody-content .describe textarea{border-width:1px;border-style:solid;}.form-table div.color-option{display:block;clear:both;margin-top:12px;}.form-table input.tog{margin-top:2px;margin-right:2px;float:left;}.form-table table.color-palette{vertical-align:bottom;float:left;margin:-12px 3px 11px;}.form-table .color-palette td{border-width:1px 1px 0;border-style:solid solid none;height:10px;line-height:20px;width:10px;}textarea.large-text{width:99%;}.form-table input.regular-text,#adduser .form-field input{width:25em;}.form-table input.small-text{width:50px;}#profile-page .form-table textarea{width:500px;margin-bottom:6px;}#profile-page .form-table #rich_editing{margin-right:5px;}.form-table .pre{padding:8px;margin:0;}.pre{white-space:pre-wrap;white-space:-moz-pre-wrap!important;white-space:-pre-wrap;white-space:-o-pre-wrap;word-wrap:break-word;}table.form-table td .updated{font-size:13px;}.form-wrap{margin:10px 0;width:97%;}.form-wrap p,.form-wrap label{font-size:11px;}.form-wrap label{display:block;padding:2px;font-size:12px;}.form-field input,.form-field textarea{border-style:solid;border-width:1px;width:95%;}p.description,.form-wrap p{margin:2px 0 5px;}p.help,p.description,span.description,.form-wrap p{font-size:12px;font-style:italic;font-family:&quot;Lucida Grande&quot;,Verdana,Arial,&quot;Bitstream Vera Sans&quot;,sans-serif;}.form-wrap .form-field{margin:0 0 10px;padding:8px;}.col-wrap h3{margin:12px 0;font-size:1.1em;}.col-wrap p.submit{margin-top:-10px;}.tagcloud{width:97%;margin:0 0 40px;text-align:justify;}.tagcloud h3{margin:2px 0 12px;}#post-body #normal-sortables{min-height:50px;}#post-body #advanced-sortables{min-height:20px;}.postbox{position:relative;min-width:255px;width:99.5%;}#trackback_url{width:99%;}#normal-sortables .postbox .submit{background:transparent none;border:0 none;float:right;padding:0 12px;margin:0;}#normal-sortables .postbox #replyrow .submit{float:none;margin:0;padding:3px 7px;}#side-sortables .submitbox .submit input,#side-sortables .submitbox .submit .preview,#side-sortables .submitbox .submit a.preview:hover{border:0 none;}#side-sortables .inside-submitbox .insidebox,.stuffbox .insidebox{margin:11px 0;}#side-sortables .comments-box,#normal-sortables .comments-box{border:0 none;}#side-sortables .comments-box thead th,#normal-sortables .comments-box thead th{background:transparent;padding:0 7px 4px;font-style:italic;}#commentsdiv img.waiting{padding-left:5px;vertical-align:middle;}#post-body .tagsdiv #newtag{margin-right:5px;width:16em;}#side-sortables input#post_password{width:94%;}#side-sortables .tagsdiv #newtag{width:68%;}#post-status-info{border-width:0 1px 1px;border-style:none solid solid;width:100%;-moz-border-radius:0 0 6px 6px;-webkit-border-bottom-left-radius:6px;-webkit-border-bottom-right-radius:6px;-khtml-border-bottom-left-radius:6px;-khtml-border-bottom-right-radius:6px;border-bottom-left-radius:6px;border-bottom-right-radius:6px;}#post-status-info td{font-size:11px;}.autosave-info{padding:2px 15px 2px 2px;text-align:right;}#editorcontent #post-status-info{border:none;}#post-body .wp_themeSkin .mceStatusbar a.mceResize{display:block;background:transparent url(images/resize.gif) no-repeat scroll right bottom;width:12px;cursor:se-resize;margin:0 2px;position:relative;top:22px;}#linksubmitdiv div.inside,div.inside{padding:0;margin:0;}#comment-status-radio p{margin:3px 0 5px;}#comment-status-radio input{margin:2px 3px 5px 0;vertical-align:middle;}#comment-status-radio label{padding:5px 0;}.tagchecklist{margin-left:14px;font-size:12px;overflow:auto;}.tagchecklist strong{margin-left:-8px;position:absolute;}.tagchecklist span{margin-right:25px;display:block;float:left;font-size:11px;line-height:1.8em;white-space:nowrap;cursor:default;}.tagchecklist span a{margin:6px 0 0 -9px;cursor:pointer;width:10px;height:10px;display:block;float:left;text-indent:-9999px;overflow:hidden;position:absolute;}.howto{font-style:italic;display:block;font-family:&quot;Lucida Grande&quot;,Verdana,Arial,&quot;Bitstream Vera Sans&quot;,sans-serif;}.ac_results{padding:0;margin:0;list-style:none;position:absolute;z-index:10000;display:none;border-width:1px;border-style:solid;}.ac_results li{padding:2px 5px;white-space:nowrap;text-align:left;}.ac_over{cursor:pointer;}.ac_match{text-decoration:underline;}#poststuff h2{margin-top:20px;font-size:1.5em;margin-bottom:15px;padding:0 0 3px;clear:left;}.widget .widget-top,.postbox h3{cursor:move;-webkit-user-select:none;-moz-user-select:none;-khtml-user-select:none;user-select:none;}.postbox .hndle span{padding:6px 0;}.postbox .hndle{cursor:move;}.hndle a{font-size:11px;font-weight:normal;}#dashboard-widgets .meta-box-sortables{margin:0 5px;}.postbox .handlediv{float:right;width:23px;height:26px;}.sortable-placeholder{border-width:1px;border-style:dashed;margin-bottom:20px;}#poststuff h3,.metabox-holder h3{font-size:12px;font-weight:bold;padding:7px 9px;margin:0;line-height:1;}.widget,.postbox,.stuffbox{margin-bottom:20px;border-width:1px;border-style:solid;line-height:1;-moz-border-radius:6px;-khtml-border-radius:6px;-webkit-border-radius:6px;border-radius:6px;}.widget .widget-top,.postbox h3,.postbox h3,.stuffbox h3{-moz-border-radius:6px 6px 0 0;-webkit-border-top-right-radius:6px;-webkit-border-top-left-radius:6px;-khtml-border-top-right-radius:6px;-khtml-border-top-left-radius:6px;border-top-right-radius:6px;border-top-left-radius:6px;}.postbox.closed h3{-moz-border-radius-bottomleft:4px;-webkit-border-bottom-left-radius:4px;-khtml-border-bottom-left-radius:4px;border-bottom-left-radius:4px;-moz-border-radius-bottomright:4px;-webkit-border-bottom-right-radius:4px;-khtml-border-bottom-right-radius:4px;border-bottom-right-radius:4px;}.postbox table.form-table{margin-bottom:0;}.postbox input[type=&quot;text&quot;],.postbox textarea,.stuffbox input[type=&quot;text&quot;],.stuffbox textarea{border-width:1px;border-style:solid;}#poststuff .inside,#poststuff .inside p{font-size:11px;margin:6px 6px 8px;}#poststuff .inside .submitbox p{margin:1em 0;}#post-visibility-select{line-height:1.5em;margin-top:3px;}#poststuff #submitdiv .inside{margin:0;}#titlediv,#poststuff .postarea{margin-bottom:20px;}#titlediv{margin-bottom:20px;}#titlediv label{cursor:text;}#titlediv div.inside{margin:0;}#poststuff #titlewrap{border:0;padding:0;}#titlediv #title{padding:3px 4px;border-width:1px;border-style:solid;-moz-border-radius:6px;-khtml-border-radius:6px;-webkit-border-radius:6px;border-radius:6px;font-size:1.7em;width:100%;outline:none;}#poststuff .inside-submitbox,#side-sortables .inside-submitbox{margin:0 3px;font-size:11px;}input#link_description,input#link_url{width:98%;}#pending{background:0 none;border:0 none;padding:0;font-size:11px;margin-top:-1px;}#edit-slug-box{height:1em;margin-top:8px;padding:0 7px;}#editable-post-name-full{display:none;}#editable-post-name input{width:16em;}.postarea h3 label{float:left;}.postarea #add-media-button{float:right;margin:7px 0 0;position:relative;right:10px;}#poststuff #editor-toolbar{height:30px;}.wp_themeSkin tr.mceFirst td.mceToolbar{border-width:0 0 1px;border-style:none none solid;}#edButtonPreview,#edButtonHTML{height:18px;margin:5px 5px 0 0;padding:4px 5px 2px;float:right;cursor:pointer;border-width:1px;border-style:solid;-moz-border-radius:3px 3px 0 0;-webkit-border-top-right-radius:3px;-webkit-border-top-left-radius:3px;-khtml-border-top-right-radius:3px;-khtml-border-top-left-radius:3px;border-top-right-radius:3px;border-top-left-radius:3px;}.js .theEditor{color:white;}#poststuff #edButtonHTML{margin-right:15px;}#media-buttons{cursor:default;padding:8px 8px 0;}#media-buttons a{cursor:pointer;padding:0 0 5px 10px;}#media-buttons img,#submitpost #ajax-loading{vertical-align:middle;}.submitbox .submit{text-align:left;padding:12px 10px 10px;font-size:11px;}.submitbox .submitdelete{border-bottom-width:1px;border-bottom-style:solid;text-decoration:none;padding:1px 2px;}.inside-submitbox #post_status{margin:2px 0 2px -2px;}.submitbox .submit a:hover{border-bottom-width:1px;border-bottom-style:solid;}.submitbox .submit input{margin-bottom:8px;margin-right:4px;padding:6px;}#post-status-select{line-height:2.5em;margin-top:3px;}#category-adder{margin-left:120px;padding:4px 0;}#category-adder h4{margin:0 0 8px;}#side-sortables #category-adder{margin:0;}#post-body #category-add input,#category-add select{width:30%;}#side-sortables #category-add input{width:94%;}#side-sortables #category-add select{width:100%;}#category-add input#category-add-sumbit{width:auto;}#post-body ul#category-tabs{float:left;width:120px;text-align:right;margin:0 -120px 0 5px;padding:0;}#post-body ul#category-tabs li{padding:8px;}#post-body ul#category-tabs li.tabs{-moz-border-radius:3px 0 0 3px;-webkit-border-top-left-radius:3px;-webkit-border-bottom-left-radius:3px;-khtml-border-top-left-radius:3px;-khtml-border-bottom-left-radius:3px;border-top-left-radius:3px;border-bottom-left-radius:3px;}#post-body ul#category-tabs li.tabs a{font-weight:bold;text-decoration:none;}#categorydiv div.tabs-panel,#linkcategorydiv div.tabs-panel{height:200px;overflow:auto;padding:.5em .9em;border-style:solid;border-width:1px;}#post-body #categorydiv div.tabs-panel,#post-body #linkcategorydiv div.tabs-panel{margin:0 5px 0 125px;}#side-sortables #category-tabs li{display:inline;padding-right:8px;}#side-sortables #category-tabs a{text-decoration:none;}#side-sortables #category-tabs{margin-bottom:3px;}#categorydiv ul,#linkcategorydiv ul{list-style:none;padding:0;margin:0;}#categorydiv ul.categorychecklist ul,#linkcategorydiv ul.categorychecklist ul{margin-left:18px;}ul.categorychecklist li{margin:0;padding:0;line-height:19px;}#category-adder h4{margin-top:4px;margin-bottom:0;}#categorydiv .tabs-panel{border-width:3px;border-style:solid;}ul#category-tabs{margin-top:12px;}ul#category-tabs li.tabs{border-style:solid solid none;border-width:1px 1px 0;}#post-body #category-tabs li.tabs{border-style:solid none solid solid;border-width:1px 0 1px 1px;margin-right:-1px;}ul#category-tabs li{padding:5px 8px;-moz-border-radius:3px 3px 0 0;-webkit-border-top-left-radius:3px;-webkit-border-top-right-radius:3px;-khtml-border-top-left-radius:3px;-khtml-border-top-right-radius:3px;border-top-left-radius:3px;border-top-right-radius:3px;}form#tags-filter{position:relative;}p.search-box{float:right;margin:-5px 0 0;}.screen-per-page{width:3em;}#posts-filter fieldset{float:left;margin:0 1.5ex 1em 0;padding:0;}#posts-filter fieldset legend{padding:0 0 .2em 1px;}td.post-title strong,td.plugin-title strong{display:block;margin-bottom:.2em;}td.post-title p,td.plugin-title p{margin:6px 0;}td.plugin-title{white-space:nowrap;}.wp-hidden-children .wp-hidden-child,.ui-tabs-hide,#codepress-off{display:none;}.commentlist .avatar{vertical-align:text-top;}.defaultavatarpicker .avatar{margin:2px 0;vertical-align:middle;}body.wp-admin{min-width:785px;}.view-switch{float:right;margin:6px 8px 0;}.view-switch a{text-decoration:none;}.filter{float:left;margin:-5px 0 0 10px;}.filter .subsubsub{margin-left:-10px;margin-top:13px;}#the-comment-list td.comment p.comment-author{margin-top:0;margin-left:0;}#the-comment-list p.comment-author img{float:left;margin-right:8px;}#the-comment-list p.comment-author strong a{border:none;}#the-comment-list td{vertical-align:top;}#the-comment-list td.comment{word-wrap:break-word;}#the-comment-list .check-column{padding-top:8px;}#templateside ul li a{text-decoration:none;}.indicator-hint{padding-top:8px;}#display_name{width:15em;}.tablenav .delete{margin-right:20px;}td.action-links,th.action-links{text-align:right;}table.diff{width:100%;}table.diff col.content{width:50%;}table.diff tr{background-color:transparent;}table.diff td,table.diff th{padding:.5em;font-family:Consolas,Monaco,Courier,monospace;border:none;}table.diff .diff-deletedline del,table.diff .diff-addedline ins{text-decoration:none;}#wp-word-count{display:block;padding:2px 7px;}fieldset{border:0;padding:0;margin:0;}.tool-box{margin:15px 0 35px;}.tool-box .buttons{margin:15px 0;}.tool-box .title{margin:8px 0;font:18px/24px Georgia,&quot;Times New Roman&quot;,&quot;Bitstream Charter&quot;,Times,serif;}.pressthis a{font-size:1.2em;}#wp_editbtns,#wp_gallerybtns{padding:2px;position:absolute;display:none;z-index:999998;}#wp_editimgbtn,#wp_delimgbtn,#wp_editgallery,#wp_delgallery{margin:2px;padding:2px;border-width:1px;border-style:solid;-moz-border-radius:3px;-khtml-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;}.settings-toggle{text-align:right;margin:5px 7px 15px 0;font-size:12px;}.settings-toggle h3{margin:0;}#timestampdiv select{height:20px;line-height:20px;padding:0;}#jj,#hh,#mn{width:2em;padding:1px;font-size:12px;}#aa{width:3.4em;padding:1px;font-size:12px;}.curtime #timestamp{background-repeat:no-repeat;background-position:left top;padding-left:18px;}#timestampdiv{padding-top:5px;line-height:23px;}#timestampdiv p{margin:8px 0 6px;}#timestampdiv input{border-width:1px;border-style:solid;}#sidemenu{margin:-30px 15px 0 315px;list-style:none;position:relative;float:right;padding-left:10px;font-size:12px;}#sidemenu a{padding:0 7px;display:block;float:left;line-height:28px;border-top-width:1px;border-top-style:solid;border-bottom-width:1px;border-bottom-style:solid;}#sidemenu li{display:inline;line-height:200%;list-style:none;text-align:center;white-space:nowrap;margin:0;padding:0;}#sidemenu a.current{font-weight:normal;padding-left:6px;padding-right:6px;-moz-border-radius:4px 4px 0 0;-webkit-border-top-left-radius:4px;-webkit-border-top-right-radius:4px;-khtml-border-top-left-radius:4px;-khtml-border-top-right-radius:4px;border-top-left-radius:4px;border-top-right-radius:4px;border-width:1px;border-style:solid;}#sidemenu{margin:-30px 15px 0 315px;list-style:none;position:relative;float:right;padding-left:10px;font-size:12px;}#sidemenu a{padding:0 7px;display:block;float:left;line-height:28px;border-top-width:1px;border-top-style:solid;border-bottom-width:1px;border-bottom-style:solid;}#sidemenu li a .count-0{display:none;}#replyrow{font-size:11px;}#replyrow input{border-width:1px;border-style:solid;}#replyrow td{padding:2px;}#replyrow #editorcontainer{border:0 none;}#replysubmit{margin:0;padding:3px 7px;}#replysubmit img.waiting,.inline-edit-save img.waiting{padding:2px 10px 0;vertical-align:top;}#replysubmit .button{margin-right:5px;}#replyrow #editor-toolbar{display:none;}#replyhead{font-size:12px;font-weight:bold;padding:2px 10px 4px;}#edithead .inside{float:left;padding:3px 0 2px 5px;margin:0;text-align:center;font-size:11px;}#edithead .inside input{width:180px;font-size:11px;}#edithead label{padding:2px 0;}#replycontainer{padding:5px;border:0 none;height:120px;overflow:hidden;position:relative;}#replycontent{resize:none;margin:0;width:100%;height:100%;padding:0;line-height:150%;border:0 none;outline:none;font-size:12px;}#replyrow #ed_reply_toolbar{margin:0;padding:2px 3px;}#screen-meta{position:relative;clear:both;}#screen-meta-links{margin:0 9px 0 0;}#screen-meta .screen-reader-text{visibility:hidden;}#screen-options-link-wrap,#contextual-help-link-wrap{float:right;background:transparent url(images/screen-options-left.gif) no-repeat 0 0;font-family:&quot;Lucida Grande&quot;,Verdana,Arial,&quot;Bitstream Vera Sans&quot;,sans-serif;height:22px;padding:0;margin:0 6px 0 0;}#screen-meta a.show-settings{text-decoration:none;z-index:1;padding:0 16px 0 6px;height:22px;line-height:22px;font-size:10px;display:block;background-repeat:no-repeat;background-position:right bottom;}#screen-meta a.show-settings{background-image:url(images/screen-options-right.gif);}#screen-meta a.show-settings:hover{text-decoration:none;}#screen-options-wrap h5,#contextual-help-wrap h5{margin:8px 0;font-size:13px;}#screen-options-wrap,#contextual-help-wrap{border-style:none solid solid;border-top:0 none;border-width:0 1px 1px;margin:0 15px;padding:8px 12px 12px;-moz-border-radius:0 0 0 4px;-webkit-border-bottom-left-radius:4px;-khtml-border-bottom-left-radius:4px;border-bottom-left-radius:4px;}.metabox-prefs label{padding-right:15px;white-space:nowrap;line-height:30px;}.metabox-prefs label input{margin:0 5px 0 2px;}.metabox-prefs label a{display:none;}tr.inline-edit-row td{padding:0 .5em;}#wpbody-content .inline-edit-row fieldset{font-size:12px;float:left;margin:0;padding:0;width:100%;}#wpbody-content .inline-edit-row fieldset .inline-edit-col{padding:0 .5em;}#wpbody-content .quick-edit-row-page fieldset.inline-edit-col-right .inline-edit-col{border-width:0 0 0 1px;border-style:none none none solid;}#wpbody-content .quick-edit-row-post .inline-edit-col-left{width:40%;}#wpbody-content .quick-edit-row-post .inline-edit-col-right{width:39%;}#wpbody-content .inline-edit-row-post .inline-edit-col-center{width:20%;}#wpbody-content .quick-edit-row-page .inline-edit-col-left{width:50%;}#wpbody-content .quick-edit-row-page .inline-edit-col-right,#wpbody-content .bulk-edit-row-post .inline-edit-col-right{width:49%;}#wpbody-content .bulk-edit-row .inline-edit-col-left{width:30%;}#wpbody-content .bulk-edit-row-page .inline-edit-col-right{width:69%;}#wpbody-content .bulk-edit-row .inline-edit-col-bottom{float:right;width:69%;}#wpbody-content .inline-edit-row-page .inline-edit-col-right,#owpbody-content .bulk-edit-row-post .inline-edit-col-right{margin-top:27px;}.inline-edit-row fieldset .inline-edit-group{clear:both;}.inline-edit-row fieldset .inline-edit-group:after{content:&quot;.&quot;;display:block;height:0;clear:both;visibility:hidden;}.inline-edit-row p.submit{clear:both;padding:.5em;margin:.5em 0 0;}.inline-edit-row span.error{line-height:22px;margin:0 15px;padding:3px 5px;}.inline-edit-row h4{margin:.2em 0;padding:0;line-height:23px;}.inline-edit-row fieldset span.title,.inline-edit-row fieldset span.checkbox-title{margin:0;padding:0;line-height:27px;}.inline-edit-row fieldset label,.inline-edit-row fieldset span.inline-edit-categories-label{display:block;margin:.2em 0;}.inline-edit-row fieldset label.inline-edit-tags{margin-top:0;}.inline-edit-row fieldset label.inline-edit-tags span.title{margin:.2em 0;}.inline-edit-row fieldset label span.title{display:block;float:left;width:5em;}.inline-edit-row fieldset label span.input-text-wrap{display:block;margin-left:5em;}.quick-edit-row-post fieldset.inline-edit-col-right label span.title{width:auto;padding-right:.5em;}.inline-edit-row .input-text-wrap input[type=text]{width:100%;}.inline-edit-row fieldset label input[type=checkbox]{vertical-align:text-bottom;}.inline-edit-row fieldset label textarea{width:100%;height:4em;}#wpbody-content .bulk-edit-row fieldset .inline-edit-group label{max-width:50%;}#wpbody-content .quick-edit-row fieldset .inline-edit-group label.alignleft:first-child{margin-right:.5em;}.inline-edit-row h4{text-transform:uppercase;}.inline-edit-row fieldset span.title,.inline-edit-row fieldset span.checkbox-title{font-family:Georgia,&quot;Times New Roman&quot;,&quot;Bitstream Charter&quot;,Times,serif;font-style:italic;line-height:1.8em;}.inline-edit-row fieldset input[type=&quot;text&quot;],.inline-edit-row fieldset textarea{border-style:solid;border-width:1px;}.inline-edit-row fieldset .inline-edit-date{float:left;}.inline-edit-row fieldset input[name=jj],.inline-edit-row fieldset input[name=hh],.inline-edit-row fieldset input[name=mn]{font-size:12px;width:2.1em;}.inline-edit-row fieldset input[name=aa]{font-size:12px;width:3.5em;}.inline-edit-row fieldset label input.inline-edit-password-input{width:8em;}.inline-edit-row .catshow,.inline-edit-row .cathide{cursor:pointer;}ul.cat-checklist{height:12em;border-style:solid;border-width:1px;overflow-y:scroll;padding:0 5px;margin:0;}#bulk-titles{display:block;height:12em;border-style:solid;border-width:1px;overflow-y:scroll;padding:0 5px;margin:0 0 5px;}.inline-edit-row fieldset ul.cat-checklist li,.inline-edit-row fieldset ul.cat-checklist input{margin:0;}.inline-edit-row fieldset ul.cat-checklist label,.inline-edit-row .catshow,.inline-edit-row .cathide,.inline-edit-row #bulk-titles div{font-family:&quot;Lucida Grande&quot;,Verdana,Arial,&quot;Bitstream Vera Sans&quot;,sans-serif;font-style:normal;font-size:11px;}table .inline-edit-row fieldset ul.cat-hover{height:auto;max-height:30em;overflow-y:auto;position:absolute;}.inline-edit-row fieldset label input.inline-edit-menu-order-input{width:3em;}.inline-edit-row fieldset label input.inline-edit-slug-input{width:75%;}.quick-edit-row-post fieldset label.inline-edit-status{float:left;}#bulk-titles{line-height:140%;}#bulk-titles div{margin:.2em .3em;}#bulk-titles div a{cursor:pointer;display:block;float:left;height:10px;margin:3px 3px 0 -2px;overflow:hidden;position:relative;text-indent:-9999px;width:10px;}#wpbody-content #media-items .describe{border-collapse:collapse;width:100%;border-top-style:solid;border-top-width:1px;clear:both;cursor:default;padding:5px;}#wpbody-content .describe th{vertical-align:top;text-align:left;padding:10px;width:140px;}#wpbody-content .describe .media-item-info tr{background-color:transparent;}#wpbody-content .describe .media-item-info td{padding:4px 10px 0;}.describe .media-item-info .A1B1{padding:0 15px 8px 0;}#wpbody-content .filename{padding:0 10px;}#wpbody-content .media-item .thumbnail{max-height:128px;max-width:128px;}.media-upload-form td label{margin-right:6px;margin-left:2px;}.media-upload-form .align .field label{display:inline;padding:0 0 0 22px;margin:0 1em 0 0;font-weight:bold;}.media-upload-form tr.image-size label{margin:0 0 0 3px;font-weight:bold;}.media-upload-form th.label label{font-weight:bold;margin:.5em;font-size:13px;}.media-upload-form th.label label span{padding:0 5px;}abbr.required{border:medium none;text-decoration:none;}#wpbody-content .describe input[type=&quot;text&quot;],#wpbody-content .describe textarea{width:460px;}#wpbody-content .describe p.help{margin:0;padding:0 0 0 5px;}.describe-toggle-on,.describe-toggle-off{display:block;line-height:36px;float:right;margin-right:20px;}.describe-toggle-off{display:none;}#wpbody-content .media-item{border-bottom-style:solid;border-bottom-width:1px;min-height:36px;position:relative;width:100%;}#wpbody-content .media-single .media-item{border-bottom-style:none;border-bottom-width:0;}#wpbody-content #media-items{border-style:solid solid none;border-width:1px;width:670px;}#wpbody-content #media-items .filename{line-height:36px;overflow:hidden;}.media-item .pinkynail{float:left;margin:2px;max-width:40px;max-height:32px;}.media-item .startopen,.media-item .startclosed{display:none;}.media-item .original{position:relative;height:34px;text-align:center;}.media-item .percent{font-weight:bold;}.crunching{display:block;line-height:32px;text-align:right;margin-right:5px;}button.dismiss{position:absolute;top:7px;right:5px;z-index:4;width:8em;}.file-error{float:left;font-weight:bold;padding:10px;}.progress{position:relative;margin-bottom:-36px;height:36px;}.bar{width:0;height:100%;border-right-width:3px;border-right-style:solid;}#media-items a.delete,#media-items a.del-link{padding:1px 4px 2px;}.upload-php .fixed .column-parent{width:25%;}.find-box{width:500px;height:300px;overflow:hidden;padding:33px 5px 40px;position:absolute;z-index:1000;}.find-box-head{cursor:move;font-weight:bold;height:2em;line-height:2em;padding:1px 12px;position:absolute;top:5px;width:100%;}.find-box-inside{overflow:auto;width:100%;height:100%;}.find-box-search{padding:12px;border-width:1px;border-style:none none solid;}#find-posts-response{margin:8px 0;padding:0 1px;}#find-posts-response table{width:100%;}#find-posts-response .found-radio{padding:5px 0 0 8px;width:15px;}.find-box-buttons{width:480px;margin:8px;}.find-box-search label{padding-right:6px;}.find-box #resize-se{position:absolute;right:1px;bottom:1px;}#favorite-actions{float:right;margin:11px 12px 0;min-width:130px;position:relative;}#favorite-first{-moz-border-radius:12px;-khtml-border-radius:12px;-webkit-border-radius:12px;border-radius:12px;line-height:15px;padding:3px 30px 4px 12px;border-width:1px;border-style:solid;}#favorite-inside{margin:0;padding:0 1px 6px 1px;border-width:1px;border-style:solid;position:absolute;z-index:11;display:none;-moz-border-radius:0 0 12px 12px;-webkit-border-bottom-right-radius:12px;-webkit-border-bottom-left-radius:12px;-khtml-border-bottom-right-radius:12px;-khtml-border-bottom-left-radius:12px;border-bottom-right-radius:12px;border-bottom-left-radius:12px;}#favorite-actions a{display:block;text-decoration:none;font-size:11px;}#favorite-inside a{padding:3px 5px 3px 10px;}#favorite-toggle{height:22px;position:absolute;right:0;top:1px;width:28px;}#favorite-actions .slide-down{-moz-border-radius:12px 12px 0 0;-webkit-border-bottom-right-radius:0;-webkit-border-bottom-left-radius:0;-khtml-border-bottom-right-radius:0;-khtml-border-bottom-left-radius:0;border-bottom-right-radius:0;border-bottom-left-radius:0;border-bottom-width:1px;border-bottom-style:solid;}#utc-time,#local-time{padding-left:25px;font-style:italic;font-family:&quot;Lucida Grande&quot;,Verdana,Arial,&quot;Bitstream Vera Sans&quot;,sans-serif;}ul#dismissed-updates{display:none;}form.upgrade{margin-top:8px;}form.upgrade .hint{font-style:italic;font-size:85%;margin:-0.5em 0 2em 0;}#poststuff .inside .the-tagcloud{margin:5px 0 10px;padding:8px;border-width:1px;border-style:solid;line-height:1.8em;word-spacing:3px;-moz-border-radius:6px;-khtml-border-radius:6px;-webkit-border-radius:6px;border-radius:6px;}br.clear{height:2px;line-height:2px;}.swfupload{margin:5px 10px;vertical-align:middle;}table.fixed{table-layout:fixed;}.fixed .column-rating,.fixed .column-visible{width:8%;}.fixed .column-date,.fixed .column-parent,.fixed .column-links{width:10%;}.fixed .column-response,.fixed .column-author,.fixed .column-categories,.fixed .column-tags,.fixed .column-rel,.fixed .column-role{width:15%;}.fixed .column-comments{width:4em;padding-top:8px;}.fixed .column-slug{width:25%;}.fixed .column-posts{width:10%;}.fixed .column-icon{width:80px;}#commentsdiv .fixed .column-author,#comments-form .fixed .column-author{width:20%;}.widefat th,.widefat td{overflow:hidden;}.widefat td p{margin:2px 0 .8em;}table .vers,table .column-visible,table .column-rating{text-align:center;}.icon32{float:left;height:36px;margin:14px 6px 0 0;width:36px;}.key-labels label{line-height:24px;}.subtitle{font-size:.75em;line-height:1;padding-left:25px;}ol{list-style-type:decimal;margin-left:2em;}.postbox-container{float:left;padding-right:.5%;}.postbox-container .meta-box-sortables{min-height:300px;}.temp-border{border:1px dotted #ccc;}.columns-prefs label{padding:0 5px;}.theme-install-php h4,.plugin-install-php h4{margin:2.5em 0 8px;}p.install-help{margin:8px 0;font-style:italic;}p.popular-tags{-moz-border-radius:8px;-khtml-border-radius:8px;-webkit-border-radius:8px;border-radius:8px;border-width:1px;border-style:solid;line-height:2em;padding:8px 12px 12px;text-align:justify;}p.popular-tags a{padding:0 3px;}.stuffbox .editcomment{clear:none;}.ajax-feedback{visibility:hidden;vertical-align:bottom;}.tagsdiv .newtag{width:180px;}.tagsdiv .the-tags{display:block;height:60px;margin:0 auto;overflow:auto;width:260px;}#post-body-content .tagsdiv .the-tags{margin:0 5px;}label,#your-profile label+a{vertical-align:middle;}#misc-publishing-actions label{vertical-align:baseline;}.plugin-update-tr .update-message{margin:5px;padding:3px 5px;border-width:1px;border-style:solid;-moz-border-radius:5px;-khtml-border-radius:5px;-webkit-border-radius:5px;border-radius:5px;}.add-new-h2{font-style:normal;margin:0 6px;position:relative;top:-3px;}.describe .image-editor{vertical-align:top;}.imgedit-wrap{position:relative;}.imgedit-settings p{margin:8px 0;}.describe .imgedit-wrap table td{vertical-align:top;padding-top:0;}.imgedit-wrap p,.describe .imgedit-wrap table td{font-size:11px;line-height:18px;}.describe .imgedit-wrap table td.imgedit-settings{padding:0 5px;}td.imgedit-settings input{vertical-align:middle;}.imgedit-wait{position:absolute;top:0;background:#FFF url(images/wpspin_light.gif) no-repeat scroll 22px 10px;opacity:.7;filter:alpha(opacity=70);width:100%;height:500px;display:none;}.media-disabled,.imgedit-settings .disabled{color:grey;}.imgedit-wait-spin{padding:0 4px 4px;vertical-align:bottom;visibility:hidden;}.imgedit-menu{margin:0 0 12px;min-width:315px;}.imgedit-menu div{float:left;width:34px;height:34px;-moz-border-radius:4px;-khtml-border-radius:4px;-webkit-border-radius:4px;border-radius:4px;border-width:1px;border-style:solid;}.imgedit-crop-wrap{position:relative;}.imgedit-crop{background:transparent url(images/imgedit.gif) no-repeat scroll -62px 2px;margin:0 8px 0 0;}.imgedit-rleft{background:transparent url(images/imgedit.gif) no-repeat scroll -31px 2px;margin:0 3px;}.imgedit-rright{background:transparent url(images/imgedit.gif) no-repeat scroll 1px 2px;margin:0 8px 0 3px;}.imgedit-fliph{background:transparent url(images/imgedit.gif) no-repeat scroll -127px 2px;margin:0 3px;}.imgedit-flipv{background:transparent url(images/imgedit.gif) no-repeat scroll -95px 3px;margin:0 8px 0 3px;}.imgedit-undo{background:transparent url(images/imgedit.gif) no-repeat scroll -161px 2px;margin:0 3px;}.imgedit-redo{background:transparent url(images/imgedit.gif) no-repeat scroll -195px 2px;margin:0 8px 0 3px;}.imgedit-applyto img{margin:0 8px 0 0;}.imgedit-group-top{margin:5px 0;}.imgedit-applyto .imgedit-label{padding:2px 0 0;display:block;}.imgedit-help{display:none;font-style:italic;margin-bottom:8px;}.imgedit-help ul li{font-size:11px;}a.imgedit-help-toggle{text-decoration:none;}#wpbody-content .imgedit-response div{width:600px;margin:8px;}.form-table td.imgedit-response{padding:0;}.imgedit-submit{margin:8px 0;}.imgedit-submit-btn{margin-left:20px;}.imgedit-wrap .nowrap{white-space:nowrap;}span.imgedit-scale-warn{color:red;font-size:20px;font-style:normal;visibility:hidden;vertical-align:middle;}.imgedit-group{border-width:1px;border-style:solid;-moz-border-radius:8px;-khtml-border-radius:8px;-webkit-border-radius:8px;border-radius:8px;margin-bottom:8px;padding:2px 10px;}#dashboard_recent_comments .trash-undo{border-top-style:solid;border-top-width:1px;margin:0 -10px;padding:3px;}.trash-undo-inside{margin:3px 8px;}.taghint{color:#aaa;margin:-18px 8px 0;visibility:hidden;}input.newtag ~ div.taghint{visibility:visible;}input.newtag:focus ~ div.taghint{visibility:hidden;}
</ins><span class="cx">\ No newline at end of file
</span></span></pre></div>
<a id="trunkwpadminwpadmindevcss"></a>
<div class="modfile"><h4>Modified: trunk/wp-admin/wp-admin.dev.css (12021 => 12022)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/wp-admin/wp-admin.dev.css        2009-10-11 11:26:59 UTC (rev 12021)
+++ trunk/wp-admin/wp-admin.dev.css        2009-10-13 10:02:42 UTC (rev 12022)
</span><span class="lines">@@ -265,8 +265,7 @@
</span><span class="cx">         text-decoration: none;
</span><span class="cx"> }
</span><span class="cx"> 
</span><del>-#submitdiv h3,
-#pagesubmitdiv h3 {
</del><ins>+#submitdiv h3 {
</ins><span class="cx">         margin-bottom: 0 !important;
</span><span class="cx"> }
</span><span class="cx"> 
</span><span class="lines">@@ -590,25 +589,21 @@
</span><span class="cx">         padding: 5px 8px 8px;
</span><span class="cx"> }
</span><span class="cx"> 
</span><del>-#postcustom #postcustomstuff .submit,
-#pagecustomdiv #postcustomstuff .submit {
</del><ins>+#postcustom #postcustomstuff .submit {
</ins><span class="cx">         border: 0 none;
</span><span class="cx">         float: none;
</span><span class="cx">         padding: 5px 8px;
</span><span class="cx"> }
</span><span class="cx"> 
</span><del>-#side-sortables #postcustom #postcustomstuff .submit,
-#side-sortables #pagecustomdiv #postcustomstuff .submit {
</del><ins>+#side-sortables #postcustom #postcustomstuff .submit {
</ins><span class="cx">         padding: 0 5px;
</span><span class="cx"> }
</span><span class="cx"> 
</span><del>-#side-sortables #postcustom #postcustomstuff td.left input,
-#side-sortables #pagecustomdiv #postcustomstuff td.left input {
</del><ins>+#side-sortables #postcustom #postcustomstuff td.left input {
</ins><span class="cx">         margin: 3px 3px 0;
</span><span class="cx"> }
</span><span class="cx"> 
</span><del>-#side-sortables #postcustom #postcustomstuff #the-list textarea,
-#side-sortables #pagecustomdiv #postcustomstuff #the-list textarea {
</del><ins>+#side-sortables #postcustom #postcustomstuff #the-list textarea {
</ins><span class="cx">         height: 85px;
</span><span class="cx">         margin: 3px;
</span><span class="cx"> }
</span><span class="lines">@@ -1563,10 +1558,8 @@
</span><span class="cx">         top: 22px;
</span><span class="cx"> }
</span><span class="cx"> 
</span><del>-
-#pagesubmitdiv div.inside,
</del><span class="cx"> #linksubmitdiv div.inside,
</span><del>- div.inside {
</del><ins>+div.inside {
</ins><span class="cx">         padding: 0;
</span><span class="cx">         margin: 0;
</span><span class="cx"> }
</span><span class="lines">@@ -1585,7 +1578,7 @@
</span><span class="cx"> }
</span><span class="cx"> 
</span><span class="cx"> .tagchecklist {
</span><del>-        margin-left: 10px;
</del><ins>+        margin-left: 14px;
</ins><span class="cx">         font-size: 12px;
</span><span class="cx">         overflow: auto;
</span><span class="cx"> }
</span><span class="lines">@@ -1755,7 +1748,7 @@
</span><span class="cx"> #poststuff .inside,
</span><span class="cx"> #poststuff .inside p {
</span><span class="cx">         font-size: 11px;
</span><del>-        margin: 6px;
</del><ins>+        margin: 6px 6px 8px;
</ins><span class="cx"> }
</span><span class="cx"> 
</span><span class="cx"> #poststuff .inside .submitbox p {
</span><span class="lines">@@ -1991,7 +1984,7 @@
</span><span class="cx"> 
</span><span class="cx"> #categorydiv div.tabs-panel,
</span><span class="cx"> #linkcategorydiv div.tabs-panel {
</span><del>-        height: 150px;
</del><ins>+        height: 200px;
</ins><span class="cx">         overflow: auto;
</span><span class="cx">         padding: 0.5em 0.9em;
</span><span class="cx">         border-style: solid;
</span><span class="lines">@@ -2413,8 +2406,7 @@
</span><span class="cx"> }
</span><span class="cx"> 
</span><span class="cx"> #replysubmit img.waiting,
</span><del>-.inline-edit-save img.waiting,
-#commentstatusdiv img.waiting {
</del><ins>+.inline-edit-save img.waiting {
</ins><span class="cx">         padding: 2px 10px 0;
</span><span class="cx">         vertical-align: top;
</span><span class="cx"> }
</span><span class="lines">@@ -3215,9 +3207,8 @@
</span><span class="cx">         width: 80px;
</span><span class="cx"> }
</span><span class="cx"> 
</span><del>-#commentstatusdiv .fixed .column-author,
-#comments-form .fixed .column-author,
-#commentstatusdiv .fixed .column-date {
</del><ins>+#commentsdiv .fixed .column-author,
+#comments-form .fixed .column-author {
</ins><span class="cx">         width: 20%;
</span><span class="cx"> }
</span><span class="cx"> 
</span><span class="lines">@@ -3540,3 +3531,19 @@
</span><span class="cx"> .trash-undo-inside {
</span><span class="cx">         margin: 3px 8px;
</span><span class="cx"> }
</span><ins>+
+/* tag hints */
+.taghint {
+        color: #aaa;
+        margin: -18px 8px 0;
+        visibility: hidden;
+}
+
+input.newtag ~ div.taghint {
+        visibility: visible;
+}
+
+input.newtag:focus ~ div.taghint {
+        visibility: hidden;
+}
+
</ins></span></pre></div>
<a id="trunkwpincludesjsautosavedevjs"></a>
<div class="modfile"><h4>Modified: trunk/wp-includes/js/autosave.dev.js (12021 => 12022)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/wp-includes/js/autosave.dev.js        2009-10-11 11:26:59 UTC (rev 12021)
+++ trunk/wp-includes/js/autosave.dev.js        2009-10-13 10:02:42 UTC (rev 12022)
</span><span class="lines">@@ -172,9 +172,9 @@
</span><span class="cx"> 
</span><span class="cx"> function autosave_update_slug(post_id) {
</span><span class="cx">         // create slug area only if not already there
</span><del>-        if ( jQuery.isFunction(make_slugedit_clickable) &amp;&amp; !jQuery('#edit-slug-box &gt; *').size() ) {
</del><ins>+        if ( 'undefined' != makeSlugeditClickable &amp;&amp; jQuery.isFunction(makeSlugeditClickable) &amp;&amp; !jQuery('#edit-slug-box &gt; *').size() ) {
</ins><span class="cx">                 jQuery.post(
</span><del>-                        slugL10n.requestFile,
</del><ins>+                        ajaxurl,
</ins><span class="cx">                         {
</span><span class="cx">                                 action: 'sample-permalink',
</span><span class="cx">                                 post_id: post_id,
</span><span class="lines">@@ -183,7 +183,7 @@
</span><span class="cx">                         },
</span><span class="cx">                         function(data) {
</span><span class="cx">                                 jQuery('#edit-slug-box').html(data);
</span><del>-                                make_slugedit_clickable();
</del><ins>+                                makeSlugeditClickable();
</ins><span class="cx">                         }
</span><span class="cx">                 );
</span><span class="cx">         }
</span></span></pre></div>
<a id="trunkwpincludesjsautosavejs"></a>
<div class="modfile"><h4>Modified: trunk/wp-includes/js/autosave.js (12021 => 12022)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/wp-includes/js/autosave.js        2009-10-11 11:26:59 UTC (rev 12021)
+++ trunk/wp-includes/js/autosave.js        2009-10-13 10:02:42 UTC (rev 12022)
</span><span class="lines">@@ -1 +1 @@
</span><del>-var autosave,autosaveLast=&quot;&quot;,autosavePeriodical,autosaveOldMessage=&quot;&quot;,autosaveDelayPreview=false,notSaved=true,blockSave=false,interimLogin=false;jQuery(document).ready(function(b){var a=true;autosaveLast=b(&quot;#post #title&quot;).val()+b(&quot;#post #content&quot;).val();autosavePeriodical=b.schedule({time:autosaveL10n.autosaveInterval*1000,func:function(){autosave()},repeat:true,protect:true});b(&quot;#post&quot;).submit(function(){b.cancel(autosavePeriodical)});b('input[type=&quot;submit&quot;], a.submitdelete',&quot;#submitpost&quot;).click(function(){blockSave=true;window.onbeforeunload=null;b(&quot;:button, :submit&quot;,&quot;#submitpost&quot;).each(function(){var c=b(this);if(c.hasClass(&quot;button-primary&quot;)){c.addClass(&quot;button-primary-disabled&quot;)}else{c.addClass(&quot;button-disabled&quot;)}});b(&quot;#ajax-loading&quot;).css(&quot;visibility&quot;,&quot;visible&quot;)});window.onbeforeunload=function(){var c=typeof(tinyMCE)!=&quot;undefined&quot;?tinyMCE.activeEditor:false,e,d;if(c&amp;&amp;!c.isHidden()){if(c.isDirty()){return autosaveL10n.saveAlert}}else{e=b(&quot;#post #title&quot;).val(),d=b(&quot;#post #content&quot;).val();if((e||d)&amp;&amp;e+d!=autosaveLast){return autosaveL10n.saveAlert}}};b(&quot;#post-preview&quot;).click(function(){if(1&gt;b(&quot;#post_ID&quot;).val()&amp;&amp;notSaved){autosaveDelayPreview=true;autosave();return false}doPreview();return false});doPreview=function(){b(&quot;input#wp-preview&quot;).val(&quot;dopreview&quot;);b(&quot;form#post&quot;).attr(&quot;target&quot;,&quot;wp-preview&quot;).submit().attr(&quot;target&quot;,&quot;&quot;);b(&quot;input#wp-preview&quot;).val(&quot;&quot;)};if(typeof tinyMCE!=&quot;undefined&quot;){b(&quot;#title&quot;)[b.browser.opera?&quot;keypress&quot;:&quot;keydown&quot;](function(c){if(c.which==9&amp;&amp;!c.shiftKey&amp;&amp;!c.controlKey&amp;&amp;!c.altKey){if((b(&quot;#post_ID&quot;).val()&lt;1)&amp;&amp;(b(&quot;#title&quot;).val().length&gt;0)){autosave()}if(tinyMCE.activeEditor&amp;&amp;!tinyMCE.activeEditor.isHidden()&amp;&amp;a){c.preventDefault();a=false;tinyMCE.activeEditor.focus();return false}}})}if(0&gt;b(&quot;#post_ID&quot;).val()){b(&quot;#title&quot;).blur(function(){if(!this.value||0&lt;b(&quot;#post_ID&quot;).val()){return}delayed_autosave()})}});function autosave_parse_response(c){var e=wpAjax.parseAjaxResponse(c,&quot;autosave&quot;),f=&quot;&quot;,a,b,d;if(e&amp;&amp;e.responses&amp;&amp;e.responses.length){f=e.responses[0].data;if(e.responses[0].supplemental){b=e.responses[0].supplemental;if(&quot;disable&quot;==b.disable_autosave){autosave=function(){};e={errors:true}}if(b.session_expired&amp;&amp;(d=b.session_expired)){if(!interimLogin||interimLogin.closed){interimLogin=window.open(d,&quot;login&quot;,&quot;width=600,height=450,resizable=yes,scrollbars=yes,status=yes&quot;);interimLogin.focus()}delete b.session_expired}jQuery.each(b,function(g,h){if(g.match(/^replace-/)){jQuery(&quot;#&quot;+g.replace(&quot;replace-&quot;,&quot;&quot;)).val(h)}})}if(!e.errors){a=parseInt(e.responses[0].id,10);if(!isNaN(a)&amp;&amp;a&gt;0){autosave_update_slug(a)}}}if(f){jQuery(&quot;#autosave&quot;).html(f)}else{if(autosaveOldMessage&amp;&amp;e){jQuery(&quot;#autosave&quot;).html(autosaveOldMessage)}}return e}function autosave_saved(a){autosave_parse_response(a);autosave_enable_buttons()}function autosave_saved_new(b){var d=autosave_parse_response(b),c,a;if(d&amp;&amp;d.responses.length&amp;&amp;!d.errors){c=jQuery(&quot;#post_ID&quot;).val();a=parseInt(d.responses[0].id,10);autosave_update_post_ID(a);if(c&lt;0&amp;&amp;a&gt;0){notSaved=false;jQuery(&quot;#media-buttons a&quot;).each(function(){this.href=this.href.replace(c,a)})}if(autosaveDelayPreview){autosaveDelayPreview=false;doPreview()}}else{autosave_enable_buttons()}}function autosave_update_post_ID(a){if(!isNaN(a)&amp;&amp;a&gt;0){if(a==parseInt(jQuery(&quot;#post_ID&quot;).val(),10)){return}jQuery(&quot;#post_ID&quot;).attr({name:&quot;post_ID&quot;});jQuery(&quot;#post_ID&quot;).val(a);jQuery.post(autosaveL10n.requestFile,{action:&quot;autosave-generate-nonces&quot;,post_ID:a,autosavenonce:jQuery(&quot;#autosavenonce&quot;).val(),post_type:jQuery(&quot;#post_type&quot;).val()},function(b){jQuery(&quot;#_wpnonce&quot;).val(b.updateNonce);jQuery(&quot;#delete-action a.submitdelete&quot;).attr(&quot;href&quot;,b.deleteURL);autosave_enable_buttons();jQuery(&quot;#delete-action a.submitdelete&quot;).fadeIn()},&quot;json&quot;);jQuery(&quot;#hiddenaction&quot;).val(&quot;editpost&quot;)}}function autosave_update_slug(a){if(jQuery.isFunction(make_slugedit_clickable)&amp;&amp;!jQuery(&quot;#edit-slug-box &gt; *&quot;).size()){jQuery.post(slugL10n.requestFile,{action:&quot;sample-permalink&quot;,post_id:a,new_title:jQuery(&quot;#title&quot;).val(),samplepermalinknonce:jQuery(&quot;#samplepermalinknonce&quot;).val()},function(b){jQuery(&quot;#edit-slug-box&quot;).html(b);make_slugedit_clickable()})}}function autosave_loading(){jQuery(&quot;#autosave&quot;).html(autosaveL10n.savingText)}function autosave_enable_buttons(){setTimeout(function(){jQuery(&quot;:button, :submit&quot;,&quot;#submitpost&quot;).removeAttr(&quot;disabled&quot;);jQuery(&quot;#ajax-loading&quot;).css(&quot;visibility&quot;,&quot;hidden&quot;)},500)}function autosave_disable_buttons(){jQuery(&quot;:button, :submit&quot;,&quot;#submitpost&quot;).attr(&quot;disabled&quot;,&quot;disabled&quot;);setTimeout(autosave_enable_buttons,5000)}function delayed_autosave(){setTimeout(function(){if(blockSave){return}autosave()},200)}autosave=function(){var c=(typeof tinyMCE!=&quot;undefined&quot;)&amp;&amp;tinyMCE.activeEditor&amp;&amp;!tinyMCE.activeEditor.isHidden(),d,f,b,e,a;autosave_disable_buttons();d={action:&quot;autosave&quot;,post_ID:jQuery(&quot;#post_ID&quot;).val()||0,post_title:jQuery(&quot;#title&quot;).val()||&quot;&quot;,autosavenonce:jQuery(&quot;#autosavenonce&quot;).val(),post_type:jQuery(&quot;#post_type&quot;).val()||&quot;&quot;,autosave:1};jQuery(&quot;.tags-input&quot;).each(function(){d[this.name]=this.value});f=true;if(jQuery(&quot;#TB_window&quot;).css(&quot;display&quot;)==&quot;block&quot;){f=false}if(c&amp;&amp;f){b=tinyMCE.activeEditor;if(b.plugins.spellchecker&amp;&amp;b.plugins.spellchecker.active){f=false}else{if(&quot;mce_fullscreen&quot;==b.id){tinyMCE.get(&quot;content&quot;).setContent(b.getContent({format:&quot;raw&quot;}),{format:&quot;raw&quot;})}tinyMCE.get(&quot;content&quot;).save()}}d.content=jQuery(&quot;#content&quot;).val();if(jQuery(&quot;#post_name&quot;).val()){d.post_name=jQuery(&quot;#post_name&quot;).val()}if((d.post_title.length==0&amp;&amp;d.content.length==0)||d.post_title+d.content==autosaveLast){f=false}e=jQuery(&quot;#original_post_status&quot;).val();goodcats=([]);jQuery(&quot;[name='post_category[]']:checked&quot;).each(function(g){goodcats.push(this.value)});d.catslist=goodcats.join(&quot;,&quot;);if(jQuery(&quot;#comment_status&quot;).attr(&quot;checked&quot;)){d.comment_status=&quot;open&quot;}if(jQuery(&quot;#ping_status&quot;).attr(&quot;checked&quot;)){d.ping_status=&quot;open&quot;}if(jQuery(&quot;#excerpt&quot;).size()){d.excerpt=jQuery(&quot;#excerpt&quot;).val()}if(jQuery(&quot;#post_author&quot;).size()){d.post_author=jQuery(&quot;#post_author&quot;).val()}d.user_ID=jQuery(&quot;#user-id&quot;).val();if(f){autosaveLast=jQuery(&quot;#title&quot;).val()+jQuery(&quot;#content&quot;).val()}else{d.autosave=0}if(parseInt(d.post_ID,10)&lt;1){d.temp_ID=d.post_ID;a=autosave_saved_new}else{a=autosave_saved}autosaveOldMessage=jQuery(&quot;#autosave&quot;).html();jQuery.ajax({data:d,beforeSend:f?autosave_loading:null,type:&quot;POST&quot;,url:autosaveL10n.requestFile,success:a})};
</del><span class="cx">\ No newline at end of file
</span><ins>+var autosave,autosaveLast=&quot;&quot;,autosavePeriodical,autosaveOldMessage=&quot;&quot;,autosaveDelayPreview=false,notSaved=true,blockSave=false,interimLogin=false;jQuery(document).ready(function(b){var a=true;autosaveLast=b(&quot;#post #title&quot;).val()+b(&quot;#post #content&quot;).val();autosavePeriodical=b.schedule({time:autosaveL10n.autosaveInterval*1000,func:function(){autosave()},repeat:true,protect:true});b(&quot;#post&quot;).submit(function(){b.cancel(autosavePeriodical)});b('input[type=&quot;submit&quot;], a.submitdelete',&quot;#submitpost&quot;).click(function(){blockSave=true;window.onbeforeunload=null;b(&quot;:button, :submit&quot;,&quot;#submitpost&quot;).each(function(){var c=b(this);if(c.hasClass(&quot;button-primary&quot;)){c.addClass(&quot;button-primary-disabled&quot;)}else{c.addClass(&quot;button-disabled&quot;)}});b(&quot;#ajax-loading&quot;).css(&quot;visibility&quot;,&quot;visible&quot;)});window.onbeforeunload=function(){var c=typeof(tinyMCE)!=&quot;undefined&quot;?tinyMCE.activeEditor:false,e,d;if(c&amp;&amp;!c.isHidden()){if(c.isDirty()){return autosaveL10n.saveAlert}}else{e=b(&quot;#post #title&quot;).val(),d=b(&quot;#post #content&quot;).val();if((e||d)&amp;&amp;e+d!=autosaveLast){return autosaveL10n.saveAlert}}};b(&quot;#post-preview&quot;).click(function(){if(1&gt;b(&quot;#post_ID&quot;).val()&amp;&amp;notSaved){autosaveDelayPreview=true;autosave();return false}doPreview();return false});doPreview=function(){b(&quot;input#wp-preview&quot;).val(&quot;dopreview&quot;);b(&quot;form#post&quot;).attr(&quot;target&quot;,&quot;wp-preview&quot;).submit().attr(&quot;target&quot;,&quot;&quot;);b(&quot;input#wp-preview&quot;).val(&quot;&quot;)};if(typeof tinyMCE!=&quot;undefined&quot;){b(&quot;#title&quot;)[b.browser.opera?&quot;keypress&quot;:&quot;keydown&quot;](function(c){if(c.which==9&amp;&amp;!c.shiftKey&amp;&amp;!c.controlKey&amp;&amp;!c.altKey){if((b(&quot;#post_ID&quot;).val()&lt;1)&amp;&amp;(b(&quot;#title&quot;).val().length&gt;0)){autosave()}if(tinyMCE.activeEditor&amp;&amp;!tinyMCE.activeEditor.isHidden()&amp;&amp;a){c.preventDefault();a=false;tinyMCE.activeEditor.focus();return false}}})}if(0&gt;b(&quot;#post_ID&quot;).val()){b(&quot;#title&quot;).blur(function(){if(!this.value||0&lt;b(&quot;#post_ID&quot;).val()){return}delayed_autosave()})}});function autosave_parse_response(c){var e=wpAjax.parseAjaxResponse(c,&quot;autosave&quot;),f=&quot;&quot;,a,b,d;if(e&amp;&amp;e.responses&amp;&amp;e.responses.length){f=e.responses[0].data;if(e.responses[0].supplemental){b=e.responses[0].supplemental;if(&quot;disable&quot;==b.disable_autosave){autosave=function(){};e={errors:true}}if(b.session_expired&amp;&amp;(d=b.session_expired)){if(!interimLogin||interimLogin.closed){interimLogin=window.open(d,&quot;login&quot;,&quot;width=600,height=450,resizable=yes,scrollbars=yes,status=yes&quot;);interimLogin.focus()}delete b.session_expired}jQuery.each(b,function(g,h){if(g.match(/^replace-/)){jQuery(&quot;#&quot;+g.replace(&quot;replace-&quot;,&quot;&quot;)).val(h)}})}if(!e.errors){a=parseInt(e.responses[0].id,10);if(!isNaN(a)&amp;&amp;a&gt;0){autosave_update_slug(a)}}}if(f){jQuery(&quot;#autosave&quot;).html(f)}else{if(autosaveOldMessage&amp;&amp;e){jQuery(&quot;#autosave&quot;).html(autosaveOldMessage)}}return e}function autosave_saved(a){autosave_parse_response(a);autosave_enable_buttons()}function autosave_saved_new(b){var d=autosave_parse_response(b),c,a;if(d&amp;&amp;d.responses.length&amp;&amp;!d.errors){c=jQuery(&quot;#post_ID&quot;).val();a=parseInt(d.responses[0].id,10);autosave_update_post_ID(a);if(c&lt;0&amp;&amp;a&gt;0){notSaved=false;jQuery(&quot;#media-buttons a&quot;).each(function(){this.href=this.href.replace(c,a)})}if(autosaveDelayPreview){autosaveDelayPreview=false;doPreview()}}else{autosave_enable_buttons()}}function autosave_update_post_ID(a){if(!isNaN(a)&amp;&amp;a&gt;0){if(a==parseInt(jQuery(&quot;#post_ID&quot;).val(),10)){return}jQuery(&quot;#post_ID&quot;).attr({name:&quot;post_ID&quot;});jQuery(&quot;#post_ID&quot;).val(a);jQuery.post(autosaveL10n.requestFile,{action:&quot;autosave-generate-nonces&quot;,post_ID:a,autosavenonce:jQuery(&quot;#autosavenonce&quot;).val(),post_type:jQuery(&quot;#post_type&quot;).val()},function(b){jQuery(&quot;#_wpnonce&quot;).val(b.updateNonce);jQuery(&quot;#delete-action a.submitdelete&quot;).attr(&quot;href&quot;,b.deleteURL);autosave_enable_buttons();jQuery(&quot;#delete-action a.submitdelete&quot;).fadeIn()},&quot;json&quot;);jQuery(&quot;#hiddenaction&quot;).val(&quot;editpost&quot;)}}function autosave_update_slug(a){if(&quot;undefined&quot;!=makeSlugeditClickable&amp;&amp;jQuery.isFunction(makeSlugeditClickable)&amp;&amp;!jQuery(&quot;#edit-slug-box &gt; *&quot;).size()){jQuery.post(ajaxurl,{action:&quot;sample-permalink&quot;,post_id:a,new_title:jQuery(&quot;#title&quot;).val(),samplepermalinknonce:jQuery(&quot;#samplepermalinknonce&quot;).val()},function(b){jQuery(&quot;#edit-slug-box&quot;).html(b);makeSlugeditClickable()})}}function autosave_loading(){jQuery(&quot;#autosave&quot;).html(autosaveL10n.savingText)}function autosave_enable_buttons(){setTimeout(function(){jQuery(&quot;:button, :submit&quot;,&quot;#submitpost&quot;).removeAttr(&quot;disabled&quot;);jQuery(&quot;#ajax-loading&quot;).css(&quot;visibility&quot;,&quot;hidden&quot;)},500)}function autosave_disable_buttons(){jQuery(&quot;:button, :submit&quot;,&quot;#submitpost&quot;).attr(&quot;disabled&quot;,&quot;disabled&quot;);setTimeout(autosave_enable_buttons,5000)}function delayed_autosave(){setTimeout(function(){if(blockSave){return}autosave()},200)}autosave=function(){var c=(typeof tinyMCE!=&quot;undefined&quot;)&amp;&amp;tinyMCE.activeEditor&amp;&amp;!tinyMCE.activeEditor.isHidden(),d,f,b,e,a;autosave_disable_buttons();d={action:&quot;autosave&quot;,post_ID:jQuery(&quot;#post_ID&quot;).val()||0,post_title:jQuery(&quot;#title&quot;).val()||&quot;&quot;,autosavenonce:jQuery(&quot;#autosavenonce&quot;).val(),post_type:jQuery(&quot;#post_type&quot;).val()||&quot;&quot;,autosave:1};jQuery(&quot;.tags-input&quot;).each(function(){d[this.name]=this.value});f=true;if(jQuery(&quot;#TB_window&quot;).css(&quot;display&quot;)==&quot;block&quot;){f=false}if(c&amp;&amp;f){b=tinyMCE.activeEditor;if(b.plugins.spellchecker&amp;&amp;b.plugins.spellchecker.active){f=false}else{if(&quot;mce_fullscreen&quot;==b.id){tinyMCE.get(&quot;content&quot;).setContent(b.getContent({format:&quot;raw&quot;}),{format:&quot;raw&quot;})}tinyMCE.get(&quot;content&quot;).save()}}d.content=jQuery(&quot;#content&quot;).val();if(jQuery(&quot;#post_name&quot;).val()){d.post_name=jQuery(&quot;#post_name&quot;).val()}if((d.post_title.length==0&amp;&amp;d.content.length==0)||d.post_title+d.content==autosaveLast){f=false}e=jQuery(&quot;#original_post_status&quot;).val();goodcats=([]);jQuery(&quot;[name='post_category[]']:checked&quot;).each(function(g){goodcats.push(this.value)});d.catslist=goodcats.join(&quot;,&quot;);if(jQuery(&quot;#comment_status&quot;).attr(&quot;checked&quot;)){d.comment_status=&quot;open&quot;}if(jQuery(&quot;#ping_status&quot;).attr(&quot;checked&quot;)){d.ping_status=&quot;open&quot;}if(jQuery(&quot;#excerpt&quot;).size()){d.excerpt=jQuery(&quot;#excerpt&quot;).val()}if(jQuery(&quot;#post_author&quot;).size()){d.post_author=jQuery(&quot;#post_author&quot;).val()}d.user_ID=jQuery(&quot;#user-id&quot;).val();if(f){autosaveLast=jQuery(&quot;#title&quot;).val()+jQuery(&quot;#content&quot;).val()}else{d.autosave=0}if(parseInt(d.post_ID,10)&lt;1){d.temp_ID=d.post_ID;a=autosave_saved_new}else{a=autosave_saved}autosaveOldMessage=jQuery(&quot;#autosave&quot;).html();jQuery.ajax({data:d,beforeSend:f?autosave_loading:null,type:&quot;POST&quot;,url:autosaveL10n.requestFile,success:a})};
</ins><span class="cx">\ No newline at end of file
</span></span></pre></div>
<a id="trunkwpincludesscriptloaderphp"></a>
<div class="modfile"><h4>Modified: trunk/wp-includes/script-loader.php (12021 => 12022)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/wp-includes/script-loader.php        2009-10-11 11:26:59 UTC (rev 12021)
+++ trunk/wp-includes/script-loader.php        2009-10-13 10:02:42 UTC (rev 12022)
</span><span class="lines">@@ -98,7 +98,7 @@
</span><span class="cx">                 'l10n_print_after' =&gt; 'try{convertEntities(wpAjax);}catch(e){};'
</span><span class="cx">         ) );
</span><span class="cx"> 
</span><del>-        $scripts-&gt;add( 'autosave', &quot;/wp-includes/js/autosave$suffix.js&quot;, array('schedule', 'wp-ajax-response'), '20091010' );
</del><ins>+        $scripts-&gt;add( 'autosave', &quot;/wp-includes/js/autosave$suffix.js&quot;, array('schedule', 'wp-ajax-response'), '20091012' );
</ins><span class="cx">         $scripts-&gt;add_data( 'autosave', 'group', 1 );
</span><span class="cx"> 
</span><span class="cx">         $scripts-&gt;add( 'wp-lists', &quot;/wp-includes/js/wp-lists$suffix.js&quot;, array('wp-ajax-response'), '20091007' );
</span><span class="lines">@@ -265,28 +265,17 @@
</span><span class="cx"> 
</span><span class="cx">                 $scripts-&gt;add( 'xfn', &quot;/wp-admin/js/xfn$suffix.js&quot;, false, '3517m' );
</span><span class="cx"> 
</span><del>-                $scripts-&gt;add( 'postbox', &quot;/wp-admin/js/postbox$suffix.js&quot;, array('jquery-ui-sortable'), '20090618' );
</del><ins>+                $scripts-&gt;add( 'postbox', &quot;/wp-admin/js/postbox$suffix.js&quot;, array('jquery-ui-sortable'), '20091012' );
</ins><span class="cx">                 $scripts-&gt;add_data( 'postbox', 'group', 1 );
</span><del>-                $scripts-&gt;localize( 'postbox', 'postboxL10n', array(
-                        'requestFile' =&gt; admin_url('admin-ajax.php')
-                ) );
</del><span class="cx"> 
</span><del>-                $scripts-&gt;add( 'slug', &quot;/wp-admin/js/slug$suffix.js&quot;, array('jquery'), '20090207' );
-                $scripts-&gt;add_data( 'slug', 'group', 1 );
-                $scripts-&gt;localize( 'slug', 'slugL10n', array(
-                        'requestFile' =&gt; admin_url('admin-ajax.php'),
-                        'save' =&gt; __('OK'),
-                        'cancel' =&gt; __('Cancel'),
-                        'l10n_print_after' =&gt; 'try{convertEntities(slugL10n);}catch(e){};'
-                ) );
-
-                $scripts-&gt;add( 'post', &quot;/wp-admin/js/post$suffix.js&quot;, array('suggest', 'wp-lists', 'postbox', 'slug'), '20090825' );
</del><ins>+                $scripts-&gt;add( 'post', &quot;/wp-admin/js/post$suffix.js&quot;, array('suggest', 'wp-lists', 'postbox'), '20091012' );
</ins><span class="cx">                 $scripts-&gt;add_data( 'post', 'group', 1 );
</span><span class="cx">                 $scripts-&gt;localize( 'post', 'postL10n', array(
</span><span class="cx">                         'tagsUsed' =&gt;  __('Tags used on this post:'),
</span><span class="cx">                         'add' =&gt; esc_attr(__('Add')),
</span><span class="cx">                         'addTag' =&gt; esc_attr(__('Add new tag')),
</span><span class="cx">                         'separate' =&gt; __('Separate tags with commas'),
</span><ins>+                        'ok' =&gt; __('OK'),
</ins><span class="cx">                         'cancel' =&gt; __('Cancel'),
</span><span class="cx">                         'edit' =&gt; __('Edit'),
</span><span class="cx">                         'publishOn' =&gt; __('Publish on:'),
</span><span class="lines">@@ -296,7 +285,8 @@
</span><span class="cx">                         'endcomm' =&gt; __('No more comments found.'),
</span><span class="cx">                         'publish' =&gt; __('Publish'),
</span><span class="cx">                         'schedule' =&gt; __('Schedule'),
</span><del>-                        'update' =&gt; __('Update Post'),
</del><ins>+                        'updatePost' =&gt; __('Update Post'),
+                        'updatePage' =&gt; __('Update Page'),
</ins><span class="cx">                         'savePending' =&gt; __('Save as Pending'),
</span><span class="cx">                         'saveDraft' =&gt; __('Save Draft'),
</span><span class="cx">                         'private' =&gt; __('Private'),
</span><span class="lines">@@ -308,29 +298,6 @@
</span><span class="cx">                         'l10n_print_after' =&gt; 'try{convertEntities(postL10n);}catch(e){};'
</span><span class="cx">                 ) );
</span><span class="cx"> 
</span><del>-                $scripts-&gt;add( 'page', &quot;/wp-admin/js/page$suffix.js&quot;, array('jquery', 'slug', 'wp-lists', 'postbox'), '20090825' );
-                $scripts-&gt;add_data( 'page', 'group', 1 );
-                $scripts-&gt;localize( 'page', 'postL10n', array(
-                        'cancel' =&gt; __('Cancel'),
-                        'edit' =&gt; __('Edit'),
-                        'publishOn' =&gt; __('Publish on:'),
-                        'publishOnFuture' =&gt;  __('Schedule for:'),
-                        'publishOnPast' =&gt; __('Published on:'),
-                        'showcomm' =&gt; __('Show more comments'),
-                        'endcomm' =&gt; __('No more comments found.'),
-                        'publish' =&gt; __('Publish'),
-                        'schedule' =&gt; __('Schedule'),
-                        'update' =&gt; __('Update Page'),
-                        'savePending' =&gt; __('Save as Pending'),
-                        'saveDraft' =&gt; __('Save Draft'),
-                        'private' =&gt; __('Private'),
-                        'public' =&gt; __('Public'),
-                        'password' =&gt; __('Password Protected'),
-                        'privatelyPublished' =&gt; __('Privately Published'),
-                        'published' =&gt; __('Published'),
-                        'l10n_print_after' =&gt; 'try{convertEntities(postL10n);}catch(e){};'
-                ) );
-
</del><span class="cx">                 $scripts-&gt;add( 'link', &quot;/wp-admin/js/link$suffix.js&quot;, array('wp-lists', 'postbox'), '20090506' );
</span><span class="cx">                 $scripts-&gt;add_data( 'link', 'group', 1 );
</span><span class="cx"> 
</span><span class="lines">@@ -456,7 +423,7 @@
</span><span class="cx">         // all colors stylesheets need to have the same query strings (cache manifest compat)
</span><span class="cx">         $colors_version = '20091007';
</span><span class="cx"> 
</span><del>-        $styles-&gt;add( 'wp-admin', &quot;/wp-admin/wp-admin$suffix.css&quot;, array(), '20091007' );
</del><ins>+        $styles-&gt;add( 'wp-admin', &quot;/wp-admin/wp-admin$suffix.css&quot;, array(), '20091012' );
</ins><span class="cx">         $styles-&gt;add_data( 'wp-admin', 'rtl', &quot;/wp-admin/rtl$suffix.css&quot; );
</span><span class="cx"> 
</span><span class="cx">         $styles-&gt;add( 'ie', '/wp-admin/css/ie.css', array(), '20090922' );
</span></span></pre>
</div>
</div>

</body>
</html>