]> scripts.mit.edu Git - autoinstalls/wordpress.git/blobdiff - wp-admin/theme-editor.php
Wordpress 2.8
[autoinstalls/wordpress.git] / wp-admin / theme-editor.php
index 361f26b61c3d258ad740ac46df38df9619aee39c..db79d786ea1fded62d83b5181d40a98453d97e3d 100644 (file)
@@ -77,17 +77,33 @@ default:
        if ( !current_user_can('edit_themes') )
                wp_die('<p>'.__('You do not have sufficient permissions to edit themes for this blog.').'</p>');
 
+       if ( use_codepress() )
+               wp_enqueue_script( 'codepress' );
+
        require_once('admin-header.php');
 
        update_recently_edited($file);
 
-       if (!is_file($real_file))
+       if ( !is_file($real_file) )
                $error = 1;
 
-       if (!$error && filesize($real_file) > 0) {
+       if ( !$error && filesize($real_file) > 0 ) {
                $f = fopen($real_file, 'r');
                $content = fread($f, filesize($real_file));
-               $content = htmlspecialchars($content);
+
+               if ( '.php' == substr( $real_file, strrpos( $real_file, '.' ) ) ) {
+                       $functions = wp_doc_link_parse( $content );
+
+                       $docs_select = '<select name="docs-list" id="docs-list">';
+                       $docs_select .= '<option value="">' . esc_attr__( 'Function Name...' ) . '</option>';
+                       foreach ( $functions as $function ) {
+                               $docs_select .= '<option value="' . esc_attr( urlencode( $function ) ) . '">' . htmlspecialchars( $function ) . '()</option>';
+                       }
+                       $docs_select .= '</select>';
+               }
+
+               $content = htmlspecialchars( $content );
+               $codepress_lang = codepress_get_lang($real_file);
        }
 
        ?>
@@ -100,7 +116,7 @@ $desc_header = ( $description != $file_show ) ? "<strong>$description</strong> (
 ?>
 <div class="wrap">
 <?php screen_icon(); ?>
-<h2><?php echo wp_specialchars( $title ); ?></h2>
+<h2><?php echo esc_html( $title ); ?></h2>
 <div class="bordertitle">
        <form id="themeselector" action="theme-editor.php" method="post">
                <strong><label for="theme"><?php _e('Select theme to edit:'); ?> </label></strong>
@@ -110,12 +126,12 @@ $desc_header = ( $description != $file_show ) ? "<strong>$description</strong> (
        $theme_name = $a_theme['Name'];
        if ($theme_name == $theme) $selected = " selected='selected'";
        else $selected = '';
-       $theme_name = attribute_escape($theme_name);
+       $theme_name = esc_attr($theme_name);
        echo "\n\t<option value=\"$theme_name\" $selected>$theme_name</option>";
 }
 ?>
                </select>
-               <input type="submit" name="Submit" value="<?php _e('Select') ?>" class="button" />
+               <input type="submit" name="Submit" value="<?php esc_attr_e('Select') ?>" class="button" />
        </form>
 </div>
 <div class="tablenav">
@@ -136,7 +152,7 @@ if ($allowed_files) :
 <?php
        $template_mapping = array();
        $template_dir = $themes[$theme]['Template Dir'];
-       foreach($themes[$theme]['Template Files'] as $template_file) {
+       foreach ( $themes[$theme]['Template Files'] as $template_file ) {
                $description = trim( get_file_description($template_file) );
                $template_show = basename($template_file);
                $filedesc = ( $description != $template_file ) ? "$description <span class='nonessential'>($template_show)</span>" : "$description";
@@ -158,11 +174,11 @@ if ($allowed_files) :
                <li><a href="theme-editor.php?file=<?php echo "$template_file"; ?>&amp;theme=<?php echo urlencode($theme) ?>"><?php echo $filedesc ?></a></li>
 <?php endwhile; ?>
        </ul>
-       <h4><?php echo _c('Styles|Theme stylesheets in theme editor'); ?></h4>
+       <h4><?php /* translators: Theme stylesheets in theme editor */ echo _x('Styles', 'Theme stylesheets in theme editor'); ?></h4>
        <ul>
 <?php
        $template_mapping = array();
-       foreach($themes[$theme]['Stylesheet Files'] as $style_file) {
+       foreach ( $themes[$theme]['Stylesheet Files'] as $style_file ) {
                $description = trim( get_file_description($style_file) );
                $style_show = basename($style_file);
                $filedesc = ( $description != $style_file ) ? "$description <span class='nonessential'>($style_show)</span>" : "$description";
@@ -182,17 +198,24 @@ if ($allowed_files) :
        ?>
        <form name="template" id="template" action="theme-editor.php" method="post">
        <?php wp_nonce_field('edit-theme_' . $file . $theme) ?>
-                <div><textarea cols="70" rows="25" name="newcontent" id="newcontent" tabindex="1"><?php echo $content ?></textarea>
+                <div><textarea cols="70" rows="25" name="newcontent" id="newcontent" tabindex="1" class="codepress <?php echo $codepress_lang ?>"><?php echo $content ?></textarea>
                 <input type="hidden" name="action" value="update" />
-                <input type="hidden" name="file" value="<?php echo $file ?>" />
-                <input type="hidden" name="theme" value="<?php echo $theme ?>" />
+                <input type="hidden" name="file" value="<?php echo esc_attr($file) ?>" />
+                <input type="hidden" name="theme" value="<?php echo esc_attr($theme) ?>" />
                 </div>
+       <?php if ( isset($functions ) && count($functions) ) { ?>
+               <div id="documentation">
+               <label for="docs-list"><?php _e('Documentation:') ?></label>
+               <?php echo $docs_select; ?>
+               <input type="button" class="button" value=" <?php esc_attr_e( 'Lookup' ); ?> " onclick="if ( '' != jQuery('#docs-list').val() ) { window.open( 'http://api.wordpress.org/core/handbook/1.0/?function=' + escape( jQuery( '#docs-list' ).val() ) + '&locale=<?php echo urlencode( get_locale() ) ?>&version=<?php echo urlencode( $wp_version ) ?>&redirect=true'); }" />
+               </div>
+       <?php } ?>
 
                <div>
 <?php if ( is_writeable($real_file) ) : ?>
                        <p class="submit">
 <?php
-       echo "<input type='submit' name='submit' class='button-primary' value='" . __('Update File') . "' tabindex='2' />";
+       echo "<input type='submit' name='submit' class='button-primary' value='" . esc_attr__('Update File') . "' tabindex='2' />";
 ?>
 </p>
 <?php else : ?>