Index: wp-includes/post.php
===================================================================
--- wp-includes/post.php	(revision 21304)
+++ wp-includes/post.php	(working copy)
@@ -56,9 +56,9 @@
 			'edit_item' => __( 'Edit Media' ),
 		),
 		'public' => true,
-		'show_ui' => false,
+		'show_ui' => true,
 		'_builtin' => true, /* internal use only. don't use this when registering your own post type. */
-		'_edit_link' => 'media.php?attachment_id=%d', /* internal use only. don't use this when registering your own post type. */
+		'_edit_link' => 'post.php?post=%d', /* internal use only. don't use this when registering your own post type. */
 		'capability_type' => 'post',
 		'map_meta_cap' => true,
 		'hierarchical' => false,
@@ -66,7 +66,7 @@
 		'query_var' => false,
 		'show_in_nav_menus' => false,
 		'delete_with_user' => true,
-		'supports' => array( 'comments', 'author' ),
+		'supports' => array( 'title', 'excerpt', 'author', 'custom-fields' ),
 	) );
 
 	register_post_type( 'revision', array(
Index: wp-admin/edit-form-advanced.php
===================================================================
--- wp-admin/edit-form-advanced.php	(revision 21304)
+++ wp-admin/edit-form-advanced.php	(working copy)
@@ -334,6 +334,15 @@
 
 </div>
 <?php } ?>
+
+<?php if ( post_type_supports($post_type, 'image_editor') ) { ?>
+
+<div id="postdivrich" class="postarea">
+	<p style="width:100%; padding: 40px 0; text-align: center; border: 1px solid #ddd; ">This would be the awesome new image editor!</p>
+</div>
+
+<?php }; ?>
+
 </div><!-- /post-body-content -->
 
 <div id="postbox-container-1" class="postbox-container">
