<!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" />
<title>[23101] trunk/wp-includes: Break wp_print_media_templates() into wp-includes/media-template.php and lazy-load that file through wp_enqueue_media().</title>
</head>
<body>
<style type="text/css"><!--
#msg dl.meta { border: 1px #006 solid; background: #369; padding: 6px; color: #fff; }
#msg dl.meta dt { float: left; width: 6em; font-weight: bold; }
#msg dt:after { content:':';}
#msg dl, #msg dt, #msg ul, #msg li, #header, #footer, #logmsg { 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 #fa0 solid; padding: 6px; }
#logmsg { background: #ffc; border: 1px #fa0 solid; padding: 1em 1em 0 1em; }
#logmsg p, #logmsg pre, #logmsg blockquote { margin: 0 0 1em 0; }
#logmsg p, #logmsg li, #logmsg dt, #logmsg dd { line-height: 14pt; }
#logmsg h1, #logmsg h2, #logmsg h3, #logmsg h4, #logmsg h5, #logmsg h6 { margin: .5em 0; }
#logmsg h1:first-child, #logmsg h2:first-child, #logmsg h3:first-child, #logmsg h4:first-child, #logmsg h5:first-child, #logmsg h6:first-child { margin-top: 0; }
#logmsg ul, #logmsg ol { padding: 0; list-style-position: inside; margin: 0 0 0 1em; }
#logmsg > ul, #logmsg > ol { margin-left: 0; margin: 0 0 1em 0; }
#logmsg pre { background: #eee; padding: 1em; }
#logmsg blockquote { border: 1px solid #fa0; border-left-width: 10px; padding: 1em 1em 0 1em; background: white;}
#logmsg dl { margin: 0; }
#logmsg dt { font-weight: bold; }
#logmsg dd { margin: 0; padding: 0 0 0.5em 0; }
#logmsg dd:before { content:'\00bb';}
#logmsg table { border-spacing: 0px; border-collapse: collapse; border-top: 4px solid #fa0; border-bottom: 1px solid #fa0; background: #fff; }
#logmsg table th { text-align: left; font-weight: normal; padding: 0.2em 0.5em; border-top: 1px dotted #fa0; }
#logmsg table td { text-align: right; border-top: 1px dotted #fa0; padding: 0.2em 0.5em; }
#logmsg table thead th { text-align: center; border-bottom: 1px solid #fa0; }
#logmsg table th.Corner { text-align: left; }
#logmsg hr { border: none 0; border-top: 2px dashed #fa0; height: 1px; }
#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>
<div id="msg">
<dl class="meta">
<dt>Revision</dt> <dd><a href="http://core.trac.wordpress.org/changeset/23101">23101</a></dd>
<dt>Author</dt> <dd>nacin</dd>
<dt>Date</dt> <dd>2012-12-06 07:10:20 +0000 (Thu, 06 Dec 2012)</dd>
</dl>
<h3>Log Message</h3>
<pre>Break wp_print_media_templates() into wp-includes/media-template.php and lazy-load that file through wp_enqueue_media(). fixes <a href="http://core.trac.wordpress.org/ticket/22778">#22778</a>.</pre>
<h3>Modified Paths</h3>
<ul>
<li><a href="#trunkwpincludesmediaphp">trunk/wp-includes/media.php</a></li>
</ul>
<h3>Added Paths</h3>
<ul>
<li><a href="#trunkwpincludesmediatemplatephp">trunk/wp-includes/media-template.php</a></li>
</ul>
</div>
<div id="patch">
<h3>Diff</h3>
<a id="trunkwpincludesmediatemplatephpfromrev23097trunkwpincludesmediaphp"></a>
<div class="copfile"><h4>Copied: trunk/wp-includes/media-template.php (from rev 23097, trunk/wp-includes/media.php) (0 => 23101)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/wp-includes/media-template.php         (rev 0)
+++ trunk/wp-includes/media-template.php        2012-12-06 07:10:20 UTC (rev 23101)
</span><span class="lines">@@ -0,0 +1,467 @@
</span><ins>+<?php
+/**
+ * WordPress media templates.
+ *
+ * @package WordPress
+ * @subpackage Media
+ * @since 3.5.0
+ */
+
+/**
+ * Prints the templates used in the media manager.
+ *
+ * @since 3.5.0
+ */
+function wp_print_media_templates() {
+        global $is_IE;
+        $class = 'media-modal wp-core-ui';
+        if ( $is_IE && strpos($_SERVER['HTTP_USER_AGENT'], 'MSIE 7') !== false )
+                $class .= ' ie7';
+        ?>
+        <script type="text/html" id="tmpl-media-frame">
+                <div class="media-frame-menu"></div>
+                <div class="media-frame-title"></div>
+                <div class="media-frame-router"></div>
+                <div class="media-frame-content"></div>
+                <div class="media-frame-toolbar"></div>
+                <div class="media-frame-uploader"></div>
+        </script>
+
+        <script type="text/html" id="tmpl-media-modal">
+                <div class="<?php echo $class; ?>">
+                        <a class="media-modal-close" href="#" title="<?php esc_attr_e('Close'); ?>"><span class="media-modal-icon"></span></a>
+                        <div class="media-modal-content"></div>
+                </div>
+                <div class="media-modal-backdrop"></div>
+        </script>
+
+        <script type="text/html" id="tmpl-uploader-window">
+                <div class="uploader-window-content">
+                        <h3><?php _e( 'Drop files to upload' ); ?></h3>
+                </div>
+        </script>
+
+        <script type="text/html" id="tmpl-uploader-inline">
+                <# var messageClass = data.message ? 'has-upload-message' : 'no-upload-message'; #>
+                <div class="uploader-inline-content {{ messageClass }}">
+                <# if ( data.message ) { #>
+                        <h3 class="upload-message">{{ data.message }}</h3>
+                <# } #>
+                <?php if ( ! _device_can_upload() ) : ?>
+                        <h3 class="upload-instructions"><?php _e('The web browser on your device cannot be used to upload files. You may be able to use the <a href="http://wordpress.org/extend/mobile/">native app for your device</a> instead.'); ?></h3>
+                <?php elseif ( is_multisite() && ! is_upload_space_available() ) : ?>
+                        <h3 class="upload-instructions"><?php _e( 'Upload Limit Exceeded' ); ?></h3>
+                        <?php do_action( 'upload_ui_over_quota' ); ?>
+
+                <?php else : ?>
+                        <div class="upload-ui">
+                                <h3 class="upload-instructions drop-instructions"><?php _e( 'Drop files anywhere to upload' ); ?></h3>
+                                <a href="#" class="browser button button-hero"><?php _e( 'Select Files' ); ?></a>
+                        </div>
+
+                        <div class="upload-inline-status"></div>
+
+                        <div class="post-upload-ui">
+                                <?php
+                                do_action( 'pre-upload-ui' );
+                                do_action( 'pre-plupload-upload-ui' );
+
+                                if ( 10 === remove_action( 'post-plupload-upload-ui', 'media_upload_flash_bypass' ) ) {
+                                        do_action( 'post-plupload-upload-ui' );
+                                        add_action( 'post-plupload-upload-ui', 'media_upload_flash_bypass' );
+                                } else {
+                                        do_action( 'post-plupload-upload-ui' );
+                                }
+
+                                $upload_size_unit = $max_upload_size = wp_max_upload_size();
+                                $byte_sizes = array( 'KB', 'MB', 'GB' );
+
+                                for ( $u = -1; $upload_size_unit > 1024 && $u < count( $byte_sizes ) - 1; $u++ ) {
+                                        $upload_size_unit /= 1024;
+                                }
+
+                                if ( $u < 0 ) {
+                                        $upload_size_unit = 0;
+                                        $u = 0;
+                                } else {
+                                        $upload_size_unit = (int) $upload_size_unit;
+                                }
+
+                                ?>
+
+                                <p class="max-upload-size"><?php
+                                        printf( __( 'Maximum upload file size: %d%s.' ), esc_html($upload_size_unit), esc_html($byte_sizes[$u]) );
+                                ?></p>
+
+                                <?php if ( ( $GLOBALS['is_IE'] || $GLOBALS['is_opera']) && $max_upload_size > 100 * 1024 * 1024 ) :
+                                        $browser_uploader = admin_url( 'media-new.php?browser-uploader&post_id=' ) . '{{ data.postId }}';
+                                        ?>
+                                        <p class="big-file-warning"><?php printf( __( 'Your browser has some limitations uploading large files with the multi-file uploader. Please use the <a href="%1$s" target="%2$s">browser uploader</a> for files over 100MB.' ),
+                                                $browser_uploader, '_blank' ); ?></p>
+                                <?php endif; ?>
+
+                                <?php do_action( 'post-upload-ui' ); ?>
+                        </div>
+                <?php endif; ?>
+                </div>
+        </script>
+
+        <script type="text/html" id="tmpl-uploader-status">
+                <h3><?php _e( 'Uploading' ); ?></h3>
+                <a class="upload-dismiss-errors" href="#"><?php _e('Dismiss Errors'); ?></a>
+
+                <div class="media-progress-bar"><div></div></div>
+                <div class="upload-details">
+                        <span class="upload-count">
+                                <span class="upload-index"></span> / <span class="upload-total"></span>
+                        </span>
+                        <span class="upload-detail-separator">&ndash;</span>
+                        <span class="upload-filename"></span>
+                </div>
+                <div class="upload-errors"></div>
+        </script>
+
+        <script type="text/html" id="tmpl-uploader-status-error">
+                <span class="upload-error-label"><?php _e('Error'); ?></span>
+                <span class="upload-error-filename">{{{ data.filename }}}</span>
+                <span class="upload-error-message">{{ data.message }}</span>
+        </script>
+
+        <script type="text/html" id="tmpl-attachment">
+                <div class="attachment-preview type-{{ data.type }} subtype-{{ data.subtype }} {{ data.orientation }}">
+                        <# if ( data.uploading ) { #>
+                                <div class="media-progress-bar"><div></div></div>
+                        <# } else if ( 'image' === data.type ) { #>
+                                <div class="thumbnail">
+                                        <div class="centered">
+                                                <img src="{{ data.size.url }}" draggable="false" />
+                                        </div>
+                                </div>
+                        <# } else { #>
+                                <img src="{{ data.icon }}" class="icon" draggable="false" />
+                                <div class="filename">
+                                        <div>{{ data.filename }}</div>
+                                </div>
+                        <# } #>
+
+                        <# if ( data.buttons.close ) { #>
+                                <a class="close media-modal-icon" href="#" title="<?php _e('Remove'); ?>"></a>
+                        <# } #>
+
+                        <# if ( data.buttons.check ) { #>
+                                <a class="check" href="#" title="<?php _e('Deselect'); ?>"><div class="media-modal-icon"></div></a>
+                        <# } #>
+                </div>
+                <#
+                var maybeReadOnly = data.can.save || data.allowLocalEdits ? '' : 'readonly';
+                if ( data.describe ) { #>
+                        <# if ( 'image' === data.type ) { #>
+                                <input type="text" value="{{ data.caption }}" class="describe" data-setting="caption"
+                                        placeholder="<?php esc_attr_e('Describe this image&hellip;'); ?>" {{ maybeReadOnly }} />
+                        <# } else { #>
+                                <input type="text" value="{{ data.title }}" class="describe" data-setting="title"
+                                        <# if ( 'video' === data.type ) { #>
+                                                placeholder="<?php esc_attr_e('Describe this video&hellip;'); ?>"
+                                        <# } else if ( 'audio' === data.type ) { #>
+                                                placeholder="<?php esc_attr_e('Describe this audio file&hellip;'); ?>"
+                                        <# } else { #>
+                                                placeholder="<?php esc_attr_e('Describe this media file&hellip;'); ?>"
+                                        <# } #> {{ maybeReadOnly }} />
+                        <# } #>
+                <# } #>
+        </script>
+
+        <script type="text/html" id="tmpl-attachment-details">
+                <h3>
+                        <?php _e('Attachment Details'); ?>
+
+                        <span class="settings-save-status">
+                                <span class="spinner"></span>
+                                <span class="saved"><?php esc_html_e('Saved.'); ?></span>
+                        </span>
+                </h3>
+                <div class="attachment-info">
+                        <div class="thumbnail">
+                                <# if ( data.uploading ) { #>
+                                        <div class="media-progress-bar"><div></div></div>
+                                <# } else if ( 'image' === data.type ) { #>
+                                        <img src="{{ data.size.url }}" draggable="false" />
+                                <# } else { #>
+                                        <img src="{{ data.icon }}" class="icon" draggable="false" />
+                                <# } #>
+                        </div>
+                        <div class="details">
+                                <div class="filename">{{ data.filename }}</div>
+                                <div class="uploaded">{{ data.dateFormatted }}</div>
+
+                                <# if ( 'image' === data.type && ! data.uploading ) { #>
+                                        <# if ( data.width && data.height ) { #>
+                                                <div class="dimensions">{{ data.width }} &times; {{ data.height }}</div>
+                                        <# } #>
+
+                                        <# if ( data.can.save ) { #>
+                                                <a class="edit-attachment" href="{{ data.editLink }}&amp;image-editor" target="_blank"><?php _e( 'Edit Image' ); ?></a>
+                                                <a class="refresh-attachment" href="#"><?php _e( 'Refresh' ); ?></a>
+                                        <# } #>
+                                <# } #>
+
+                                <# if ( ! data.uploading && data.can.remove ) { #>
+                                        <a class="delete-attachment" href="#"><?php _e( 'Delete Permanently' ); ?></a>
+                                <# } #>
+
+                                <div class="compat-meta">
+                                        <# if ( data.compat && data.compat.meta ) { #>
+                                                {{{ data.compat.meta }}}
+                                        <# } #>
+                                </div>
+                        </div>
+                </div>
+
+                <# var maybeReadOnly = data.can.save || data.allowLocalEdits ? '' : 'readonly'; #>
+                        <label class="setting" data-setting="title">
+                                <span><?php _e('Title'); ?></span>
+                                <input type="text" value="{{ data.title }}" {{ maybeReadOnly }} />
+                        </label>
+                        <label class="setting" data-setting="caption">
+                                <span><?php _e('Caption'); ?></span>
+                                <textarea {{ maybeReadOnly }}>{{ data.caption }}</textarea>
+                        </label>
+                <# if ( 'image' === data.type ) { #>
+                        <label class="setting" data-setting="alt">
+                                <span><?php _e('Alt Text'); ?></span>
+                                <input type="text" value="{{ data.alt }}" {{ maybeReadOnly }} />
+                        </label>
+                <# } #>
+                        <label class="setting" data-setting="description">
+                                <span><?php _e('Description'); ?></span>
+                                <textarea {{ maybeReadOnly }}>{{ data.description }}</textarea>
+                        </label>
+        </script>
+
+        <script type="text/html" id="tmpl-media-selection">
+                <div class="selection-info">
+                        <span class="count"></span>
+                        <# if ( data.editable ) { #>
+                                <a class="edit-selection" href="#"><?php _e('Edit'); ?></a>
+                        <# } #>
+                        <# if ( data.clearable ) { #>
+                                <a class="clear-selection" href="#"><?php _e('Clear'); ?></a>
+                        <# } #>
+                </div>
+                <div class="selection-view"></div>
+        </script>
+
+        <script type="text/html" id="tmpl-attachment-display-settings">
+                <h3><?php _e('Attachment Display Settings'); ?></h3>
+
+                <# if ( 'image' === data.type ) { #>
+                        <label class="setting">
+                                <span><?php _e('Alignment'); ?></span>
+                                <select class="alignment"
+                                        data-setting="align"
+                                        <# if ( data.userSettings ) { #>
+                                                data-user-setting="align"
+                                        <# } #>>
+
+                                        <option value="left">
+                                                <?php esc_attr_e('Left'); ?>
+                                        </option>
+                                        <option value="center">
+                                                <?php esc_attr_e('Center'); ?>
+                                        </option>
+                                        <option value="right">
+                                                <?php esc_attr_e('Right'); ?>
+                                        </option>
+                                        <option value="none" selected>
+                                                <?php esc_attr_e('None'); ?>
+                                        </option>
+                                </select>
+                        </label>
+                <# } #>
+
+                <div class="setting">
+                        <label>
+                                <span><?php _e('Link To'); ?></span>
+                                <select class="link-to"
+                                        data-setting="link"
+                                        <# if ( data.userSettings ) { #>
+                                                data-user-setting="urlbutton"
+                                        <# } #>>
+
+                                        <option value="custom">
+                                                <?php esc_attr_e('Custom URL'); ?>
+                                        </option>
+                                        <option value="post" selected>
+                                                <?php esc_attr_e('Attachment Page'); ?>
+                                        </option>
+                                        <option value="file">
+                                                <?php esc_attr_e('Media File'); ?>
+                                        </option>
+                                        <option value="none">
+                                                <?php esc_attr_e('None'); ?>
+                                        </option>
+                                </select>
+                        </label>
+                        <input type="text" class="link-to-custom" data-setting="linkUrl" />
+                </div>
+
+                <# if ( 'undefined' !== typeof data.sizes ) { #>
+                        <label class="setting">
+                                <span><?php _e('Size'); ?></span>
+                                <select class="size" name="size"
+                                        data-setting="size"
+                                        <# if ( data.userSettings ) { #>
+                                                data-user-setting="imgsize"
+                                        <# } #>>
+                                        <?php
+
+                                        $sizes = apply_filters( 'image_size_names_choose', array(
+                                                'thumbnail' => __('Thumbnail'),
+                                                'medium' => __('Medium'),
+                                                'large' => __('Large'),
+                                                'full' => __('Full Size'),
+                                        ) );
+
+                                        foreach ( $sizes as $value => $name ) : ?>
+                                                <#
+                                                var size = data.sizes['<?php echo esc_js( $value ); ?>'];
+                                                if ( size ) { #>
+                                                        <option value="<?php echo esc_attr( $value ); ?>" <?php selected( $value, 'full' ); ?>>
+                                                                <?php echo esc_html( $name ); ?> &ndash; {{ size.width }} &times; {{ size.height }}
+                                                        </option>
+                                                <# } #>
+                                        <?php endforeach; ?>
+                                </select>
+                        </label>
+                <# } #>
+        </script>
+
+        <script type="text/html" id="tmpl-gallery-settings">
+                <h3><?php _e('Gallery Settings'); ?></h3>
+
+                <label class="setting">
+                        <span><?php _e('Link To'); ?></span>
+                        <select class="link-to"
+                                data-setting="link"
+                                <# if ( data.userSettings ) { #>
+                                        data-user-setting="urlbutton"
+                                <# } #>>
+
+                                <option value="post" selected>
+                                        <?php esc_attr_e('Attachment Page'); ?>
+                                </option>
+                                <option value="file">
+                                        <?php esc_attr_e('Media File'); ?>
+                                </option>
+                        </select>
+                </label>
+
+                <label class="setting">
+                        <span><?php _e('Columns'); ?></span>
+                        <select class="columns" name="columns"
+                                data-setting="columns">
+                                <?php for ( $i = 1; $i <= 9; $i++ ) : ?>
+                                        <option value="<?php echo esc_attr( $i ); ?>" <?php selected( $i, 3 ); ?>>
+                                                <?php echo esc_html( $i ); ?>
+                                        </option>
+                                <?php endfor; ?>
+                        </select>
+                </label>
+
+                <label class="setting">
+                        <span><?php _ex( 'Random', 'Gallery order' ); ?></span>
+                        <input type="checkbox" data-setting="_orderbyRandom" />
+                </label>
+        </script>
+
+        <script type="text/html" id="tmpl-embed-link-settings">
+                <label class="setting">
+                        <span><?php _e('Title'); ?></span>
+                        <input type="text" class="alignment" data-setting="title" />
+                </label>
+        </script>
+
+        <script type="text/html" id="tmpl-embed-image-settings">
+                <div class="thumbnail">
+                        <img src="{{ data.model.url }}" draggable="false" />
+                </div>
+
+                <?php if ( ! apply_filters( 'disable_captions', '' ) ) : ?>
+                        <label class="setting caption">
+                                <span><?php _e('Caption'); ?></span>
+                                <textarea data-setting="caption" />
+                        </label>
+                <?php endif; ?>
+
+                <label class="setting alt-text">
+                        <span><?php _e('Alt Text'); ?></span>
+                        <input type="text" data-setting="alt" />
+                </label>
+
+                <div class="setting align">
+                        <span><?php _e('Align'); ?></span>
+                        <div class="button-group button-large" data-setting="align">
+                                <button class="button" value="left">
+                                        <?php esc_attr_e('Left'); ?>
+                                </button>
+                                <button class="button" value="center">
+                                        <?php esc_attr_e('Center'); ?>
+                                </button>
+                                <button class="button" value="right">
+                                        <?php esc_attr_e('Right'); ?>
+                                </button>
+                                <button class="button active" value="none">
+                                        <?php esc_attr_e('None'); ?>
+                                </button>
+                        </div>
+                </div>
+
+                <div class="setting link-to">
+                        <span><?php _e('Link To'); ?></span>
+                        <div class="button-group button-large" data-setting="link">
+                                <button class="button" value="file">
+                                        <?php esc_attr_e('Image URL'); ?>
+                                </button>
+                                <button class="button" value="custom">
+                                        <?php esc_attr_e('Custom URL'); ?>
+                                </button>
+                                <button class="button active" value="none">
+                                        <?php esc_attr_e('None'); ?>
+                                </button>
+                        </div>
+                        <input type="text" class="link-to-custom" data-setting="linkUrl" />
+                </div>
+        </script>
+
+        <script type="text/html" id="tmpl-attachments-css">
+                <style type="text/css" id="{{ data.id }}-css">
+                        #{{ data.id }} {
+                                padding: 0 {{ data.gutter }}px;
+                        }
+
+                        #{{ data.id }} .attachment {
+                                margin: {{ data.gutter }}px;
+                                width: {{ data.edge }}px;
+                        }
+
+                        #{{ data.id }} .attachment-preview,
+                        #{{ data.id }} .attachment-preview .thumbnail {
+                                width: {{ data.edge }}px;
+                                height: {{ data.edge }}px;
+                        }
+
+                        #{{ data.id }} .portrait .thumbnail img {
+                                max-width: {{ data.edge }}px;
+                                height: auto;
+                        }
+
+                        #{{ data.id }} .landscape .thumbnail img {
+                                width: auto;
+                                max-height: {{ data.edge }}px;
+                        }
+                </style>
+        </script>
+        <?php
+
+        do_action( 'print_media_templates' );
+}
</ins></span></pre></div>
<a id="trunkwpincludesmediaphp"></a>
<div class="modfile"><h4>Modified: trunk/wp-includes/media.php (23100 => 23101)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/wp-includes/media.php        2012-12-06 07:00:41 UTC (rev 23100)
+++ trunk/wp-includes/media.php        2012-12-06 07:10:20 UTC (rev 23101)
</span><span class="lines">@@ -3,6 +3,7 @@
</span><span class="cx"> * WordPress API for media display.
</span><span class="cx"> *
</span><span class="cx"> * @package WordPress
</span><ins>+ * @subpackage Media
</ins><span class="cx"> */
</span><span class="cx">
</span><span class="cx"> /**
</span><span class="lines">@@ -1528,467 +1529,10 @@
</span><span class="cx">         wp_enqueue_script( 'media-editor' );
</span><span class="cx">         wp_enqueue_style( 'media-views' );
</span><span class="cx">         wp_plupload_default_settings();
</span><ins>+
+        require_once ABSPATH . WPINC . '/media-template.php';
</ins><span class="cx">         add_action( 'admin_footer', 'wp_print_media_templates' );
</span><span class="cx">         add_action( 'wp_footer', 'wp_print_media_templates' );
</span><span class="cx">
</span><span class="cx">         do_action( 'wp_enqueue_media' );
</span><span class="cx"> }
</span><del>-
-/**
- * Prints the templates used in the media manager.
- *
- * @since 3.5.0
- */
-function wp_print_media_templates() {
-        global $is_IE;
-        $class = 'media-modal wp-core-ui';
-        if ( $is_IE && strpos($_SERVER['HTTP_USER_AGENT'], 'MSIE 7') !== false )
-                $class .= ' ie7';
-        ?>
-        <script type="text/html" id="tmpl-media-frame">
-                <div class="media-frame-menu"></div>
-                <div class="media-frame-title"></div>
-                <div class="media-frame-router"></div>
-                <div class="media-frame-content"></div>
-                <div class="media-frame-toolbar"></div>
-                <div class="media-frame-uploader"></div>
-        </script>
-
-        <script type="text/html" id="tmpl-media-modal">
-                <div class="<?php echo $class; ?>">
-                        <a class="media-modal-close" href="#" title="<?php esc_attr_e('Close'); ?>"><span class="media-modal-icon"></span></a>
-                        <div class="media-modal-content"></div>
-                </div>
-                <div class="media-modal-backdrop"></div>
-        </script>
-
-        <script type="text/html" id="tmpl-uploader-window">
-                <div class="uploader-window-content">
-                        <h3><?php _e( 'Drop files to upload' ); ?></h3>
-                </div>
-        </script>
-
-        <script type="text/html" id="tmpl-uploader-inline">
-                <# var messageClass = data.message ? 'has-upload-message' : 'no-upload-message'; #>
-                <div class="uploader-inline-content {{ messageClass }}">
-                <# if ( data.message ) { #>
-                        <h3 class="upload-message">{{ data.message }}</h3>
-                <# } #>
-                <?php if ( ! _device_can_upload() ) : ?>
-                        <h3 class="upload-instructions"><?php _e('The web browser on your device cannot be used to upload files. You may be able to use the <a href="http://wordpress.org/extend/mobile/">native app for your device</a> instead.'); ?></h3>
-                <?php elseif ( is_multisite() && ! is_upload_space_available() ) : ?>
-                        <h3 class="upload-instructions"><?php _e( 'Upload Limit Exceeded' ); ?></h3>
-                        <?php do_action( 'upload_ui_over_quota' ); ?>
-
-                <?php else : ?>
-                        <div class="upload-ui">
-                                <h3 class="upload-instructions drop-instructions"><?php _e( 'Drop files anywhere to upload' ); ?></h3>
-                                <a href="#" class="browser button button-hero"><?php _e( 'Select Files' ); ?></a>
-                        </div>
-
-                        <div class="upload-inline-status"></div>
-
-                        <div class="post-upload-ui">
-                                <?php
-                                do_action( 'pre-upload-ui' );
-                                do_action( 'pre-plupload-upload-ui' );
-
-                                if ( 10 === remove_action( 'post-plupload-upload-ui', 'media_upload_flash_bypass' ) ) {
-                                        do_action( 'post-plupload-upload-ui' );
-                                        add_action( 'post-plupload-upload-ui', 'media_upload_flash_bypass' );
-                                } else {
-                                        do_action( 'post-plupload-upload-ui' );
-                                }
-
-                                $upload_size_unit = $max_upload_size = wp_max_upload_size();
-                                $byte_sizes = array( 'KB', 'MB', 'GB' );
-
-                                for ( $u = -1; $upload_size_unit > 1024 && $u < count( $byte_sizes ) - 1; $u++ ) {
-                                        $upload_size_unit /= 1024;
-                                }
-
-                                if ( $u < 0 ) {
-                                        $upload_size_unit = 0;
-                                        $u = 0;
-                                } else {
-                                        $upload_size_unit = (int) $upload_size_unit;
-                                }
-
-                                ?>
-
-                                <p class="max-upload-size"><?php
-                                        printf( __( 'Maximum upload file size: %d%s.' ), esc_html($upload_size_unit), esc_html($byte_sizes[$u]) );
-                                ?></p>
-
-                                <?php if ( ( $GLOBALS['is_IE'] || $GLOBALS['is_opera']) && $max_upload_size > 100 * 1024 * 1024 ) :
-                                        $browser_uploader = admin_url( 'media-new.php?browser-uploader&post_id=' ) . '{{ data.postId }}';
-                                        ?>
-                                        <p class="big-file-warning"><?php printf( __( 'Your browser has some limitations uploading large files with the multi-file uploader. Please use the <a href="%1$s" target="%2$s">browser uploader</a> for files over 100MB.' ),
-                                                $browser_uploader, '_blank' ); ?></p>
-                                <?php endif; ?>
-
-                                <?php do_action( 'post-upload-ui' ); ?>
-                        </div>
-                <?php endif; ?>
-                </div>
-        </script>
-
-        <script type="text/html" id="tmpl-uploader-status">
-                <h3><?php _e( 'Uploading' ); ?></h3>
-                <a class="upload-dismiss-errors" href="#"><?php _e('Dismiss Errors'); ?></a>
-
-                <div class="media-progress-bar"><div></div></div>
-                <div class="upload-details">
-                        <span class="upload-count">
-                                <span class="upload-index"></span> / <span class="upload-total"></span>
-                        </span>
-                        <span class="upload-detail-separator">&ndash;</span>
-                        <span class="upload-filename"></span>
-                </div>
-                <div class="upload-errors"></div>
-        </script>
-
-        <script type="text/html" id="tmpl-uploader-status-error">
-                <span class="upload-error-label"><?php _e('Error'); ?></span>
-                <span class="upload-error-filename">{{{ data.filename }}}</span>
-                <span class="upload-error-message">{{ data.message }}</span>
-        </script>
-
-        <script type="text/html" id="tmpl-attachment">
-                <div class="attachment-preview type-{{ data.type }} subtype-{{ data.subtype }} {{ data.orientation }}">
-                        <# if ( data.uploading ) { #>
-                                <div class="media-progress-bar"><div></div></div>
-                        <# } else if ( 'image' === data.type ) { #>
-                                <div class="thumbnail">
-                                        <div class="centered">
-                                                <img src="{{ data.size.url }}" draggable="false" />
-                                        </div>
-                                </div>
-                        <# } else { #>
-                                <img src="{{ data.icon }}" class="icon" draggable="false" />
-                                <div class="filename">
-                                        <div>{{ data.filename }}</div>
-                                </div>
-                        <# } #>
-
-                        <# if ( data.buttons.close ) { #>
-                                <a class="close media-modal-icon" href="#" title="<?php _e('Remove'); ?>"></a>
-                        <# } #>
-
-                        <# if ( data.buttons.check ) { #>
-                                <a class="check" href="#" title="<?php _e('Deselect'); ?>"><div class="media-modal-icon"></div></a>
-                        <# } #>
-                </div>
-                <#
-                var maybeReadOnly = data.can.save || data.allowLocalEdits ? '' : 'readonly';
-                if ( data.describe ) { #>
-                        <# if ( 'image' === data.type ) { #>
-                                <input type="text" value="{{ data.caption }}" class="describe" data-setting="caption"
-                                        placeholder="<?php esc_attr_e('Describe this image&hellip;'); ?>" {{ maybeReadOnly }} />
-                        <# } else { #>
-                                <input type="text" value="{{ data.title }}" class="describe" data-setting="title"
-                                        <# if ( 'video' === data.type ) { #>
-                                                placeholder="<?php esc_attr_e('Describe this video&hellip;'); ?>"
-                                        <# } else if ( 'audio' === data.type ) { #>
-                                                placeholder="<?php esc_attr_e('Describe this audio file&hellip;'); ?>"
-                                        <# } else { #>
-                                                placeholder="<?php esc_attr_e('Describe this media file&hellip;'); ?>"
-                                        <# } #> {{ maybeReadOnly }} />
-                        <# } #>
-                <# } #>
-        </script>
-
-        <script type="text/html" id="tmpl-attachment-details">
-                <h3>
-                        <?php _e('Attachment Details'); ?>
-
-                        <span class="settings-save-status">
-                                <span class="spinner"></span>
-                                <span class="saved"><?php esc_html_e('Saved.'); ?></span>
-                        </span>
-                </h3>
-                <div class="attachment-info">
-                        <div class="thumbnail">
-                                <# if ( data.uploading ) { #>
-                                        <div class="media-progress-bar"><div></div></div>
-                                <# } else if ( 'image' === data.type ) { #>
-                                        <img src="{{ data.size.url }}" draggable="false" />
-                                <# } else { #>
-                                        <img src="{{ data.icon }}" class="icon" draggable="false" />
-                                <# } #>
-                        </div>
-                        <div class="details">
-                                <div class="filename">{{ data.filename }}</div>
-                                <div class="uploaded">{{ data.dateFormatted }}</div>
-
-                                <# if ( 'image' === data.type && ! data.uploading ) { #>
-                                        <# if ( data.width && data.height ) { #>
-                                                <div class="dimensions">{{ data.width }} &times; {{ data.height }}</div>
-                                        <# } #>
-
-                                        <# if ( data.can.save ) { #>
-                                                <a class="edit-attachment" href="{{ data.editLink }}&amp;image-editor" target="_blank"><?php _e( 'Edit Image' ); ?></a>
-                                                <a class="refresh-attachment" href="#"><?php _e( 'Refresh' ); ?></a>
-                                        <# } #>
-                                <# } #>
-
-                                <# if ( ! data.uploading && data.can.remove ) { #>
-                                        <a class="delete-attachment" href="#"><?php _e( 'Delete Permanently' ); ?></a>
-                                <# } #>
-
-                                <div class="compat-meta">
-                                        <# if ( data.compat && data.compat.meta ) { #>
-                                                {{{ data.compat.meta }}}
-                                        <# } #>
-                                </div>
-                        </div>
-                </div>
-
-                <# var maybeReadOnly = data.can.save || data.allowLocalEdits ? '' : 'readonly'; #>
-                        <label class="setting" data-setting="title">
-                                <span><?php _e('Title'); ?></span>
-                                <input type="text" value="{{ data.title }}" {{ maybeReadOnly }} />
-                        </label>
-                        <label class="setting" data-setting="caption">
-                                <span><?php _e('Caption'); ?></span>
-                                <textarea {{ maybeReadOnly }}>{{ data.caption }}</textarea>
-                        </label>
-                <# if ( 'image' === data.type ) { #>
-                        <label class="setting" data-setting="alt">
-                                <span><?php _e('Alt Text'); ?></span>
-                                <input type="text" value="{{ data.alt }}" {{ maybeReadOnly }} />
-                        </label>
-                <# } #>
-                        <label class="setting" data-setting="description">
-                                <span><?php _e('Description'); ?></span>
-                                <textarea {{ maybeReadOnly }}>{{ data.description }}</textarea>
-                        </label>
-        </script>
-
-        <script type="text/html" id="tmpl-media-selection">
-                <div class="selection-info">
-                        <span class="count"></span>
-                        <# if ( data.editable ) { #>
-                                <a class="edit-selection" href="#"><?php _e('Edit'); ?></a>
-                        <# } #>
-                        <# if ( data.clearable ) { #>
-                                <a class="clear-selection" href="#"><?php _e('Clear'); ?></a>
-                        <# } #>
-                </div>
-                <div class="selection-view"></div>
-        </script>
-
-        <script type="text/html" id="tmpl-attachment-display-settings">
-                <h3><?php _e('Attachment Display Settings'); ?></h3>
-
-                <# if ( 'image' === data.type ) { #>
-                        <label class="setting">
-                                <span><?php _e('Alignment'); ?></span>
-                                <select class="alignment"
-                                        data-setting="align"
-                                        <# if ( data.userSettings ) { #>
-                                                data-user-setting="align"
-                                        <# } #>>
-
-                                        <option value="left">
-                                                <?php esc_attr_e('Left'); ?>
-                                        </option>
-                                        <option value="center">
-                                                <?php esc_attr_e('Center'); ?>
-                                        </option>
-                                        <option value="right">
-                                                <?php esc_attr_e('Right'); ?>
-                                        </option>
-                                        <option value="none" selected>
-                                                <?php esc_attr_e('None'); ?>
-                                        </option>
-                                </select>
-                        </label>
-                <# } #>
-
-                <div class="setting">
-                        <label>
-                                <span><?php _e('Link To'); ?></span>
-                                <select class="link-to"
-                                        data-setting="link"
-                                        <# if ( data.userSettings ) { #>
-                                                data-user-setting="urlbutton"
-                                        <# } #>>
-
-                                        <option value="custom">
-                                                <?php esc_attr_e('Custom URL'); ?>
-                                        </option>
-                                        <option value="post" selected>
-                                                <?php esc_attr_e('Attachment Page'); ?>
-                                        </option>
-                                        <option value="file">
-                                                <?php esc_attr_e('Media File'); ?>
-                                        </option>
-                                        <option value="none">
-                                                <?php esc_attr_e('None'); ?>
-                                        </option>
-                                </select>
-                        </label>
-                        <input type="text" class="link-to-custom" data-setting="linkUrl" />
-                </div>
-
-                <# if ( 'undefined' !== typeof data.sizes ) { #>
-                        <label class="setting">
-                                <span><?php _e('Size'); ?></span>
-                                <select class="size" name="size"
-                                        data-setting="size"
-                                        <# if ( data.userSettings ) { #>
-                                                data-user-setting="imgsize"
-                                        <# } #>>
-                                        <?php
-
-                                        $sizes = apply_filters( 'image_size_names_choose', array(
-                                                'thumbnail' => __('Thumbnail'),
-                                                'medium' => __('Medium'),
-                                                'large' => __('Large'),
-                                                'full' => __('Full Size'),
-                                        ) );
-
-                                        foreach ( $sizes as $value => $name ) : ?>
-                                                <#
-                                                var size = data.sizes['<?php echo esc_js( $value ); ?>'];
-                                                if ( size ) { #>
-                                                        <option value="<?php echo esc_attr( $value ); ?>" <?php selected( $value, 'full' ); ?>>
-                                                                <?php echo esc_html( $name ); ?> &ndash; {{ size.width }} &times; {{ size.height }}
-                                                        </option>
-                                                <# } #>
-                                        <?php endforeach; ?>
-                                </select>
-                        </label>
-                <# } #>
-        </script>
-
-        <script type="text/html" id="tmpl-gallery-settings">
-                <h3><?php _e('Gallery Settings'); ?></h3>
-
-                <label class="setting">
-                        <span><?php _e('Link To'); ?></span>
-                        <select class="link-to"
-                                data-setting="link"
-                                <# if ( data.userSettings ) { #>
-                                        data-user-setting="urlbutton"
-                                <# } #>>
-
-                                <option value="post" selected>
-                                        <?php esc_attr_e('Attachment Page'); ?>
-                                </option>
-                                <option value="file">
-                                        <?php esc_attr_e('Media File'); ?>
-                                </option>
-                        </select>
-                </label>
-
-                <label class="setting">
-                        <span><?php _e('Columns'); ?></span>
-                        <select class="columns" name="columns"
-                                data-setting="columns">
-                                <?php for ( $i = 1; $i <= 9; $i++ ) : ?>
-                                        <option value="<?php echo esc_attr( $i ); ?>" <?php selected( $i, 3 ); ?>>
-                                                <?php echo esc_html( $i ); ?>
-                                        </option>
-                                <?php endfor; ?>
-                        </select>
-                </label>
-
-                <label class="setting">
-                        <span><?php _ex( 'Random', 'Gallery order' ); ?></span>
-                        <input type="checkbox" data-setting="_orderbyRandom" />
-                </label>
-        </script>
-
-        <script type="text/html" id="tmpl-embed-link-settings">
-                <label class="setting">
-                        <span><?php _e('Title'); ?></span>
-                        <input type="text" class="alignment" data-setting="title" />
-                </label>
-        </script>
-
-        <script type="text/html" id="tmpl-embed-image-settings">
-                <div class="thumbnail">
-                        <img src="{{ data.model.url }}" draggable="false" />
-                </div>
-
-                <?php if ( ! apply_filters( 'disable_captions', '' ) ) : ?>
-                        <label class="setting caption">
-                                <span><?php _e('Caption'); ?></span>
-                                <textarea data-setting="caption" />
-                        </label>
-                <?php endif; ?>
-
-                <label class="setting alt-text">
-                        <span><?php _e('Alt Text'); ?></span>
-                        <input type="text" data-setting="alt" />
-                </label>
-
-                <div class="setting align">
-                        <span><?php _e('Align'); ?></span>
-                        <div class="button-group button-large" data-setting="align">
-                                <button class="button" value="left">
-                                        <?php esc_attr_e('Left'); ?>
-                                </button>
-                                <button class="button" value="center">
-                                        <?php esc_attr_e('Center'); ?>
-                                </button>
-                                <button class="button" value="right">
-                                        <?php esc_attr_e('Right'); ?>
-                                </button>
-                                <button class="button active" value="none">
-                                        <?php esc_attr_e('None'); ?>
-                                </button>
-                        </div>
-                </div>
-
-                <div class="setting link-to">
-                        <span><?php _e('Link To'); ?></span>
-                        <div class="button-group button-large" data-setting="link">
-                                <button class="button" value="file">
-                                        <?php esc_attr_e('Image URL'); ?>
-                                </button>
-                                <button class="button" value="custom">
-                                        <?php esc_attr_e('Custom URL'); ?>
-                                </button>
-                                <button class="button active" value="none">
-                                        <?php esc_attr_e('None'); ?>
-                                </button>
-                        </div>
-                        <input type="text" class="link-to-custom" data-setting="linkUrl" />
-                </div>
-        </script>
-
-        <script type="text/html" id="tmpl-attachments-css">
-                <style type="text/css" id="{{ data.id }}-css">
-                        #{{ data.id }} {
-                                padding: 0 {{ data.gutter }}px;
-                        }
-
-                        #{{ data.id }} .attachment {
-                                margin: {{ data.gutter }}px;
-                                width: {{ data.edge }}px;
-                        }
-
-                        #{{ data.id }} .attachment-preview,
-                        #{{ data.id }} .attachment-preview .thumbnail {
-                                width: {{ data.edge }}px;
-                                height: {{ data.edge }}px;
-                        }
-
-                        #{{ data.id }} .portrait .thumbnail img {
-                                max-width: {{ data.edge }}px;
-                                height: auto;
-                        }
-
-                        #{{ data.id }} .landscape .thumbnail img {
-                                width: auto;
-                                max-height: {{ data.edge }}px;
-                        }
-                </style>
-        </script>
-        <?php
-
-        do_action( 'print_media_templates' );
-}
</del></span></pre>
</div>
</div>
</body>
</html>