<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head><meta http-equiv="content-type" content="text/html; charset=utf-8" /><style type="text/css"><!--
#msg dl { border: 1px #006 solid; background: #369; padding: 6px; color: #fff; }
#msg dt { float: left; width: 6em; font-weight: bold; }
#msg dt:after { content:':';}
#msg dl, #msg dt, #msg ul, #msg li, #header, #footer { font-family: verdana,arial,helvetica,sans-serif; font-size: 10pt;  }
#msg dl a { font-weight: bold}
#msg dl a:link    { color:#fc3; }
#msg dl a:active  { color:#ff0; }
#msg dl a:visited { color:#cc6; }
h3 { font-family: verdana,arial,helvetica,sans-serif; font-size: 10pt; font-weight: bold; }
#msg pre { overflow: auto; background: #ffc; border: 1px #fc0 solid; padding: 6px; }
#msg ul, pre { overflow: auto; }
#header, #footer { color: #fff; background: #636; border: 1px #300 solid; padding: 6px; }
#patch { width: 100%; }
#patch h4 {font-family: verdana,arial,helvetica,sans-serif;font-size:10pt;padding:8px;background:#369;color:#fff;margin:0;}
#patch .propset h4, #patch .binary h4 {margin:0;}
#patch pre {padding:0;line-height:1.2em;margin:0;}
#patch .diff {width:100%;background:#eee;padding: 0 0 10px 0;overflow:auto;}
#patch .propset .diff, #patch .binary .diff  {padding:10px 0;}
#patch span {display:block;padding:0 10px;}
#patch .modfile, #patch .addfile, #patch .delfile, #patch .propset, #patch .binary, #patch .copfile {border:1px solid #ccc;margin:10px 0;}
#patch ins {background:#dfd;text-decoration:none;display:block;padding:0 10px;}
#patch del {background:#fdd;text-decoration:none;display:block;padding:0 10px;}
#patch .lines, .info {color:#888;background:#fff;}
--></style>
<title>[15628] trunk/wp-admin: Remove unused edit-*-rows.php files.</title>
</head>
<body>

<div id="msg">
<dl>
<dt>Revision</dt> <dd><a href="http://trac.wordpress.org/changeset/15628">15628</a></dd>
<dt>Author</dt> <dd>scribu</dd>
<dt>Date</dt> <dd>2010-09-18 17:17:29 +0000 (Sat, 18 Sep 2010)</dd>
</dl>

<h3>Log Message</h3>
<pre>Remove unused edit-*-rows.php files. See <a href="http://trac.wordpress.org/ticket/14579">#14579</a></pre>

<h3>Removed Paths</h3>
<ul>
<li><a href="#trunkwpadmineditattachmentrowsphp">trunk/wp-admin/edit-attachment-rows.php</a></li>
<li><a href="#trunkwpadmineditpostrowsphp">trunk/wp-admin/edit-post-rows.php</a></li>
</ul>

