diff -r a4642baaf829 -r 4d4862461b8d web/wp-admin/press-this.php
--- a/web/wp-admin/press-this.php Tue Feb 02 14:45:47 2010 +0000
+++ b/web/wp-admin/press-this.php Tue Feb 02 15:44:16 2010 +0000
@@ -1,562 +1,597 @@
- $image)
- // see if files exist in content - we don't want to upload non-used selected files.
- if( strpos($_REQUEST['content'], $image) !== false ) {
- $desc = isset($_REQUEST['photo_description'][$key]) ? $_REQUEST['photo_description'][$key] : '';
- $upload = media_sideload_image($image, $post_ID, $desc);
-
- // Replace the POSTED content
with correct uploaded ones. Regex contains fix for Magic Quotes
- if( !is_wp_error($upload) ) $content = preg_replace('/
]*)src=\\\?(\"|\')'.preg_quote($image, '/').'\\\?(\2)([^>\/]*)\/*>/is', $upload, $content);
- }
-
- // set the post_content and status
- $quick['post_status'] = isset($_REQUEST['publish']) ? 'publish' : 'draft';
- $quick['post_content'] = $content;
- // error handling for $post
- if ( is_wp_error($post_ID)) {
- wp_die($id);
- wp_delete_post($post_ID);
- // error handling for media_sideload
- } elseif ( is_wp_error($upload)) {
- wp_die($upload);
- wp_delete_post($post_ID);
- } else {
- $quick['ID'] = $post_ID;
- wp_update_post($quick);
- }
- return $post_ID;
-}
-
-// For submitted posts.
-if ( isset($_REQUEST['action']) && 'post' == $_REQUEST['action'] ) {
- check_admin_referer('press-this');
- $post_ID = press_it();
- $posted = $post_ID;
-} else {
- $post_ID = 0;
-}
-
-// Set Variables
-$title = isset( $_GET['t'] ) ? trim( strip_tags( aposfix( stripslashes( $_GET['t'] ) ) ) ) : '';
-$selection = isset( $_GET['s'] ) ? trim( htmlspecialchars( html_entity_decode( aposfix( stripslashes( $_GET['s'] ) ) ) ) ) : '';
-if ( ! empty($selection) ) {
- $selection = preg_replace('/(\r?\n|\r)/', '
Photo ()
');
- jQuery('.close').click(function() {
- jQuery('#extra_fields').hide();
- jQuery('#extra_fields').html('');
- });
- jQuery('.refresh').click(function() {
- show('photo');
- });
- jQuery('#img_container').html(strtoappend);
- jQuery('#photo_add_url').attr('href', '?ajax=photo_thickbox_url&height=200&width=500');
- tb_init('#extra_fields .thickbox');
-
-
- });
-
-
- >
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+ $image) {
+ // see if files exist in content - we don't want to upload non-used selected files.
+ if ( strpos($_POST['content'], htmlspecialchars($image)) !== false ) {
+ $desc = isset($_POST['photo_description'][$key]) ? $_POST['photo_description'][$key] : '';
+ $upload = media_sideload_image($image, $post_ID, $desc);
+
+ // Replace the POSTED content
![]()
with correct uploaded ones. Regex contains fix for Magic Quotes
+ if( !is_wp_error($upload) )
+ $content = preg_replace('/
![]()
]*)src=\\\?(\"|\')'.preg_quote(htmlspecialchars($image), '/').'\\\?(\2)([^>\/]*)\/*>/is', $upload, $content);
+ }
+ }
+ }
+ // set the post_content and status
+ $quick['post_status'] = isset($_POST['publish']) ? 'publish' : 'draft';
+ $quick['post_content'] = $content;
+ // error handling for media_sideload
+ if ( is_wp_error($upload) ) {
+ wp_delete_post($post_ID);
+ wp_die($upload);
+ } else {
+ $quick['ID'] = $post_ID;
+ wp_update_post($quick);
+ }
+ return $post_ID;
+}
+
+// For submitted posts.
+if ( isset($_REQUEST['action']) && 'post' == $_REQUEST['action'] ) {
+ check_admin_referer('press-this');
+ $post_ID = press_it();
+ $posted = $post_ID;
+} else {
+ $post_ID = 0;
+}
+
+// Set Variables
+$title = isset( $_GET['t'] ) ? trim( strip_tags( aposfix( stripslashes( $_GET['t'] ) ) ) ) : '';
+$selection = isset( $_GET['s'] ) ? trim( htmlspecialchars( html_entity_decode( aposfix( stripslashes( $_GET['s'] ) ) ) ) ) : '';
+if ( ! empty($selection) ) {
+ $selection = preg_replace('/(\r?\n|\r)/', '
', $selection);
+ $selection = '
'.str_replace('
', '', $selection).'';
+}
+
+$url = isset($_GET['u']) ? esc_url($_GET['u']) : '';
+$image = isset($_GET['i']) ? $_GET['i'] : '';
+
+if ( !empty($_REQUEST['ajax']) ) {
+ switch ($_REQUEST['ajax']) {
+ case 'video': ?>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
|
+ ]*)src=(\"|\')([^<>\'\"]+)(\2)([^>]*)\/*>/i';
+ $content = str_replace(array("\n","\t","\r"), '', $content);
+ preg_match_all($pattern, $content, $matches);
+ if ( empty($matches[0]) )
+ return '';
+ $sources = array();
+ foreach ($matches[3] as $src) {
+ // if no http in url
+ if(strpos($src, 'http') === false)
+ // if it doesn't have a relative uri
+ if( strpos($src, '../') === false && strpos($src, './') === false && strpos($src, '/') === 0)
+ $src = 'http://'.str_replace('//','/', $host['host'].'/'.$src);
+ else
+ $src = 'http://'.str_replace('//','/', $host['host'].'/'.dirname($host['path']).'/'.$src);
+ $sources[] = esc_attr($src);
+ }
+ return "'" . implode("','", $sources) . "'";
+ }
+ $url = wp_kses(urldecode($url), null);
+ echo 'new Array('.get_images_from_uri($url).')';
+ break;
+
+ case 'photo_js': ?>
+ // gather images and load some default JS
+ var last = null
+ var img, img_tag, aspect, w, h, skip, i, strtoappend = "";
+ if(photostorage == false) {
+ var my_src = eval(
+ jQuery.ajax({
+ type: "GET",
+ url: "",
+ cache : false,
+ async : false,
+ data: "ajax=photo_images&u=",
+ dataType : "script"
+ }).responseText
+ );
+ if(my_src.length == 0) {
+ var my_src = eval(
+ jQuery.ajax({
+ type: "GET",
+ url: "",
+ cache : false,
+ async : false,
+ data: "ajax=photo_images&u=",
+ dataType : "script"
+ }).responseText
+ );
+ if(my_src.length == 0) {
+ strtoappend = '';
+ }
+ }
+ }
+ for (i = 0; i < my_src.length; i++) {
+ img = new Image();
+ img.src = my_src[i];
+ img_attr = 'id="img' + i + '"';
+ skip = false;
+
+ maybeappend = '

';
+
+ if (img.width && img.height) {
+ if (img.width >= 30 && img.height >= 30) {
+ aspect = img.width / img.height;
+ scale = (aspect > 1) ? (71 / img.width) : (71 / img.height);
+
+ w = img.width;
+ h = img.height;
+
+ if (scale < 1) {
+ w = parseInt(img.width * scale);
+ h = parseInt(img.height * scale);
+ }
+ img_attr += ' style="width: ' + w + 'px; height: ' + h + 'px;"';
+ strtoappend += maybeappend;
+ }
+ } else {
+ strtoappend += maybeappend;
+ }
+ }
+
+ function pick(img, desc) {
+ if (img) {
+ if('object' == typeof jQuery('.photolist input') && jQuery('.photolist input').length != 0) length = jQuery('.photolist input').length;
+ if(length == 0) length = 1;
+ jQuery('.photolist').append('
');
+ jQuery('.photolist').append('
');
+ insert_editor( "\n\n" + encodeURI('

'));
+ }
+ return false;
+ }
+
+ function image_selector() {
+ tb_remove();
+ desc = jQuery('#this_photo_description').val();
+ src = jQuery('#this_photo').val();
+ pick(src, desc);
+ jQuery('#extra-fields').hide();
+ jQuery('#extra-fields').html('');
+ return false;
+ }
+ jQuery('#extra-fields').html('
Add Photos ()
');
+ jQuery('#img_container').html(strtoappend);
+
+
+ >
+
+
+
+
+
+
+
+ '370' ) );
+?>
+
+
+
+
+
+
+
+
+