Changeset 2763
- Timestamp:
- 08/08/2005 03:28:37 AM (19 years ago)
- Location:
- trunk/wp-admin
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/admin-header.php
r2762 r2763 9 9 <link rel="stylesheet" href="<?php echo get_settings('siteurl') ?>/wp-admin/wp-admin.css?version=<?php bloginfo('version'); ?>" type="text/css" /> 10 10 <meta http-equiv="Content-Type" content="<?php bloginfo('html_type'); ?>; charset=<?php echo get_settings('blog_charset'); ?>" /> 11 12 <?php if ( get_option('rich_editing') ) :?>13 <script type="text/javascript" src="tinymce/tiny_mce_src.js"></script>14 <script type="text/javascript">15 tinyMCE.init({16 mode : "specific_textareas",17 textarea_trigger : "title",18 theme : "advanced",19 theme_advanced_buttons1 : "bold,italic,strikethrough,separator,bullist,numlist,separator,justifyleft,justifycenter,justifyright,separator,link,unlink,image,emotions,separator,undo,redo,code",20 theme_advanced_buttons2 : "",21 theme_advanced_buttons3 : "",22 theme_advanced_toolbar_location : "top",23 theme_advanced_toolbar_align : "left",24 theme_advanced_path_location : "bottom",25 entity_encoding : "raw",26 extended_valid_elements : "a[id|href|title|onclick],img[class|src|alt|title|width|height|align]",27 plugins : "emotions"28 <?php do_action('mce_options'); ?>29 });30 </script>31 <?php endif; ?>32 11 33 12 <script type="text/javascript"> … … 94 73 95 74 addLoadEvent(blurry); 96 97 75 <?php endif; ?> 98 99 100 76 //]]> 101 77 </script> 102 78 <script type="text/javascript" src="fat.js"></script> 79 <?php if ( get_option('rich_editing') ) :?> 80 <script type="text/javascript" src="tinymce/tiny_mce_src.js"></script> 81 <script type="text/javascript"> 82 tinyMCE.init({ 83 mode : "specific_textareas", 84 textarea_trigger : "title", 85 width : "100%", 86 theme : "advanced", 87 theme_advanced_buttons1 : "bold,italic,strikethrough,separator,bullist,numlist,separator,justifyleft,justifycenter,justifyright,separator,link,unlink,image,emotions,separator,undo,redo,code", 88 theme_advanced_buttons2 : "", 89 theme_advanced_buttons3 : "", 90 theme_advanced_toolbar_location : "top", 91 theme_advanced_toolbar_align : "left", 92 theme_advanced_path_location : "bottom", 93 entity_encoding : "raw", 94 extended_valid_elements : "a[id|href|title|onclick],img[class|src|alt|title|width|height|align]", 95 plugins : "emotions" 96 <?php do_action('mce_options'); ?> 97 }); 98 </script> 99 <?php endif; ?> 103 100 <?php if ( isset( $editing ) ) : ?> 104 101 <script type="text/javascript" src="dbx.js"></script> -
trunk/wp-admin/dbx-key.js
r2762 r2763 1 2 1 3 2 //initialisation function … … 11 10 var meta = new dbxGroup( 12 11 'grabit', // container ID [/-_a-zA-Z0-9/] 13 'vertical', 14 ' 7', // drag threshold ['n' pixels]12 'vertical', // orientation ['vertical'|'horizontal'] 13 '10', // drag threshold ['n' pixels] 15 14 'no', // restrict drag movement to container axis ['yes'|'no'] 16 15 '10', // animate re-ordering [frames per transition, or '0' for no effect] … … 29 28 'advancedstuff', // container ID [/-_a-zA-Z0-9/] 30 29 'vertical', // orientation ['vertical'|'horizontal'] 31 ' 7', // drag threshold ['n' pixels]30 '10', // drag threshold ['n' pixels] 32 31 'yes', // restrict drag movement to container axis ['yes'|'no'] 33 32 '10', // animate re-ordering [frames per transition, or '0' for no effect] -
trunk/wp-admin/edit-pages.php
r2720 r2763 8 8 <div class="wrap"> 9 9 <h2><?php _e('Page Management'); ?></h2> 10 <p><?php _e('Pages are like posts except they live outside of the normal blog chronology and can be hierarchical. You can use pages to organize and manage any amount of content.'); ?> <a href="page-new.php"><?php _e('Create a new page'); ?> »</a></p> 10 11 11 12 <?php … … 33 34 } // end if ($posts) 34 35 ?> 35 <p><?php _e('Pages are like posts except they live outside of the normal blog chronology. You can use pages to organize and manage any amount of content.'); ?></p> 36 36 37 <h3><a href="page-new.php"><?php _e('Create New Page'); ?> »</a></h3> 37 </div>38 38 39 </div> 39 40 40 41 <?php include('admin-footer.php'); ?> -
trunk/wp-admin/options-personal-update.php
r2760 r2763 2 2 3 3 require_once('admin.php'); 4 5 check_admin_referer(); 4 6 5 7 if ( isset( $_POST['action'] ) ) { -
trunk/wp-admin/options.php
r2714 r2763 29 29 case 'update': 30 30 $any_changed = 0; 31 32 check_admin_referer(); 31 33 32 34 if (!$_POST['page_options']) { -
trunk/wp-admin/themes.php
r2762 r2763 27 27 <div id="message1" class="updated fade"><p><?php _e('The active theme is broken. Reverting to the default theme.'); ?></p></div> 28 28 <?php elseif ( isset($activated) ) : ?> 29 <div id="message2" class="updated fade"><p><?php _e('New theme activated'); ?></p></div>29 <div id="message2" class="updated fade"><p><?php printf(__('New theme activated. <a href="%s">View site »</a>'), get_bloginfo('home')); ?></p></div> 30 30 <?php endif; ?> 31 31
Note: See TracChangeset
for help on using the changeset viewer.