Ticket #6813: press-this_0704.patch
| File press-this_0704.patch, 4.3 kB (added by azaozz, 5 months ago) |
|---|
-
wp-admin/css/press-this.css
old new 428 428 position: absolute; 429 429 top: 20px; 430 430 right: 25px; 431 background: white;432 431 padding: 5px; 433 432 } 434 433 #TB_ajaxContent h3 { … … 505 504 506 505 #footer p a:hover { 507 506 text-decoration: underline; 507 } 508 509 .centered { 510 text-align: center; 511 } -
wp-admin/gears-manifest.php
old new 64 64 ?> 65 65 { 66 66 "betaManifestVersion" : 1, 67 "version" : "<?php echo $man_version; ?>_2008070 3",67 "version" : "<?php echo $man_version; ?>_20080704", 68 68 "entries" : [ 69 69 <?php echo $defaults; ?> 70 70 … … 97 97 { "url" : "images/toggle-arrow.gif" }, 98 98 { "url" : "images/wordpress-logo.png" }, 99 99 { "url" : "images/xit.gif" }, 100 { "url" : "images/loading-publish.gif" }, 101 { "url" : "images/loading.gif" }, 100 102 101 103 { "url" : "../wp-includes/images/crystal/archive.png" }, 102 104 { "url" : "../wp-includes/images/crystal/audio.png" }, … … 127 129 { "url" : "../wp-includes/js/tinymce/themes/advanced/js/source_editor.js?ver=311" }, 128 130 { "url" : "../wp-includes/js/tinymce/themes/advanced/js/anchor.js?ver=311" }, 129 131 { "url" : "../wp-includes/js/tinymce/plugins/wpeditimage/js/editimage.js?ver=311" }, 132 { "url" : "../wp-includes/js/tinymce/tiny_mce.js?ver=311" }, 133 { "url" : "../wp-includes/js/tinymce/themes/advanced/editor_template.js?ver=311" }, 134 { "url" : "../wp-includes/js/tinymce/plugins/inlinepopups/editor_plugin.js?ver=311" }, 130 135 131 136 { "url" : "../wp-includes/js/tinymce/themes/advanced/source_editor.htm?ver=311" }, 132 137 { "url" : "../wp-includes/js/tinymce/themes/advanced/anchor.htm?ver=311" }, -
wp-admin/press-this.php
old new 136 136 <input id="this_photo_description" name="photo_description" class="text" onkeypress="if(event.keyCode==13) image_selector();" value="<?php echo attribute_escape($title);?>"/> 137 137 </div> 138 138 139 <p ><input type="hidden" name="this_photo" value="<?php echo attribute_escape($image); ?>" id="this_photo" />140 <a href="#" class="select"><img src="<?php echo clean_url($image); ?>" width="475"alt="<?php echo attribute_escape(__('Click to insert.')); ?>" title="<?php echo attribute_escape(__('Click to insert.')); ?>" /></a></p>139 <p class="centered"><input type="hidden" name="this_photo" value="<?php echo attribute_escape($image); ?>" id="this_photo" /> 140 <a href="#" class="select"><img src="<?php echo clean_url($image); ?>" alt="<?php echo attribute_escape(__('Click to insert.')); ?>" title="<?php echo attribute_escape(__('Click to insert.')); ?>" /></a></p> 141 141 142 <p id="options"><a href="#" class="select "><?php _e('Insert Image'); ?></a> | <a href="#" class="cancel"><?php _e('Cancel'); ?></a></p>142 <p id="options"><a href="#" class="select button"><?php _e('Insert Image'); ?></a> <a href="#" class="cancel button"><?php _e('Cancel'); ?></a></p> 143 143 <?php die; 144 144 } 145 145 … … 295 295 <meta http-equiv="Content-Type" content="<?php bloginfo('html_type'); ?>; charset=<?php echo get_option('blog_charset'); ?>" /> 296 296 <title><?php _e('Press This') ?></title> 297 297 298 <script type="text/javascript" src="../wp-includes/js/tinymce/tiny_mce.js "></script>298 <script type="text/javascript" src="../wp-includes/js/tinymce/tiny_mce.js?ver=311"></script> 299 299 <?php 300 300 add_thickbox(); 301 301 wp_enqueue_style('press-this'); -
wp-includes/script-loader.php
old new 229 229 $styles->add( 'dashboard', '/wp-admin/css/dashboard.css' ); 230 230 $styles->add( 'install', '/wp-admin/css/install.css' ); 231 231 $styles->add( 'theme-editor', '/wp-admin/css/theme-editor.css' ); 232 $styles->add( 'press-this', '/wp-admin/css/press-this.css' );232 $styles->add( 'press-this', '/wp-admin/css/press-this.css', array(), '20080704' ); 233 233 $styles->add( 'thickbox', '/wp-includes/js/thickbox/thickbox.css', array(), '20080613' ); 234 234 $styles->add( 'login', '/wp-admin/css/login.css' ); 235 235
