Changeset 8335

Show
Ignore:
Timestamp:
07/15/08 02:01:08 (4 months ago)
Author:
mdawaffe
Message:

crazyhorse: merge with log:trunk@8240:8334

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • branches/crazyhorse/readme.html

    r7104 r8335  
    99<h1 id="logo" style="text-align: center"> 
    1010    <img alt="WordPress" src="wp-admin/images/wordpress-logo.png" /> 
    11     <br /> Version 2.5 
     11    <br /> Version 2.6 
    1212</h1> 
    1313<p style="text-align: center">Semantic Personal Publishing Platform</p> 
     
    3030<h1>Upgrading</h1> 
    3131<p>Before you upgrade anything, make sure you have backup copies of any files you may have modified such as <code>index.php</code>.</p> 
    32 <h2>Upgrading from any previous WordPress to 2.5:</h2> 
     32<h2>Upgrading from any previous WordPress to 2.6:</h2> 
    3333<ol> 
    3434    <li>Delete your old WP files, saving ones you've modified.</li> 
  • branches/crazyhorse/wp-admin/admin-ajax.php

    r8277 r8335  
    3131    check_ajax_referer( "delete-comment_$id" ); 
    3232    if ( !$comment = get_comment( $id ) ) 
    33         die('0'); 
     33        die('1'); 
    3434    if ( !current_user_can( 'edit_post', $comment->comment_post_ID ) ) 
    3535        die('-1'); 
    3636 
    37     if ( isset($_POST['spam']) && 1 == $_POST['spam'] ) 
     37    if ( isset($_POST['spam']) && 1 == $_POST['spam'] ) { 
     38        if ( 'spam' == wp_get_comment_status( $comment->comment_ID ) ) 
     39            die('1'); 
    3840        $r = wp_set_comment_status( $comment->comment_ID, 'spam' ); 
    39     else 
     41    } else { 
    4042        $r = wp_delete_comment( $comment->comment_ID ); 
     43    } 
    4144 
    4245    die( $r ? '1' : '0' ); 
     
    4750        die('-1'); 
    4851 
     52    $cat = get_category( $id ); 
     53    if ( !$cat || is_wp_error( $cat ) ) 
     54        die('1'); 
     55 
    4956    if ( wp_delete_category( $id ) ) 
    5057        die('1'); 
    51     else    die('0'); 
     58    else 
     59        die('0'); 
    5260    break; 
    5361case 'delete-tag' : 
     
    5664        die('-1'); 
    5765 
     66    $tag = get_term( $id, 'post_tag' ); 
     67    if ( !$tag || is_wp_error( $tag ) ) 
     68        die('1'); 
     69 
    5870    if ( wp_delete_term($id, 'post_tag')) 
    5971        die('1'); 
    60     else    die('0'); 
     72    else 
     73        die('0'); 
    6174    break; 
    6275case 'delete-link-cat' : 
     
    6477    if ( !current_user_can( 'manage_categories' ) ) 
    6578        die('-1'); 
     79 
     80    $cat = get_term( $id, 'link_category' ); 
     81    if ( !$cat || is_wp_error( $cat ) ) 
     82        die('1'); 
    6683 
    6784    $cat_name = get_term_field('name', $id, 'link_category'); 
     
    95112        die('-1'); 
    96113 
     114    $link = get_bookmark( $id ); 
     115    if ( !$link || is_wp_error( $link ) ) 
     116        die('1'); 
     117 
    97118    if ( wp_delete_link( $id ) ) 
    98119        die('1'); 
    99     else    die('0'); 
     120    else 
     121        die('0'); 
    100122    break; 
    101123case 'delete-meta' : 
    102124    check_ajax_referer( "delete-meta_$id" ); 
    103125    if ( !$meta = get_post_meta_by_id( $id ) ) 
    104         die('0'); 
     126        die('1'); 
     127 
    105128    if ( !current_user_can( 'edit_post', $meta->post_id ) ) 
    106129        die('-1'); 
     
    114137        die('-1'); 
    115138 
     139    if ( !get_post( $id ) ) 
     140        die('1'); 
     141 
    116142    if ( wp_delete_post( $id ) ) 
    117143        die('1'); 
     
    124150        die('-1'); 
    125151 
     152    if ( !get_page( $id ) ) 
     153        die('1'); 
     154 
    126155    if ( wp_delete_post( $id ) ) 
    127156        die('1'); 
    128     else    die('0'); 
     157    else 
     158        die('0'); 
    129159    break; 
    130160case 'dim-comment' : 
    131161    if ( !$comment = get_comment( $id ) ) 
    132162        die('0'); 
     163 
    133164    if ( !current_user_can( 'edit_post', $comment->comment_post_ID ) ) 
    134165        die('-1'); 
     
    136167        die('-1'); 
    137168 
    138     if ( in_array( wp_get_comment_status($comment->comment_ID), array( 'unapproved', 'spam' ) ) ) { 
     169    $current = wp_get_comment_status( $comment->comment_ID ); 
     170    if ( $_POST['new'] == $current ) 
     171        die('1'); 
     172 
     173    if ( in_array( $current, array( 'unapproved', 'spam' ) ) ) { 
    139174        check_ajax_referer( "approve-comment_$id" ); 
    140175        if ( wp_set_comment_status( $comment->comment_ID, 'approve' ) ) 
  • branches/crazyhorse/wp-admin/admin-header.php

    r8270 r8335  
    6767<div id="wpcontent"> 
    6868<div id="wphead"> 
    69 <h1><a href="<?php echo clean_url( admin_url() ); ?>"><?php if ( '' == get_bloginfo('name') ) echo '&nbsp;'; else echo get_bloginfo('name'); ?></a><span id="viewsite"><a href="<?php echo trailingslashit( get_option('home') ); ?>"><?php _e('Visit Site') ?></a></span></h1> 
     69<h1><a href="<?php echo clean_url( admin_url() ); ?>"><?php if ( '' == get_bloginfo('name', 'display') ) echo '&nbsp;'; else echo get_bloginfo('name', 'display'); ?></a><span id="viewsite"><a href="<?php echo trailingslashit( get_option('home') ); ?>"><?php _e('Visit Site') ?></a></span></h1> 
    7070</div> 
    7171 
  • branches/crazyhorse/wp-admin/admin.php

    r8124 r8335  
    114114} 
    115115 
     116if ( !empty($_REQUEST['action']) ) 
     117    do_action('admin_action_' . $_REQUEST['action']); 
     118 
    116119?> 
  • branches/crazyhorse/wp-admin/css/colors-classic.css

    r8329 r8335  
    325325} 
    326326 
    327 #adminmenu li a #awaiting-mod span
     327#adminmenu li a #awaiting-mod span, #sidemenu li a #update-plugins span
    328328    background-color: #d54e21; 
    329329    color: #fff; 
     
    336336 
    337337 
    338 #adminmenu li a:hover #awaiting-mod span
     338#adminmenu li a:hover #awaiting-mod span, #sidemenu li a:hover #update-plugins span
    339339    background-color: #07273E; 
    340340} 
  • branches/crazyhorse/wp-admin/css/colors-fresh.css

    r8329 r8335  
    302302} 
    303303 
    304 #adminmenu li a #awaiting-mod span, #rightnow .reallynow { 
     304#adminmenu li a #awaiting-mod span, #sidemenu li a #update-plugins span, #rightnow .reallynow { 
    305305    background-color: #d54e21; 
    306306    color: #fff; 
    307307} 
    308308 
    309 #adminmenu li a:hover #awaiting-mod span
     309#adminmenu li a:hover #awaiting-mod span, #sidemenu li a:hover #update-plugins span
    310310    background-color: #264761; 
    311311} 
  • branches/crazyhorse/wp-admin/css/dashboard-rtl.css

    r8116 r8335  
    2323} 
    2424 
     25div.dashboard-widget-submit input { 
     26    font-family: sans-serif !important; 
     27} 
     28     
    2529#dashboard-widgets .widget_rss ul li a { 
    2630    float:right; 
     
    6468    float: right; 
    6569} 
     70#dashboard_secondary div.dashboard-widget-content ul li .post { 
     71    font-family: sans-serif !important; 
     72} 
    6673#dashboard_secondary div.dashboard-widget-content ul li a { 
    6774    border-right:0 none; 
    6875    border-left:1px solid #DADADA; 
    6976} 
     77#dashboard_secondary div.dashboard-widget-content ul li a cite { 
     78    font-family: sans-serif; 
     79} 
  • branches/crazyhorse/wp-admin/css/global-rtl.css

    r7908 r8335  
    1 /* styles for use by people extending the WordPress interface */ 
     1//* styles for use by people extending the WordPress interface */ 
     2body, td { font-family: sans-serif; } 
     3 
     4textarea, input, select { font-family: sans-serif; } 
     5 
    26.alignleft { float: right; } 
    37.alignright { float: left; } 
     
    59.textleft { text-align: right; } 
    610.textright { text-align: left; } 
     11     
     12.wrap h2 { font-family: sans-serif; } 
    713 
    814.widefat td { 
  • branches/crazyhorse/wp-admin/css/install-rtl.css

    r7398 r8335  
    11body { 
    2     font-size: 11px;; 
     2    font-size: 11px; 
     3    font-family: sans-serif !important; 
    34} 
    45ul, ol { 
     
    1819    text-align: left; 
    1920} 
     21.submit input, .button, .button-secondary { 
     22    font-family: sans-serif !important; 
     23} 
     24h1 { 
     25    font-family: sans-serif; 
     26} 
  • branches/crazyhorse/wp-admin/css/install.css

    r7130 r8335  
    88    width: 700px; 
    99    padding: 1em 2em; 
     10    -moz-border-radius: 12px; 
     11    -khtml-border-radius: 12px; 
    1012    -webkit-border-radius: 12px; 
    11     font-size: 62.5%
     13    border-radius: 12px
    1214} 
    1315 
     
    2628p, li { 
    2729    padding-bottom: 2px; 
    28     font-size: 1.3em
    29     line-height: 1.8em
     30    font-size: 13px
     31    line-height: 18px
    3032} 
    3133 
    3234code { 
    33     font-size: 1.3em
     35    font-size: 13px
    3436} 
    3537 
     
    3840#logo { margin: 6px 0 14px 0px; border-bottom: none;} 
    3941 
    40 .step a, .step input { font-size: 2em; } 
     42.step { 
     43    margin: 20px 0 15px; 
     44
    4145 
    42 td input { font-size: 1.5em; } 
     46.step input { 
     47    font-size: 18px; 
     48
     49 
     50a.button { 
     51    font-size: 18px; 
     52
    4353 
    4454.step, th { text-align: left; padding: 0; } 
     
    4656.submit input, .button, .button-secondary { 
    4757    font-family: "Lucida Grande", "Lucida Sans Unicode", Tahoma, Verdana, sans-serif; 
    48     padding: 6px; 
    49     border: none
     58    padding: 5px 7px 7px; 
     59    border: 1px solid #a3a3a3
    5060    margin-left: 0; 
    51     font-size: 13px !important; 
    52     -moz-border-radius: 2px; 
    53     -khtml-border-radius: 2px; 
    54     -webkit-border-radius: 2px; 
    55     border-radius: 2px; 
     61    -moz-border-radius: 3px; 
     62    -khtml-border-radius: 3px; 
     63    -webkit-border-radius: 3px; 
     64    border-radius: 3px; 
    5665    color: #246; 
    5766    background: #e5e5e5; 
     
    6473.submit input:hover, .button:hover, .button-secondary:hover { 
    6574    color: #d54e21; 
     75    border-color: #535353; 
    6676} 
    6777 
     
    7686    padding: 10px; 
    7787    border-bottom: 8px solid #fff; 
     88    font-size: 12px; 
    7889} 
    7990 
    8091.form-table th { 
    81     font-size: 12px; 
     92    font-size: 13px; 
    8293    text-align: left; 
    83     padding: 12px 10px 10px 10px; 
     94    padding: 16px 10px 10px 10px; 
    8495    border-bottom: 8px solid #fff; 
    8596    width: 110px; 
     
    101112} 
    102113 
     114.form-table input { 
     115    line-height: 20px; 
     116    font-size: 15px; 
     117    padding: 2px; 
     118} 
     119 
    103120h1 { 
    104121    border-bottom: 1px solid #dadada; 
     
    117134#error-page p { 
    118135    font-size: 14px; 
    119     line-height: 1.6em; 
     136    line-height: 16px; 
     137    margin: 25px 0 20px; 
    120138} 
    121139 
    122140#error-page code { 
    123     font-size: 1em
     141    font-size: 15px
    124142} 
  • branches/crazyhorse/wp-admin/css/login-rtl.css

    r7398 r8335  
    11body { 
    2     font-family: "Lucida Grande", "Lucida Sans Unicode", Tahoma, Verdana, sans-serif; 
     2    font-family: sans-serif; 
    33    direction: rtl; 
     4} 
     5#login form .submit input { 
     6    font-family: sans-serif !important; 
    47} 
    58form { 
  • branches/crazyhorse/wp-admin/css/media.css

    r7988 r8335  
    3333    display:block; 
    3434    font-weight: bold; 
     35    font-size: 13px; 
    3536    margin-bottom: 0.5em; 
    3637    margin: 0 0 0.5em 0; 
     
    229230 
    230231.filename { 
     232    float: left; 
    231233    line-height: 36px; 
    232234    margin-left: 10px; 
    233     float: left; 
     235    overflow: hidden; 
     236    max-width: 430px; 
    234237} 
    235238#media-upload .describe { 
     
    277280    margin: 5px 0; 
    278281} 
     282 
     283.menu_order { 
     284    float: right; 
     285    font-size: 11px; 
     286    margin: 10px 10px 0; 
     287} 
     288 
     289.menu_order_input { 
     290    border: 1px solid #DDDDDD; 
     291    font-size: 10px; 
     292    padding: 1px; 
     293    width: 23px; 
     294} 
     295 
     296.ui-sortable-helper { 
     297    background-color: #fff; 
     298    border: 1px solid #aaa; 
     299    opacity: 0.6; 
     300    filter: alpha(opacity=60); 
     301} 
     302 
     303#media-upload th.order-head { 
     304     width: 25%; 
     305     text-align: center; 
     306} 
     307 
     308#media-upload .widefat { 
     309    width: 626px; 
     310    border-style: solid solid none; 
     311} 
     312 
     313.sorthelper { 
     314    z-index: -1; 
     315} 
  • branches/crazyhorse/wp-admin/css/press-this.css

    r8242 r8335  
    8989} 
    9090 
     91/* Header */ 
    9192#wphead { 
    9293    border-top: none; 
    93 } 
    94  
    95 .button { 
    96 font-family: "Lucida Grande", "Lucida Sans Unicode", Tahoma, Verdana, sans-serif; 
    97 padding: 3px 5px; 
    98 font-size: 12px; 
    99 line-height: 1.5em; 
    100 border-width: 1px; 
    101 border-style: solid; 
    102 -moz-border-radius: 3px; 
    103 -khtml-border-radius: 3px; 
    104 -webkit-border-radius: 3px; 
    105 border-radius: 3px; 
    106 cursor: pointer; 
    107 margin-left: 5px; 
    108 text-decoration: none; 
    109 } 
    110  
    111 .howto { 
    112 font-size: 11px; 
    113 } 
    114 #newtag { width: 60%; padding: 3px; } 
    115  
    116 #wphead { 
    11794    height: 2em; 
    11895    padding-top: 8px; 
     96} 
     97 
     98.button { 
     99    font-family: "Lucida Grande", "Lucida Sans Unicode", Tahoma, Verdana, sans-serif; 
     100    padding: 3px 5px; 
     101    font-size: 12px; 
     102    line-height: 1.5em; 
     103    border-width: 1px; 
     104    border-style: solid; 
     105    -moz-border-radius: 3px; 
     106    -khtml-border-radius: 3px; 
     107    -webkit-border-radius: 3px; 
     108    border-radius: 3px; 
     109    cursor: pointer; 
     110    margin-left: 5px; 
     111    text-decoration: none; 
     112} 
     113 
     114.howto { 
     115    font-size: 11px; 
     116    font-style: italic; 
     117    display: block; 
    119118} 
    120119 
     
    133132 
    134133#wphead #viewsite a { 
    135     font: 12px "Lucida Grande", "Lucida Sans Unicode", Tahoma, Verdana, 
    136         sans-serif; 
     134    font: 12px "Lucida Grande", "Lucida Sans Unicode", Tahoma, Verdana, sans-serif; 
    137135    padding: 3px 4px; 
    138136    display: block; 
     
    174172} 
    175173 
     174/* Editor/Main Column */ 
     175 
     176div#container { 
     177    margin: 0; 
     178    min-width: 500px; 
     179} 
     180 
     181div#container form { 
     182    margin: 0px; 
     183    padding: 0px; 
     184} 
     185 
     186div#posting { 
     187    padding-left: 16px; 
     188    position: absolute; 
     189    z-index: 1; 
     190    width: 66%; 
     191} 
     192 
     193#post_title { 
     194    width: 99%; 
     195} 
     196 
    176197.titlewrap { 
    177198    border-style: solid; 
     
    179200    padding: 2px 3px; 
    180201    border-color: #CCCCCC; 
    181 } 
    182  
    183 div#container { 
    184     margin: 0; 
    185     min-width: 500px; 
    186 } 
    187  
    188 div#posting { 
    189     padding-left: 16px; 
    190     position: absolute; 
    191     z-index: 1; 
    192     width: 66%; 
    193202} 
    194203 
     
    200209} 
    201210 
    202 div#container form { 
    203     margin: 0px; 
    204     padding: 0px; 
    205 } 
    206  
    207 div#categories { 
    208     font-size: 85%; 
    209     position: absolute; 
    210     top: 50px; 
    211     right: 16px; 
    212     width: 27%; 
    213     z-index: 2; 
    214 } 
    215  
    216 div#categories h2 { 
    217     color: #333; 
    218     font-size: 12px; 
    219     margin: .5em 0 0 1em; 
    220     padding: 0; 
    221 } 
    222  
    223 #categories-all { 
    224     overflow: auto; 
    225     padding: 1em; 
    226     height: 15em; 
    227 } 
    228  
    229 #categories ul { 
    230     list-style: none; 
    231     padding: 0; 
    232     margin: 0; 
    233 } 
    234  
    235211.editor-container { 
    236212    border-width: 1px; 
     
    240216} 
    241217 
    242 #tagsdiv #newtag { 
    243     margin-right: 5px; 
    244     width: 16em; 
    245 
    246  
    247 #tagchecklist { 
    248     padding-left: 1em; 
    249     margin-bottom: 1em; 
    250     font-size: 12px; 
    251     overflow: auto; 
    252 
    253  
    254 #tagchecklist strong { 
    255     position: absolute; 
    256     font-size: .75em; 
    257 
    258  
    259 #tagchecklist span { 
    260     margin-right: .5em; 
    261     margin-left: 10px; 
    262     display: block; 
    263     float: left; 
    264     font-size: 11px; 
    265     line-height: 1.8em; 
    266     white-space: nowrap; 
    267     cursor: default; 
    268 
    269  
    270 #tagchecklist span a { 
    271     margin: 6px 0pt 0pt -9px; 
    272     cursor: pointer; 
    273     width: 10px; 
    274     height: 10px; 
    275     display: block; 
    276     float: left; 
    277     text-indent: -9999px; 
    278     overflow: hidden; 
    279     position: absolute; 
    280 
    281  
    282 .howto { 
    283     font-style: italic; 
    284     display: block; 
    285 
    286  
    287 #post_title { 
    288     width: 99%; 
     218/* Photo Styles */ 
     219 
     220#photo_directions { 
     221    margin-top: .25em; 
     222    display: block; 
     223    position: relative; 
     224
     225 
     226#photo_directions span { 
     227    display: block; 
     228    position: absolute; 
     229    top: 0; 
     230    right: 3px; 
     231
     232 
     233#photo_saving { 
     234    margin: 0 8px 8px; 
     235    vertical-align: middle; 
    289236} 
    290237 
     
    301248    float: left; 
    302249} 
     250 
    303251#img_container img { 
    304252    width: 75px; 
     
    315263#img_container a:hover, #img_container a:active { 
    316264    border: 2px solid #000; 
     265} 
     266 
     267/* Submit Column */ 
     268 
     269div#categories { 
     270    font-size: 85%; 
     271    position: absolute; 
     272    top: 50px; 
     273    right: 16px; 
     274    width: 27%; 
     275    z-index: 2; 
     276} 
     277 
     278div#categories h2 { 
     279    color: #333; 
     280    font-size: 12px; 
     281    margin: .5em 0 .5em 1em; 
     282    padding: 0; 
     283} 
     284 
     285#categories-all { 
     286    overflow: auto; 
     287    padding: 0 1em 1em 1em; 
     288    height: 15em; 
     289} 
     290 
     291#categories ul { 
     292    list-style: none; 
     293    padding: 0; 
     294    margin: 0; 
     295} 
     296 
     297#tagsdiv #newtag { 
     298    padding: 3px; 
     299    margin-right: 5px; 
     300    width: 16em;     
     301} 
     302 
     303#jaxtag { 
     304    clear: both; 
     305    padding-left: 1em; 
     306    margin: 0; 
     307} 
     308 
     309#tagchecklist { 
     310    padding-left: 1em; 
     311    margin-bottom: 1em; 
     312    font-size: 12px; 
     313    overflow: auto; 
     314} 
     315 
     316#tagchecklist strong { 
     317    position: absolute; 
     318    font-size: .75em; 
     319} 
     320 
     321#tagchecklist span { 
     322    margin-right: .5em; 
     323    margin-left: 10px; 
     324    display: block; 
     325    float: left; 
     326    font-size: 11px; 
     327    line-height: 1.8em; 
     328    white-space: nowrap; 
     329    cursor: default; 
     330} 
     331 
     332#tagchecklist span a { 
     333    margin: 6px 0pt 0pt -9px; 
     334    cursor: pointer; 
     335    width: 10px; 
     336    height: 10px; 
     337    display: block; 
     338    float: left; 
     339    text-indent: -9999px; 
     340    overflow: hidden; 
     341    position: absolute; 
    317342} 
    318343.submit { 
     
    326351    border-bottom-right-radius: 3px; 
    327352    margin: 0; 
    328     padding: 0
     353    padding: 10px
    329354} 
    330355.submitbox { 
     
    341366    border: none; 
    342367    text-align: left; 
    343     padding: 12px 10px 10px 10px; 
     368    padding: 6px 4px; 
    344369    font-size: 12px; 
    345     margin: 10px; 
    346  
     370    margin: 2px; 
    347371    -moz-border-radius: 3px; 
    348372    -khtml-border-radius: 3px; 
     
    364388} 
    365389 
    366 .hidden { 
    367     display: none; 
    368 
    369  
     390/* Video Styles */ 
    370391.video_split #extra_fields { 
    371392    width: 27%; 
     
    384405} 
    385406 
    386 #jaxtag { 
    387     clear: both; 
    388     padding-left: 1em; 
    389 } 
    390  
    391407.ac_results { 
    392408    padding: 0; 
     
    414430} 
    415431 
    416  
    417432.photolist { 
    418 display: none; 
     433   display: none; 
    419434} 
    420435 
    421436#extra_fields small { 
    422 display: block; 
    423 margin-top: .5em; 
    424 padding-bottom: .25em; 
     437   display: block; 
     438   margin-top: .5em; 
     439   padding-bottom: .25em; 
    425440} 
    426441 
    427442#TB_ajaxContent #options { 
    428 position: absolute; 
    429 top: 20px; 
    430 right: 25px; 
    431 background: white; 
    432 padding: 5px; 
     443    position: absolute; 
     444    top: 20px; 
     445    right: 25px; 
     446    padding: 5px; 
    433447} 
    434448#TB_ajaxContent h3 { 
    435 margin-bottom: .25em; 
     449   margin-bottom: .25em; 
    436450} 
    437451 
     
    463477} 
    464478 
    465 #photo_directions { 
    466 margin-top: .25em; 
    467 display: block; 
    468 position: relative; 
    469 } 
    470 #photo_directions span { 
    471 display: block; 
    472 position: absolute; 
    473 top: 0; 
    474 right: 3px; 
    475 } 
    476 #photo_saving { 
    477 margin-bottom: 8px; 
    478 } 
    479  
    480479#post_status { 
    481480    margin-left: 10px; 
     
    484483} 
    485484 
     485/* Footer */ 
     486 
    486487#footer { 
    487488    height: 65px; 
     
    506507#footer p a:hover { 
    507508    text-decoration: underline; 
     509} 
     510 
     511 
     512/* Utility Classes */ 
     513.centered { 
     514    text-align: center; 
     515} 
     516 
     517.hidden { 
     518    display: none; 
     519} 
  • branches/crazyhorse/wp-admin/css/theme-editor-rtl.css

    r7501 r8335  
     1#template textarea { 
     2    font-family: monospace !important; 
     3} 
    14#templateside { 
    25    float:left; 
  • branches/crazyhorse/wp-admin/gears-manifest.php

    r8242 r8335  
    6565{ 
    6666"betaManifestVersion" : 1, 
    67 "version" : "<?php echo $man_version; ?>_20080701", 
     67"version" : "<?php echo $man_version; ?>_20080710a", 
    6868"entries" : [ 
    6969<?php echo $defaults; ?> 
     
    9898{ "url" : "images/wordpress-logo.png" }, 
    9999{ "url" : "images/xit.gif" }, 
     100{ "url" : "images/loading-publish.gif" }, 
     101{ "url" : "images/loading.gif" }, 
     102{ "url" : "images/required.gif" }, 
     103{ "url" : "images/no.png" }, 
     104{ "url" : "images/yes.png" }, 
    100105 
    101106{ "url" : "../wp-includes/images/crystal/archive.png" }, 
     
    127132{ "url" : "../wp-includes/js/tinymce/themes/advanced/js/source_editor.js?ver=311" }, 
    128133{ "url" : "../wp-includes/js/tinymce/themes/advanced/js/anchor.js?ver=311" }, 
    129 { "url" : "../wp-includes/js/tinymce/plugins/wpeditimage/js/editimage.js?ver=311" }, 
     134{ "url" : "../wp-includes/js/tinymce/plugins/wpeditimage/js/editimage.js?ver=311d" }, 
     135{ "url" : "../wp-includes/js/tinymce/tiny_mce.js?ver=311" }, 
     136{ "url" : "../wp-includes/js/tinymce/themes/advanced/editor_template.js?ver=311" }, 
     137{ "url" : "../wp-includes/js/tinymce/plugins/inlinepopups/editor_plugin.js?ver=311" }, 
    130138 
    131139{ "url" : "../wp-includes/js/tinymce/themes/advanced/source_editor.htm?ver=311" }, 
     
    141149{ "url" : "../wp-includes/js/tinymce/plugins/fullscreen/fullscreen.htm?ver=311" }, 
    142150{ "url" : "../wp-includes/js/tinymce/plugins/inlinepopups/template.htm?ver=311" }, 
    143 { "url" : "../wp-includes/js/tinymce/plugins/wpeditimage/editimage.html?ver=311" }, 
     151{ "url" : "../wp-includes/js/tinymce/plugins/wpeditimage/editimage.html?ver=311d" }, 
    144152{ "url" : "../wp-includes/js/tinymce/wp-mce-help.php?ver=311" }, 
    145153 
     
    154162{ "url" : "../wp-includes/js/tinymce/plugins/paste/css/pasteword.css?ver=311" }, 
    155163{ "url" : "../wp-includes/js/tinymce/plugins/paste/css/blank.css?ver=311" }, 
    156 { "url" : "../wp-includes/js/tinymce/plugins/wpeditimage/css/editimage.css?ver=311" }, 
     164{ "url" : "../wp-includes/js/tinymce/plugins/wpeditimage/css/editimage.css?ver=311d" }, 
    157165{ "url" : "../wp-includes/js/tinymce/plugins/wpeditimage/css/editimage-rtl.css?ver=311" }, 
    158166{ "url" : "../wp-includes/js/tinymce/wordpress.css?ver=311" }, 
    &hell