Make WordPress Core


Ignore:
Timestamp:
03/21/2008 10:13:03 PM (18 years ago)
Author:
ryan
Message:

TinyMCE updates from azaozz. fixes #6340

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-includes/js/tinymce/wp-mce-help.php

    r7378 r7464  
    1111wp_admin_css( 'css/global' );
    1212wp_admin_css();
    13 wp_admin_css( 'css/colors' );
    1413?>
    1514<style type="text/css">
    16     body {
    17     }
    18     #wphead {
    19         padding-top: 2px;
    20         padding-left: 15px;
     15    #wphead {
    2116        font-size: 80%;
    2217        border-top: 0;
     18        color:#555;
     19        background-color: #e4f2fd;
     20    }
     21    #wphead h1 {
     22        font-size: 32px;
     23        color: #555;
     24        margin: 0;
     25        padding: 10px;
    2326    }
    2427    #adminmenu {
    2528        padding-top: 2px;
    2629        padding-left: 15px;
    27         font-size: 80%;
     30        background-color: #e4f2fd;
     31        border-color: #C6D9E9;
     32    }
     33    #adminmenu a.current {
     34        background-color: #fff;
     35        border-color: #c6d9e9;
     36        border-bottom-color: #fff;
     37        color: #d54e21;
     38    }
     39    #adminmenu a {
     40        color: #2583AD;
     41        padding: 6px;
     42        border-width: 1px;
     43        border-style: solid solid none;
     44        border-color: #E4F2FD;
     45    }
     46    #adminmenu a:hover {
     47        color: #d54e21;
     48    }
     49    .wrap h2 {
     50        border-bottom-color:#DADADA;
     51        color:#666666;
    2852    }
    2953    #user_info {
     
    133157    }
    134158    tinyMCEPopup.onInit.add(init);
    135 
    136     // For modal dialogs in IE
    137     if (tinymce.isIE)
    138        document.write('<base target="_self" />');
    139159</script>
    140160</head>
     
    144164
    145165<ul id="adminmenu">
    146     <li><a id="tab1" href="javascript:flipTab(1)" title="<?php _e('Basics of Rich Editing') ?>" accesskey="1" class="current"><?php _e('Basics') ?></a></li>
    147     <li><a id="tab2" href="javascript:flipTab(2)" title="<?php _e('Advanced use of the Rich Editor') ?>" accesskey="2"><?php _e('Advanced') ?></a></li>
    148     <li><a id="tab3" href="javascript:flipTab(3)" title="<?php _e('Hotkeys') ?>" accesskey="3"><?php _e('Hotkeys') ?></a></li>
    149     <li><a id="tab4" href="javascript:flipTab(4)" title="<?php _e('About the software') ?>" accesskey="4"><?php _e('About') ?></a></li>
     166    <li><a id="tab1" href="javascript:flipTab(1)" title="<?php _e('Basics of Rich Editing') ?>" accesskey="1" tabindex="1" class="current"><?php _e('Basics') ?></a></li>
     167    <li><a id="tab2" href="javascript:flipTab(2)" title="<?php _e('Advanced use of the Rich Editor') ?>" accesskey="2" tabindex="2"><?php _e('Advanced') ?></a></li>
     168    <li><a id="tab3" href="javascript:flipTab(3)" title="<?php _e('Hotkeys') ?>" accesskey="3" tabindex="3"><?php _e('Hotkeys') ?></a></li>
     169    <li><a id="tab4" href="javascript:flipTab(4)" title="<?php _e('About the software') ?>" accesskey="4" tabindex="4"><?php _e('About') ?></a></li>
    150170</ul>
    151171
     
    164184    <h3><?php _e('Images and Attachments') ?></h3>
    165185    <p><?php _e('There is a button in the editor toolbar for inserting images that are already hosted somewhere on the internet. If you have a URL for an image, click this button and enter the URL in the box which appears.') ?></p>
    166     <p><?php _e('If you need to upload an image or sound file from your computer, you can use the uploading tool below the editor. The tool will attempt to create a thumbnail-sized image when you upload an image. To insert your uploaded image into the post, first click on the thumbnail to reveal a menu of options. Clicking on a "Using.." or "Linked..." option will change that option. For instance, you might want to use the thumbnail in the post and link it to a page showing the original with a caption. When you have selected the options you like, click "Send to Editor" and your image or file will appear in the post you are editing.') ?></p>
     186    <p><?php _e('If you need to upload an image or sound file from your computer, you can use the media library buttons above the editor. The media library will attempt to create a thumbnail-sized image when you upload an image. To insert your uploaded image into the post, first click on the thumbnail to reveal a menu of options. When you have selected the options you like, click "Send to Editor" and your image or file will appear in the post you are editing.') ?></p>
    167187    <h3><?php _e('HTML in the Rich Editor') ?></h3>
    168     <p><?php _e('Any HTML entered directly into the rich editor will show up as text when the post is viewed. What you see is what you get. When you want to include HTML elements that cannot be generated with the toolbar buttons, you must enter it by hand in the HTML editor. Examples are tables and &lt;code&gt;. To do this, click the HTML button and edit the code, then click Update. If the code is valid and understood by the editor, you should see it rendered immediately.') ?></p>
     188    <p><?php _e('Any HTML entered directly into the rich editor will show up as text when the post is viewed. What you see is what you get. When you want to include HTML elements that cannot be generated with the toolbar buttons, you must enter it by hand in the HTML editor. Examples are tables and &lt;code&gt;. To do this, click the HTML tab and edit the code, then switch back to Visual mode. If the code is valid and understood by the editor, you should see it rendered immediately.') ?></p>
     189    <h3><?php _e('Pasting in the Rich Editor') ?></h3>
     190    <p><?php _e('When pasting content from another web page the results can be inconsistent and depend on your browser and on the web page you are pasting from. The editor tries to correct any invalid HTML code that was pasted, but for best results try using the HTML tab or one of the paste buttons that are on the second row. Alternatively try pasting paragraph by paragraph. In most browsers to select one paragraph at a time, triple-click on it.') ?></p>
     191    <p><?php _e('Pasting content from another application, like Word or Excel, is best done with the Paste from Word button on the second row, or in HTML mode.') ?></p>
    169192</div>
    170193
Note: See TracChangeset for help on using the changeset viewer.