Make WordPress Core

Changeset 2756


Ignore:
Timestamp:
08/07/2005 08:58:10 AM (20 years ago)
Author:
matt
Message:

Tweaks and catchups

Location:
trunk/wp-admin
Files:
8 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/admin-header.php

    r2755 r2756  
    2323    theme_advanced_toolbar_align : "left",
    2424    theme_advanced_path_location : "bottom",
    25     entity_encoding : "numeric",
    26     extended_valid_elements : "a[name|href|target|title|onclick],img[class|src|border=0|alt|title|width|height|align],hr[class|width|size|noshade],font[face|size|color|style],span[class|align|style]",
     25    entity_encoding : "raw",
     26    extended_valid_elements : "a[id|href|title|onclick],img[class|src|alt|title|width|height|align]",
    2727    plugins : "emotions"
    2828});
  • trunk/wp-admin/edit-comments.php

    r2724 r2756  
    8989            echo "<li class='$class'>";
    9090?>     
    91         <p><strong><?php _e('Name:') ?></strong> <?php comment_author() ?> <?php if ($comment->comment_author_email) { ?>| <strong><?php _e('E-mail:') ?></strong> <?php comment_author_email_link() ?> <?php } if ($comment->comment_author_url) { ?> | <strong><?php _e('URI:') ?></strong> <?php comment_author_url_link() ?> <?php } ?>| <strong><?php _e('IP:') ?></strong> <a href="http://ws.arin.net/cgi-bin/whois.pl?queryinput=<?php comment_author_IP() ?>"><?php comment_author_IP() ?></a></p>
     91        <p><strong><?php _e('Name:') ?></strong> <?php comment_author() ?> <?php if ($comment->comment_author_email) { ?>| <strong><?php _e('E-mail:') ?></strong> <?php comment_author_email_link() ?> <?php } if ($comment->comment_author_url && 'http://' != $comment->comment_author_url ) { ?> | <strong><?php _e('URI:') ?></strong> <?php comment_author_url_link() ?> <?php } ?>| <strong><?php _e('IP:') ?></strong> <a href="http://ws.arin.net/cgi-bin/whois.pl?queryinput=<?php comment_author_IP() ?>"><?php comment_author_IP() ?></a></p>
    9292       
    9393        <?php comment_text() ?>
  • trunk/wp-admin/edit-form-advanced.php

    r2748 r2756  
    4949<?php if (isset($_GET['message']) && 2 > $_GET['message']) : ?>
    5050<script type="text/javascript">
    51 <!--
    5251function focusit() {
    5352    // focus on first input field
     
    5554}
    5655window.onload = focusit;
    57 //-->
    5856</script>
    5957<?php endif; ?>
     
    172170</p>
    173171
    174 <?php do_action('edit_form_advanced', ''); ?>
     172<?php do_action('edit_form_advanced'); ?>
    175173
    176174<div id="advancedstuff" class="dbx-group" >
  • trunk/wp-admin/index.php

    r2701 r2756  
    104104<?php } ?>
    105105
     106<?php do_action('activity_box_end'); ?>
    106107</div>
    107108
    108109<h2><?php _e('Dashboard'); ?></h2>
    109 <p><?php _e('Below is the latest news from the official WordPress development blog, click on a title to read the full entry.'); ?></p>
     110<p><?php _e("Below is the latest news from the official WordPress development blog, click on a title to read the full entry. If you need help with WordPress please see our <a href='http://codex.wordpress.org/'>great documentation</a> or if that doesn't help visit the <a href='http://wordpress.org/support/'>support forums</a>."); ?></p>
    110111<?php
    111112$rss = @fetch_rss('http://wordpress.org/development/feed/');
  • trunk/wp-admin/post.php

    r2723 r2756  
    8585    <div class="storycontent">
    8686    <?php
    87     echo apply_filters('the_content', $post->post_content);
     87    echo apply_filters('the_content', html_entity_decode($post->post_content) );
    8888    ?>
    8989    </div>
  • trunk/wp-admin/themes.php

    r2594 r2756  
    5454</div>
    5555
    56 <h2><?php _e('Themes Available'); ?></h2>
     56<h2><?php _e('Available Themes'); ?></h2>
    5757<?php if ( 1 < count($themes) ) { ?>
    5858<table width="100%" cellpadding="3" cellspacing="3">
     
    146146
    147147<h2><?php _e('Get More Themes'); ?></h2>
    148 <p><?php _e('You can find additional themes for your site in the <a href="http://wordpress.org/extend/themes/">WordPress theme directory</a>. To install a theme you generally just need to upload the theme folder into your <code>wp-content/themes</code> directory. Once a theme is uploaded, you may activate it here.'); ?></p>
     148<p><?php _e('You can find additional themes for your site in the <a href="http://wordpress.org/extend/themes/">WordPress theme directory</a>. To install a theme you generally just need to upload the theme folder into your <code>wp-content/themes</code> directory. Once a theme is uploaded, you may activate it on this page.'); ?></p>
    149149
    150150</div>
  • trunk/wp-admin/tinymce/tiny_mce_src.js

    r2755 r2756  
    542542        iframe.setAttribute("src", this.settings['default_document']);
    543543
    544     iframe.style.width = "98%";
     544    iframe.style.width = tinyMCE.settings['area_width'];
    545545    iframe.style.height = tinyMCE.settings['area_height'];
    546546
  • trunk/wp-admin/wp-admin.css

    r2755 r2756  
    154154
    155155.alternate {
    156     background: #eee;
     156    background: #f1f1f1;
    157157}
    158158
     
    267267
    268268.wrap h2 {
    269     margin: .5em 0;
     269    margin: .8em 0 .5em;
    270270}
    271271
Note: See TracChangeset for help on using the changeset viewer.