Some tricks that in some cases speed up perceived posting time.

git-svn-id: http://svn.automattic.com/wordpress/trunk@1259 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
saxmatt 2004-05-10 08:33:03 +00:00
parent 1498bf0bc2
commit 3e2b2f37b2
1 changed files with 28 additions and 29 deletions

View File

@ -93,22 +93,6 @@ case 'post':
$now_gmt = current_time('mysql', 1); $now_gmt = current_time('mysql', 1);
} }
if (!empty($_POST['mode'])) {
switch($_POST['mode']) {
case 'bookmarklet':
$location = 'bookmarklet.php?a=b';
break;
case 'sidebar':
$location = 'sidebar.php?a=b';
break;
default:
$location = 'post.php';
break;
}
} else {
$location = 'post.php';
}
// What to do based on which button they pressed // What to do based on which button they pressed
if ('' != $_POST['saveasdraft']) $post_status = 'draft'; if ('' != $_POST['saveasdraft']) $post_status = 'draft';
if ('' != $_POST['saveasprivate']) $post_status = 'private'; if ('' != $_POST['saveasprivate']) $post_status = 'private';
@ -134,9 +118,26 @@ case 'post':
$post_ID = $wpdb->get_var("SELECT ID FROM $tableposts ORDER BY ID DESC LIMIT 1"); $post_ID = $wpdb->get_var("SELECT ID FROM $tableposts ORDER BY ID DESC LIMIT 1");
if (!empty($_POST['mode'])) {
switch($_POST['mode']) {
case 'bookmarklet':
$location = 'bookmarklet.php?a=b';
break;
case 'sidebar':
$location = 'sidebar.php?a=b';
break;
default:
$location = 'post.php';
break;
}
} else {
$location = 'post.php';
}
if ('' != $_POST['advanced']) if ('' != $_POST['advanced'])
$location = "post.php?action=edit&post=$post_ID"; $location = "post.php?action=edit&post=$post_ID";
header("Location: $location"); // Send user on their way while we keep working
// Insert categories // Insert categories
// Check to make sure there is a category, if not just set it to some default // Check to make sure there is a category, if not just set it to some default
@ -161,9 +162,6 @@ case 'post':
sleep($sleep_after_edit); sleep($sleep_after_edit);
} }
header("Location: $location");
if ($post_status == 'publish') { if ($post_status == 'publish') {
if((get_settings('use_geo_positions')) && ($post_latf != null) && ($post_lonf != null)) { if((get_settings('use_geo_positions')) && ($post_latf != null) && ($post_lonf != null)) {
pingGeoUrl($post_ID); pingGeoUrl($post_ID);
@ -323,6 +321,17 @@ case 'editpost':
$datemodif_gmt = ''; $datemodif_gmt = '';
} }
if ($_POST['save']) {
$location = $_SERVER['HTTP_REFERER'];
} elseif ($_POST['updatemeta']) {
$location = $_SERVER['HTTP_REFERER'] . '&message=2#postcustom';
} elseif ($_POST['deletemeta']) {
$location = $_SERVER['HTTP_REFERER'] . '&message=3#postcustom';
} else {
$location = 'post.php';
}
header ('Location: ' . $location); // Send user on their way while we keep working
$now = current_time('mysql'); $now = current_time('mysql');
$now_gmt = current_time('mysql', 1); $now_gmt = current_time('mysql', 1);
@ -406,16 +415,6 @@ $now_gmt = current_time('mysql', 1);
add_meta($post_ID); add_meta($post_ID);
if ($_POST['save']) {
$location = $_SERVER['HTTP_REFERER'];
} elseif ($_POST['updatemeta']) {
$location = $_SERVER['HTTP_REFERER'] . '&message=2#postcustom';
} elseif ($_POST['deletemeta']) {
$location = $_SERVER['HTTP_REFERER'] . '&message=3#postcustom';
} else {
$location = 'post.php';
}
header ('Location: ' . $location);
do_action('edit_post', $post_ID); do_action('edit_post', $post_ID);
exit(); exit();
break; break;