</div>
<div id="patch">
<h3>Diff</h3>
<a id="trunkwpadmineditattachmentrowsphp"></a>
<div class="delfile"><h4>Deleted: trunk/wp-admin/edit-attachment-rows.php (15627 => 15628)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/wp-admin/edit-attachment-rows.php        2010-09-17 22:35:05 UTC (rev 15627)
+++ trunk/wp-admin/edit-attachment-rows.php        2010-09-18 17:17:29 UTC (rev 15628)
</span><span class="lines">@@ -1,239 +0,0 @@
</span><del>-&lt;?php
-/**
- * Edit attachments table for inclusion in administration panels.
- *
- * @package WordPress
- * @subpackage Administration
- */
-
-// don't load directly
-if ( !defined('ABSPATH') )
-        die('-1');
-
-if ( have_posts() ) { ?&gt;
-&lt;table class=&quot;widefat fixed&quot; cellspacing=&quot;0&quot;&gt;
-        &lt;thead&gt;
-        &lt;tr&gt;
-&lt;?php print_column_headers('upload'); ?&gt;
-        &lt;/tr&gt;
-        &lt;/thead&gt;
-
-        &lt;tfoot&gt;
-        &lt;tr&gt;
-&lt;?php print_column_headers('upload', false); ?&gt;
-        &lt;/tr&gt;
-        &lt;/tfoot&gt;
-
-        &lt;tbody id=&quot;the-list&quot; class=&quot;list:post&quot;&gt;
-&lt;?php
-add_filter('the_title','esc_html');
-$alt = '';
-$posts_columns = get_column_headers('upload');
-$hidden = get_hidden_columns('upload');
-
-while ( have_posts() ) : the_post();
-
-if ( $is_trash &amp;&amp; $post-&gt;post_status != 'trash' )
-        continue;
-elseif ( !$is_trash &amp;&amp; $post-&gt;post_status == 'trash' )
-        continue;
-
-$alt = ( 'alternate' == $alt ) ? '' : 'alternate';
-
-$post_owner = ( get_current_user_id() == $post-&gt;post_author ? 'self' : 'other' );
-$att_title = _draft_or_post_title();
-?&gt;
-        &lt;tr id='post-&lt;?php echo $id; ?&gt;' class='&lt;?php echo trim( $alt . ' author-' . $post_owner . ' status-' . $post-&gt;post_status ); ?&gt;' valign=&quot;top&quot;&gt;
-
-&lt;?php
-foreach ($posts_columns as $column_name =&gt; $column_display_name ) {
-        $class = &quot;class=\&quot;$column_name column-$column_name\&quot;&quot;;
-
-        $style = '';
-        if ( in_array($column_name, $hidden) )
-                $style = ' style=&quot;display:none;&quot;';
-
-        $attributes = &quot;$class$style&quot;;
-
-        switch($column_name) {
-
-        case 'cb':
-                ?&gt;
-                &lt;th scope=&quot;row&quot; class=&quot;check-column&quot;&gt;&lt;?php if ( current_user_can('edit_post', $post-&gt;ID) ) { ?&gt;&lt;input type=&quot;checkbox&quot; name=&quot;media[]&quot; value=&quot;&lt;?php the_ID(); ?&gt;&quot; /&gt;&lt;?php } ?&gt;&lt;/th&gt;
-                &lt;?php
-                break;
-
-        case 'icon':
-                $attributes = 'class=&quot;column-icon media-icon&quot;' . $style;
-                ?&gt;
-                &lt;td &lt;?php echo $attributes ?&gt;&gt;&lt;?php
-                        if ( $thumb = wp_get_attachment_image( $post-&gt;ID, array(80, 60), true ) ) {
-                                if ( $is_trash ) echo $thumb;
-                                else {
-?&gt;
-                                &lt;a href=&quot;&lt;?php echo get_edit_post_link( $post-&gt;ID, true ); ?&gt;&quot; title=&quot;&lt;?php echo esc_attr(sprintf(__('Edit &amp;#8220;%s&amp;#8221;'), $att_title)); ?&gt;&quot;&gt;
-                                        &lt;?php echo $thumb; ?&gt;
-                                &lt;/a&gt;
-
-&lt;?php                        }
-                        }
-                ?&gt;&lt;/td&gt;
-                &lt;?php
-                // TODO
-                break;
-
-        case 'media':
-                ?&gt;
-                &lt;td &lt;?php echo $attributes ?&gt;&gt;&lt;strong&gt;&lt;?php if ( $is_trash ) echo $att_title; else { ?&gt;&lt;a href=&quot;&lt;?php echo get_edit_post_link( $post-&gt;ID, true ); ?&gt;&quot; title=&quot;&lt;?php echo esc_attr(sprintf(__('Edit &amp;#8220;%s&amp;#8221;'), $att_title)); ?&gt;&quot;&gt;&lt;?php echo $att_title; ?&gt;&lt;/a&gt;&lt;?php } ?&gt;&lt;/strong&gt;
-                &lt;p&gt;
-                &lt;?php
-                if ( preg_match( '/^.*?\.(\w+)$/', get_attached_file( $post-&gt;ID ), $matches ) )
-                        echo esc_html( strtoupper( $matches[1] ) );
-                else
-                        echo strtoupper( str_replace( 'image/', '', get_post_mime_type() ) );
-                ?&gt;
-                &lt;/p&gt;
-                &lt;?php
-                $actions = array();
-                if ( current_user_can('edit_post', $post-&gt;ID) &amp;&amp; !$is_trash )
-                        $actions['edit'] = '&lt;a href=&quot;' . get_edit_post_link($post-&gt;ID, true) . '&quot;&gt;' . __('Edit') . '&lt;/a&gt;';
-                if ( current_user_can('delete_post', $post-&gt;ID) ) {
-                        if ( $is_trash )
-                                $actions['untrash'] = &quot;&lt;a class='submitdelete' href='&quot; . wp_nonce_url(&quot;post.php?action=untrash&amp;amp;post=$post-&gt;ID&quot;, 'untrash-attachment_' . $post-&gt;ID) . &quot;'&gt;&quot; . __('Restore') . &quot;&lt;/a&gt;&quot;;
-                        elseif ( EMPTY_TRASH_DAYS &amp;&amp; MEDIA_TRASH )
-                                $actions['trash'] = &quot;&lt;a class='submitdelete' href='&quot; . wp_nonce_url(&quot;post.php?action=trash&amp;amp;post=$post-&gt;ID&quot;, 'trash-attachment_' . $post-&gt;ID) . &quot;'&gt;&quot; . __('Trash') . &quot;&lt;/a&gt;&quot;;
-                        if ( $is_trash || !EMPTY_TRASH_DAYS || !MEDIA_TRASH ) {
-                                $delete_ays = (!$is_trash &amp;&amp; !MEDIA_TRASH) ? &quot; onclick='return showNotice.warn();'&quot; : '';
-                                $actions['delete'] = &quot;&lt;a class='submitdelete'$delete_ays href='&quot; . wp_nonce_url(&quot;post.php?action=delete&amp;amp;post=$post-&gt;ID&quot;, 'delete-attachment_' . $post-&gt;ID) . &quot;'&gt;&quot; . __('Delete Permanently') . &quot;&lt;/a&gt;&quot;;
-                        }
-                }
-                if ( !$is_trash ) {
-                        $title =_draft_or_post_title($post-&gt;post_parent);
-                        $actions['view'] = '&lt;a href=&quot;' . get_permalink($post-&gt;ID) . '&quot; title=&quot;' . esc_attr(sprintf(__('View &amp;#8220;%s&amp;#8221;'), $title)) . '&quot; rel=&quot;permalink&quot;&gt;' . __('View') . '&lt;/a&gt;';
-                }
-                $actions = apply_filters( 'media_row_actions', $actions, $post );
-                $action_count = count($actions);
-                $i = 0;
-                echo '&lt;div class=&quot;row-actions&quot;&gt;';
-                foreach ( $actions as $action =&gt; $link ) {
-                        ++$i;
-                        ( $i == $action_count ) ? $sep = '' : $sep = ' | ';
-                        echo &quot;&lt;span class='$action'&gt;$link$sep&lt;/span&gt;&quot;;
-                }
-                echo '&lt;/div&gt;';
-                ?&gt;&lt;/td&gt;
-                &lt;?php
-                break;
-
-        case 'author':
-                ?&gt;
-                &lt;td &lt;?php echo $attributes ?&gt;&gt;&lt;?php the_author() ?&gt;&lt;/td&gt;
-                &lt;?php
-                break;
-
-        case 'tags':
-                ?&gt;
-                &lt;td &lt;?php echo $attributes ?&gt;&gt;&lt;?php
-                $tags = get_the_tags();
-                if ( !empty( $tags ) ) {
-                        $out = array();
-                        foreach ( $tags as $c )
-                                $out[] = &quot;&lt;a href='edit.php?tag=$c-&gt;slug'&gt; &quot; . esc_html(sanitize_term_field('name', $c-&gt;name, $c-&gt;term_id, 'post_tag', 'display')) . &quot;&lt;/a&gt;&quot;;
-                        echo join( ', ', $out );
-                } else {
-                        _e('No Tags');
-                }
-                ?&gt;&lt;/td&gt;
-                &lt;?php
-                break;
-
-        case 'desc':
-                ?&gt;
-                &lt;td &lt;?php echo $attributes ?&gt;&gt;&lt;?php echo has_excerpt() ? $post-&gt;post_excerpt : ''; ?&gt;&lt;/td&gt;
-                &lt;?php
-                break;
-
-        case 'date':
-                if ( '0000-00-00 00:00:00' == $post-&gt;post_date &amp;&amp; 'date' == $column_name ) {
-                        $t_time = $h_time = __('Unpublished');
-                } else {
-                        $t_time = get_the_time(__('Y/m/d g:i:s A'));
-                        $m_time = $post-&gt;post_date;
-                        $time = get_post_time( 'G', true, $post, false );
-                        if ( ( abs($t_diff = time() - $time) ) &lt; 86400 ) {
-                                if ( $t_diff &lt; 0 )
-                                        $h_time = sprintf( __('%s from now'), human_time_diff( $time ) );
-                                else
-                                        $h_time = sprintf( __('%s ago'), human_time_diff( $time ) );
-                        } else {
-                                $h_time = mysql2date(__('Y/m/d'), $m_time);
-                        }
-                }
-                ?&gt;
-                &lt;td &lt;?php echo $attributes ?&gt;&gt;&lt;?php echo $h_time ?&gt;&lt;/td&gt;
-                &lt;?php
-                break;
-
-        case 'parent':
-                if ( $post-&gt;post_parent &gt; 0 ) {
-                        if ( get_post($post-&gt;post_parent) ) {
-                                $title =_draft_or_post_title($post-&gt;post_parent);
-                        }
-                        ?&gt;
-                        &lt;td &lt;?php echo $attributes ?&gt;&gt;&lt;strong&gt;&lt;a href=&quot;&lt;?php echo get_edit_post_link( $post-&gt;post_parent ); ?&gt;&quot;&gt;&lt;?php echo $title ?&gt;&lt;/a&gt;&lt;/strong&gt;, &lt;?php echo get_the_time(__('Y/m/d')); ?&gt;&lt;/td&gt;
-                        &lt;?php
-                } else {
-                        ?&gt;
-                        &lt;td &lt;?php echo $attributes ?&gt;&gt;&lt;?php _e('(Unattached)'); ?&gt;&lt;br /&gt;
-                        &lt;a class=&quot;hide-if-no-js&quot; onclick=&quot;findPosts.open('media[]','&lt;?php echo $post-&gt;ID ?&gt;');return false;&quot; href=&quot;#the-list&quot;&gt;&lt;?php _e('Attach'); ?&gt;&lt;/a&gt;&lt;/td&gt;
-                        &lt;?php
-                }
-
-                break;
-
-        case 'comments':
-                $attributes = 'class=&quot;comments column-comments num&quot;' . $style;
-                ?&gt;
-                &lt;td &lt;?php echo $attributes ?&gt;&gt;&lt;div class=&quot;post-com-count-wrapper&quot;&gt;
-                &lt;?php
-                $left = get_pending_comments_num( $post-&gt;ID );
-                $pending_phrase = sprintf( __('%s pending'), number_format( $left ) );
-                if ( $left )
-                        echo '&lt;strong&gt;';
-                comments_number(&quot;&lt;a href='edit-comments.php?p=$id' title='$pending_phrase' class='post-com-count'&gt;&lt;span class='comment-count'&gt;&quot; . /* translators: comment count link */ _x('0', 'comment count') . '&lt;/span&gt;&lt;/a&gt;', &quot;&lt;a href='edit-comments.php?p=$id' title='$pending_phrase' class='post-com-count'&gt;&lt;span class='comment-count'&gt;&quot; . /* translators: comment count link */ _x('1', 'comment count') . '&lt;/span&gt;&lt;/a&gt;', &quot;&lt;a href='edit-comments.php?p=$id' title='$pending_phrase' class='post-com-count'&gt;&lt;span class='comment-count'&gt;&quot; . /* translators: comment count link: % will be substituted by comment count */ _x('%', 'comment count') . '&lt;/span&gt;&lt;/a&gt;');
-                if ( $left )
-                        echo '&lt;/strong&gt;';
-                ?&gt;
-                &lt;/div&gt;&lt;/td&gt;
-                &lt;?php
-                break;
-
-        case 'actions':
-                ?&gt;
-                &lt;td &lt;?php echo $attributes ?&gt;&gt;
-                &lt;a href=&quot;media.php?action=edit&amp;amp;attachment_id=&lt;?php the_ID(); ?&gt;&quot; title=&quot;&lt;?php echo esc_attr(sprintf(__('Edit &amp;#8220;%s&amp;#8221;'), $att_title)); ?&gt;&quot;&gt;&lt;?php _e('Edit'); ?&gt;&lt;/a&gt; |
-                &lt;a href=&quot;&lt;?php the_permalink(); ?&gt;&quot;&gt;&lt;?php _e('Get permalink'); ?&gt;&lt;/a&gt;
-                &lt;/td&gt;
-                &lt;?php
-                break;
-
-        default:
-                ?&gt;
-                &lt;td &lt;?php echo $attributes ?&gt;&gt;&lt;?php do_action('manage_media_custom_column', $column_name, $id); ?&gt;&lt;/td&gt;
-                &lt;?php
-                break;
-        }
-}
-?&gt;
-        &lt;/tr&gt;
-&lt;?php endwhile; ?&gt;
-        &lt;/tbody&gt;
-&lt;/table&gt;
-&lt;?php } else { ?&gt;
-
-&lt;p&gt;&lt;?php _e('No media attachments found.') ?&gt;&lt;/p&gt;
-
-&lt;?php
-} // end if ( have_posts() )
-?&gt;
-
</del></span></pre></div>
<a id="trunkwpadmineditpostrowsphp"></a>
<div class="delfile"><h4>Deleted: trunk/wp-admin/edit-post-rows.php (15627 => 15628)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/wp-admin/edit-post-rows.php        2010-09-17 22:35:05 UTC (rev 15627)
+++ trunk/wp-admin/edit-post-rows.php        2010-09-18 17:17:29 UTC (rev 15628)
</span><span class="lines">@@ -1,34 +0,0 @@
</span><del>-&lt;?php
-/**
- * Edit posts rows table for inclusion in administration panels.
- *
- * @package WordPress
- * @subpackage Administration
- */
-
-// don't load directly
-if ( !defined('ABSPATH') )
-        die('-1');
-?&gt;
-&lt;table class=&quot;widefat &lt;?php echo $post_type_object-&gt;hierarchical ? 'page' : 'post'; ?&gt; fixed&quot; cellspacing=&quot;0&quot;&gt;
-        &lt;thead&gt;
-        &lt;tr&gt;
-&lt;?php print_column_headers( $current_screen ); ?&gt;
-        &lt;/tr&gt;
-        &lt;/thead&gt;
-
-        &lt;tfoot&gt;
-        &lt;tr&gt;
-&lt;?php print_column_headers($current_screen, false); ?&gt;
-        &lt;/tr&gt;
-        &lt;/tfoot&gt;
-
-        &lt;tbody&gt;
-&lt;?php
-if ( $post_type_object-&gt;hierarchical )
-        page_rows($posts, $pagenum, $per_page);
-else
-        post_rows();
-?&gt;
-        &lt;/tbody&gt;
-&lt;/table&gt;
</del><span class="cx">\ No newline at end of file
</span></span></pre>
</div>
</div>

</body>
</html>