Browse Source

keyring/importer

windhamdavid 11 years ago
parent
commit
e6304573d7
55 changed files with 18168 additions and 1 deletions
  1. 12 0
      .gitmodules
  2. 1 0
      app/plugins/coming-soon
  3. 1 0
      app/plugins/flexslider
  4. 257 0
      app/plugins/keyring/admin-ui.php
  5. 30 0
      app/plugins/keyring/includes/oauth-php/CHANGELOG.txt
  6. 22 0
      app/plugins/keyring/includes/oauth-php/LICENSE.txt
  7. 895 0
      app/plugins/keyring/includes/oauth-php/OAuth.php
  8. 13 0
      app/plugins/keyring/includes/oauth-php/OAuthTests.xml
  9. 106 0
      app/plugins/keyring/includes/oauth-php/OAuth_TestServer.php
  10. 68 0
      app/plugins/keyring/includes/oauth-php/doc/design.txt
  11. 12 0
      app/plugins/keyring/includes/oauth-php/tests/Mock_OAuthBaseStringRequest.php
  12. 57 0
      app/plugins/keyring/includes/oauth-php/tests/Mock_OAuthDataStore.php
  13. 47 0
      app/plugins/keyring/includes/oauth-php/tests/Mock_OAuthSignatureMethod_RSA_SHA1.php
  14. 10 0
      app/plugins/keyring/includes/oauth-php/tests/OAuthConsumerTest.php
  15. 329 0
      app/plugins/keyring/includes/oauth-php/tests/OAuthRequestTest.php
  16. 225 0
      app/plugins/keyring/includes/oauth-php/tests/OAuthServerTest.php
  17. 60 0
      app/plugins/keyring/includes/oauth-php/tests/OAuthSignatureMethodHmacSha1Test.php
  18. 79 0
      app/plugins/keyring/includes/oauth-php/tests/OAuthSignatureMethodPlaintextTest.php
  19. 43 0
      app/plugins/keyring/includes/oauth-php/tests/OAuthSignatureMethodRsaSha1Test.php
  20. 20 0
      app/plugins/keyring/includes/oauth-php/tests/OAuthTokenTest.php
  21. 151 0
      app/plugins/keyring/includes/oauth-php/tests/OAuthUtilTest.php
  22. 60 0
      app/plugins/keyring/includes/oauth-php/tests/common.php
  23. 218 0
      app/plugins/keyring/includes/services/core/http-basic.php
  24. 393 0
      app/plugins/keyring/includes/services/core/oauth1.php
  25. 238 0
      app/plugins/keyring/includes/services/core/oauth2.php
  26. 26 0
      app/plugins/keyring/includes/services/extended/delicious.php
  27. 100 0
      app/plugins/keyring/includes/services/extended/example.php
  28. 136 0
      app/plugins/keyring/includes/services/extended/facebook.php
  29. 112 0
      app/plugins/keyring/includes/services/extended/flickr.php
  30. 77 0
      app/plugins/keyring/includes/services/extended/foursquare.php
  31. 212 0
      app/plugins/keyring/includes/services/extended/google-contacts.php
  32. 62 0
      app/plugins/keyring/includes/services/extended/instagram.php
  33. 233 0
      app/plugins/keyring/includes/services/extended/instapaper.php
  34. 89 0
      app/plugins/keyring/includes/services/extended/linkedin.php
  35. 95 0
      app/plugins/keyring/includes/services/extended/moves.php
  36. 77 0
      app/plugins/keyring/includes/services/extended/runkeeper.php
  37. 94 0
      app/plugins/keyring/includes/services/extended/tripit.php
  38. 84 0
      app/plugins/keyring/includes/services/extended/tumblr.php
  39. 89 0
      app/plugins/keyring/includes/services/extended/twitter.php
  40. 135 0
      app/plugins/keyring/includes/services/extended/yahoo.php
  41. 181 0
      app/plugins/keyring/includes/stores/singlestore.php
  42. 307 0
      app/plugins/keyring/keyring.php
  43. 656 0
      app/plugins/keyring/languages/keyring.po
  44. 142 0
      app/plugins/keyring/readme.txt
  45. 320 0
      app/plugins/keyring/service.php
  46. 56 0
      app/plugins/keyring/store.php
  47. 141 0
      app/plugins/keyring/token.php
  48. 1 0
      app/plugins/woocommerce
  49. 231 0
      app/plugins/wordpress-importer/languages/wordpress-importer.pot
  50. 664 0
      app/plugins/wordpress-importer/parsers.php
  51. 107 0
      app/plugins/wordpress-importer/readme.txt
  52. 1132 0
      app/plugins/wordpress-importer/wordpress-importer.php
  53. 1 1
      app/themes/_wd
  54. 1 0
      app/themes/aesop-sample-theme
  55. 9260 0
      theme-unit-test-data.xml

+ 12 - 0
.gitmodules

@@ -53,3 +53,15 @@
 [submodule "app/plugins/badgeos"]
 	path = app/plugins/badgeos
 	url = git@github.com:opencredit/badgeos.git
+[submodule "app/plugins/coming-soon"]
+	path = app/plugins/coming-soon
+	url = git@github.com:seedprod/coming-soon.git
+[submodule "app/plugins/woocommerce"]
+	path = app/plugins/woocommerce
+	url = git@github.com:woothemes/woocommerce.git
+[submodule "app/plugins/flexslider"]
+	path = app/plugins/flexslider
+	url = git@github.com:woothemes/FlexSlider.git
+[submodule "app/themes/aesop-sample-theme"]
+	path = app/themes/aesop-sample-theme
+	url = git@github.com:bearded-avenger/aesop-sample-theme.git

+ 1 - 0
app/plugins/coming-soon

@@ -0,0 +1 @@
+Subproject commit 2ca3404b09e6005096c34fc76bb82a9e974cf423

+ 1 - 0
app/plugins/flexslider

@@ -0,0 +1 @@
+Subproject commit ce5441b214a46322424a32c92d77baaadeed9688

+ 257 - 0
app/plugins/keyring/admin-ui.php

@@ -0,0 +1,257 @@
+<?php
+
+/**
+ * Provides the core admin UI (Tools > Keyring) which includes:
+ *  - managing Service credentials
+ *  - creating connections
+ *  - deleting connections
+ *  - (coming soon) managing active/inactive Services
+ *
+ * Run Keyring with KEYRING__HEADLESS_MODE defined as true to disable all UI.
+ *
+ * @package Keyring
+ */
+class Keyring_Admin_UI {
+	var $keyring = false;
+
+	function __construct() {
+		add_action( 'admin_menu', array( $this, 'admin_menu' ) );
+	}
+
+	static function &init() {
+		static $instance = false;
+
+		if ( !$instance ) {
+			$instance = new Keyring_Admin_UI;
+		}
+
+		return $instance;
+	}
+
+	function inline_css() {
+		?><style type="text/css">
+		.wrap ul li {
+			list-style-type: square;
+			margin: .3em 0 .3em 2em;
+		}
+		</style><?php
+	}
+
+	function admin_menu() {
+		$hook = add_management_page( 'Keyring', 'Keyring', 'read', 'keyring', array( $this, 'admin_page' ), '' );
+		add_action( "load-$hook", array( $this, 'admin_page_load' ) );
+	}
+
+	function admin_page_load() {
+		$this->keyring = Keyring::init();
+		add_action( 'admin_head', array( $this, 'inline_css' ) );
+	}
+
+	function admin_page_header( $screen = false ) {
+		// Output the actual heading + icon for the page
+		echo '<div class="wrap">';
+		screen_icon( 'ms-admin' );
+		switch ( $screen ) {
+		case 'tokens' :
+			echo '<h2>' . __( 'Keyring: Managed Connections', 'keyring' ) . ' <a href="' . Keyring_Util::admin_url( false, array( 'action' => 'services' ) ) . '" class="add-new-h2">' . __( 'Add New', 'keyring' ) . '</a></h2>';
+			break;
+		case 'services' :
+			echo '<h2>' . __( 'Add New Connection', 'keyring' ) . '</h2>';
+			echo '<p><a href="' . Keyring_Util::admin_url() . '">' . __( '&larr; Back', 'keyring' ) . '</a></p>';
+			break;
+		case 'error' :
+			echo '<h2>' . __( 'Keyring Error!', 'keyring' ) . '</h2>';
+			break;
+		default :
+			echo '<h2>' . __( 'Keyring', 'keyring' ) . '</h2>';
+		}
+
+		// Output any errors if we have them, then stop, and link back to home.
+		if ( $this->keyring->has_errors() ) {
+			echo '<div id="keyring-admin-errors" class="updated"><ul>';
+			foreach ( $this->keyring->get_errors() as $error ) {
+				echo "<li>" . esc_html( $error ) . "</li>";
+			}
+			echo '</ul></div>';
+			echo '<p class="submit"><a href="' . Keyring_Util::admin_url( $_REQUEST['service'] ) . '" class="button-primary">' . __( 'Start Again', 'keyring' ) . '</a></p>';
+			return;
+		}
+
+		// Output any messages as part of the UI (don't abort).
+		if ( $this->keyring->has_messages() ) {
+			echo '<div id="keyring-admin-messages" class="updated"><ul>';
+			foreach ( $this->keyring->get_messages() as $message ) {
+				echo "<li>" . esc_html( $message ) . "</li>";
+			}
+			echo '</ul></div>';
+		}
+	}
+
+	static function admin_page_footer() {
+		echo '</div>'; // class="wrap"
+	}
+
+	function admin_page() {
+		// Handle delete request. Will default back to "tokens" later
+		if ( isset( $_REQUEST['action'] ) && 'delete' == $_REQUEST['action'] ) {
+			if ( !isset( $_REQUEST['nonce'] ) || !wp_verify_nonce( $_REQUEST['nonce'], 'keyring-delete-' . $_REQUEST['service'] . '-' . $_REQUEST['token'] ) ) {
+				Keyring::error( __( 'Invalid/missing delete nonce.', 'keyring' ) );
+				exit;
+			}
+
+			if ( $this->keyring->get_token_store()->delete( array( 'id' => (int) $_REQUEST['token'], 'type' => 'access' ) ) )
+				Keyring::message( __( 'That connection has been deleted.', 'keyring' ) );
+			else
+				Keyring::message( __( 'Could not delete that connection!', 'keyring' ) );
+		}
+
+		// Set up our defaults
+		$service = '';
+		if ( !empty( $_REQUEST['service'] ) )
+			$service = $_REQUEST['service'];
+
+		$action = 'tokens';
+		if ( isset( $_REQUEST['action'] ) && in_array( $_REQUEST['action'], array( 'tokens', 'services', 'request', 'verify', 'manage' ) ) )
+			$action = $_REQUEST['action'];
+
+		// Custom UI optionally hooked in to handle this service/action. Trigger action
+		// and assume it handles everything, so bail out after that.
+		if ( Keyring_Util::has_custom_ui( $service, $action ) ) {
+			do_action( "keyring_{$service}_{$action}_ui" );
+			return;
+		}
+
+		// Nothing else has bailed, so it must be one of our default/core screens.
+		switch ( $action ) {
+		case 'tokens' :
+			$this->admin_page_header( 'tokens' );
+
+			$list_table = new Keyring_Connections_List_Table();
+			$list_table->display();
+
+			$this->admin_page_footer();
+			break;
+
+		case 'services' :
+			$this->admin_page_header( 'services' );
+
+			$services = $this->keyring->get_registered_services();
+			if ( count( $services ) ) {
+				$configured = $not_configured = array();
+				foreach ( $services as $service ) {
+					if ( $service->is_configured() )
+						$configured[] = $service;
+					else
+						$not_configured[] = $service;
+				}
+
+				if ( count( $configured ) ) {
+					echo '<p><strong>' . __( 'Click a service to create a new connection:', 'keyring' ) . '</strong></p>';
+					echo '<ul>';
+					foreach ( $configured as $service ) {
+						$request_kr_nonce = wp_create_nonce( 'keyring-request' );
+						$request_nonce = wp_create_nonce( 'keyring-request-' . $service->get_name() );
+						echo '<li><a href="' . esc_url( Keyring_Util::admin_url( $service->get_name(), array( 'action' => 'request', 'kr_nonce' => $request_kr_nonce, 'nonce' => $request_nonce ) ) ) . '">' . esc_html( $service->get_label() ) . '</a>';
+
+						if ( has_action( 'keyring_' . $service->get_name() . '_manage_ui' ) ) {
+							$manage_kr_nonce = wp_create_nonce( 'keyring-manage' );
+							$manage_nonce = wp_create_nonce( 'keyring-manage-' . $service->get_name() );
+							echo ' (<a href="' . esc_url( Keyring_Util::admin_url( $service->get_name(), array( 'action' => 'manage', 'kr_nonce' => $manage_kr_nonce, 'nonce' => $manage_nonce ) ) ) . '">' . esc_html( __( 'Manage', 'keyring' ) ) . '</a>)';
+						}
+
+						echo '</li>';
+					}
+					echo '</ul><br /><br />';
+				} else {
+					echo '<p>' . __( 'There are no fully-configured services available to connect to.', 'keyring' ) . '</p>';
+				}
+
+				if ( count( $not_configured ) ) {
+					echo '<p>' . __( 'The following services need to be configured correctly before you can connect to them.', 'keyring' ) . '</p>';
+					echo '<ul>';
+					foreach ( $not_configured as $service ) {
+						if ( !has_action( 'keyring_' . $service->get_name() . '_manage_ui' ) )
+							continue;
+
+						$manage_kr_nonce = wp_create_nonce( 'keyring-manage' );
+						$manage_nonce = wp_create_nonce( 'keyring-manage-' . $service->get_name() );
+						echo '<li><a href="' . esc_url( Keyring_Util::admin_url( $service->get_name(), array( 'action' => 'manage', 'kr_nonce' => $manage_kr_nonce, 'nonce' => $manage_nonce ) ) ) . '">' . esc_html( $service->get_label() ) . '</a></li>';
+					}
+					echo '</ul>';
+				}
+			}
+
+			$this->admin_page_footer();
+			break;
+		}
+	}
+}
+
+/** WordPress List Table Administration API and base class */
+require_once ABSPATH . 'wp-admin/includes/class-wp-list-table.php';
+
+class Keyring_Connections_List_Table extends WP_List_Table {
+	var $keyring = false;
+	function __construct() {
+		$this->keyring = Keyring::init();
+
+		parent::__construct( array(
+			'singular' => 'connection',
+			'plural'   => 'connections',
+			'screen'   => $this->keyring->admin_page,
+		) );
+
+		$this->items = Keyring::get_token_store()->get_tokens();
+	}
+
+	function no_items() {
+		echo '<p>' . sprintf( __( 'You haven\'t added any connections yet. <a href="%s">Add a New Connection</a>.', 'keyring' ), esc_url( Keyring_Util::admin_url( false, array( 'action' => 'services' ) ) ) ) . '</p>';
+	}
+
+	function get_columns() {
+		return array(
+			'service'  => __( 'Service', 'keyring' ),
+			'avatar'   => __( 'Avatar', 'keyring' ),
+			'id'       => __( 'External ID', 'keyring' ),
+			'name'     => __( 'Name', 'keyring' ),
+			'actions'  => '&nbsp;'
+		);
+	}
+
+	function column_service( $row ) {
+		echo $row->get_service()->get_label();
+	}
+
+	function column_avatar( $row ) {
+		$picture = $row->get_meta( 'picture' );
+		if ( $picture ) {
+			echo '<img src="' . esc_attr( $picture ) . '" width="40" height="40" border="1" alt="' . __( 'Avatar', 'keyring' ) . '" />';
+		} else {
+			echo '-';
+		}
+	}
+
+	function column_id( $row ) {
+		echo $row->get_meta( 'user_id' );
+	}
+
+	function column_name( $row ) {
+		// Make a few attempts to get something to display here
+		$name = $row->get_meta( 'name' );
+		if ( !$name )
+			$name = $row->get_meta( 'username' );
+		if ( !$name )
+			$name = trim( $row->get_meta( 'first_name' ) . ' ' . $row->get_meta( 'last_name' ) );
+
+		if ( $name )
+			echo $name;
+		else
+			echo '-';
+	}
+
+	function column_actions( $row ) {
+		$kr_nonce = wp_create_nonce( 'keyring-delete' );
+		$delete_nonce = wp_create_nonce( 'keyring-delete-' . $row->get_service()->get_name() . '-' . $row->get_uniq_id() );
+		echo '<a href="' . Keyring_Util::admin_url( false, array( 'action' => 'delete', 'service' => $row->get_service()->get_name(), 'token' => $row->get_uniq_id(), 'kr_nonce' => $kr_nonce, 'nonce' => $delete_nonce ) ) . '" title="' . esc_attr( __( 'Delete', 'keyring' ) ) . '" class="delete">Delete</a>';
+	}
+}

+ 30 - 0
app/plugins/keyring/includes/oauth-php/CHANGELOG.txt

@@ -0,0 +1,30 @@
+== 2008.08.04 ==
+* Added LICENSE.txt file with MIT license, copyright owner is perhaps
+	dubious however.
+== 2008.07.22 ==
+* Change to encoding to fix last change to encoding of spaces
+== 2008.07.15 ==
+* Another change to encoding per 
+	http://groups.google.com/group/oauth/browse_thread/thread/d39931d39b4af4bd
+* A change to port handling to better deal with https and the like per
+  http://groups.google.com/group/oauth/browse_thread/thread/1b203a51d9590226
+* Fixed a small bug per
+	http://code.google.com/p/oauth/issues/detail?id=26
+* Added missing base_string debug info when using RSA-SHA1
+* Increased size of example endpoint input field and added note about
+  query strings
+== 2009-2011.03.28 ==
+* Heaps of bug-fixes
+* Introduction of PHPUnit testcases (which aided in above mentioned bug-fixes)
+* Added support Revision A auth flows.
+* Possibly more, I've lost track..
+== 2001.03.29 ==
+* Fixed issue with hosts not being normalized correctly
+  http://tools.ietf.org/html/rfc5849#section-3.4.1.2
+  http://code.google.com/p/oauth/issues/detail?id=176
+  http://code.google.com/p/oauth/issues/detail?id=187
+* Changed signature comparing to be timing insensitive
+  http://code.google.com/p/oauth/issues/detail?id=178
+* Fixed issue with Host header on some servers on non-standard port includes the port-number
+  http://code.google.com/p/oauth/issues/detail?id=170
+  http://code.google.com/p/oauth/issues/detail?id=192

+ 22 - 0
app/plugins/keyring/includes/oauth-php/LICENSE.txt

@@ -0,0 +1,22 @@
+The MIT License
+
+Copyright (c) 2007 Andy Smith
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in
+all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+THE SOFTWARE.
+

+ 895 - 0
app/plugins/keyring/includes/oauth-php/OAuth.php

@@ -0,0 +1,895 @@
+<?php
+// vim: foldmethod=marker
+
+/* Generic exception class
+ */
+class OAuthException extends Exception {
+  // pass
+}
+
+class OAuthConsumer {
+  public $key;
+  public $secret;
+
+  function __construct($key, $secret, $callback_url=NULL) {
+    $this->key = $key;
+    $this->secret = $secret;
+    $this->callback_url = $callback_url;
+  }
+
+  function __toString() {
+    return "OAuthConsumer[key=$this->key,secret=$this->secret]";
+  }
+}
+
+class OAuthToken {
+  // access tokens and request tokens
+  public $key;
+  public $secret;
+
+  /**
+   * key = the token
+   * secret = the token secret
+   */
+  function __construct($key, $secret) {
+    $this->key = $key;
+    $this->secret = $secret;
+  }
+
+  /**
+   * generates the basic string serialization of a token that a server
+   * would respond to request_token and access_token calls with
+   */
+  function to_string() {
+    return "oauth_token=" .
+           OAuthUtil::urlencode_rfc3986($this->key) .
+           "&oauth_token_secret=" .
+           OAuthUtil::urlencode_rfc3986($this->secret);
+  }
+
+  function __toString() {
+    return $this->to_string();
+  }
+}
+
+/**
+ * A class for implementing a Signature Method
+ * See section 9 ("Signing Requests") in the spec
+ */
+abstract class OAuthSignatureMethod {
+  /**
+   * Needs to return the name of the Signature Method (ie HMAC-SHA1)
+   * @return string
+   */
+  abstract public function get_name();
+
+  /**
+   * Build up the signature
+   * NOTE: The output of this function MUST NOT be urlencoded.
+   * the encoding is handled in OAuthRequest when the final
+   * request is serialized
+   * @param OAuthRequest $request
+   * @param OAuthConsumer $consumer
+   * @param OAuthToken $token
+   * @return string
+   */
+  abstract public function build_signature($request, $consumer, $token);
+
+  /**
+   * Verifies that a given signature is correct
+   * @param OAuthRequest $request
+   * @param OAuthConsumer $consumer
+   * @param OAuthToken $token
+   * @param string $signature
+   * @return bool
+   */
+  public function check_signature($request, $consumer, $token, $signature) {
+    $built = $this->build_signature($request, $consumer, $token);
+
+    // Check for zero length, although unlikely here
+    if (strlen($built) == 0 || strlen($signature) == 0) {
+      return false;
+    }
+
+    if (strlen($built) != strlen($signature)) {
+      return false;
+    }
+
+    // Avoid a timing leak with a (hopefully) time insensitive compare
+    $result = 0;
+    for ($i = 0; $i < strlen($signature); $i++) {
+      $result |= ord($built{$i}) ^ ord($signature{$i});
+    }
+
+    return $result == 0;
+  }
+}
+
+/**
+ * The HMAC-SHA1 signature method uses the HMAC-SHA1 signature algorithm as defined in [RFC2104] 
+ * where the Signature Base String is the text and the key is the concatenated values (each first 
+ * encoded per Parameter Encoding) of the Consumer Secret and Token Secret, separated by an '&' 
+ * character (ASCII code 38) even if empty.
+ *   - Chapter 9.2 ("HMAC-SHA1")
+ */
+class OAuthSignatureMethod_HMAC_SHA1 extends OAuthSignatureMethod {
+  function get_name() {
+    return "HMAC-SHA1";
+  }
+
+  public function build_signature($request, $consumer, $token) {
+    $base_string = $request->get_signature_base_string();
+    $request->base_string = $base_string;
+
+    $key_parts = array(
+      $consumer->secret,
+      ($token) ? $token->secret : ""
+    );
+
+    $key_parts = OAuthUtil::urlencode_rfc3986($key_parts);
+    $key = implode('&', $key_parts);
+
+    return base64_encode(hash_hmac('sha1', $base_string, $key, true));
+  }
+}
+
+/**
+ * The PLAINTEXT method does not provide any security protection and SHOULD only be used 
+ * over a secure channel such as HTTPS. It does not use the Signature Base String.
+ *   - Chapter 9.4 ("PLAINTEXT")
+ */
+class OAuthSignatureMethod_PLAINTEXT extends OAuthSignatureMethod {
+  public function get_name() {
+    return "PLAINTEXT";
+  }
+
+  /**
+   * oauth_signature is set to the concatenated encoded values of the Consumer Secret and 
+   * Token Secret, separated by a '&' character (ASCII code 38), even if either secret is 
+   * empty. The result MUST be encoded again.
+   *   - Chapter 9.4.1 ("Generating Signatures")
+   *
+   * Please note that the second encoding MUST NOT happen in the SignatureMethod, as
+   * OAuthRequest handles this!
+   */
+  public function build_signature($request, $consumer, $token) {
+    $key_parts = array(
+      $consumer->secret,
+      ($token) ? $token->secret : ""
+    );
+
+    $key_parts = OAuthUtil::urlencode_rfc3986($key_parts);
+    $key = implode('&', $key_parts);
+    $request->base_string = $key;
+
+    return $key;
+  }
+}
+
+/**
+ * The RSA-SHA1 signature method uses the RSASSA-PKCS1-v1_5 signature algorithm as defined in 
+ * [RFC3447] section 8.2 (more simply known as PKCS#1), using SHA-1 as the hash function for 
+ * EMSA-PKCS1-v1_5. It is assumed that the Consumer has provided its RSA public key in a 
+ * verified way to the Service Provider, in a manner which is beyond the scope of this 
+ * specification.
+ *   - Chapter 9.3 ("RSA-SHA1")
+ */
+abstract class OAuthSignatureMethod_RSA_SHA1 extends OAuthSignatureMethod {
+  public function get_name() {
+    return "RSA-SHA1";
+  }
+
+  // Up to the SP to implement this lookup of keys. Possible ideas are:
+  // (1) do a lookup in a table of trusted certs keyed off of consumer
+  // (2) fetch via http using a url provided by the requester
+  // (3) some sort of specific discovery code based on request
+  //
+  // Either way should return a string representation of the certificate
+  protected abstract function fetch_public_cert(&$request);
+
+  // Up to the SP to implement this lookup of keys. Possible ideas are:
+  // (1) do a lookup in a table of trusted certs keyed off of consumer
+  //
+  // Either way should return a string representation of the certificate
+  protected abstract function fetch_private_cert(&$request);
+
+  public function build_signature($request, $consumer, $token) {
+    $base_string = $request->get_signature_base_string();
+    $request->base_string = $base_string;
+
+    // Fetch the private key cert based on the request
+    $cert = $this->fetch_private_cert($request);
+
+    // Pull the private key ID from the certificate
+    $privatekeyid = openssl_get_privatekey($cert);
+
+    // Sign using the key
+    $ok = openssl_sign($base_string, $signature, $privatekeyid);
+
+    // Release the key resource
+    openssl_free_key($privatekeyid);
+
+    return base64_encode($signature);
+  }
+
+  public function check_signature($request, $consumer, $token, $signature) {
+    $decoded_sig = base64_decode($signature);
+
+    $base_string = $request->get_signature_base_string();
+
+    // Fetch the public key cert based on the request
+    $cert = $this->fetch_public_cert($request);
+
+    // Pull the public key ID from the certificate
+    $publickeyid = openssl_get_publickey($cert);
+
+    // Check the computed signature against the one passed in the query
+    $ok = openssl_verify($base_string, $decoded_sig, $publickeyid);
+
+    // Release the key resource
+    openssl_free_key($publickeyid);
+
+    return $ok == 1;
+  }
+}
+
+class OAuthRequest {
+  protected $parameters;
+  protected $http_method;
+  protected $http_url;
+  // for debug purposes
+  public $base_string;
+  public static $version = '1.0';
+  public static $POST_INPUT = 'php://input';
+
+  function __construct($http_method, $http_url, $parameters=NULL) {
+    $parameters = ($parameters) ? $parameters : array();
+    $parameters = array_merge( OAuthUtil::parse_parameters(parse_url($http_url, PHP_URL_QUERY)), $parameters);
+    $this->parameters = $parameters;
+    $this->http_method = $http_method;
+    $this->http_url = $http_url;
+  }
+
+
+  /**
+   * attempt to build up a request from what was passed to the server
+   */
+  public static function from_request($http_method=NULL, $http_url=NULL, $parameters=NULL) {
+    $scheme = (!isset($_SERVER['HTTPS']) || $_SERVER['HTTPS'] != "on")
+              ? 'http'
+              : 'https';
+    $http_url = ($http_url) ? $http_url : $scheme .
+                              '://' . $_SERVER['SERVER_NAME'] .
+                              ':' .
+                              $_SERVER['SERVER_PORT'] .
+                              $_SERVER['REQUEST_URI'];
+    $http_method = ($http_method) ? $http_method : $_SERVER['REQUEST_METHOD'];
+
+    // We weren't handed any parameters, so let's find the ones relevant to
+    // this request.
+    // If you run XML-RPC or similar you should use this to provide your own
+    // parsed parameter-list
+    if (!$parameters) {
+      // Find request headers
+      $request_headers = OAuthUtil::get_headers();
+
+      // Parse the query-string to find GET parameters
+      $parameters = OAuthUtil::parse_parameters($_SERVER['QUERY_STRING']);
+
+      // It's a POST request of the proper content-type, so parse POST
+      // parameters and add those overriding any duplicates from GET
+      if ($http_method == "POST"
+          &&  isset($request_headers['Content-Type'])
+          && strstr($request_headers['Content-Type'],
+                     'application/x-www-form-urlencoded')
+          ) {
+        $post_data = OAuthUtil::parse_parameters(
+          file_get_contents(self::$POST_INPUT)
+        );
+        $parameters = array_merge($parameters, $post_data);
+      }
+
+      // We have a Authorization-header with OAuth data. Parse the header
+      // and add those overriding any duplicates from GET or POST
+      if (isset($request_headers['Authorization']) && substr($request_headers['Authorization'], 0, 6) == 'OAuth ') {
+        $header_parameters = OAuthUtil::split_header(
+          $request_headers['Authorization']
+        );
+        $parameters = array_merge($parameters, $header_parameters);
+      }
+
+    }
+
+    return new OAuthRequest($http_method, $http_url, $parameters);
+  }
+
+  /**
+   * pretty much a helper function to set up the request
+   */
+  public static function from_consumer_and_token($consumer, $token, $http_method, $http_url, $parameters=NULL) {
+    $parameters = ($parameters) ?  $parameters : array();
+    $defaults = array("oauth_version" => OAuthRequest::$version,
+                      "oauth_nonce" => OAuthRequest::generate_nonce(),
+                      "oauth_timestamp" => OAuthRequest::generate_timestamp(),
+                      "oauth_consumer_key" => $consumer->key);
+    if ($token)
+      $defaults['oauth_token'] = $token->key;
+
+    $parameters = array_merge($defaults, $parameters);
+
+    return new OAuthRequest($http_method, $http_url, $parameters);
+  }
+
+  public function set_parameter($name, $value, $allow_duplicates = true) {
+    if ($allow_duplicates && isset($this->parameters[$name])) {
+      // We have already added parameter(s) with this name, so add to the list
+      if (is_scalar($this->parameters[$name])) {
+        // This is the first duplicate, so transform scalar (string)
+        // into an array so we can add the duplicates
+        $this->parameters[$name] = array($this->parameters[$name]);
+      }
+
+      $this->parameters[$name][] = $value;
+    } else {
+      $this->parameters[$name] = $value;
+    }
+  }
+
+  public function get_parameter($name) {
+    return isset($this->parameters[$name]) ? $this->parameters[$name] : null;
+  }
+
+  public function get_parameters() {
+    return $this->parameters;
+  }
+
+  public function unset_parameter($name) {
+    unset($this->parameters[$name]);
+  }
+
+  /**
+   * The request parameters, sorted and concatenated into a normalized string.
+   * @return string
+   */
+  public function get_signable_parameters() {
+    // Grab all parameters
+    $params = $this->parameters;
+
+    // Remove oauth_signature if present
+    // Ref: Spec: 9.1.1 ("The oauth_signature parameter MUST be excluded.")
+    if (isset($params['oauth_signature'])) {
+      unset($params['oauth_signature']);
+    }
+
+    return OAuthUtil::build_http_query($params);
+  }
+
+  /**
+   * Returns the base string of this request
+   *
+   * The base string defined as the method, the url
+   * and the parameters (normalized), each urlencoded
+   * and the concated with &.
+   */
+  public function get_signature_base_string() {
+    $parts = array(
+      $this->get_normalized_http_method(),
+      $this->get_normalized_http_url(),
+      $this->get_signable_parameters()
+    );
+
+    $parts = OAuthUtil::urlencode_rfc3986($parts);
+
+    return implode('&', $parts);
+  }
+
+  /**
+   * just uppercases the http method
+   */
+  public function get_normalized_http_method() {
+    return strtoupper($this->http_method);
+  }
+
+  /**
+   * parses the url and rebuilds it to be
+   * scheme://host/path
+   */
+  public function get_normalized_http_url() {
+    $parts = parse_url($this->http_url);
+
+    $scheme = (isset($parts['scheme'])) ? $parts['scheme'] : 'http';
+    $port = (isset($parts['port'])) ? $parts['port'] : (($scheme == 'https') ? '443' : '80');
+    $host = (isset($parts['host'])) ? strtolower($parts['host']) : '';
+    $path = (isset($parts['path'])) ? $parts['path'] : '';
+
+    if (($scheme == 'https' && $port != '443')
+        || ($scheme == 'http' && $port != '80')) {
+      $host = "$host:$port";
+    }
+    return "$scheme://$host$path";
+  }
+
+  /**
+   * builds a url usable for a GET request
+   */
+  public function to_url() {
+    $post_data = $this->to_postdata();
+    $out = $this->get_normalized_http_url();
+    if ($post_data) {
+      $out .= '?'.$post_data;
+    }
+    return $out;
+  }
+
+  /**
+   * builds the data one would send in a POST request
+   */
+  public function to_postdata() {
+    return OAuthUtil::build_http_query($this->parameters);
+  }
+
+  /**
+   * builds the Authorization: header
+   */
+  public function to_header($realm=null) {
+    $first = true;
+	if($realm) {
+      $out = 'Authorization: OAuth realm="' . OAuthUtil::urlencode_rfc3986($realm) . '"';
+      $first = false;
+    } else
+      $out = 'Authorization: OAuth';
+
+    $total = array();
+    foreach ($this->parameters as $k => $v) {
+      if (substr($k, 0, 5) != "oauth") continue;
+      if (is_array($v)) {
+        throw new OAuthException('Arrays not supported in headers');
+      }
+      $out .= ($first) ? ' ' : ',';
+      $out .= OAuthUtil::urlencode_rfc3986($k) .
+              '="' .
+              OAuthUtil::urlencode_rfc3986($v) .
+              '"';
+      $first = false;
+    }
+    return $out;
+  }
+
+  public function __toString() {
+    return $this->to_url();
+  }
+
+
+  public function sign_request($signature_method, $consumer, $token) {
+    $this->set_parameter(
+      "oauth_signature_method",
+      $signature_method->get_name(),
+      false
+    );
+    $signature = $this->build_signature($signature_method, $consumer, $token);
+    $this->set_parameter("oauth_signature", $signature, false);
+  }
+
+  public function build_signature($signature_method, $consumer, $token) {
+    $signature = $signature_method->build_signature($this, $consumer, $token);
+    return $signature;
+  }
+
+  /**
+   * util function: current timestamp
+   */
+  private static function generate_timestamp() {
+    return time();
+  }
+
+  /**
+   * util function: current nonce
+   */
+  private static function generate_nonce() {
+    $mt = microtime();
+    $rand = mt_rand();
+
+    return md5($mt . $rand); // md5s look nicer than numbers
+  }
+}
+
+class OAuthServer {
+  protected $timestamp_threshold = 300; // in seconds, five minutes
+  protected $version = '1.0';             // hi blaine
+  protected $signature_methods = array();
+
+  protected $data_store;
+
+  function __construct($data_store) {
+    $this->data_store = $data_store;
+  }
+
+  public function add_signature_method($signature_method) {
+    $this->signature_methods[$signature_method->get_name()] =
+      $signature_method;
+  }
+
+  // high level functions
+
+  /**
+   * process a request_token request
+   * returns the request token on success
+   */
+  public function fetch_request_token(&$request) {
+    $this->get_version($request);
+
+    $consumer = $this->get_consumer($request);
+
+    // no token required for the initial token request
+    $token = NULL;
+
+    $this->check_signature($request, $consumer, $token);
+
+    // Rev A change
+    $callback = $request->get_parameter('oauth_callback');
+    $new_token = $this->data_store->new_request_token($consumer, $callback);
+
+    return $new_token;
+  }
+
+  /**
+   * process an access_token request
+   * returns the access token on success
+   */
+  public function fetch_access_token(&$request) {
+    $this->get_version($request);
+
+    $consumer = $this->get_consumer($request);
+
+    // requires authorized request token
+    $token = $this->get_token($request, $consumer, "request");
+
+    $this->check_signature($request, $consumer, $token);
+
+    // Rev A change
+    $verifier = $request->get_parameter('oauth_verifier');
+    $new_token = $this->data_store->new_access_token($token, $consumer, $verifier);
+
+    return $new_token;
+  }
+
+  /**
+   * verify an api call, checks all the parameters
+   */
+  public function verify_request(&$request) {
+    $this->get_version($request);
+    $consumer = $this->get_consumer($request);
+    $token = $this->get_token($request, $consumer, "access");
+    $this->check_signature($request, $consumer, $token);
+    return array($consumer, $token);
+  }
+
+  // Internals from here
+  /**
+   * version 1
+   */
+  private function get_version(&$request) {
+    $version = $request->get_parameter("oauth_version");
+    if (!$version) {
+      // Service Providers MUST assume the protocol version to be 1.0 if this parameter is not present. 
+      // Chapter 7.0 ("Accessing Protected Ressources")
+      $version = '1.0';
+    }
+    if ($version !== $this->version) {
+      throw new OAuthException("OAuth version '$version' not supported");
+    }
+    return $version;
+  }
+
+  /**
+   * figure out the signature with some defaults
+   */
+  private function get_signature_method($request) {
+    $signature_method = $request instanceof OAuthRequest 
+        ? $request->get_parameter("oauth_signature_method")
+        : NULL;
+
+    if (!$signature_method) {
+      // According to chapter 7 ("Accessing Protected Ressources") the signature-method
+      // parameter is required, and we can't just fallback to PLAINTEXT
+      throw new OAuthException('No signature method parameter. This parameter is required');
+    }
+
+    if (!in_array($signature_method,
+                  array_keys($this->signature_methods))) {
+      throw new OAuthException(
+        "Signature method '$signature_method' not supported " .
+        "try one of the following: " .
+        implode(", ", array_keys($this->signature_methods))
+      );
+    }
+    return $this->signature_methods[$signature_method];
+  }
+
+  /**
+   * try to find the consumer for the provided request's consumer key
+   */
+  private function get_consumer($request) {
+    $consumer_key = $request instanceof OAuthRequest 
+        ? $request->get_parameter("oauth_consumer_key")
+        : NULL;
+
+    if (!$consumer_key) {
+      throw new OAuthException("Invalid consumer key");
+    }
+
+    $consumer = $this->data_store->lookup_consumer($consumer_key);
+    if (!$consumer) {
+      throw new OAuthException("Invalid consumer");
+    }
+
+    return $consumer;
+  }
+
+  /**
+   * try to find the token for the provided request's token key
+   */
+  private function get_token($request, $consumer, $token_type="access") {
+    $token_field = $request instanceof OAuthRequest
+         ? $request->get_parameter('oauth_token')
+         : NULL;
+
+    $token = $this->data_store->lookup_token(
+      $consumer, $token_type, $token_field
+    );
+    if (!$token) {
+      throw new OAuthException("Invalid $token_type token: $token_field");
+    }
+    return $token;
+  }
+
+  /**
+   * all-in-one function to check the signature on a request
+   * should guess the signature method appropriately
+   */
+  private function check_signature($request, $consumer, $token) {
+    // this should probably be in a different method
+    $timestamp = $request instanceof OAuthRequest
+        ? $request->get_parameter('oauth_timestamp')
+        : NULL;
+    $nonce = $request instanceof OAuthRequest
+        ? $request->get_parameter('oauth_nonce')
+        : NULL;
+
+    $this->check_timestamp($timestamp);
+    $this->check_nonce($consumer, $token, $nonce, $timestamp);
+
+    $signature_method = $this->get_signature_method($request);
+
+    $signature = $request->get_parameter('oauth_signature');
+    $valid_sig = $signature_method->check_signature(
+      $request,
+      $consumer,
+      $token,
+      $signature
+    );
+
+    if (!$valid_sig) {
+      throw new OAuthException("Invalid signature");
+    }
+  }
+
+  /**
+   * check that the timestamp is new enough
+   */
+  private function check_timestamp($timestamp) {
+    if( ! $timestamp )
+      throw new OAuthException(
+        'Missing timestamp parameter. The parameter is required'
+      );
+    
+    // verify that timestamp is recentish
+    $now = time();
+    if (abs($now - $timestamp) > $this->timestamp_threshold) {
+      throw new OAuthException(
+        "Expired timestamp, yours $timestamp, ours $now"
+      );
+    }
+  }
+
+  /**
+   * check that the nonce is not repeated
+   */
+  private function check_nonce($consumer, $token, $nonce, $timestamp) {
+    if( ! $nonce )
+      throw new OAuthException(
+        'Missing nonce parameter. The parameter is required'
+      );
+
+    // verify that the nonce is uniqueish
+    $found = $this->data_store->lookup_nonce(
+      $consumer,
+      $token,
+      $nonce,
+      $timestamp
+    );
+    if ($found) {
+      throw new OAuthException("Nonce already used: $nonce");
+    }
+  }
+
+}
+
+class OAuthDataStore {
+  function lookup_consumer($consumer_key) {
+    // implement me
+  }
+
+  function lookup_token($consumer, $token_type, $token) {
+    // implement me
+  }
+
+  function lookup_nonce($consumer, $token, $nonce, $timestamp) {
+    // implement me
+  }
+
+  function new_request_token($consumer, $callback = null) {
+    // return a new token attached to this consumer
+  }
+
+  function new_access_token($token, $consumer, $verifier = null) {
+    // return a new access token attached to this consumer
+    // for the user associated with this token if the request token
+    // is authorized
+    // should also invalidate the request token
+  }
+
+}
+
+class OAuthUtil {
+  public static function urlencode_rfc3986($input) {
+  if (is_array($input)) {
+    return array_map(array('OAuthUtil', 'urlencode_rfc3986'), $input);
+  } else if (is_scalar($input)) {
+    return str_replace(
+      '+',
+      ' ',
+      str_replace('%7E', '~', rawurlencode($input))
+    );
+  } else {
+    return '';
+  }
+}
+
+
+  // This decode function isn't taking into consideration the above
+  // modifications to the encoding process. However, this method doesn't
+  // seem to be used anywhere so leaving it as is.
+  public static function urldecode_rfc3986($string) {
+    return urldecode($string);
+  }
+
+  // Utility function for turning the Authorization: header into
+  // parameters, has to do some unescaping
+  // Can filter out any non-oauth parameters if needed (default behaviour)
+  // May 28th, 2010 - method updated to tjerk.meesters for a speed improvement.
+  //                  see http://code.google.com/p/oauth/issues/detail?id=163
+  public static function split_header($header, $only_allow_oauth_parameters = true) {
+    $params = array();
+    if (preg_match_all('/('.($only_allow_oauth_parameters ? 'oauth_' : '').'[a-z_-]*)=(:?"([^"]*)"|([^,]*))/', $header, $matches)) {
+      foreach ($matches[1] as $i => $h) {
+        $params[$h] = OAuthUtil::urldecode_rfc3986(empty($matches[3][$i]) ? $matches[4][$i] : $matches[3][$i]);
+      }
+      if (isset($params['realm'])) {
+        unset($params['realm']);
+      }
+    }
+    return $params;
+  }
+
+  // helper to try to sort out headers for people who aren't running apache
+  public static function get_headers() {
+    if (function_exists('apache_request_headers')) {
+      // we need this to get the actual Authorization: header
+      // because apache tends to tell us it doesn't exist
+      $headers = apache_request_headers();
+
+      // sanitize the output of apache_request_headers because
+      // we always want the keys to be Cased-Like-This and arh()
+      // returns the headers in the same case as they are in the
+      // request
+      $out = array();
+      foreach ($headers AS $key => $value) {
+        $key = str_replace(
+            " ",
+            "-",
+            ucwords(strtolower(str_replace("-", " ", $key)))
+          );
+        $out[$key] = $value;
+      }
+    } else {
+      // otherwise we don't have apache and are just going to have to hope
+      // that $_SERVER actually contains what we need
+      $out = array();
+      if( isset($_SERVER['CONTENT_TYPE']) )
+        $out['Content-Type'] = $_SERVER['CONTENT_TYPE'];
+      if( isset($_ENV['CONTENT_TYPE']) )
+        $out['Content-Type'] = $_ENV['CONTENT_TYPE'];
+
+      foreach ($_SERVER as $key => $value) {
+        if (substr($key, 0, 5) == "HTTP_") {
+          // this is chaos, basically it is just there to capitalize the first
+          // letter of every word that is not an initial HTTP and strip HTTP
+          // code from przemek
+          $key = str_replace(
+            " ",
+            "-",
+            ucwords(strtolower(str_replace("_", " ", substr($key, 5))))
+          );
+          $out[$key] = $value;
+        }
+      }
+    }
+    return $out;
+  }
+
+  // This function takes a input like a=b&a=c&d=e and returns the parsed
+  // parameters like this
+  // array('a' => array('b','c'), 'd' => 'e')
+  public static function parse_parameters( $input ) {
+    if (!isset($input) || !$input) return array();
+
+    $pairs = explode('&', $input);
+
+    $parsed_parameters = array();
+    foreach ($pairs as $pair) {
+      $split = explode('=', $pair, 2);
+      $parameter = OAuthUtil::urldecode_rfc3986($split[0]);
+      $value = isset($split[1]) ? OAuthUtil::urldecode_rfc3986($split[1]) : '';
+
+      if (isset($parsed_parameters[$parameter])) {
+        // We have already recieved parameter(s) with this name, so add to the list
+        // of parameters with this name
+
+        if (is_scalar($parsed_parameters[$parameter])) {
+          // This is the first duplicate, so transform scalar (string) into an array
+          // so we can add the duplicates
+          $parsed_parameters[$parameter] = array($parsed_parameters[$parameter]);
+        }
+
+        $parsed_parameters[$parameter][] = $value;
+      } else {
+        $parsed_parameters[$parameter] = $value;
+      }
+    }
+    return $parsed_parameters;
+  }
+
+  public static function build_http_query($params) {
+    if (!$params) return '';
+
+    // Urlencode both keys and values
+    $keys = OAuthUtil::urlencode_rfc3986(array_keys($params));
+    $values = OAuthUtil::urlencode_rfc3986(array_values($params));
+    $params = array_combine($keys, $values);
+
+    // Parameters are sorted by name, using lexicographical byte value ordering.
+    // Ref: Spec: 9.1.1 (1)
+    uksort($params, 'strcmp');
+
+    $pairs = array();
+    foreach ($params as $parameter => $value) {
+      if (is_array($value)) {
+        // If two or more parameters share the same name, they are sorted by their value
+        // Ref: Spec: 9.1.1 (1)
+        // June 12th, 2010 - changed to sort because of issue 164 by hidetaka
+        sort($value, SORT_STRING);
+        foreach ($value as $duplicate_value) {
+          $pairs[] = $parameter . '=' . $duplicate_value;
+        }
+      } else {
+        $pairs[] = $parameter . '=' . $value;
+      }
+    }
+    // For each parameter, the name is separated from the corresponding value by an '=' character (ASCII code 61)
+    // Each name-value pair is separated by an '&' character (ASCII code 38)
+    return implode('&', $pairs);
+  }
+}
+
+?>

+ 13 - 0
app/plugins/keyring/includes/oauth-php/OAuthTests.xml

@@ -0,0 +1,13 @@
+<phpunit colors="true">
+  <testsuite name="OAuth">
+    <directory>tests</directory>
+  </testsuite>
+  <filter>
+    <blacklist>
+      <directory>tests</directory>
+    </blacklist>
+  </filter>
+  <logging>
+    <log type="coverage-html" target="./report" charset="UTF-8" yui="true" highlight="false" lowUpperBound="35" highLowerBound="70"/>
+  </logging>
+</phpunit>

+ 106 - 0
app/plugins/keyring/includes/oauth-php/OAuth_TestServer.php

@@ -0,0 +1,106 @@
+<?php //vim: foldmethod=marker
+//require_once("OAuth.php");
+
+class TestOAuthServer extends OAuthServer {
+  public function get_signature_methods() {
+    return $this->signature_methods;
+  }
+}
+
+class TestOAuthSignatureMethod_RSA_SHA1 extends OAuthSignatureMethod_RSA_SHA1 {
+  public function fetch_private_cert(&$request) {
+    $cert = <<<EOD
+-----BEGIN PRIVATE KEY-----
+MIICdgIBADANBgkqhkiG9w0BAQEFAASCAmAwggJcAgEAAoGBALRiMLAh9iimur8V
+A7qVvdqxevEuUkW4K+2KdMXmnQbG9Aa7k7eBjK1S+0LYmVjPKlJGNXHDGuy5Fw/d
+7rjVJ0BLB+ubPK8iA/Tw3hLQgXMRRGRXXCn8ikfuQfjUS1uZSatdLB81mydBETlJ
+hI6GH4twrbDJCR2Bwy/XWXgqgGRzAgMBAAECgYBYWVtleUzavkbrPjy0T5FMou8H
+X9u2AC2ry8vD/l7cqedtwMPp9k7TubgNFo+NGvKsl2ynyprOZR1xjQ7WgrgVB+mm
+uScOM/5HVceFuGRDhYTCObE+y1kxRloNYXnx3ei1zbeYLPCHdhxRYW7T0qcynNmw
+rn05/KO2RLjgQNalsQJBANeA3Q4Nugqy4QBUCEC09SqylT2K9FrrItqL2QKc9v0Z
+zO2uwllCbg0dwpVuYPYXYvikNHHg+aCWF+VXsb9rpPsCQQDWR9TT4ORdzoj+Nccn
+qkMsDmzt0EfNaAOwHOmVJ2RVBspPcxt5iN4HI7HNeG6U5YsFBb+/GZbgfBT3kpNG
+WPTpAkBI+gFhjfJvRw38n3g/+UeAkwMI2TJQS4n8+hid0uus3/zOjDySH3XHCUno
+cn1xOJAyZODBo47E+67R4jV1/gzbAkEAklJaspRPXP877NssM5nAZMU0/O/NGCZ+
+3jPgDUno6WbJn5cqm8MqWhW1xGkImgRk+fkDBquiq4gPiT898jusgQJAd5Zrr6Q8
+AO/0isr/3aa6O6NLQxISLKcPDk2NOccAfS/xOtfOz4sJYM3+Bs4Io9+dZGSDCA54
+Lw03eHTNQghS0A==
+-----END PRIVATE KEY-----
+EOD;
+    return $cert;
+  }
+
+  public function fetch_public_cert(&$request) {
+    $cert = <<<EOD
+-----BEGIN CERTIFICATE-----
+MIIBpjCCAQ+gAwIBAgIBATANBgkqhkiG9w0BAQUFADAZMRcwFQYDVQQDDA5UZXN0
+IFByaW5jaXBhbDAeFw03MDAxMDEwODAwMDBaFw0zODEyMzEwODAwMDBaMBkxFzAV
+BgNVBAMMDlRlc3QgUHJpbmNpcGFsMIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKB
+gQC0YjCwIfYoprq/FQO6lb3asXrxLlJFuCvtinTF5p0GxvQGu5O3gYytUvtC2JlY
+zypSRjVxwxrsuRcP3e641SdASwfrmzyvIgP08N4S0IFzEURkV1wp/IpH7kH41Etb
+mUmrXSwfNZsnQRE5SYSOhh+LcK2wyQkdgcMv11l4KoBkcwIDAQABMA0GCSqGSIb3
+DQEBBQUAA4GBAGZLPEuJ5SiJ2ryq+CmEGOXfvlTtEL2nuGtr9PewxkgnOjZpUy+d
+4TvuXJbNQc8f4AMWL/tO9w0Fk80rWKp9ea8/df4qMq5qlFWlx6yOLQxumNOmECKb
+WpkUQDIDJEoFUzKMVuJf4KO/FJ345+BNLGgbJ6WujreoM1X/gYfdnJ/J
+-----END CERTIFICATE-----
+EOD;
+    return $cert;
+  }
+} 
+
+/**
+ * A mock store for testing
+ */
+class MockOAuthDataStore extends OAuthDataStore {/*{{{*/
+    private $consumer;
+    private $request_token;
+    private $access_token;
+    private $nonce;
+
+    function __construct() {/*{{{*/
+        $this->consumer = new OAuthConsumer("key", "secret", NULL);
+        $this->request_token = new OAuthToken("requestkey", "requestsecret", 1);
+        $this->access_token = new OAuthToken("accesskey", "accesssecret", 1);
+        $this->nonce = "nonce";
+    }/*}}}*/
+
+    function lookup_consumer($consumer_key) {/*{{{*/
+        if ($consumer_key == $this->consumer->key) return $this->consumer;
+        return NULL;
+    }/*}}}*/
+
+    function lookup_token($consumer, $token_type, $token) {/*{{{*/
+        $token_attrib = $token_type . "_token";
+        if ($consumer->key == $this->consumer->key
+            && $token == $this->$token_attrib->key) {
+            return $this->$token_attrib;
+        }
+        return NULL;
+    }/*}}}*/
+
+    function lookup_nonce($consumer, $token, $nonce, $timestamp) {/*{{{*/
+        if ($consumer->key == $this->consumer->key
+            && (($token && $token->key == $this->request_token->key)
+                || ($token && $token->key == $this->access_token->key))
+            && $nonce == $this->nonce) {
+            return $this->nonce;
+        }
+        return NULL;
+    }/*}}}*/
+
+    function new_request_token($consumer) {/*{{{*/
+        if ($consumer->key == $this->consumer->key) {
+            return $this->request_token;
+        }
+        return NULL;
+    }/*}}}*/
+
+    function new_access_token($token, $consumer) {/*{{{*/
+        if ($consumer->key == $this->consumer->key
+            && $token->key == $this->request_token->key) {
+            return $this->access_token;
+        }
+        return NULL;
+    }/*}}}*/
+}/*}}}*/
+?>

+ 68 - 0
app/plugins/keyring/includes/oauth-php/doc/design.txt

@@ -0,0 +1,68 @@
+Interfaces:
+
+# OAuthConsumer is a data type that represents the identity of the Consumer
+# via its shared secret with the Service Provider.
+OAuthConsumer
+  - key : str
+  - secret : str
+
+# OAuthToken is a data type that represents an End User via either an access
+# or request token
+OAuthToken
+  - token : str
+  - secret : str
+  - to_string() -> str
+  - (static) from_string() -> OAuthToken
+
+# OAuthSignatureMethod is a strategy class that implements a signature method
+OAuthSignatureMethod
+  - get_name() -> str
+  - build_signature (OAuthRequest, OAuthConsumer, OAuthToken) -> str
+
+# OAuthRequest represents the request and can be seriali
+OAuthRequest:
+  - OAuthRequest(str http_method, str http_url, [dict parameters]) -> constructor
+  - set_parameter(str parameter, str value) -> void
+    - example parameters: oauth_consumer_key, foo
+  - get_parameter(str parameter) -> str
+  - get_parameters() -> dict
+
+  - get_normalized_http_method() -> str
+  - get_normalized_http_url() -> str
+  - get_signable_params() -> dict
+
+  - to_header () -> str   # serialize as a header for an HTTPAuth request
+  - to_postdata () -> str # serialize as post data for a POST request
+  - to_url () -> str      # serialize as a url for a GET request
+  - sign_request(OAuthSignatureMethod, OAuthConsumer, OAuthToken) -> void
+  - build_signature(OAuthSignatureMethod, OAuthConsumer, OAuthToken) -> str
+  - (static) from_request([str http_method, str http_url, dict parameters])
+  - (static) from_consumer_and_token(OAuthConsumer, OAuthToken, str http_method, str http_url, [dict parameters]) -> OAuthRequest
+
+
+# OAuthServer is a worker to check a requests validity against a data store
+OAuthServer:
+  - OAuthServer(OAuthDataStore) -> constructor
+  - set_data_store(OAuthDataStore) -> void
+  - get_data_store() -> OAuthDataStore
+
+  - fetch_request_token (OAuthRequest) -> OAuthToken
+  - fetch_access_token (OAuthRequest) -> OAuthToken
+  - verify_request (OAuthRequest) -> OAuthToken
+
+# OAuthClient is a worker to attempt to execute a request
+OAuthClient:
+  - OAuthClient(OAuthConsumer, OAuthToken) -> constructor
+  - get_consumer() -> OAuthConsumer
+  - get_token() -> OAuthToken
+
+  - fetch_request_token (OAuthRequest) -> OAuthToken
+  - fetch_access_token (OAuthRequest) -> OAuthToken
+
+# OAuthDataStore is a database abstraction used to lookup consumers and tokens
+OAuthDataStore:
+  - lookup_consumer(str key) -> OAuthConsumer
+  - lookup_token(OAuthConsumer, str token_type, str token_token) -> OAuthToken
+  - lookup_nonce(OAuthConsumer, OAuthToken, str nonce, int timestamp) -> OAuthToken
+  - fetch_request_token(OAuthConsumer) -> OAuthToken
+  - fetch_access_token(OAuthConsumer, OAuthToken) -> OAuthToken

+ 12 - 0
app/plugins/keyring/includes/oauth-php/tests/Mock_OAuthBaseStringRequest.php

@@ -0,0 +1,12 @@
+<?php
+
+/**
+ * A very simple class that you can pass a base-string, and then have it returned again.
+ * Used for testing the signature-methods
+ */
+class Mock_OAuthBaseStringRequest {
+	private $provided_base_string;
+	public $base_string; // legacy
+	public function __construct($bs) { $this->provided_base_string = $bs; }
+	public function get_signature_base_string() { return $this->provided_base_string; }
+}

+ 57 - 0
app/plugins/keyring/includes/oauth-php/tests/Mock_OAuthDataStore.php

@@ -0,0 +1,57 @@
+<?php
+
+/**
+ * A mock store for testing
+ */
+class Mock_OAuthDataStore extends OAuthDataStore {
+	private $consumer;
+	private $request_token;
+	private $access_token;
+	private $nonce;
+
+	function __construct() {
+		$this->consumer = new OAuthConsumer("key", "secret", NULL);
+		$this->request_token = new OAuthToken("requestkey", "requestsecret", 1);
+		$this->access_token = new OAuthToken("accesskey", "accesssecret", 1);
+		$this->nonce = "nonce";
+	}
+
+	function lookup_consumer($consumer_key) {
+		if ($consumer_key == $this->consumer->key) return $this->consumer;
+		return NULL;
+	}
+
+	function lookup_token($consumer, $token_type, $token) {
+		$token_attrib = $token_type . "_token";
+		if ($consumer->key == $this->consumer->key
+			&& $token == $this->$token_attrib->key) {
+			return $this->$token_attrib;
+		}
+		return NULL;
+	}
+
+	function lookup_nonce($consumer, $token, $nonce, $timestamp) {
+		if ($consumer->key == $this->consumer->key
+			&& (($token && $token->key == $this->request_token->key)
+				|| ($token && $token->key == $this->access_token->key))
+			&& $nonce == $this->nonce) {
+			return $this->nonce;
+		}
+		return NULL;
+	}
+
+	function new_request_token($consumer, $callback = null) {
+		if ($consumer->key == $this->consumer->key) {
+			return $this->request_token;
+		}
+		return NULL;
+	}
+
+	function new_access_token($token, $consumer, $verifier = null) {
+		if ($consumer->key == $this->consumer->key
+			&& $token->key == $this->request_token->key) {
+			return $this->access_token;
+		}
+		return NULL;
+	}
+}

+ 47 - 0
app/plugins/keyring/includes/oauth-php/tests/Mock_OAuthSignatureMethod_RSA_SHA1.php

@@ -0,0 +1,47 @@
+<?php
+
+/**
+ * A mock implementation of OAuthSignatureMethod_RSA_SHA1
+ * Always returns the signatures described in 
+ * http://wiki.oauth.net/TestCases section 9.3 ("RSA-SHA1")
+ */
+class Mock_OAuthSignatureMethod_RSA_SHA1 extends OAuthSignatureMethod_RSA_SHA1 {
+  public function fetch_private_cert(&$request) {
+    $cert = <<<EOD
+-----BEGIN PRIVATE KEY-----
+MIICdgIBADANBgkqhkiG9w0BAQEFAASCAmAwggJcAgEAAoGBALRiMLAh9iimur8V
+A7qVvdqxevEuUkW4K+2KdMXmnQbG9Aa7k7eBjK1S+0LYmVjPKlJGNXHDGuy5Fw/d
+7rjVJ0BLB+ubPK8iA/Tw3hLQgXMRRGRXXCn8ikfuQfjUS1uZSatdLB81mydBETlJ
+hI6GH4twrbDJCR2Bwy/XWXgqgGRzAgMBAAECgYBYWVtleUzavkbrPjy0T5FMou8H
+X9u2AC2ry8vD/l7cqedtwMPp9k7TubgNFo+NGvKsl2ynyprOZR1xjQ7WgrgVB+mm
+uScOM/5HVceFuGRDhYTCObE+y1kxRloNYXnx3ei1zbeYLPCHdhxRYW7T0qcynNmw
+rn05/KO2RLjgQNalsQJBANeA3Q4Nugqy4QBUCEC09SqylT2K9FrrItqL2QKc9v0Z
+zO2uwllCbg0dwpVuYPYXYvikNHHg+aCWF+VXsb9rpPsCQQDWR9TT4ORdzoj+Nccn
+qkMsDmzt0EfNaAOwHOmVJ2RVBspPcxt5iN4HI7HNeG6U5YsFBb+/GZbgfBT3kpNG
+WPTpAkBI+gFhjfJvRw38n3g/+UeAkwMI2TJQS4n8+hid0uus3/zOjDySH3XHCUno
+cn1xOJAyZODBo47E+67R4jV1/gzbAkEAklJaspRPXP877NssM5nAZMU0/O/NGCZ+
+3jPgDUno6WbJn5cqm8MqWhW1xGkImgRk+fkDBquiq4gPiT898jusgQJAd5Zrr6Q8
+AO/0isr/3aa6O6NLQxISLKcPDk2NOccAfS/xOtfOz4sJYM3+Bs4Io9+dZGSDCA54
+Lw03eHTNQghS0A==
+-----END PRIVATE KEY-----
+EOD;
+    return $cert;
+  }
+
+  public function fetch_public_cert(&$request) {
+    $cert = <<<EOD
+-----BEGIN CERTIFICATE-----
+MIIBpjCCAQ+gAwIBAgIBATANBgkqhkiG9w0BAQUFADAZMRcwFQYDVQQDDA5UZXN0
+IFByaW5jaXBhbDAeFw03MDAxMDEwODAwMDBaFw0zODEyMzEwODAwMDBaMBkxFzAV
+BgNVBAMMDlRlc3QgUHJpbmNpcGFsMIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKB
+gQC0YjCwIfYoprq/FQO6lb3asXrxLlJFuCvtinTF5p0GxvQGu5O3gYytUvtC2JlY
+zypSRjVxwxrsuRcP3e641SdASwfrmzyvIgP08N4S0IFzEURkV1wp/IpH7kH41Etb
+mUmrXSwfNZsnQRE5SYSOhh+LcK2wyQkdgcMv11l4KoBkcwIDAQABMA0GCSqGSIb3
+DQEBBQUAA4GBAGZLPEuJ5SiJ2ryq+CmEGOXfvlTtEL2nuGtr9PewxkgnOjZpUy+d
+4TvuXJbNQc8f4AMWL/tO9w0Fk80rWKp9ea8/df4qMq5qlFWlx6yOLQxumNOmECKb
+WpkUQDIDJEoFUzKMVuJf4KO/FJ345+BNLGgbJ6WujreoM1X/gYfdnJ/J
+-----END CERTIFICATE-----
+EOD;
+    return $cert;
+  }
+}

+ 10 - 0
app/plugins/keyring/includes/oauth-php/tests/OAuthConsumerTest.php

@@ -0,0 +1,10 @@
+<?php
+
+require 'common.php';
+
+class OAuthConsumerTest extends PHPUnit_Framework_TestCase {
+	public function testConvertToString() {
+		$consumer = new OAuthConsumer('key', 'secret');
+		$this->assertEquals('OAuthConsumer[key=key,secret=secret]', (string) $consumer);
+	}
+}

+ 329 - 0
app/plugins/keyring/includes/oauth-php/tests/OAuthRequestTest.php

@@ -0,0 +1,329 @@
+<?php
+
+/*
+ * Tests of OAuthRequest
+ *
+ * The tests works by using OAuthTestUtils::build_request
+ * to populare $_SERVER, $_GET & $_POST.
+ *
+ * Most of the base string and signature tests
+ * are either very simple or based upon
+ * http://wiki.oauth.net/TestCases
+ */
+
+require_once dirname(__FILE__) . '/common.php';
+
+class OAuthRequestTest extends PHPUnit_Framework_TestCase {	
+	public function testCanGetSingleParameter() {
+		// Yes, a awesomely boring test.. But if this doesn't work, the other tests is unreliable
+		$request = new OAuthRequest('', '', array('test'=>'foo'));
+		$this->assertEquals( 'foo', $request->get_parameter('test'), 'Failed to read back parameter');
+
+		$request = new OAuthRequest('', '', array('test'=>array('foo', 'bar')));
+		$this->assertEquals( array('foo', 'bar'), $request->get_parameter('test'), 'Failed to read back parameter');
+
+	
+		$request = new OAuthRequest('', '', array('test'=>'foo', 'bar'=>'baz'));
+		$this->assertEquals( 'foo', $request->get_parameter('test'), 'Failed to read back parameter');
+		$this->assertEquals( 'baz', $request->get_parameter('bar'), 'Failed to read back parameter');
+	}
+	
+	public function testGetAllParameters() {
+		// Yes, a awesomely boring test.. But if this doesn't work, the other tests is unreliable
+		$request = new OAuthRequest('', '', array('test'=>'foo'));
+		$this->assertEquals( array('test'=>'foo'), $request->get_parameters(), 'Failed to read back parameters');
+
+		$request = new OAuthRequest('', '', array('test'=>'foo', 'bar'=>'baz'));
+		$this->assertEquals( array('test'=>'foo', 'bar'=>'baz'), $request->get_parameters(), 'Failed to read back parameters');
+
+		$request = new OAuthRequest('', '', array('test'=>array('foo', 'bar')));
+		$this->assertEquals( array('test'=>array('foo', 'bar')), $request->get_parameters(), 'Failed to read back parameters');
+	}
+	
+	public function testSetParameters() {
+		$request = new OAuthRequest('', '');
+		$this->assertEquals( NULL, $request->get_parameter('test'), 'Failed to assert that non-existing parameter is NULL');
+
+		$request->set_parameter('test', 'foo');
+		$this->assertEquals( 'foo', $request->get_parameter('test'), 'Failed to set single-entry parameter');
+
+		$request->set_parameter('test', 'bar');
+		$this->assertEquals( array('foo', 'bar'), $request->get_parameter('test'), 'Failed to set single-entry parameter');
+
+		$request->set_parameter('test', 'bar', false);
+		$this->assertEquals( 'bar', $request->get_parameter('test'), 'Failed to set single-entry parameter');
+	}
+	
+	public function testUnsetParameter() {
+		$request = new OAuthRequest('', '');
+		$this->assertEquals( NULL, $request->get_parameter('test'));
+
+		$request->set_parameter('test', 'foo');
+		$this->assertEquals( 'foo', $request->get_parameter('test'));
+
+		$request->unset_parameter('test');
+		$this->assertEquals( NULL, $request->get_parameter('test'), 'Failed to unset parameter');
+	}
+	
+	public function testCreateRequestFromConsumerAndToken() {
+		$cons = new OAuthConsumer('key', 'kd94hf93k423kf44');
+		$token = new OAuthToken('token', 'pfkkdhi9sl3r4s00');
+		
+		$request = OAuthRequest::from_consumer_and_token($cons, $token, 'POST', 'http://example.com');
+		$this->assertEquals('POST', $request->get_normalized_http_method());
+		$this->assertEquals('http://example.com', $request->get_normalized_http_url());
+		$this->assertEquals('1.0', $request->get_parameter('oauth_version'));
+		$this->assertEquals($cons->key, $request->get_parameter('oauth_consumer_key'));
+		$this->assertEquals($token->key, $request->get_parameter('oauth_token'));
+		$this->assertEquals(time(), $request->get_parameter('oauth_timestamp'));
+		$this->assertRegExp('/[0-9a-f]{32}/', $request->get_parameter('oauth_nonce'));
+		// We don't know what the nonce will be, except it'll be md5 and hence 32 hexa digits
+		
+		$request = OAuthRequest::from_consumer_and_token($cons, $token, 'POST', 'http://example.com', array('oauth_nonce'=>'foo'));
+		$this->assertEquals('foo', $request->get_parameter('oauth_nonce'));
+		
+		$request = OAuthRequest::from_consumer_and_token($cons, NULL, 'POST', 'http://example.com', array('oauth_nonce'=>'foo'));
+		$this->assertNull($request->get_parameter('oauth_token'));
+		
+		// Test that parameters given in the $http_url instead of in the $parameters-parameter
+		// will still be picked up
+		$request = OAuthRequest::from_consumer_and_token($cons, $token, 'POST', 'http://example.com/?foo=bar');
+		$this->assertEquals('http://example.com/', $request->get_normalized_http_url());
+		$this->assertEquals('bar', $request->get_parameter('foo'));
+	}
+	
+	public function testBuildRequestFromPost() {
+		OAuthTestUtils::build_request('POST', 'http://testbed/test', 'foo=bar&baz=blargh');
+		$this->assertEquals(array('foo'=>'bar','baz'=>'blargh'), OAuthRequest::from_request()->get_parameters(), 'Failed to parse POST parameters');
+	}
+	
+	public function testBuildRequestFromGet() {
+		OAuthTestUtils::build_request('GET', 'http://testbed/test?foo=bar&baz=blargh');		
+		$this->assertEquals(array('foo'=>'bar','baz'=>'blargh'), OAuthRequest::from_request()->get_parameters(), 'Failed to parse GET parameters');
+	}
+
+	public function testBuildRequestFromHeader() {
+		$test_header = 'OAuth realm="",oauth_foo=bar,oauth_baz="bla,rgh"';
+		OAuthTestUtils::build_request('POST', 'http://testbed/test', '', $test_header);
+		$this->assertEquals(array('oauth_foo'=>'bar','oauth_baz'=>'bla,rgh'), OAuthRequest::from_request()->get_parameters(), 'Failed to split auth-header correctly');
+	}
+	
+	public function testHasProperParameterPriority() {
+		$test_header = 'OAuth realm="",oauth_foo=header';
+		OAuthTestUtils::build_request('POST', 'http://testbed/test?oauth_foo=get', 'oauth_foo=post', $test_header);
+		$this->assertEquals('header', OAuthRequest::from_request()->get_parameter('oauth_foo'), 'Loaded parameters in with the wrong priorities');		
+
+		OAuthTestUtils::build_request('POST', 'http://testbed/test?oauth_foo=get', 'oauth_foo=post');
+		$this->assertEquals('post', OAuthRequest::from_request()->get_parameter('oauth_foo'), 'Loaded parameters in with the wrong priorities');		
+
+		OAuthTestUtils::build_request('POST', 'http://testbed/test?oauth_foo=get');
+		$this->assertEquals('get', OAuthRequest::from_request()->get_parameter('oauth_foo'), 'Loaded parameters in with the wrong priorities');				
+	}
+	
+	public function testNormalizeHttpMethod() {
+		OAuthTestUtils::build_request('POST', 'http://testbed/test');
+		$this->assertEquals('POST', OAuthRequest::from_request()->get_normalized_http_method(), 'Failed to normalize HTTP method: POST');
+
+		OAuthTestUtils::build_request('post', 'http://testbed/test');
+		$this->assertEquals('POST', OAuthRequest::from_request()->get_normalized_http_method(), 'Failed to normalize HTTP method: post');
+
+		OAuthTestUtils::build_request('GET', 'http://testbed/test');
+		$this->assertEquals('GET', OAuthRequest::from_request()->get_normalized_http_method(), 'Failed to normalize HTTP method: GET');
+
+		OAuthTestUtils::build_request('PUT', 'http://testbed/test');
+		$this->assertEquals('PUT', OAuthRequest::from_request()->get_normalized_http_method(), 'Failed to normalize HTTP method: PUT');
+	}
+	
+	public function testNormalizeParameters() {
+		// This is mostly repeats of OAuthUtilTest::testParseParameters & OAuthUtilTest::TestBuildHttpQuery
+
+		// Tests taken from
+		// http://wiki.oauth.net/TestCases ("Normalize Request Parameters")
+		OAuthTestUtils::build_request('POST', 'http://testbed/test', 'name');
+		$this->assertEquals( 'name=', OAuthRequest::from_request()->get_signable_parameters());
+
+		OAuthTestUtils::build_request('POST', 'http://testbed/test', 'a=b');
+		$this->assertEquals( 'a=b', OAuthRequest::from_request()->get_signable_parameters());
+		
+		OAuthTestUtils::build_request('POST', 'http://testbed/test', 'a=b&c=d');
+		$this->assertEquals( 'a=b&c=d', OAuthRequest::from_request()->get_signable_parameters());
+		
+		OAuthTestUtils::build_request('POST', 'http://testbed/test', 'a=x%21y&a=x+y');
+		$this->assertEquals( 'a=x%20y&a=x%21y', OAuthRequest::from_request()->get_signable_parameters());
+		
+		OAuthTestUtils::build_request('POST', 'http://testbed/test', 'x%21y=a&x=a');
+		$this->assertEquals( 'x=a&x%21y=a', OAuthRequest::from_request()->get_signable_parameters());
+		
+		OAuthTestUtils::build_request('POST', 'http://testbed/test', 'a=1&c=hi there&f=25&f=50&f=a&z=p&z=t');
+		$this->assertEquals( 'a=1&c=hi%20there&f=25&f=50&f=a&z=p&z=t', OAuthRequest::from_request()->get_signable_parameters());
+	}
+	
+	public function testNormalizeHttpUrl() {
+		OAuthTestUtils::build_request('POST', 'http://example.com');
+		$this->assertEquals('http://example.com', OAuthRequest::from_request()->get_normalized_http_url());
+		
+		OAuthTestUtils::build_request('POST', 'https://example.com');
+		$this->assertEquals('https://example.com', OAuthRequest::from_request()->get_normalized_http_url());
+		
+		// Tests that http on !80 and https on !443 keeps the port
+		OAuthTestUtils::build_request('POST', 'http://example.com:8080');
+		$this->assertEquals('http://example.com:8080', OAuthRequest::from_request()->get_normalized_http_url());
+		
+		OAuthTestUtils::build_request('POST', 'https://example.com:80');
+		$this->assertEquals('https://example.com:80', OAuthRequest::from_request()->get_normalized_http_url());
+		
+		OAuthTestUtils::build_request('POST', 'http://example.com:443');
+		$this->assertEquals('http://example.com:443', OAuthRequest::from_request()->get_normalized_http_url());
+		
+		OAuthTestUtils::build_request('POST', 'http://Example.COM');
+		$this->assertEquals('http://example.com', OAuthRequest::from_request()->get_normalized_http_url());
+		
+		// Emulate silly behavior by some clients, where there Host header includes the port
+		OAuthTestUtils::build_request('POST', 'http://example.com');
+		$_SERVER['HTTP_HOST'] = $_SERVER['HTTP_HOST'] . ':' . $_SERVER['SERVER_PORT'];
+		$this->assertEquals('http://example.com', OAuthRequest::from_request()->get_normalized_http_url());
+	}
+	
+	public function testBuildPostData() {
+		OAuthTestUtils::build_request('POST', 'http://example.com');
+		$this->assertEquals('', OAuthRequest::from_request()->to_postdata());
+
+		OAuthTestUtils::build_request('POST', 'http://example.com', 'foo=bar');
+		$this->assertEquals('foo=bar', OAuthRequest::from_request()->to_postdata());
+
+		OAuthTestUtils::build_request('GET', 'http://example.com?foo=bar');
+		$this->assertEquals('foo=bar', OAuthRequest::from_request()->to_postdata());	
+	}
+	
+	public function testBuildUrl() {
+		OAuthTestUtils::build_request('POST', 'http://example.com');
+		$this->assertEquals('http://example.com', OAuthRequest::from_request()->to_url());
+
+		OAuthTestUtils::build_request('POST', 'http://example.com', 'foo=bar');
+		$this->assertEquals('http://example.com?foo=bar', OAuthRequest::from_request()->to_url());
+
+		OAuthTestUtils::build_request('GET', 'http://example.com?foo=bar');
+		$this->assertEquals('http://example.com?foo=bar', OAuthRequest::from_request()->to_url());	
+	}
+
+	public function testConvertToString() {
+		OAuthTestUtils::build_request('POST', 'http://example.com');
+		$this->assertEquals('http://example.com', (string) OAuthRequest::from_request());
+
+		OAuthTestUtils::build_request('POST', 'http://example.com', 'foo=bar');
+		$this->assertEquals('http://example.com?foo=bar', (string) OAuthRequest::from_request());
+
+		OAuthTestUtils::build_request('GET', 'http://example.com?foo=bar');
+		$this->assertEquals('http://example.com?foo=bar', (string) OAuthRequest::from_request());	
+	}
+	
+	public function testBuildHeader() {
+		OAuthTestUtils::build_request('POST', 'http://example.com');
+		$this->assertEquals('Authorization: OAuth', OAuthRequest::from_request()->to_header());
+		$this->assertEquals('Authorization: OAuth realm="test"', OAuthRequest::from_request()->to_header('test'));
+
+		OAuthTestUtils::build_request('POST', 'http://example.com', 'foo=bar');
+		$this->assertEquals('Authorization: OAuth', OAuthRequest::from_request()->to_header());
+		$this->assertEquals('Authorization: OAuth realm="test"', OAuthRequest::from_request()->to_header('test'));
+
+		OAuthTestUtils::build_request('POST', 'http://example.com', 'oauth_test=foo');
+		$this->assertEquals('Authorization: OAuth oauth_test="foo"', OAuthRequest::from_request()->to_header());
+		$this->assertEquals('Authorization: OAuth realm="test",oauth_test="foo"', OAuthRequest::from_request()->to_header('test'));
+
+		// Is headers supposted to be Urlencoded. More to the point:
+		// Should it be baz = bla,rgh or baz = bla%2Crgh ??
+		// - morten.fangel
+		OAuthTestUtils::build_request('POST', 'http://example.com', '', 'OAuth realm="",oauth_foo=bar,oauth_baz="bla,rgh"');
+		$this->assertEquals('Authorization: OAuth oauth_foo="bar",oauth_baz="bla%2Crgh"', OAuthRequest::from_request()->to_header());
+		$this->assertEquals('Authorization: OAuth realm="test",oauth_foo="bar",oauth_baz="bla%2Crgh"', OAuthRequest::from_request()->to_header('test'));
+	}
+	
+	public function testWontBuildHeaderWithArrayInput() {
+		$this->setExpectedException('OAuthException');
+		OAuthTestUtils::build_request('POST', 'http://example.com', 'oauth_foo=bar&oauth_foo=baz');
+		OAuthRequest::from_request()->to_header();
+	}
+
+	public function testBuildBaseString() {
+		OAuthTestUtils::build_request('POST', 'http://testbed/test', 'n=v');
+		$this->assertEquals('POST&http%3A%2F%2Ftestbed%2Ftest&n%3Dv', OAuthRequest::from_request()->get_signature_base_string());
+		
+		OAuthTestUtils::build_request('POST', 'http://testbed/test', 'n=v&n=v2');
+		$this->assertEquals('POST&http%3A%2F%2Ftestbed%2Ftest&n%3Dv%26n%3Dv2', OAuthRequest::from_request()->get_signature_base_string());
+		
+		OAuthTestUtils::build_request('GET', 'http://example.com?n=v');
+		$this->assertEquals('GET&http%3A%2F%2Fexample.com&n%3Dv', OAuthRequest::from_request()->get_signature_base_string());
+		
+		$params  = 'oauth_version=1.0&oauth_consumer_key=dpf43f3p2l4k3l03&oauth_timestamp=1191242090';
+		$params .= '&oauth_nonce=hsu94j3884jdopsl&oauth_signature_method=PLAINTEXT&oauth_signature=ignored';
+		OAuthTestUtils::build_request('POST', 'https://photos.example.net/request_token', $params);			
+		$this->assertEquals('POST&https%3A%2F%2Fphotos.example.net%2Frequest_token&oauth_'
+							.'consumer_key%3Ddpf43f3p2l4k3l03%26oauth_nonce%3Dhsu94j3884j'
+							.'dopsl%26oauth_signature_method%3DPLAINTEXT%26oauth_timestam'
+							.'p%3D1191242090%26oauth_version%3D1.0', 
+							OAuthRequest::from_request()->get_signature_base_string());									
+
+		$params  = 'file=vacation.jpg&size=original&oauth_version=1.0&oauth_consumer_key=dpf43f3p2l4k3l03';
+		$params .= '&oauth_token=nnch734d00sl2jdk&oauth_timestamp=1191242096&oauth_nonce=kllo9940pd9333jh';
+		$params .= '&oauth_signature=ignored&oauth_signature_method=HMAC-SHA1';
+		OAuthTestUtils::build_request('GET', 'http://photos.example.net/photos?'.$params);			
+		$this->assertEquals('GET&http%3A%2F%2Fphotos.example.net%2Fphotos&file%3Dvacation'
+							.'.jpg%26oauth_consumer_key%3Ddpf43f3p2l4k3l03%26oauth_nonce%'
+							.'3Dkllo9940pd9333jh%26oauth_signature_method%3DHMAC-SHA1%26o'
+							.'auth_timestamp%3D1191242096%26oauth_token%3Dnnch734d00sl2jd'
+							.'k%26oauth_version%3D1.0%26size%3Doriginal', 
+							OAuthRequest::from_request()->get_signature_base_string());
+	}
+
+	public function testBuildSignature() {
+		$params  = 'file=vacation.jpg&size=original&oauth_version=1.0&oauth_consumer_key=dpf43f3p2l4k3l03';
+		$params .= '&oauth_token=nnch734d00sl2jdk&oauth_timestamp=1191242096&oauth_nonce=kllo9940pd9333jh';
+		$params .= '&oauth_signature=ignored&oauth_signature_method=HMAC-SHA1';
+		OAuthTestUtils::build_request('GET', 'http://photos.example.net/photos?'.$params);			
+		$r = OAuthRequest::from_request();
+		
+		$cons = new OAuthConsumer('key', 'kd94hf93k423kf44');
+		$token = new OAuthToken('token', 'pfkkdhi9sl3r4s00');
+		
+		$hmac = new OAuthSignatureMethod_HMAC_SHA1();
+		$plaintext = new OAuthSignatureMethod_PLAINTEXT();
+		
+		$this->assertEquals('tR3+Ty81lMeYAr/Fid0kMTYa/WM=', $r->build_signature($hmac, $cons, $token));
+		$this->assertEquals('kd94hf93k423kf44&pfkkdhi9sl3r4s00', $r->build_signature($plaintext, $cons, $token));
+	}
+
+	public function testSign() {
+		$params  = 'file=vacation.jpg&size=original&oauth_version=1.0&oauth_consumer_key=dpf43f3p2l4k3l03';
+		$params .= '&oauth_token=nnch734d00sl2jdk&oauth_timestamp=1191242096&oauth_nonce=kllo9940pd9333jh';
+		$params .= '&oauth_signature=__ignored__&oauth_signature_method=HMAC-SHA1';
+		OAuthTestUtils::build_request('GET', 'http://photos.example.net/photos?'.$params);			
+		$r = OAuthRequest::from_request();
+		
+		$cons = new OAuthConsumer('key', 'kd94hf93k423kf44');
+		$token = new OAuthToken('token', 'pfkkdhi9sl3r4s00');
+		
+		$hmac = new OAuthSignatureMethod_HMAC_SHA1();
+		$plaintext = new OAuthSignatureMethod_PLAINTEXT();
+		
+		// We need to test both what the parameter is, and how the serialized request is..
+		
+		$r->sign_request($hmac, $cons, $token);
+		$this->assertEquals('HMAC-SHA1', $r->get_parameter('oauth_signature_method'));
+		$this->assertEquals('tR3+Ty81lMeYAr/Fid0kMTYa/WM=', $r->get_parameter('oauth_signature'));
+		$expectedPostdata = 'file=vacation.jpg&oauth_consumer_key=dpf43f3p2l4k3l03&oauth_nonce=kllo9940pd9333jh&'
+				. 'oauth_signature=tR3%2BTy81lMeYAr%2FFid0kMTYa%2FWM%3D&oauth_signature_method=HMAC-SHA1&'
+				. 'oauth_timestamp=1191242096&oauth_token=nnch734d00sl2jdk&oauth_version=1.0&size=original';
+		$this->assertEquals( $expectedPostdata, $r->to_postdata());
+		
+		$r->sign_request($plaintext, $cons, $token);
+		$this->assertEquals('PLAINTEXT', $r->get_parameter('oauth_signature_method'));
+		$this->assertEquals('kd94hf93k423kf44&pfkkdhi9sl3r4s00', $r->get_parameter('oauth_signature'));
+		$expectedPostdata = 'file=vacation.jpg&oauth_consumer_key=dpf43f3p2l4k3l03&oauth_nonce=kllo9940pd9333jh&'
+				. 'oauth_signature=kd94hf93k423kf44%26pfkkdhi9sl3r4s00&oauth_signature_method=PLAINTEXT&'
+				. 'oauth_timestamp=1191242096&oauth_token=nnch734d00sl2jdk&oauth_version=1.0&size=original';
+		$this->assertEquals( $expectedPostdata, $r->to_postdata());
+		
+	}
+}
+
+?>

+ 225 - 0
app/plugins/keyring/includes/oauth-php/tests/OAuthServerTest.php

@@ -0,0 +1,225 @@
+<?php
+
+require_once dirname(__FILE__) . '/common.php';
+require_once dirname(__FILE__) . '/Mock_OAuthDataStore.php';
+
+/**
+ * Tests of OAuthUtil
+ */
+class OAuthServerTest extends PHPUnit_Framework_TestCase {
+	private $consumer;
+	private $request_token;
+	private $access_token;
+	private $hmac_sha1;
+	private $plaintext;
+	private $server;
+	
+	public function setUp() {
+		$this->consumer       = new OAuthConsumer('key', 'secret');
+		$this->request_token  = new OAuthToken('requestkey', 'requestsecret');
+		$this->access_token   = new OAuthToken('accesskey', 'accesssecret');
+		
+		$this->hmac_sha1      = new OAuthSignatureMethod_HMAC_SHA1();
+		$this->plaintext      = new OAuthSignatureMethod_PLAINTEXT();
+		
+		$this->server         = new OAuthServer( new Mock_OAuthDataStore() );
+		$this->server->add_signature_method( $this->hmac_sha1 );
+		$this->server->add_signature_method( $this->plaintext );
+	}
+
+	public function testAcceptValidRequest() {
+		$request = OAuthRequest::from_consumer_and_token( $this->consumer, $this->access_token, 'POST', 'http://example.com');
+		$request->sign_request( $this->plaintext, $this->consumer, $this->access_token );		
+		list($consumer, $token) = $this->server->verify_request( $request );
+		$this->assertEquals( $this->consumer, $consumer );
+		$this->assertEquals( $this->access_token, $token );
+		
+		$request->sign_request( $this->hmac_sha1, $this->consumer, $this->access_token );
+		list($consumer, $token) = $this->server->verify_request( $request );
+		$this->assertEquals( $this->consumer, $consumer );
+		$this->assertEquals( $this->access_token, $token );
+	}
+	
+	public function testAcceptRequestWithoutVersion() {
+		$request = OAuthRequest::from_consumer_and_token( $this->consumer, $this->access_token, 'POST', 'http://example.com');
+		$request->unset_parameter('oauth_version');
+		$request->sign_request( $this->hmac_sha1, $this->consumer, $this->access_token );
+	
+		$this->server->verify_request( $request );
+	}
+	
+	public function testRejectRequestSignedWithRequestToken() {
+		$request = OAuthRequest::from_consumer_and_token( $this->consumer, $this->request_token, 'POST', 'http://example.com');
+		$request->sign_request( $this->plaintext, $this->consumer, $this->request_token );		
+		
+		$this->setExpectedException('OAuthException');
+		$this->server->verify_request( $request );
+	}
+	
+	public function testRejectRequestWithMissingParameters() {
+		// The list of required parameters is taken from
+		// Chapter 7 ("Accessing Protected Resources")
+		
+		$required_parameters = array(
+			'oauth_consumer_key',
+			'oauth_token',
+			'oauth_signature_method',
+			'oauth_signature',
+			'oauth_timestamp',
+			'oauth_nonce'
+		);
+		
+		foreach( $required_parameters AS $required ) {
+			$request = OAuthRequest::from_consumer_and_token( $this->consumer, $this->access_token, 'POST', 'http://example.com');
+			$request->sign_request( $this->plaintext, $this->consumer, $this->access_token );
+			try {
+				$request->unset_parameter( $required );
+				$this->server->verify_request($request);
+				$this->fail('Allowed a request without `' . $required . '`');
+			} catch( OAuthException $e ) { /* expected */ }
+		}
+	}
+		
+	public function testRejectPastTimestamp() {
+		// We change the timestamp to be 10 hours ago, it should throw an exception
+		
+		$request = OAuthRequest::from_consumer_and_token( $this->consumer, $this->access_token, 'POST', 'http://example.com');
+		$request->set_parameter( 'oauth_timestamp', $request->get_parameter('oauth_timestamp') - 10*60*60, false);
+		$request->sign_request( $this->plaintext, $this->consumer, $this->access_token );
+		
+		$this->setExpectedException('OAuthException');
+		$this->server->verify_request($request);
+	}
+	
+	public function testRejectFutureTimestamp() {
+		// We change the timestamp to be 10 hours in the future, it should throw an exception
+		
+		$request = OAuthRequest::from_consumer_and_token( $this->consumer, $this->access_token, 'POST', 'http://example.com');
+		$request->set_parameter( 'oauth_timestamp', $request->get_parameter('oauth_timestamp') + 10*60*60, false);
+		$request->sign_request( $this->plaintext, $this->consumer, $this->access_token );
+		
+		$this->setExpectedException('OAuthException');
+		$this->server->verify_request($request);
+	}
+	
+	public function testRejectUsedNonce() {
+		// We give a known nonce and should see an exception
+	
+		$request = OAuthRequest::from_consumer_and_token( $this->consumer, $this->access_token, 'POST', 'http://example.com');
+		// The Mock datastore is set to say that the `nonce` nonce is known
+		$request->set_parameter( 'oauth_nonce', 'nonce', false);
+		$request->sign_request( $this->plaintext, $this->consumer, $this->access_token );
+
+		$this->setExpectedException('OAuthException');
+		$this->server->verify_request($request);
+	}
+	
+	public function testRejectInvalidSignature() {
+		// We change the signature post-signing to be something invalid
+	
+		$request = OAuthRequest::from_consumer_and_token( $this->consumer, $this->access_token, 'POST', 'http://example.com');
+		$request->sign_request( $this->plaintext, $this->consumer, $this->access_token );
+		$request->set_parameter( 'oauth_signature', '__whatever__', false);
+
+		$this->setExpectedException('OAuthException');
+		$this->server->verify_request($request);
+	}
+	
+	public function testRejectInvalidConsumer() {
+		// We use the consumer-key "unknown", which isn't known by the datastore. 
+		
+		$unknown_consumer = new OAuthConsumer('unknown', '__unused__');
+			
+		$request = OAuthRequest::from_consumer_and_token( $unknown_consumer, $this->access_token, 'POST', 'http://example.com');
+		$request->sign_request( $this->plaintext, $unknown_consumer, $this->access_token );
+		
+		$this->setExpectedException('OAuthException');
+		$this->server->verify_request( $request );	
+	}
+	
+	public function testRejectInvalidToken() {
+		// We use the access-token "unknown" which isn't known by the datastore
+		
+		$unknown_token = new OAuthToken('unknown', '__unused__');
+			
+		$request = OAuthRequest::from_consumer_and_token( $this->consumer, $unknown_token, 'POST', 'http://example.com');
+		$request->sign_request( $this->plaintext, $this->consumer, $unknown_token );
+		
+		$this->setExpectedException('OAuthException');
+		$this->server->verify_request( $request );	
+	}
+	
+	public function testRejectUnknownSignatureMethod() {
+		// We use a server that only supports HMAC-SHA1, but requests with PLAINTEXT signature
+		
+		$request = OAuthRequest::from_consumer_and_token( $this->consumer, $this->access_token, 'POST', 'http://example.com');
+		$request->sign_request( $this->plaintext, $this->consumer, $this->access_token );
+		
+		$server = new OAuthServer( new Mock_OAuthDataStore() );
+		$server->add_signature_method( $this->hmac_sha1 );
+		
+		$this->setExpectedException('OAuthException');
+		$server->verify_request( $request );	
+	}
+	
+	public function testRejectUnknownVersion() {
+		// We use the version "1.0a" which isn't "1.0", so reject the request
+		
+		$request = OAuthRequest::from_consumer_and_token( $this->consumer, $this->access_token, 'POST', 'http://example.com');
+		$request->sign_request( $this->plaintext, $this->consumer, $this->access_token );
+		$request->set_parameter('oauth_version', '1.0a', false);
+		
+		$this->setExpectedException('OAuthException');
+		$this->server->verify_request( $request );	
+	}
+	
+	public function testCreateRequestToken() {
+		// We request a new Request Token
+		
+		$request = OAuthRequest::from_consumer_and_token( $this->consumer, NULL, 'POST', 'http://example.com');
+		$request->sign_request( $this->plaintext, $this->consumer, NULL );
+		
+		$token = $this->server->fetch_request_token($request);
+		$this->assertEquals($this->request_token, $token);
+	}
+	
+	public function testRejectSignedRequestTokenRequest() {
+		// We request a new Request Token, but the request is signed with a token which should fail
+		
+		$request = OAuthRequest::from_consumer_and_token( $this->consumer, $this->request_token, 'POST', 'http://example.com');
+		$request->sign_request( $this->plaintext, $this->consumer, $this->request_token );
+		
+		$this->setExpectedException('OAuthException');
+		$token = $this->server->fetch_request_token($request);
+	}
+	
+	public function testCreateAccessToken() {
+		// We request a new Access Token
+		
+		$request = OAuthRequest::from_consumer_and_token( $this->consumer, $this->request_token, 'POST', 'http://example.com');
+		$request->sign_request( $this->plaintext, $this->consumer, $this->request_token );
+		
+		$token = $this->server->fetch_access_token($request);
+		$this->assertEquals($this->access_token, $token);
+	}
+	
+	public function testRejectUnsignedAccessTokenRequest() {
+		// We request a new Access Token, but we didn't sign the request with a Access Token
+		
+		$request = OAuthRequest::from_consumer_and_token( $this->consumer, NULL, 'POST', 'http://example.com');
+		$request->sign_request( $this->plaintext, $this->consumer, NULL );
+		
+		$this->setExpectedException('OAuthException');
+		$token = $this->server->fetch_access_token($request);
+	}
+	
+	public function testRejectAccessTokenSignedAccessTokenRequest() {
+		// We request a new Access Token, but the request is signed with an access token, so fail!
+		
+		$request = OAuthRequest::from_consumer_and_token( $this->consumer, $this->access_token, 'POST', 'http://example.com');
+		$request->sign_request( $this->plaintext, $this->consumer, $this->access_token );
+		
+		$this->setExpectedException('OAuthException');
+		$token = $this->server->fetch_access_token($request);
+	}
+}

+ 60 - 0
app/plugins/keyring/includes/oauth-php/tests/OAuthSignatureMethodHmacSha1Test.php

@@ -0,0 +1,60 @@
+<?php
+
+require_once 'common.php';
+require_once 'Mock_OAuthBaseStringRequest.php';
+
+class OAuthSignatureMethodHmacSha1Test extends PHPUnit_Framework_TestCase {
+	private $method;
+	
+	public function setUp() {
+		$this->method = new OAuthSignatureMethod_HMAC_SHA1();
+	}
+	
+	public function testIdentifyAsHmacSha1() {
+		$this->assertEquals('HMAC-SHA1', $this->method->get_name());
+	}
+	
+	public function testBuildSignature() {
+		// Tests taken from http://wiki.oauth.net/TestCases section 9.2 ("HMAC-SHA1")
+		$request  = new Mock_OAuthBaseStringRequest('bs');
+		$consumer = new OAuthConsumer('__unused__', 'cs');
+		$token    = NULL;
+		$this->assertEquals('egQqG5AJep5sJ7anhXju1unge2I=', $this->method->build_signature( $request, $consumer, $token) );
+		
+		$request  = new Mock_OAuthBaseStringRequest('bs');
+		$consumer = new OAuthConsumer('__unused__', 'cs');
+		$token    = new OAuthToken('__unused__', 'ts');
+		$this->assertEquals('VZVjXceV7JgPq/dOTnNmEfO0Fv8=', $this->method->build_signature( $request, $consumer, $token) );
+
+		$request  = new Mock_OAuthBaseStringRequest('GET&http%3A%2F%2Fphotos.example.net%2Fphotos&file%3Dvacation.jpg%26'
+			. 'oauth_consumer_key%3Ddpf43f3p2l4k3l03%26oauth_nonce%3Dkllo9940pd9333jh%26oauth_signature_method%3DHMAC-SHA1%26'
+			. 'oauth_timestamp%3D1191242096%26oauth_token%3Dnnch734d00sl2jdk%26oauth_version%3D1.0%26size%3Doriginal');
+		$consumer = new OAuthConsumer('__unused__', 'kd94hf93k423kf44');
+		$token    = new OAuthToken('__unused__', 'pfkkdhi9sl3r4s00');
+		$this->assertEquals('tR3+Ty81lMeYAr/Fid0kMTYa/WM=', $this->method->build_signature( $request, $consumer, $token) );
+	}
+	
+	public function testVerifySignature() {
+		// Tests taken from http://wiki.oauth.net/TestCases section 9.2 ("HMAC-SHA1")
+		$request   = new Mock_OAuthBaseStringRequest('bs');
+		$consumer  = new OAuthConsumer('__unused__', 'cs');
+		$token     = NULL;
+		$signature = 'egQqG5AJep5sJ7anhXju1unge2I=';
+		$this->assertTrue( $this->method->check_signature( $request, $consumer, $token, $signature) );
+		
+		$request   = new Mock_OAuthBaseStringRequest('bs');
+		$consumer  = new OAuthConsumer('__unused__', 'cs');
+		$token     = new OAuthToken('__unused__', 'ts');
+		$signature = 'VZVjXceV7JgPq/dOTnNmEfO0Fv8=';
+		$this->assertTrue($this->method->check_signature( $request, $consumer, $token, $signature) );
+
+		$request   = new Mock_OAuthBaseStringRequest('GET&http%3A%2F%2Fphotos.example.net%2Fphotos&file%3Dvacation.jpg%26'
+			. 'oauth_consumer_key%3Ddpf43f3p2l4k3l03%26oauth_nonce%3Dkllo9940pd9333jh%26oauth_signature_method%3DHMAC-SHA1%26'
+			. 'oauth_timestamp%3D1191242096%26oauth_token%3Dnnch734d00sl2jdk%26oauth_version%3D1.0%26size%3Doriginal');
+		$consumer  = new OAuthConsumer('__unused__', 'kd94hf93k423kf44');
+		$token     = new OAuthToken('__unused__', 'pfkkdhi9sl3r4s00');
+		$signature = 'tR3+Ty81lMeYAr/Fid0kMTYa/WM=';
+		$this->assertTrue($this->method->check_signature( $request, $consumer, $token, $signature) );
+		
+	}
+}

+ 79 - 0
app/plugins/keyring/includes/oauth-php/tests/OAuthSignatureMethodPlaintextTest.php

@@ -0,0 +1,79 @@
+<?php
+
+require_once 'common.php';
+require_once 'Mock_OAuthBaseStringRequest.php';
+
+class OAuthSignatureMethodPlaintextTest extends PHPUnit_Framework_TestCase {
+	private $method;
+	
+	public function setUp() {
+		$this->method = new OAuthSignatureMethod_PLAINTEXT();
+	}
+	
+	public function testIdentifyAsPlaintext() {
+		$this->assertEquals('PLAINTEXT', $this->method->get_name());
+	}
+	
+	public function testBuildSignature() {
+		// Tests based on from http://wiki.oauth.net/TestCases section 9.2 ("HMAC-SHA1")
+		$request  = new Mock_OAuthBaseStringRequest('__unused__');
+		$consumer = new OAuthConsumer('__unused__', 'cs');
+		$token    = NULL;
+		$this->assertEquals('cs&', $this->method->build_signature( $request, $consumer, $token) );
+		
+		$request  = new Mock_OAuthBaseStringRequest('__unused__');
+		$consumer = new OAuthConsumer('__unused__', 'cs');
+		$token    = new OAuthToken('__unused__', 'ts');
+		$this->assertEquals('cs&ts', $this->method->build_signature( $request, $consumer, $token) );
+
+		$request  = new Mock_OAuthBaseStringRequest('__unused__');
+		$consumer = new OAuthConsumer('__unused__', 'kd94hf93k423kf44');
+		$token    = new OAuthToken('__unused__', 'pfkkdhi9sl3r4s00');
+		$this->assertEquals('kd94hf93k423kf44&pfkkdhi9sl3r4s00', $this->method->build_signature( $request, $consumer, $token) );
+		
+		// Tests taken from Chapter 9.4.1 ("Generating Signature") from the spec
+		$request  = new Mock_OAuthBaseStringRequest('__unused__');
+		$consumer = new OAuthConsumer('__unused__', 'djr9rjt0jd78jf88');
+		$token    = new OAuthToken('__unused__', 'jjd999tj88uiths3');
+		$this->assertEquals('djr9rjt0jd78jf88&jjd999tj88uiths3', $this->method->build_signature( $request, $consumer, $token) );
+
+		$request  = new Mock_OAuthBaseStringRequest('__unused__');
+		$consumer = new OAuthConsumer('__unused__', 'djr9rjt0jd78jf88');
+		$token    = new OAuthToken('__unused__', 'jjd99$tj88uiths3');
+		$this->assertEquals('djr9rjt0jd78jf88&jjd99%24tj88uiths3', $this->method->build_signature( $request, $consumer, $token) );
+	}
+	
+	public function testVerifySignature() {
+		// Tests based on from http://wiki.oauth.net/TestCases section 9.2 ("HMAC-SHA1")
+		$request   = new Mock_OAuthBaseStringRequest('__unused__');
+		$consumer  = new OAuthConsumer('__unused__', 'cs');
+		$token     = NULL;
+		$signature = 'cs&';
+		$this->assertTrue( $this->method->check_signature( $request, $consumer, $token, $signature) );
+		
+		$request   = new Mock_OAuthBaseStringRequest('__unused__');
+		$consumer  = new OAuthConsumer('__unused__', 'cs');
+		$token     = new OAuthToken('__unused__', 'ts');
+		$signature = 'cs&ts';
+		$this->assertTrue($this->method->check_signature( $request, $consumer, $token, $signature) );
+
+		$request   = new Mock_OAuthBaseStringRequest('__unused__');
+		$consumer  = new OAuthConsumer('__unused__', 'kd94hf93k423kf44');
+		$token     = new OAuthToken('__unused__', 'pfkkdhi9sl3r4s00');
+		$signature = 'kd94hf93k423kf44&pfkkdhi9sl3r4s00';
+		$this->assertTrue($this->method->check_signature( $request, $consumer, $token, $signature) );
+		
+		// Tests taken from Chapter 9.4.1 ("Generating Signature") from the spec
+		$request   = new Mock_OAuthBaseStringRequest('__unused__');
+		$consumer  = new OAuthConsumer('__unused__', 'djr9rjt0jd78jf88');
+		$token     = new OAuthToken('__unused__', 'jjd999tj88uiths3');
+		$signature = 'djr9rjt0jd78jf88&jjd999tj88uiths3';
+		$this->assertTrue($this->method->check_signature( $request, $consumer, $token, $signature) );
+
+		$request   = new Mock_OAuthBaseStringRequest('__unused__');
+		$consumer  = new OAuthConsumer('__unused__', 'djr9rjt0jd78jf88');
+		$token     = new OAuthToken('__unused__', 'jjd99$tj88uiths3');
+		$signature = 'djr9rjt0jd78jf88&jjd99%24tj88uiths3';
+		$this->assertTrue($this->method->check_signature( $request, $consumer, $token, $signature) );
+	}
+}

+ 43 - 0
app/plugins/keyring/includes/oauth-php/tests/OAuthSignatureMethodRsaSha1Test.php

@@ -0,0 +1,43 @@
+<?php
+
+require_once 'common.php';
+require_once 'Mock_OAuthBaseStringRequest.php';
+require_once 'Mock_OAuthSignatureMethod_RSA_SHA1.php';
+
+class OAuthSignatureMethodRsaSha1Test extends PHPUnit_Framework_TestCase {
+	private $method;
+	
+	public function setUp() {
+		$this->method = new Mock_OAuthSignatureMethod_RSA_SHA1();
+	}
+	
+	public function testIdentifyAsRsaSha1() {
+		$this->assertEquals('RSA-SHA1', $this->method->get_name());
+	}
+	
+	public function testBuildSignature() {
+		if( ! function_exists('openssl_get_privatekey') ) {
+			$this->markTestSkipped('OpenSSL not available, can\'t test RSA-SHA1 functionality');
+		}
+		
+		// Tests taken from http://wiki.oauth.net/TestCases section 9.3 ("RSA-SHA1")
+		$request   = new Mock_OAuthBaseStringRequest('GET&http%3A%2F%2Fphotos.example.net%2Fphotos&file%3Dvacaction.jpg%26oauth_consumer_key%3Ddpf43f3p2l4k3l03%26oauth_nonce%3D13917289812797014437%26oauth_signature_method%3DRSA-SHA1%26oauth_timestamp%3D1196666512%26oauth_version%3D1.0%26size%3Doriginal');
+		$consumer  = new OAuthConsumer('dpf43f3p2l4k3l03', '__unused__');
+		$token     = NULL;
+		$signature = 'jvTp/wX1TYtByB1m+Pbyo0lnCOLIsyGCH7wke8AUs3BpnwZJtAuEJkvQL2/9n4s5wUmUl4aCI4BwpraNx4RtEXMe5qg5T1LVTGliMRpKasKsW//e+RinhejgCuzoH26dyF8iY2ZZ/5D1ilgeijhV/vBka5twt399mXwaYdCwFYE=';
+		$this->assertEquals($signature, $this->method->build_signature( $request, $consumer, $token) );
+	}
+	
+	public function testVerifySignature() {
+		if( ! function_exists('openssl_get_privatekey') ) {
+			$this->markTestSkipped('OpenSSL not available, can\'t test RSA-SHA1 functionality');
+		}
+	
+		// Tests taken from http://wiki.oauth.net/TestCases section 9.3 ("RSA-SHA1")
+		$request   = new Mock_OAuthBaseStringRequest('GET&http%3A%2F%2Fphotos.example.net%2Fphotos&file%3Dvacaction.jpg%26oauth_consumer_key%3Ddpf43f3p2l4k3l03%26oauth_nonce%3D13917289812797014437%26oauth_signature_method%3DRSA-SHA1%26oauth_timestamp%3D1196666512%26oauth_version%3D1.0%26size%3Doriginal');
+		$consumer  = new OAuthConsumer('dpf43f3p2l4k3l03', '__unused__');
+		$token     = NULL;
+		$signature = 'jvTp/wX1TYtByB1m+Pbyo0lnCOLIsyGCH7wke8AUs3BpnwZJtAuEJkvQL2/9n4s5wUmUl4aCI4BwpraNx4RtEXMe5qg5T1LVTGliMRpKasKsW//e+RinhejgCuzoH26dyF8iY2ZZ/5D1ilgeijhV/vBka5twt399mXwaYdCwFYE=';
+		$this->assertTrue($this->method->check_signature( $request, $consumer, $token, $signature) );	
+	}
+}

+ 20 - 0
app/plugins/keyring/includes/oauth-php/tests/OAuthTokenTest.php

@@ -0,0 +1,20 @@
+<?php
+
+require_once 'common.php';
+
+class OAuthTokenTest extends PHPUnit_Framework_TestCase {
+	public function testSerialize() {
+		$token = new OAuthToken('token', 'secret');
+		$this->assertEquals('oauth_token=token&oauth_token_secret=secret', $token->to_string());
+		
+		$token = new OAuthToken('token&', 'secret%');
+		$this->assertEquals('oauth_token=token%26&oauth_token_secret=secret%25', $token->to_string());
+	}
+	public function testConvertToString() {
+		$token = new OAuthToken('token', 'secret');
+		$this->assertEquals('oauth_token=token&oauth_token_secret=secret', (string) $token);
+		
+		$token = new OAuthToken('token&', 'secret%');
+		$this->assertEquals('oauth_token=token%26&oauth_token_secret=secret%25', (string) $token);
+	}
+}

+ 151 - 0
app/plugins/keyring/includes/oauth-php/tests/OAuthUtilTest.php

@@ -0,0 +1,151 @@
+<?php
+
+require_once dirname(__FILE__) . '/common.php';
+
+/**
+ * Tests of OAuthUtil
+ */
+class OAuthUtilTest extends PHPUnit_Framework_TestCase {
+	public function testUrlencode() {
+		// Tests taken from
+		// http://wiki.oauth.net/TestCases ("Parameter Encoding")
+		$this->assertEquals('abcABC123', OAuthUtil::urlencode_rfc3986('abcABC123'));
+		$this->assertEquals('-._~',      OAuthUtil::urlencode_rfc3986('-._~'));
+		$this->assertEquals('%25',       OAuthUtil::urlencode_rfc3986('%'));
+		$this->assertEquals('%2B',       OAuthUtil::urlencode_rfc3986('+'));
+		$this->assertEquals('%0A',       OAuthUtil::urlencode_rfc3986("\n"));
+		$this->assertEquals('%20',       OAuthUtil::urlencode_rfc3986(' '));
+		$this->assertEquals('%7F',       OAuthUtil::urlencode_rfc3986("\x7F"));
+		//$this->assertEquals('%C2%80',    OAuthUtil::urlencode_rfc3986("\x00\x80"));
+		//$this->assertEquals('%E3%80%81', OAuthUtil::urlencode_rfc3986("\x30\x01"));
+		
+		// Last two checks disabled because of lack of UTF-8 support, or lack
+		// of knowledge from me (morten.fangel) on how to use it properly..
+		
+		// A few tests to ensure code-coverage
+		$this->assertEquals( '', OAuthUtil::urlencode_rfc3986(NULL));
+		$this->assertEquals( '', OAuthUtil::urlencode_rfc3986(new stdClass()));
+	}
+
+	public function testUrldecode() {
+		// Tests taken from
+		// http://wiki.oauth.net/TestCases ("Parameter Encoding")
+		$this->assertEquals('abcABC123', OAuthUtil::urldecode_rfc3986('abcABC123'));
+		$this->assertEquals('-._~',      OAuthUtil::urldecode_rfc3986('-._~'));
+		$this->assertEquals('%',         OAuthUtil::urldecode_rfc3986('%25'));
+		$this->assertEquals('+',         OAuthUtil::urldecode_rfc3986('%2B'));
+		$this->assertEquals("\n",        OAuthUtil::urldecode_rfc3986('%0A'));
+		$this->assertEquals(' ',         OAuthUtil::urldecode_rfc3986('%20'));
+		$this->assertEquals("\x7F",      OAuthUtil::urldecode_rfc3986('%7F'));
+		//$this->assertEquals("\x00\x80",  OAuthUtil::urldecode_rfc3986('%C2%80'));
+		//$this->assertEquals("\x30\x01",  OAuthUtil::urldecode_rfc3986('%E3%80%81'));
+		
+		// Last two checks disabled because of lack of UTF-8 support, or lack
+		// of knowledge from me (morten.fangel) on how to use it properly..
+	}
+	
+	public function testParseParameter() {
+		// Tests taken from
+		// http://wiki.oauth.net/TestCases ("Normalize Request Parameters")
+	
+		$this->assertEquals(
+			array('name'=>''), 
+			OAuthUtil::parse_parameters('name')
+		);
+		$this->assertEquals(
+			array('a'=>'b'),
+			OAuthUtil::parse_parameters('a=b')
+		);
+		$this->assertEquals(
+			array('a'=>'b','c'=>'d'),
+			OAuthUtil::parse_parameters('a=b&c=d')
+		);
+		$this->assertEquals(
+			array('a'=>array('x!y','x y')),
+			OAuthUtil::parse_parameters('a=x!y&a=x+y')
+		);
+		$this->assertEquals(
+			array('x!y'=>'a', 'x' =>'a'),
+			OAuthUtil::parse_parameters('x!y=a&x=a')
+		);
+	}
+	
+	public function testBuildHttpQuery() {
+		// Tests taken from
+		// http://wiki.oauth.net/TestCases ("Normalize Request Parameters")
+		$this->assertEquals(
+		    'name=',
+			OAuthUtil::build_http_query(array('name'=>''))
+		);
+		$this->assertEquals(
+			'a=b',
+			OAuthUtil::build_http_query(array('a'=>'b'))
+		);
+		$this->assertEquals(
+			'a=b&c=d',
+			OAuthUtil::build_http_query(array('a'=>'b','c'=>'d'))
+		);
+		$this->assertEquals(
+			'a=x%20y&a=x%21y',
+			OAuthUtil::build_http_query(array('a'=>array('x!y','x y')))
+		);
+		$this->assertEquals(
+			'x=a&x%21y=a',
+			OAuthUtil::build_http_query(array('x!y'=>'a', 'x' =>'a'))
+		);
+		
+		// Test taken from the Spec 9.1.1
+		$this->assertEquals(
+			'a=1&c=hi%20there&f=25&f=50&f=a&z=p&z=t',
+			OAuthUtil::build_http_query(array('a'=>'1', 'c' =>'hi there', 'f'=>array(25, 50, 'a'), 'z'=>array('p','t')))
+		);
+		
+		// From issue 164, by hidetaka
+		// Based on discussion at 
+		// http://groups.google.com/group/oauth/browse_thread/thread/7c698004be0d536/dced7b6c82b917b2?lnk=gst&q=sort#
+		$this->assertEquals(
+			'x=200&x=25&y=B&y=a',
+			OAuthUtil::build_http_query(array('x'=>array(25, 200), 'y'=>array('a', 'B')))
+		);
+	}
+	
+	public function testSplitHeader() {
+		$this->assertEquals(
+			array('oauth_foo'=>'bar','oauth_baz'=>'bla,rgh'),
+			OAuthUtil::split_header('OAuth realm="",oauth_foo=bar,oauth_baz="bla,rgh"')
+		);
+		$this->assertEquals(
+			array(),
+			OAuthUtil::split_header('OAuth realm="",foo=bar,baz="bla,rgh"')
+		);
+		$this->assertEquals(
+			array('foo'=>'bar', 'baz'=>'bla,rgh'),
+			OAuthUtil::split_header('OAuth realm="",foo=bar,baz="bla,rgh"', false)
+		);
+		$this->assertEquals(
+			array('oauth_foo' => 'hi there'),
+			OAuthUtil::split_header('OAuth realm="",oauth_foo=hi+there,foo=bar,baz="bla,rgh"')
+		);
+		
+	}
+
+	public function testGetHeaders() {
+		if (function_exists('apache_request_headers')) {
+			$this->markTestSkipped('We assume the apache module is well tested. Since this module is present, no need testing our suplement');
+		}
+		
+		$_SERVER['HTTP_HOST'] = 'foo';
+		$_SERVER['HTTP_X_WHATEVER'] = 'bar';
+		$this->assertEquals( array('Host'=>'foo', 'X-Whatever'=>'bar'), OAuthUtil::get_headers() );
+		
+		// Test picking up the Content-Type of POST requests running as an Apache module but not having the ARH method
+		$_SERVER['CONTENT_TYPE'] = 'application/x-www-form-urlencoded';
+		$this->assertEquals( array('Host'=>'foo', 'X-Whatever'=>'bar', 'Content-Type'=>'application/x-www-form-urlencoded'), OAuthUtil::get_headers() );
+		
+		// Test picking up the Content-Type of POST requests when using CGI
+		unset($_SERVER['CONTENT_TYPE']);
+		$this->assertEquals( array('Host'=>'foo', 'X-Whatever'=>'bar'), OAuthUtil::get_headers() );
+		$_ENV['CONTENT_TYPE'] = 'application/x-www-form-urlencoded';
+		$this->assertEquals( array('Host'=>'foo', 'X-Whatever'=>'bar', 'Content-Type'=>'application/x-www-form-urlencoded'), OAuthUtil::get_headers() );
+	}
+}

+ 60 - 0
app/plugins/keyring/includes/oauth-php/tests/common.php

@@ -0,0 +1,60 @@
+<?php
+
+require dirname(__FILE__).'/../OAuth.php';
+
+/**
+ * A simple utils class for methods needed
+ * during some of the tests
+ */
+class OAuthTestUtils {
+	private static function reset_request_vars() {
+		$_SERVER = array();
+		$_POST = array();
+		$_GET = array();	
+	}
+
+	/**
+	 * Populates $_{SERVER,GET,POST} and whatever environment-variables needed to test everything..
+	 *
+	 * @param string $method GET or POST
+	 * @param string $uri What URI is the request to (eg http://example.com/foo?bar=baz)
+	 * @param string $post_data What should the post-data be
+	 * @param string $auth_header What to set the Authorization header to
+	 */
+	public static function build_request( $method, $uri, $post_data = '', $auth_header = '' ) {
+		self::reset_request_vars();
+
+		$method = strtoupper($method);
+
+		$parts = parse_url($uri);
+
+		$scheme = $parts['scheme'];
+		$port   = isset( $parts['port'] ) && $parts['port'] ? $parts['port'] : ( $scheme === 'https' ? '443' : '80' );
+		$host   = $parts['host'];
+		$path   = isset( $parts['path'] )  ? $parts['path']  : NULL;
+		$query  = isset( $parts['query'] ) ? $parts['query'] : NULL;
+
+		if( $scheme == 'https') {
+			$_SERVER['HTTPS'] = 'on';
+		}
+
+		$_SERVER['REQUEST_METHOD'] = $method;
+		$_SERVER['HTTP_HOST'] = $host;
+		$_SERVER['SERVER_NAME'] = $host;
+		$_SERVER['SERVER_PORT'] = $port;
+		$_SERVER['SCRIPT_NAME'] = $path;
+		$_SERVER['REQUEST_URI'] = $path . '?' . $query;
+		$_SERVER['QUERY_STRING'] = $query.'';
+		parse_str($query, $_GET);
+
+		if( $method == 'POST' ) {
+			$_SERVER['HTTP_CONTENT_TYPE'] = 'application/x-www-form-urlencoded';
+			$_POST = parse_str($post_data);
+			OAuthRequest::$POST_INPUT = 'data:application/x-www-form-urlencoded,'.$post_data;
+		}	
+			
+		if( $auth_header != '' ) {
+			$_SERVER['HTTP_AUTHORIZATION'] = $auth_header;
+		}
+	}
+}

+ 218 - 0
app/plugins/keyring/includes/services/core/http-basic.php

@@ -0,0 +1,218 @@
+<?php
+
+/**
+ * A simple Service definition for services that just use HTTP Basic for
+ * authentication. You will need to extend this and supply a verify endpoint
+ * which is where the user/pass will be tested against (for a 401 response).
+ *
+ * @package Keyring
+ */
+class Keyring_Service_HTTP_Basic extends Keyring_Service {
+	protected $username      = null;
+	protected $password      = null;
+	protected $verify_url    = null;
+	protected $verify_method = null;
+	protected $token         = null;
+
+	function __construct() {
+		parent::__construct();
+
+		if ( ! KEYRING__HEADLESS_MODE )
+			add_action( 'keyring_' . $this->get_name() . '_request_ui', array( $this, 'request_ui' ) );
+	}
+
+	function get_display( Keyring_Access_Token $token ) {
+		$meta = $token->get_meta();
+		return $meta['username'];
+	}
+
+	function request_ui() {
+		// Common Header
+		echo '<div class="wrap">';
+		screen_icon( 'ms-admin' );
+		echo '<h2>' . __( 'Account Details', 'keyring' ) . '</h2>';
+
+		// Handle errors
+		if ( isset( $_GET['error'] ) ) {
+			echo '<div id="keyring-admin-errors" class="updated"><ul>';
+			switch ( $_GET['error'] ) {
+			case '401':
+				echo '<li>' . __( 'Your account details could not be confirmed, please try again.', 'keyring' ) . '</li>';
+				break;
+			case 'empty':
+				echo '<li>' . __( 'Please make sure you enter a username and password.', 'keyring' ) . '</li>';
+				break;
+			}
+			echo '</ul></div>';
+		}
+
+		// Even though it doesn't make too much sense, we support request tokens in HTTP Basic
+		// to ensure consistency with other services
+		$request_token = new Keyring_Request_Token(
+			$this->get_name(),
+			array(),
+			apply_filters(
+				'keyring_request_token_meta',
+				array(
+					'for' => isset( $_REQUEST['for'] ) ? (string) $_REQUEST['for'] : false
+				),
+				$this->get_name(),
+				array() // no token
+			)
+		);
+		$request_token     = apply_filters( 'keyring_request_token', $request_token, $this );
+		$request_token_id  = $this->store_token( $request_token );
+		Keyring_Util::debug( 'HTTP Basic Stored Request token ' . $request_token_id );
+
+		echo apply_filters( 'keyring_' . $this->get_name() . '_request_ui_intro', '' );
+
+		// Output basic form for collecting user/pass
+		echo '<p>' . sprintf( __( 'Enter your username and password for accessing <strong>%s</strong>:', 'keyring' ), $this->get_label() ) . '</p>';
+		echo '<form method="post" action="">';
+		echo '<input type="hidden" name="service" value="' . esc_attr( $this->get_name() ) . '" />';
+		echo '<input type="hidden" name="action" value="verify" />';
+		echo '<input type="hidden" name="state" value="' . esc_attr( $request_token_id ) . '" />';
+		wp_nonce_field( 'keyring-verify', 'kr_nonce', false );
+		wp_nonce_field( 'keyring-verify-' . $this->get_name(), 'nonce', false );
+		echo '<table class="form-table">';
+		echo '<tr><th scope="row">' . __( 'Username', 'keyring' ) . '</th>';
+		echo '<td><input type="text" name="username" value="" id="username" class="regular-text"></td></tr>';
+		echo '<tr><th scope="row">' . __( 'Password', 'keyring' ) . '</th>';
+		echo '<td><input type="password" name="password" value="" id="password" class="regular-text"></td></tr>';
+		echo '</table>';
+		echo '<p class="submitbox">';
+		echo '<input type="submit" name="submit" value="' . __( 'Verify Details', 'keyring' ) . '" id="submit" class="button-primary">';
+		echo '<a href="' . esc_url( $_SERVER['HTTP_REFERER'] ) . '" class="submitdelete" style="margin-left:2em;">' . __( 'Cancel', 'keyring' ) . '</a>';
+		echo '</p>';
+		echo '</form>';
+		echo '</div>';
+		?><script type="text/javascript" charset="utf-8">
+			jQuery( document ).ready( function() {
+				jQuery( '#username' ).focus();
+			} );
+		</script><?php
+	}
+
+	function request_token() {
+		return;
+	}
+
+	function verify_token() {
+		if ( !isset( $_REQUEST['nonce'] ) || !wp_verify_nonce( $_REQUEST['nonce'], 'keyring-verify-' . $this->get_name() ) ) {
+			Keyring::error( __( 'Invalid/missing verification nonce.', 'keyring' ) );
+			exit;
+		}
+
+		// Load up the request token that got us here and globalize it
+		if ( $_REQUEST['state'] ) {
+			global $keyring_request_token;
+			$state = (int) $_REQUEST['state'];
+			$keyring_request_token = $this->store->get_token( array( 'id' => $state, 'type' => 'request' ) );
+			Keyring_Util::debug( 'HTTP Basic Loaded Request Token ' . $_REQUEST['state'] );
+			Keyring_Util::debug( $keyring_request_token );
+
+			// Remove request token, don't need it any more.
+			$this->store->delete( array( 'id' => $state, 'type' => 'request' ) );
+		}
+
+		if ( !strlen( $_POST['username'] ) ) {
+			$url = Keyring_Util::admin_url(
+				$this->get_name(),
+				array(
+					'action' => 'request',
+					'error' => 'empty',
+					'kr_nonce' => wp_create_nonce( 'keyring-request' )
+				)
+			);
+			Keyring_Util::debug( $url );
+			wp_safe_redirect( $url );
+			exit;
+		}
+
+		// HTTP Basic does not use Keyring_Request_Tokens, since there's only one step
+
+		$token = new Keyring_Access_Token(
+			$this->get_name(),
+			base64_encode( $_POST['username'] . ':' . $_POST['password'] )
+		);
+		$this->set_token( $token );
+		$res = $this->request( $this->verify_url, array( 'method' => $this->verify_method ) );
+
+		// We will get a 401 if they entered an incorrect user/pass combo. ::request
+		// will then return a Keyring_Error
+		if ( Keyring_Util::is_error( $res ) ) {
+			$url = Keyring_Util::admin_url(
+				$this->get_name(),
+				array(
+					'action' => 'request',
+					'error' => '401',
+					'kr_nonce' => wp_create_nonce( 'keyring-request' )
+				)
+			);
+			Keyring_Util::debug( $url );
+			wp_safe_redirect( $url );
+			exit;
+		}
+
+		$meta = array_merge( array( 'username' => $_POST['username'] ), $this->build_token_meta( $token ) );
+
+		$access_token = new Keyring_Access_Token(
+			$this->get_name(),
+			$token,
+			$meta
+		);
+		$access_token = apply_filters( 'keyring_access_token', $access_token, array() );
+
+		// If we didn't get a 401, then we'll assume it's OK
+		$id = $this->store_token( $access_token );
+		$this->verified( $id, $keyring_request_token );
+	}
+
+	function request( $url, array $params = array() ) {
+		if ( $this->requires_token() && empty( $this->token ) )
+			return new Keyring_Error( 'keyring-request-error', __( 'No token' ) );
+
+		if ( $this->requires_token() )
+			$params['headers'] = array( 'Authorization' => 'Basic ' . $this->token );
+
+		$method = 'GET';
+		if ( isset( $params['method'] ) ) {
+			$method = strtoupper( $params['method'] );
+			unset( $params['method'] );
+		}
+
+		$raw_response = false;
+		if ( isset( $params['raw_response'] ) ) {
+			$raw_response = (bool) $params['raw_response'];
+			unset( $params['raw_response'] );
+		}
+
+		Keyring_Util::debug( "HTTP Basic $method $url" );
+		Keyring_Util::debug( $params );
+
+		switch ( strtoupper( $method ) ) {
+		case 'GET':
+			$res = wp_remote_get( $url, $params );
+			break;
+
+		case 'POST':
+			$res = wp_remote_post( $url, $params );
+			break;
+
+		default:
+			Keyring::error( __( 'Unsupported method specified for verify_token.', 'keyring' ) );
+			exit;
+		}
+
+		Keyring_Util::debug( $res );
+		$this->set_request_response_code( wp_remote_retrieve_response_code( $res ) );
+		if ( 200 == wp_remote_retrieve_response_code( $res ) || 201 == wp_remote_retrieve_response_code( $res ) ) {
+			if ( $raw_response )
+				return wp_remote_retrieve_body( $res );
+			else
+				return $this->parse_response( wp_remote_retrieve_body( $res ) );
+		} else {
+			return new Keyring_Error( 'keyring-request-error', $res );
+		}
+	}
+}

+ 393 - 0
app/plugins/keyring/includes/services/core/oauth1.php

@@ -0,0 +1,393 @@
+<?php
+
+/**
+ * Spec OAuth1 implementation for services using OAuth for authentication.
+ * You will want to define request, access and authorize endpoints. Keyring
+ * will walk the user through the OAuth dance. Once an access token is
+ * obtained, it's considered verified. You may still want to do an additional
+ * request to get some details or verify something specific. To do that, hook
+ * something to 'keyring_SERVICE_post_verification' (see Keyring_Service::verified())
+ *
+ * @package Keyring
+ */
+class Keyring_Service_OAuth1 extends Keyring_Service {
+	protected $request_token_url    = ''; // @see ::set_endpoint()
+	protected $request_token_method = 'GET';
+	protected $access_token_url     = '';
+	protected $access_token_method  = 'GET';
+	protected $authorize_url        = '';
+	protected $authorize_method     = 'GET';
+
+	protected $consumer             = null;
+	protected $signature_method     = null;
+	protected $callback_url         = null;
+
+	var $app_id                     = null;
+	var $key                        = null;
+	var $secret                     = null;
+	var $token                      = null;
+	var $authorization_header       = false;
+	var $authorization_realm        = '';
+
+	function __construct() {
+		parent::__construct();
+
+		// Nonces for the callback URL, which is used during the verify step
+		$kr_nonce = wp_create_nonce( 'keyring-verify' );
+		$nonce = wp_create_nonce( 'keyring-verify-' . $this->get_name() );
+		$this->callback_url = Keyring_Util::admin_url( $this->get_name(), array( 'action' => 'verify', 'kr_nonce' => $kr_nonce, 'nonce' => $nonce ) );
+
+		if ( !class_exists( 'OAuthRequest' ) )
+			require dirname( dirname( dirname( __FILE__ ) ) ) . '/oauth-php/OAuth.php';
+	}
+
+	/**
+	 * OAuth services always require a key and a secret
+	 */
+	function is_configured() {
+		$creds = $this->get_credentials();
+		return !empty( $creds['key'] ) && !empty( $creds['secret'] );
+	}
+
+	function request_token() {
+		Keyring_Util::debug( 'Keyring_Service_OAuth1::request_token()' );
+		if ( !isset( $_REQUEST['nonce'] ) || !wp_verify_nonce( $_REQUEST['nonce'], 'keyring-request-' . $this->get_name() ) ) {
+			Keyring::error( __( 'Invalid/missing request nonce.', 'keyring' ) );
+			exit;
+		}
+
+		// Need to create a request token now, so that we have a state to pass
+		$request_token = new Keyring_Request_Token(
+			$this->get_name(),
+			array(),
+			apply_filters(
+				'keyring_request_token_meta',
+				array(
+					'for'     => isset( $_REQUEST['for'] ) ? (string) $_REQUEST['for'] : false,
+					'type'    => 'request',
+					'user_id' => get_current_user_id(),
+					'blog_id' => get_current_blog_id(),
+				),
+				$this->get_name(),
+				array(), // no token
+				$this
+			)
+		);
+		$request_token     = apply_filters( 'keyring_request_token', $request_token, $this );
+		$request_token_id  = $this->store_token( $request_token );
+		Keyring_Util::debug( 'OAuth1 Stored Request token ' . $request_token_id );
+		$request_token_url = add_query_arg(
+			'oauth_callback',
+			urlencode(
+				add_query_arg(
+					'state',
+					$request_token_id,
+					$this->callback_url
+				)
+			),
+			$this->request_token_url
+		);
+
+		// Set up OAuth request
+		$req = OAuthRequest::from_consumer_and_token(
+			$this->consumer,
+			null,
+			$this->request_token_method,
+			$request_token_url,
+			null
+		);
+		$req->sign_request(
+			$this->signature_method,
+			$this->consumer,
+			null
+		);
+
+		$query = '';
+		$parsed = parse_url( (string) $req );
+		if ( !empty( $parsed['query'] ) && 'POST' == strtoupper( $this->request_token_method ) ) {
+			$request_token_url = str_replace( '?' . $parsed['query'], '', (string) $req );
+			$query = $parsed['query'];
+		} else {
+			$request_token_url = (string) $req;
+		}
+
+		// Go and get a request token
+		switch ( strtoupper( $this->request_token_method ) ) {
+		case 'GET':
+			Keyring_Util::debug( "OAuth1 GET Request Token URL: $request_token_url" );
+			$res = wp_remote_get( $request_token_url );
+			break;
+
+		case 'POST':
+			Keyring_Util::debug( "OAuth1 POST Request Token URL: $request_token_url" );
+			Keyring_Util::debug( $query );
+			$res = wp_remote_post( $request_token_url, array( 'body' => $query, 'sslverify' => false ) );
+			break;
+
+		default:
+			Keyring::error( __( 'Unsupported method specified for request_token.', 'keyring' ) );
+			exit;
+		}
+
+		Keyring_Util::debug( 'OAuth1 Response' );
+		Keyring_Util::debug( $res );
+
+		if ( 200 == wp_remote_retrieve_response_code( $res ) ) {
+			// Get the values returned from the remote service
+			$token = wp_remote_retrieve_body( $res );
+			parse_str( trim( $token ), $token );
+			Keyring_Util::debug( 'OAuth1 Token Response' );
+			Keyring_Util::debug( $token );
+
+			$meta = array(
+				'_classname' => get_called_class(), // Must include this for re-hydration, since we're using manual update()
+				'user_id'    => get_current_user_id(),
+				'blog_id'    => get_current_blog_id(),
+			);
+
+			// Use the ?for param to mark a connection as being for a specific plugin/feature
+			if ( isset( $_REQUEST['for'] ) ) {
+				$meta['for'] = (string) esc_attr( $_REQUEST['for'] );
+			}
+
+			$request_token = new Keyring_Request_Token(
+				$this->get_name(),
+				$token,
+				apply_filters(
+					'keyring_request_token_meta',
+					$meta,
+					$this->get_name(),
+					$token,
+					$this
+				),
+				$request_token_id // Overwrite the previous one
+			);
+			$request_token = apply_filters( 'keyring_request_token', $request_token, $this );
+			$this->store->update( $request_token );
+		} else {
+			Keyring::error(
+				sprintf( __( 'There was a problem connecting to %s to create an authorized connection. Please try again in a moment.', 'keyring' ), $this->get_label() )
+			);
+			return false;
+		}
+
+		// Redirect user to authorize access
+		$authorize = add_query_arg( 'oauth_token', urlencode( $token['oauth_token'] ), $this->authorize_url ) ;
+		if ( $this->callback_url ) {
+			// Add reference to our request token to the callback. Use "state" a la OAuth2 for consistency
+			$authorize = add_query_arg(
+				'oauth_callback',
+				urlencode(
+					add_query_arg(
+						'state',
+						$request_token_id,
+						$this->callback_url
+					)
+				),
+				$authorize
+			);
+		}
+
+		Keyring_Util::debug( "OAuth Authorize Redirect: $authorize", KEYRING__DEBUG_NOTICE );
+		wp_redirect( $authorize );
+		exit;
+	}
+
+	function verify_token() {
+		Keyring_Util::debug( 'Keyring_Service_OAuth1::verify_token()' );
+		if ( !isset( $_REQUEST['nonce'] ) || !wp_verify_nonce( $_REQUEST['nonce'], 'keyring-verify-' . $this->get_name() ) ) {
+			Keyring::error( __( 'Invalid/missing verification nonce.', 'keyring' ) );
+			exit;
+		}
+
+		// Load up the request token that got us here and globalize it
+		if ( isset( $_GET['state'] ) ) {
+			global $keyring_request_token;
+			$state = (int) $_GET['state'];
+			$keyring_request_token = $this->store->get_token( array( 'id' => $state, 'type' => 'request' ) );
+			Keyring_Util::debug( 'OAuth1 Loaded Request Token ' . $_GET['state'] );
+			Keyring_Util::debug( $keyring_request_token );
+
+			$secret = $keyring_request_token->token['oauth_token_secret'];
+
+			// Remove request token, don't need it any more.
+			$this->store->delete( array( 'id' => $state, 'type' => 'request' ) );
+		}
+
+		// Get an access token, using the temporary token passed back
+		$token = isset( $_GET['oauth_token'] ) ? $_GET['oauth_token'] : false;
+
+		$access_token_url = $this->access_token_url;
+		if ( !empty( $_GET['oauth_verifier'] ) )
+			$access_token_url = add_query_arg( array( 'oauth_verifier' => urlencode( $_GET['oauth_verifier'] ) ), $access_token_url );
+
+		// Set up a consumer token and make the request for an access_token
+		$token = new OAuthConsumer( $token, $secret );
+		$this->set_token( new Keyring_Access_Token( $this->get_name(), $token, array() ) );
+		$res = $this->request( $access_token_url, array( 'method' => $this->access_token_method, 'raw_response' => true ) );
+		Keyring_Util::debug( 'OAuth1 Access Token Response' );
+		Keyring_Util::debug( $res );
+
+		if ( !Keyring_Util::is_error( $res ) ) {
+			$token = $this->parse_access_token( $res );
+
+			$access_token = new Keyring_Access_Token(
+				$this->get_name(),
+				new OAuthToken(
+					$token['oauth_token'],
+					$token['oauth_token_secret']
+				),
+				$this->build_token_meta( $token )
+			);
+			$access_token = apply_filters( 'keyring_access_token', $access_token, $token );
+
+			Keyring_Util::debug( 'OAuth1 Access Token for storage' );
+			Keyring_Util::debug( $access_token );
+			$id = $this->store_token( $access_token );
+			$this->verified( $id, $keyring_request_token );
+			exit;
+		} else {
+			Keyring::error(
+				sprintf( __( 'There was a problem connecting to %s to create an authorized connection. Please try again in a moment.', 'keyring' ), $this->get_label() )
+			);
+			return false;
+		}
+	}
+
+	function request( $url, array $params = array() ) {
+		if ( $this->requires_token() && empty( $this->token ) )
+			return new Keyring_Error( 'keyring-request-error', __( 'No token', 'keyring' ) );
+
+		$raw_response = false;
+		if ( isset( $params['raw_response'] ) ) {
+			$raw_response = (bool) $params['raw_response'];
+			unset( $params['raw_response'] );
+		}
+
+		$method = 'GET';
+		if ( isset( $params['method'] ) ) {
+			$method = strtoupper( $params['method'] );
+			unset( $params['method'] );
+		}
+
+		$sign_parameters = true;
+		if ( isset( $params['sign_parameters'] ) ) {
+			$sign_parameters = (bool) $params['sign_parameters'];
+			unset( $params['sign_parameters'] );
+		}
+
+		// Should be an OAuthToken object
+		$token = $this->token->token ? $this->token->token : null;
+		Keyring_Util::debug( $token );
+
+		$sign_vars = false;
+		if ( isset( $params['body'] ) && $sign_parameters ) {
+			if ( is_string( $params['body'] ) ) {
+				wp_parse_str( $params['body'], $sign_vars );
+			} else if ( is_array( $params['body'] ) ) {
+				$sign_vars = $params['body'];
+			}
+		}
+
+		$req = OAuthRequest::from_consumer_and_token(
+			$this->consumer,
+			$token,
+			$method,
+			$url,
+			$sign_vars
+		);
+		$req->sign_request(
+			$this->signature_method,
+			$this->consumer,
+			$token
+		);
+		$request_url = (string) $req;
+
+		if ( $this->token && $this->authorization_header ) {
+			$header = $req->to_header( $this->authorization_realm ); // Gives a complete header string, not just the second half
+			$bits = explode( ': ', $header, 2 );
+			$params['headers']['Authorization'] = $bits[1];
+
+			// This hack was introduced for Instapaper (http://stackoverflow.com/a/9645033/1507683), which is overly strict on
+			// header formatting, but it doesn't seem to cause problems anywhere else.
+			$params['headers']['Authorization'] = str_replace( '",', '", ', $params['headers']['Authorization'] );
+
+			Keyring_Util::debug( 'OAuth1 Authorization Header' );
+			Keyring_Util::debug( $params['headers']['Authorization'] );
+
+			// oauth_verifier was probably added directly to the URL, need to manually remove it
+			$request_url = remove_query_arg( 'oauth_verifier', $url );
+		}
+
+		$query = '';
+		$parsed = parse_url( $request_url );
+		if ( !empty( $parsed['query'] ) && 'POST' == $method ) {
+			$request_url = str_replace( '?' . $parsed['query'], '', $request_url );
+			$query = $parsed['query'];
+		}
+
+		Keyring_Util::debug( "OAuth1 Request URL: $request_url" );
+		switch ( $method ) {
+		case 'GET':
+			Keyring_Util::debug( 'OAuth1 GET ' . $request_url );
+			$res = wp_remote_get( $request_url, $params );
+			break;
+
+		case 'POST':
+			$params = array_merge( array( 'body' => $query, 'sslverify' => false ), $params );
+			Keyring_Util::debug( 'OAuth1 POST ' . $request_url );
+			Keyring_Util::debug( $params );
+			$res = wp_remote_post( $request_url, $params );
+			break;
+
+		case 'PUT':
+			$params = array_merge( array( 'method' => 'PUT' ), $params );
+			$res = wp_remote_request( $request_url, $params );
+			break;
+
+		default:
+			Keyring::error( __( 'Unsupported method specified.', 'keyring' ) );
+			exit;
+		}
+
+		Keyring_Util::debug( $res );
+		$this->set_request_response_code( wp_remote_retrieve_response_code( $res ) );
+		if ( 200 == wp_remote_retrieve_response_code( $res ) || 201 == wp_remote_retrieve_response_code( $res ) ) {
+			if ( $raw_response )
+				return wp_remote_retrieve_body( $res );
+			else
+				return $this->parse_response( wp_remote_retrieve_body( $res ) );
+		} else {
+			return new Keyring_Error( 'keyring-request-error', $res );
+		}
+	}
+
+	function get_display( Keyring_Access_Token $token ) {
+		return (string) $token->token->key;
+	}
+
+	/**
+	 * OAuth1 always returns access tokens in querystring format,
+	 * but we provide an extendable method here just in case, and to
+	 * remain consistent with OAuth2.
+	 */
+	function parse_access_token( $token ) {
+		parse_str( $token, $token );
+		return $token;
+	}
+
+	/**
+	 * This method is provided as a base point for parsing/decoding response
+	 * values provided by ->request(). Different services encode their responses
+	 * differently, but this provides a standardized place to handle that. You
+	 * may use JSON, XML, parse_str or some other, completely unique method here
+	 * to provide more workable data structures based on the responses from a
+	 * Service's API. The default just returns the string.
+	 *
+	 * @param string $response
+	 * @return Mixed data that is easier to work with, based on each Service
+	 */
+	function parse_response( $response ) {
+		return $response;
+	}
+}

+ 238 - 0
app/plugins/keyring/includes/services/core/oauth2.php

@@ -0,0 +1,238 @@
+<?php
+
+/**
+ * Spec OAuth2 implementation for services using OAuth for authentication.
+ * You will want to define an authorize and access_token endpoint. Keyring
+ * will walk the user through the OAuth dance. Once an access token is
+ * obtained, it's considered verified. You may still want to do an additional
+ * request to get some details or verify something specific. To do that, hook
+ * something to 'keyring_SERVICE_post_verification' (see Keyring_Service::verified())
+ *
+ * @package Keyring
+ */
+class Keyring_Service_OAuth2 extends Keyring_Service_OAuth1 {
+	/**
+	 * Tokens should be passed in the authorization header if the service supports it
+	 * and only fallback to the query string if neccessary. Set to false to use ?oauth_token=
+	 */
+	var $authorization_header = 'OAuth';
+
+	/**
+	 * If you're not sending the authorization in the header, some services will accept
+	 * it as a querystring parameter. The spec says to send it as oauth_token, but some services
+	 * want it called something else... like 'access_token'
+	 * @var string
+	 */
+	var $authorization_parameter = 'oauth_token';
+
+	function request_token() {
+		Keyring_Util::debug( 'Keyring_Service_OAuth2::request_token()' );
+		if ( !isset( $_REQUEST['nonce'] ) || !wp_verify_nonce( $_REQUEST['nonce'], 'keyring-request-' . $this->get_name() ) ) {
+			Keyring::error( __( 'Invalid/missing request nonce.', 'keyring' ) );
+			exit;
+		}
+
+		// Need to create a request token now, so that we have a state to pass
+		$request_token = new Keyring_Request_Token(
+			$this->get_name(),
+			array(),
+			apply_filters(
+				'keyring_request_token_meta',
+				array(
+					'for' => isset( $_REQUEST['for'] ) ? (string) $_REQUEST['for'] : false
+				),
+				$this->get_name(),
+				array(), // no token
+				$this
+			)
+		);
+		$request_token     = apply_filters( 'keyring_request_token', $request_token, $this );
+		$request_token_id  = $this->store_token( $request_token );
+
+		$url = $this->authorize_url;
+		if ( !stristr( $url, '?' ) )
+			$url .= '?';
+		$params = array(
+			'response_type' => 'code',
+			'client_id'     => $this->key,
+			'redirect_uri'  => $this->callback_url,
+			'state'         => $request_token_id,
+		);
+		$params = apply_filters( 'keyring_' . $this->get_name() . '_request_token_params', $params );
+		Keyring_Util::debug( 'OAuth2 Redirect URL: ' . $url . http_build_query( $params ) );
+
+		wp_redirect( $url . http_build_query( $params ) );
+		exit;
+	}
+
+	function verify_token() {
+		Keyring_Util::debug( 'Keyring_Service_OAuth2::verify_token()' );
+		if ( !isset( $_REQUEST['nonce'] ) || !wp_verify_nonce( $_REQUEST['nonce'], 'keyring-verify-' . $this->get_name() ) ) {
+			Keyring::error( __( 'Invalid/missing verification nonce.', 'keyring' ) );
+			exit;
+		}
+
+		if ( !isset( $_GET['code'] ) || !isset( $_GET['state']) ) {
+			Keyring::error(
+				sprintf( __( 'There was a problem authorizing with %s. Please try again in a moment.', 'keyring' ), $this->get_label() )
+			);
+			return false;
+		}
+
+		// Load up the request token that got us here and globalize it
+		global $keyring_request_token;
+		$state = (int) $_GET['state'];
+		$keyring_request_token = $this->store->get_token( array( 'id' => $state, 'type' => 'request' ) );
+		Keyring_Util::debug( 'OAuth2 Loaded Request Token ' . $_GET['state'] );
+		Keyring_Util::debug( $keyring_request_token );
+
+		if ( !$keyring_request_token ) {
+			Keyring::error(
+				sprintf( __( 'Failed to load your request token while connecting to %s. Please try again in a moment.', 'keyring' ), $this->get_label() )
+			);
+			return false;
+		}
+
+		$error_debug_info = array();
+
+		if ( !empty( $keyring_request_token->meta['blog_id'] ) && !empty( $keyring_request_token->meta['user_id'] ) ) {
+			$error_debug_info = array(
+				'blog_id' => $keyring_request_token->meta['blog_id'],
+				'user_id' => $keyring_request_token->meta['user_id']
+			);
+		}
+
+		// Remove request token, don't need it any more.
+		$this->store->delete( array( 'id' => $state, 'type' => 'request' ) );
+
+		$url = $this->access_token_url;
+		if ( !stristr( $url, '?' ) )
+			$url .= '?';
+		$params = array(
+			'client_id'     => $this->key,
+			'client_secret' => $this->secret,
+			'grant_type'    => 'authorization_code',
+			'redirect_uri'  => $this->callback_url,
+			'code'          => $_GET['code'],
+		);
+		$params = apply_filters( 'keyring_' . $this->get_name() . '_verify_token_params', $params );
+		Keyring_Util::debug( 'OAuth2 Access Token URL: ' . $url . http_build_query( $params ) );
+		switch ( strtoupper( $this->access_token_method ) ) {
+		case 'GET':
+			$res = wp_remote_get( $url . http_build_query( $params ) );
+			break;
+		case 'POST':
+			$res = wp_remote_post( $url, array( 'body' => $params ) );
+			break;
+		}
+		Keyring_Util::debug( 'OAuth2 Response' );
+		Keyring_Util::debug( $res );
+
+		if ( 200 == wp_remote_retrieve_response_code( $res ) ) {
+			$token = wp_remote_retrieve_body( $res );
+			Keyring_Util::debug( $token );
+
+			$token = $this->parse_access_token( $token );
+
+			$access_token = new Keyring_Access_Token(
+				$this->get_name(),
+				$token['access_token'],
+				$this->build_token_meta( $token )
+			);
+			$access_token = apply_filters( 'keyring_access_token', $access_token, $token );
+
+			Keyring_Util::debug( 'OAuth2 Access Token for storage' );
+			Keyring_Util::debug( $access_token );
+			$id = $this->store_token( $access_token );
+			$this->verified( $id, $keyring_request_token );
+			exit;
+		}
+		Keyring::error(
+			sprintf( __( 'There was a problem authorizing with %s. Please try again in a moment.', 'keyring' ), $this->get_label() ),
+			$error_debug_info
+		);
+		return false;
+	}
+
+	/**
+	 * The OAuth2 spec indicates that responses should be in JSON, but separating
+	 * this allows different services to potentially use querystring-encoded
+	 * responses or something else, and just define this method within themselves
+	 * to handle decoding the access_token response.
+	 *
+	 * @param string $token The response from the access_token request
+	 * @return Array containing key/value pairs from the token response
+	 */
+	function parse_access_token( $token ) {
+		return (array) json_decode( $token );
+	}
+
+	function request( $url, array $params = array() ) {
+		Keyring_Util::debug( $url );
+
+		if ( $this->requires_token() && empty( $this->token ) )
+			return new Keyring_Error( 'keyring-request-error', __( 'No token' ) );
+
+		$token = $this->token ? $this->token : null;
+
+		if ( !is_null( $token ) ) {
+			if ( $this->authorization_header ) {
+				// type can be OAuth, Bearer, ...
+				$params['headers']['Authorization'] = $this->authorization_header . ' ' . (string) $token;
+			} else {
+				$url = add_query_arg( array( $this->authorization_parameter => urlencode( (string) $token ) ), $url );
+			}
+		}
+
+		$raw_response = false;
+		if ( isset( $params['raw_response'] ) ) {
+			$raw_response = (bool) $params['raw_response'];
+			unset( $params['raw_response'] );
+		}
+
+		$method = 'GET';
+		if ( isset( $params['method'] ) ) {
+			$method = strtoupper( $params['method'] );
+			unset( $params['method'] );
+		}
+
+		Keyring_Util::debug( 'OAuth2 Params' );
+		Keyring_Util::debug( $params );
+
+		switch ( strtoupper( $method ) ) {
+		case 'GET':
+			$res = wp_remote_get( $url, $params );
+			break;
+
+		case 'POST':
+			$params = array_merge( array( 'sslverify' => false ), $params );
+			$res = wp_remote_post( $url, $params );
+			break;
+
+		default:
+			$params = array_merge( array( 'method' => $method, 'sslverify' => false ), $params );
+			$res = wp_remote_request( $url, $params );
+			break;
+		}
+
+		Keyring_Util::debug( 'OAuth2 Response' );
+		Keyring_Util::debug( $res );
+
+		$this->set_request_response_code( wp_remote_retrieve_response_code( $res ) );
+		if ( 200 == wp_remote_retrieve_response_code( $res ) || 201 == wp_remote_retrieve_response_code( $res ) )
+			if ( $raw_response )
+				return wp_remote_retrieve_body( $res );
+			else
+				return $this->parse_response( wp_remote_retrieve_body( $res ) );
+		else
+			return new Keyring_Error( 'keyring-request-error', $res );
+	}
+
+	/**
+	 * OAuth2 implementations generally use JSON. You can still override this
+	 * per service if you like, but by default we'll assume JSON.
+	 */
+	function parse_response( $response ) {
+		return json_decode( $response );
+	}
+}

+ 26 - 0
app/plugins/keyring/includes/services/extended/delicious.php

@@ -0,0 +1,26 @@
+<?php
+
+class Keyring_Service_Delicious extends Keyring_Service_HTTP_Basic {
+	const NAME  = 'delicious';
+	const LABEL = 'delicious.com';
+
+	function __construct() {
+		parent::__construct();
+		$this->set_endpoint( 'verify', 'https://api.del.icio.us/v1/posts/update', 'GET' );
+		$this->requires_token( true );
+	}
+
+	function _get_credentials() {
+		return false;
+	}
+
+	function parse_response( $data ) {
+		return simplexml_load_string( $data );
+	}
+
+	function get_display( Keyring_Access_Token $token ) {
+		return $token->get_meta( 'username' );
+	}
+}
+
+add_action( 'keyring_load_services', array( 'Keyring_Service_Delicious', 'init' ) );

+ 100 - 0
app/plugins/keyring/includes/services/extended/example.php

@@ -0,0 +1,100 @@
+<?php
+/**
+ * This Service is provided as an example only. It doesn't do anything useful :)
+ */
+
+// Always extend Keyring_Service, or something else which extends it (e.g. Keyring_Service_OAuth1)
+class Keyring_Service_Example extends Keyring_Service {
+	const NAME = 'example';
+	const LABEL = 'Example Service';
+
+	function __construct() {
+		// If you need a custom __construct(), make sure to call the parent explicitly like this
+		parent::__construct();
+
+		// Optionally register methods (of this object) to handle the UI for different actions
+		// action is in the format "keyring_{$service}_{request/verify}_ui".
+		// These are optional, and are only required if you need the user to see/do something during
+		// each step.
+		add_action( 'keyring_example_request_ui', array( $this, 'request_ui' ) );
+		add_action( 'keyring_example_verify_ui', array( $this, 'verify_ui' ) );
+
+		// Enable "basic" UI for entering key/secret, which a lot of services require
+		// add_action( 'keyring_example_manage_ui', array( $this, 'basic_ui' ) );
+
+		// Optionally make this a service that we can communicate with *without*
+		// requiring any sort of connection
+		$this->requires_token( false );
+	}
+
+	/**
+	 * Allows you to do things before any output has been sent to the browser.
+	 * This means you can redirect to a remote site, another page etc if need be.
+	 */
+	function request_token() {
+		// Nothing to do in this example
+	}
+
+	/**
+	 * You can define how a token presents itself to the user here. For example for Twitter,
+	 * we might show "@" . $screen_name.
+	 *
+	 * @param Keyring_Access_Token $token
+	 * @return String for use in UIs etc that helps identify this specific token
+	 */
+	function get_display( Keyring_Access_Token $token ) {
+		return $token->token;
+	}
+
+	/**
+	 * See __construct() for details on how this is hooked in to handle the UI for
+	 * during the request process.
+	 */
+	function request_ui() {
+		Keyring::admin_page_header(); // Generic header which can be used (includes h2 header)
+		echo '<p>This is just an example of how you could display some sort of custom UI if you needed to.</p>';
+		echo '<p>Clicking the button below will generate a random token and store it as an example.</p>';
+		echo '<p class="submitbox">';
+		echo '<a href="' . esc_url( Keyring_Util::admin_url( 'example', array( 'action' => 'verify' ) ) ) . '" class="button-primary">' . __( 'Continue', 'keyring' ) . '</a>';
+		echo '<a href="' . esc_attr( $_SERVER['HTTP_REFERER'] ) . '" class="submitdelete" style="margin-left:2em;">Abort</a>';
+		echo '</p>';
+		Keyring::admin_page_footer();
+	}
+
+	/**
+	 * Allows you to do things before any output has been sent to the browser.
+	 * This means you can redirect to a remote site, another page etc if need be.
+	 */
+	function verify_token() {
+		// Generate a fake token and store it for this example
+		$token = sha1( time() . mt_rand( 0, 1000 ) . time() );
+		$meta = array( 'time' => time(), 'user' => get_current_user() );
+		$this->store_token( $token, $meta );
+	}
+
+	/**
+	 * This method will be used to make requests against this service. This is where
+	 * you should handle injecting tokens/headers/etc required for authentication.
+	 *
+	 * @param string $url
+	 * @param array $params additional parameters/headers for the request. Passed to WP_Http
+	 * @return Response body as a string, or a Keyring_Error with the full WP_Http response object as the "message"
+	 */
+	function request( $url, array $params = array() ) {
+		// empty
+	}
+
+	/**
+	 * See __construct() for details on how this is hooked in to handle the UI for
+	 * during the verify process.
+	 */
+	function verify_ui() {
+		Keyring::admin_page_header();
+		echo '<p>As an example, we just randomly generated a token and saved it in the token store. When you go back to your Connections listing, you should see it listed there under "Example Service".</p>';
+		echo '<p><a href="' . esc_url( Keyring_Util::admin_url() ) . '" class="button-primary">' . __( 'Done', 'keyring' ) . '</a>';
+		Keyring::admin_page_footer();
+	}
+}
+
+// Always hook into keyring_load_services and use your init method to initiate a Service properly (singleton)
+add_action( 'keyring_load_services', array( 'Keyring_Service_Example', 'init' ) );

+ 136 - 0
app/plugins/keyring/includes/services/extended/facebook.php

@@ -0,0 +1,136 @@
+<?php
+
+/**
+ * Facebook service definition for Keyring. Clean implementation of OAuth2
+ */
+
+class Keyring_Service_Facebook extends Keyring_Service_OAuth2 {
+	const NAME  = 'facebook';
+	const LABEL = 'Facebook';
+
+	function __construct() {
+		parent::__construct();
+
+		// Enable "basic" UI for entering key/secret
+		if ( ! KEYRING__HEADLESS_MODE ) {
+			add_action( 'keyring_facebook_manage_ui', array( $this, 'basic_ui' ) );
+			add_filter( 'keyring_facebook_basic_ui_intro', array( $this, 'basic_ui_intro' ) );
+		}
+
+		$this->set_endpoint( 'authorize',     'https://www.facebook.com/dialog/oauth',        'GET' );
+		$this->set_endpoint( 'access_token', 'https://graph.facebook.com/oauth/access_token', 'GET' );
+		$this->set_endpoint( 'self',         'https://graph.facebook.com/me',                 'GET' );
+
+		$creds = $this->get_credentials();
+		$this->app_id  = $creds['app_id'];
+		$this->key     = $creds['key'];
+		$this->secret  = $creds['secret'];
+
+		$kr_nonce = wp_create_nonce( 'keyring-verify' );
+		$nonce    = wp_create_nonce( 'keyring-verify-facebook' );
+		$this->redirect_uri = Keyring_Util::admin_url( self::NAME, array( 'action' => 'verify', 'kr_nonce' => $kr_nonce, 'nonce' => $nonce, ) );
+
+		$this->requires_token( true );
+
+		add_filter( 'keyring_facebook_request_token_params', array( $this, 'filter_request_token' ) );
+	}
+
+	function basic_ui_intro() {
+		echo '<p>' . __( "If you haven't already, you'll need to set up an app on Facebook:", 'keyring' ) . '</p>';
+		echo '<ol>';
+		echo '<li>' . __( "Click <strong>+ Create New App</strong> at the top-right of <a href='https://developers.facebook.com/apps'>this page</a>", 'keyring' ) . '</li>';
+		echo '<li>' . __( "Enter a name for your app (maybe the name of your website?) and click <strong>Continue</strong> (ignore the other settings)", 'keyring' ) . '</li>';
+		echo '<li>' . __( "Enter whatever is in the CAPTCHA and click <strong>Continue</strong>", 'keyring' ) . '</li>';
+		echo '<li>' . sprintf( __( "Put your domain name in the <strong>App Domains</strong> box. That value is probably <code>%s</code>", 'keyring' ), $_SERVER['HTTP_HOST'] ) . '</li>';
+		echo '<li>' . sprintf( __( "Click the <strong>Website with Facebook Login</strong> box and enter the URL to your website, which is probably <code>%s</code>", 'keyring' ), get_bloginfo( 'url' ) ) . '</li>';
+		echo '<li>' . __( "Click <strong>Save Changes</strong>", 'keyring' ) . '</li>';
+		echo '</ol>';
+		echo '<p>' . __( "Once you're done configuring your app, copy and paste your <strong>App ID</strong> and <strong>App Secret</strong> (in the top section of your app's Basic details) into the appropriate fields below. Leave the App Key field blank.", 'keyring' ) . '</p>';
+	}
+
+	function _get_credentials() {
+		if (
+			defined( 'KEYRING__FACEBOOK_ID' )
+		&&
+			defined( 'KEYRING__FACEBOOK_SECRET' )
+		) {
+			return array(
+				'app_id' => constant( 'KEYRING__FACEBOOK_ID' ),
+				'key'    => constant( 'KEYRING__FACEBOOK_ID' ),
+				'secret' => constant( 'KEYRING__FACEBOOK_SECRET' ),
+			);
+		} else {
+			$all = apply_filters( 'keyring_credentials', get_option( 'keyring_credentials' ) );
+			if ( !empty( $all['facebook'] ) ) {
+				$creds = $all['facebook'];
+				$creds['key'] = $creds['app_id'];
+				return $creds;
+			}
+
+			// Return null to allow fall-thru to checking generic constants + DB
+			return null;
+		}
+	}
+
+	function is_configured() {
+		$credentials = $this->get_credentials();
+		return !empty( $credentials['app_id'] ) && !empty( $credentials['secret'] );
+	}
+
+	/**
+	 * Add scope to the outbound URL, and allow developers to modify it
+	 * @param  array $params Core request parameters
+	 * @return Array containing originals, plus the scope parameter
+	 */
+	function filter_request_token( $params ) {
+		if ( $scope = implode( ',', apply_filters( 'keyring_facebook_scope', array() ) ) )
+			$params['scope'] = $scope;
+		return $params;
+	}
+
+	/**
+	 * Facebook decided to make things interesting and mix OAuth1 and 2. They return
+	 * their access tokens using query string encoding, so we handle that here.
+	 */
+	function parse_access_token( $token ) {
+		parse_str( $token, $token );
+		return $token;
+	}
+
+	function build_token_meta( $token ) {
+		$this->set_token(
+			new Keyring_Access_Token(
+				$this->get_name(),
+				$token['access_token'],
+				array()
+			)
+		);
+		$response = $this->request( $this->self_url, array( 'method' => $this->self_method ) );
+		if ( Keyring_Util::is_error( $response ) ) {
+			$meta = array();
+		} else {
+			$meta = array(
+				'username' => $response->username,
+				'user_id'  => $response->id,
+				'name'     => $response->name,
+				'picture'  => "https://graph.facebook.com/{$response->id}/picture?type=large",
+			);
+		}
+
+		return apply_filters( 'keyring_access_token_meta', $meta, 'facebook', $token, $response, $this );
+	}
+
+	function get_display( Keyring_Access_Token $token ) {
+		return $token->get_meta( 'name' );
+	}
+
+	function test_connection() {
+		$res = $this->request( $this->self_url, array( 'method' => $this->self_method ) );
+		if ( !Keyring_Util::is_error( $res ) )
+			return true;
+
+		return $res;
+	}
+}
+
+add_action( 'keyring_load_services', array( 'Keyring_Service_Facebook', 'init' ) );

+ 112 - 0
app/plugins/keyring/includes/services/extended/flickr.php

@@ -0,0 +1,112 @@
+<?php
+
+/**
+ * Flickr service definition for Keyring. Implementation of OAuth1a
+ */
+
+class Keyring_Service_Flickr extends Keyring_Service_OAuth1 {
+	const NAME  = 'flickr';
+	const LABEL = 'Flickr';
+
+	function __construct() {
+		parent::__construct();
+
+		// Enable "basic" UI for entering key/secret
+		if ( ! KEYRING__HEADLESS_MODE ) {
+			add_action( 'keyring_flickr_manage_ui', array( $this, 'basic_ui' ) );
+			add_filter( 'keyring_flickr_basic_ui_intro', array( $this, 'basic_ui_intro' ) );
+		}
+
+		$this->set_endpoint( 'request_token', 'http://www.flickr.com/services/oauth/request_token', 'GET' );
+		$this->set_endpoint( 'authorize',     'http://www.flickr.com/services/oauth/authorize',     'GET' );
+		$this->set_endpoint( 'access_token',  'http://www.flickr.com/services/oauth/access_token',  'GET' );
+
+		$creds = $this->get_credentials();
+		$this->app_id  = $creds['app_id'];
+		$this->key     = $creds['key'];
+		$this->secret  = $creds['secret'];
+
+		$this->consumer = new OAuthConsumer( $this->key, $this->secret, $this->callback_url );
+		$this->signature_method = new OAuthSignatureMethod_HMAC_SHA1;
+
+		$this->requires_token( true );
+	}
+
+	function basic_ui_intro() {
+		echo '<p>' . __( "To connect to Flickr, you'll need to <a href='http://www.flickr.com/services/apps/create/apply/?'>create an application at Flickr.com</a>. If this is a personal website then you can use a non-commercial key (which will be approved automatically).", 'keyring' ) . '</p>';
+		echo '<p>' . __( "Once you've created your app, enter the API <strong>Key</strong> and <strong>Secret</strong> below (App ID is not required for Flickr apps).", 'keyring' ) . '</p>';
+	}
+
+	function build_token_meta( $token ) {
+		// Need to make a request to get full information
+		$this->set_token(
+			new Keyring_Access_Token(
+				$this->get_name(),
+				new OAuthToken(
+					$token['oauth_token'],
+					$token['oauth_token_secret']
+				)
+			)
+		);
+		$url = "http://api.flickr.com/services/rest/?";
+		$params = array(
+			'method'  => 'flickr.people.getInfo',
+			'api_key' => $this->key,
+			'user_id' => $token['user_nsid'],
+		);
+		$url = $url . http_build_query( $params );
+
+		$response = $this->request( $url, array( 'method' => 'GET' ) );
+		if ( Keyring_Util::is_error( $response ) ) {
+			$meta = array();
+		} else {
+			$meta = array(
+				'user_id'  => $token['user_nsid'],
+				'username' => $token['username'],
+				'name'     => $token['fullname'],
+				'picture'  => "http://farm{$response->person->iconfarm}.staticflickr.com/{$response->person->iconserver}/buddyicons/{$token['user_nsid']}.jpg",
+			);
+		}
+
+		return apply_filters( 'keyring_access_token_meta', $meta, 'flickr', $token, $response, $this );
+	}
+
+	function get_display( Keyring_Access_Token $token ) {
+		$return = '';
+		$meta = $token->get_meta();
+		if ( !empty( $meta['name'] ) )
+			return $meta['name'];
+		else if ( !empty( $meta['username'] ) )
+			return $meta['username'];
+	}
+
+	/**
+	 * Custom request method so that we can force JSON for Flickr, which otherwise
+	 * uses XML.
+	 * @param  string $url    The URL to request
+	 * @param  array  $params Any additional parameters requried for this reqeust
+	 * @return Mixed with either a Keyring_Error, or a decoded JSON response object
+	 */
+	function request( $url, array $params = array() ) {
+		// http://www.flickr.com/services/api/response.json.html
+		$url = add_query_arg(
+			array(
+				'format'         => 'json', // Always return JSON
+				'nojsoncallback' => 1, // Don't wrap it in a callback
+			),
+			$url );
+		return parent::request( $url, $params );
+	}
+
+	/**
+	 * Since we're forcing all requests to be for JSON data, we can decode
+	 * all responses as JSON as well.
+	 * @param  string $response Full content of the response
+	 * @return JSON object representation of the response
+	 */
+	function parse_response( $response ) {
+		return json_decode( $response );
+	}
+}
+
+add_action( 'keyring_load_services', array( 'Keyring_Service_Flickr', 'init' ) );

+ 77 - 0
app/plugins/keyring/includes/services/extended/foursquare.php

@@ -0,0 +1,77 @@
+<?php
+
+/**
+ * Foursquare service definition for Keyring.
+ * https://developer.foursquare.com/docs/oauth.html
+ * https://foursquare.com/oauth/
+ */
+
+class Keyring_Service_Foursquare extends Keyring_Service_OAuth2 {
+	const NAME  = 'foursquare';
+	const LABEL = 'Foursquare';
+
+	const API_VERSION = '20120701';
+
+	function __construct() {
+		parent::__construct();
+
+		// Enable "basic" UI for entering key/secret
+		if ( ! KEYRING__HEADLESS_MODE ) {
+			add_action( 'keyring_foursquare_manage_ui', array( $this, 'basic_ui' ) );
+			add_filter( 'keyring_foursquare_basic_ui_intro', array( $this, 'basic_ui_intro' ) );
+		}
+
+		$this->set_endpoint( 'authorize',    'https://foursquare.com/oauth2/authenticate', 'GET' );
+		$this->set_endpoint( 'access_token', 'https://foursquare.com/oauth2/access_token', 'GET' );
+		$this->set_endpoint( 'self',         'https://api.foursquare.com/v2/users/self',   'GET' );
+
+		$creds = $this->get_credentials();
+		$this->app_id  = $creds['app_id'];
+		$this->key     = $creds['key'];
+		$this->secret  = $creds['secret'];
+
+		$this->consumer = new OAuthConsumer( $this->key, $this->secret, $this->callback_url );
+		$this->signature_method = new OAuthSignatureMethod_HMAC_SHA1;
+	}
+
+	function basic_ui_intro() {
+		echo '<p>' . __( "If you haven't already, you'll need to <a href='https://foursquare.com/developers/register'>create a new app at Foursquare</a>. You should only need to worry about these settings:", 'keyring' ) . '</p>';
+		echo '<ol>';
+		echo '<li>' . __( "<strong>Your app name</strong>: enter whatever you like, maybe your website's name?", 'keyring' ) . '</li>';
+		echo '<li>' . sprintf( __( "<strong>Download / welcome page url</strong>: just enter your website's URL, <code>%s</code>", 'keyring' ), get_bloginfo( 'url' ) ) . '</li>';
+		echo '<li>' . sprintf( __( "<strong>Redirect URI(s)</strong>: Copy-paste this, <code>%s</code>", 'keyring' ), Keyring_Util::admin_url( 'foursquare', array( 'action' => 'verify' ) ) ) . '</li>';
+		echo '<li>' . __( "<strong>New users can connect via the web</strong>: check the box", 'keyring' ) . '</li>';
+		echo '</ol>';
+		echo '<p>' . __( "Once you've saved those changes, copy the <strong>Client id</strong> value into the <strong>API Key</strong> field, and the <strong>Client secret</strong> value into the <strong>API Secret</strong> field and click save (you don't need an App ID value for Foursquare).", 'keyring' ) . '</p>';
+	}
+
+	function build_token_meta( $token ) {
+		$token = new Keyring_Access_Token( $this->get_name(), $token['access_token'], array() );
+		$this->set_token( $token );
+		$res = $this->request( $this->self_url, array( 'method' => $this->self_method ) );
+		if ( Keyring_Util::is_error( $res ) ) {
+			$meta = array();
+		} else {
+			$meta = array(
+				'user_id'    => $res->response->user->id,
+				'first_name' => $res->response->user->firstName,
+				'last_name'  => $res->response->user->lastName,
+				'picture'    => $res->response->user->photo->prefix . '300x300' . $res->response->user->photo->suffix,
+			);
+		}
+
+		return apply_filters( 'keyring_access_token_meta', $meta, 'foursquare', $token, $res, $this );
+	}
+
+	function get_display( Keyring_Access_Token $token ) {
+		$meta = $token->get_meta();
+		return trim( $meta['first_name'] . ' ' . $meta['last_name'] );
+	}
+
+	function request( $url, array $params = array() ) {
+		$url = add_query_arg( array( 'v' => self::API_VERSION ), $url );
+		return parent::request( $url, $params );
+	}
+}
+
+add_action( 'keyring_load_services', array( 'Keyring_Service_Foursquare', 'init' ) );

+ 212 - 0
app/plugins/keyring/includes/services/extended/google-contacts.php

@@ -0,0 +1,212 @@
+<?php
+
+/**
+ * Google (Contacts) service definition for Keyring.
+ * Contacts API: https://developers.google.com/google-apps/contacts/v3/
+ * OAuth implementation: https://developers.google.com/accounts/docs/OAuth2WebServer
+ * App registration: https://code.google.com/apis/console/
+ */
+
+class Keyring_Service_GoogleContacts extends Keyring_Service_OAuth2 {
+	const NAME        = 'google-contacts';
+	const LABEL       = 'Google Contacts';
+	const SCOPE       = 'https://www.google.com/m8/feeds https://www.googleapis.com/auth/userinfo.profile'; // See https://developers.google.com/google-apps/contacts/v3/#authorizing_requests_with_oauth_20
+	const API_VERSION = '3.0';
+
+	var $self_url     = '';
+	var $self_method  = '';
+
+	function __construct() {
+		parent::__construct();
+
+		// Enable "basic" UI for entering key/secret
+		if ( ! KEYRING__HEADLESS_MODE ) {
+			add_action( 'keyring_google-contacts_manage_ui', array( $this, 'basic_ui' ) );
+			add_filter( 'keyring_google-contacts_basic_ui_intro', array( $this, 'basic_ui_intro' ) );
+		}
+
+		// Set scope
+		add_filter( 'keyring_google-contacts_request_token_params', array( $this, 'request_token_params' ) );
+
+		// Handle Google's annoying limitation of not allowing us to redirect to a dynamic URL
+		add_action( 'pre_keyring_google-contacts_verify', array( $this, 'redirect_incoming_verify' ) );
+
+		$this->set_endpoint( 'authorize',    'https://accounts.google.com/o/oauth2/auth',     'GET'  );
+		$this->set_endpoint( 'access_token', 'https://accounts.google.com/o/oauth2/token',    'POST' );
+		$this->set_endpoint( 'self',         'https://www.googleapis.com/oauth2/v1/userinfo', 'GET'  );
+
+		$creds = $this->get_credentials();
+		$this->redirect_uri = $creds['redirect_uri'];
+		$this->key          = $creds['key'];
+		$this->secret       = $creds['secret'];
+
+		$this->consumer = new OAuthConsumer( $this->key, $this->secret, $this->callback_url );
+		$this->signature_method = new OAuthSignatureMethod_HMAC_SHA1;
+
+		$this->authorization_header    = 'Bearer'; // Oh, you
+		$this->authorization_parameter = false;
+
+		// Need to reset the callback because Google is very strict about where it sends people
+		if ( !empty( $creds['redirect_uri'] ) )
+			$this->callback_url = $creds['redirect_uri']; // Allow user to manually enter a redirect URI
+		else
+			$this->callback_url = remove_query_arg( array( 'nonce', 'kr_nonce' ), $this->callback_url ); // At least strip nonces, since you can't save them in your app config
+	}
+
+	function basic_ui_intro() {
+		echo '<p>' . __( "Google controls access to all of their APIs through their API Console. <a href='https://code.google.com/apis/console'>Go to the console</a> and click the project dropdown just under the logo in the upper left of the screen. Click <strong>Create&hellip;</strong> to create a new project. Enter a name and then click <strong>Create project</strong>. You don't technically need access to any of the additional APIs, but if you want to, then feel free to enable them", 'keyring' ) . '</p>';
+		echo '<p>' . __( "Now you need to set up an OAuth Client ID.", 'keyring' ) . '</p>';
+		echo '<ol>';
+		echo '<li>' . __( "Click <strong>API Access</strong> in the menu on the left.", 'keyring' ) . '</li>';
+		echo '<li>' . __( "Click the big blue button labelled <strong>Create an OAuth 2.0 client ID&hellip;</strong>", 'keyring' ) . '</li>';
+		echo '<li>' . __( "You must enter a <strong>Product name</strong>, but you can skip the logo and home page URL", 'keyring' ) . '</li>';
+		echo '<li>' . __( "Leave the Application type set to <strong>Web application</strong>", 'keyring' ) . '</li>';
+		echo '<li>' . __( "Next to <strong>Your site or hostname</strong>, click <strong>(more options)</strong> <code>%s</code>", 'keyring' ) . '</li>';
+		echo '<li>' . sprintf( __( "In the <strong>Authorized Redirect URIs</strong> box, enter the URL <code>%s</code>", 'keyring' ), Keyring_Util::admin_url( 'google', array( 'action' => 'verify' ) ) ) . '</li>';
+		echo '<li>' . sprintf( __( "For the <strong>Authorized JavaScript Origins</strong>, enter the URL of your domain, e.g. <code>http://%s</code>", 'keyring' ), $_SERVER['HTTP_HOST'] ) . '</li>';
+		echo '<li>' . __( "Click <strong>Create client ID</strong> when you're done", 'keyring' ) . '</li>';
+		echo '</ol>';
+		echo '<p>' . __( "Once you've saved your details, copy the <strong>Client ID</strong> into the <strong>Client ID</strong> field below, and the <strong>Client secret</strong> value into <strong>Client Secret</strong>. The Redirect URI box should fill itself out for you.", 'keyring' ) . '</p>';
+	}
+
+	function _get_credentials() {
+		if (
+			defined( 'KEYRING__GOOGLECONTACTS_KEY' )
+		&&
+			defined( 'KEYRING__GOOGLECONTACTS_SECRET' )
+		) {
+			return array(
+				'redirect_uri' => defined( 'KEYRING__GOOGLECONTACTS_URI' ) ? constant( 'KEYRING__GOOGLECONTACTS_URI' ) : '', // optional
+				'key'          => constant( 'KEYRING__GOOGLECONTACTS_KEY' ),
+				'secret'       => constant( 'KEYRING__GOOGLECONTACTS_SECRET' ),
+			);
+		} else {
+			return null;
+		}
+	}
+
+	function request_token_params( $params ) {
+		$params['scope'] = self::SCOPE;
+		return $params;
+	}
+
+	function redirect_incoming_verify( $request ) {
+		if ( !isset( $request['kr_nonce'] ) ) {
+			// First request, from Google. Nonce it and move on.
+			$kr_nonce = wp_create_nonce( 'keyring-verify' );
+			$nonce = wp_create_nonce( 'keyring-verify-' . $this->get_name() );
+			wp_safe_redirect(
+				Keyring_Util::admin_url(
+					$this->get_name(),
+					array(
+						'action'   => 'verify',
+						'kr_nonce' => $kr_nonce,
+						'nonce'    => $nonce,
+						'code'     => $request['code'], // Auth code from successful response (maybe)
+					)
+				)
+			);
+			exit;
+		}
+	}
+
+	function build_token_meta( $token ) {
+		$meta = array();
+		if ( !$token )
+			return $meta;
+
+		$token = new Keyring_Access_Token( $this->get_name(), new OAuthToken( $token['access_token'], '' ), array() );
+		$this->set_token( $token );
+		$response = $this->request( $this->self_url, array( 'method' => $this->self_method ) );
+		if ( !Keyring_Util::is_error( $response ) ) {
+			$meta = array(
+				'user_id'   => $response->id,
+				'name'      => $response->name,
+				'profile'   => $response->link,
+				'picture'   => $response->picture,
+			);
+		}
+
+		return apply_filters( 'keyring_access_token_meta', $meta, 'google-contacts', $token, $response, $this );
+	}
+
+	function get_display( Keyring_Access_Token $token ) {
+		return $token->get_meta( 'name' );
+	}
+
+	function request( $url, array $params = array() ) {
+		// add header (version), required for all requests
+		$params['headers']['GData-Version'] = self::API_VERSION;
+
+		return parent::request( $url, $params );
+	}
+
+	// Minor modifications from Keyring_Service::basic_ui
+	function basic_ui() {
+		if ( !isset( $_REQUEST['nonce'] ) || !wp_verify_nonce( $_REQUEST['nonce'], 'keyring-manage-' . $this->get_name() ) ) {
+			Keyring::error( __( 'Invalid/missing management nonce.', 'keyring' ) );
+			exit;
+		}
+
+		// Common Header
+		echo '<div class="wrap">';
+		screen_icon( 'ms-admin' );
+		echo '<h2>' . __( 'Keyring Service Management', 'keyring' ) . '</h2>';
+		echo '<p><a href="' . Keyring_Util::admin_url( false, array( 'action' => 'services' ) ) . '">' . __( '&larr; Back', 'keyring' ) . '</a></p>';
+		echo '<h3>' . sprintf( __( '%s API Credentials', 'keyring' ), esc_html( $this->get_label() ) ) . '</h3>';
+
+		// Handle actually saving credentials
+		if ( isset( $_POST['api_key'] ) && isset( $_POST['api_secret'] ) ) {
+			// Store credentials against this service
+			$this->update_credentials( array(
+				'key'          => stripslashes( $_POST['api_key'] ),
+				'secret'       => stripslashes( $_POST['api_secret'] ),
+				'redirect_uri' => stripslashes( $_POST['redirect_uri'] ),
+			) );
+			echo '<div class="updated"><p>' . __( 'Credentials saved.', 'keyring' ) . '</p></div>';
+		}
+
+		$api_key = $api_secret = $redirect_uri = '';
+		if ( $creds = $this->get_credentials() ) {
+			$api_key      = $creds['key'];
+			$api_secret   = $creds['secret'];
+			$redirect_uri = $creds['redirect_uri'];
+		}
+
+		echo apply_filters( 'keyring_' . $this->get_name() . '_basic_ui_intro', '' );
+
+		if ( ! $redirect_uri )
+			$redirect_uri = Keyring_Util::admin_url( 'google', array( 'action' => 'verify' ) );
+
+		// Output basic form for collecting key/secret
+		echo '<form method="post" action="">';
+		echo '<input type="hidden" name="service" value="' . esc_attr( $this->get_name() ) . '" />';
+		echo '<input type="hidden" name="action" value="manage" />';
+		wp_nonce_field( 'keyring-manage', 'kr_nonce', false );
+		wp_nonce_field( 'keyring-manage-' . $this->get_name(), 'nonce', false );
+		echo '<table class="form-table">';
+		echo '<tr><th scope="row">' . __( 'Client ID', 'keyring' ) . '</th>';
+		echo '<td><input type="text" name="api_key" value="' . esc_attr( $api_key ) . '" id="api_key" class="regular-text"></td></tr>';
+		echo '<tr><th scope="row">' . __( 'Client Secret', 'keyring' ) . '</th>';
+		echo '<td><input type="text" name="api_secret" value="' . esc_attr( $api_secret ) . '" id="api_secret" class="regular-text"></td></tr>';
+		echo '<tr><th scope="row">' . __( 'Redirect URI', 'keyring' ) . '</th>';
+		echo '<td><input type="text" name="redirect_uri" value="' . esc_attr( $redirect_uri ) . '" id="redirect_uri" class="regular-text"></td></tr>';
+		echo '</table>';
+		echo '<p class="submitbox">';
+		echo '<input type="submit" name="submit" value="' . __( 'Save Changes', 'keyring' ) . '" id="submit" class="button-primary">';
+		echo '<a href="' . esc_url( $_SERVER['HTTP_REFERER'] ) . '" class="submitdelete" style="margin-left:2em;">' . __( 'Cancel', 'keyring' ) . '</a>';
+		echo '</p>';
+		echo '</form>';
+		echo '</div>';
+	}
+
+	function test_connection() {
+		$res = $this->request( $this->self_url, array( 'method' => $this->self_method ) );
+		if ( !Keyring_Util::is_error( $res ) )
+			return true;
+
+		return $res;
+	}
+}
+
+add_action( 'keyring_load_services', array( 'Keyring_Service_GoogleContacts', 'init' ) );

+ 62 - 0
app/plugins/keyring/includes/services/extended/instagram.php

@@ -0,0 +1,62 @@
+<?php
+
+/**
+ * Instagram service definition for Keyring.
+ * http://instagram.com/developer/
+ */
+
+class Keyring_Service_Instagram extends Keyring_Service_OAuth2 {
+	const NAME  = 'instagram';
+	const LABEL = 'Instagram';
+
+	function __construct() {
+		parent::__construct();
+
+		// Enable "basic" UI for entering key/secret
+		if ( ! KEYRING__HEADLESS_MODE ) {
+			add_action( 'keyring_instagram_manage_ui', array( $this, 'basic_ui' ) );
+			add_filter( 'keyring_instagram_basic_ui_intro', array( $this, 'basic_ui_intro' ) );
+		}
+
+		$this->set_endpoint( 'authorize',    'https://api.instagram.com/oauth/authorize/', 'GET' );
+		$this->set_endpoint( 'access_token', 'https://api.instagram.com/oauth/access_token', 'POST' );
+		$this->set_endpoint( 'self',         'https://api.Instagram.com/v2/users/self',   'GET' );
+
+		$creds = $this->get_credentials();
+		$this->app_id  = $creds['app_id'];
+		$this->key     = $creds['key'];
+		$this->secret  = $creds['secret'];
+
+		$this->consumer = new OAuthConsumer( $this->key, $this->secret, $this->callback_url );
+		$this->signature_method = new OAuthSignatureMethod_HMAC_SHA1;
+
+		$this->authorization_header    = false; // Send in querystring
+		$this->authorization_parameter = 'access_token';
+	}
+
+	function basic_ui_intro() {
+		echo '<p>' . sprintf( __( "To get started, <a href='http://instagram.com/developer/clients/register/'>register an OAuth client on Instagram</a>. The most important setting is the <strong>OAuth redirect_uri</strong>, which should be set to <code>%s</code>. You can set the other values to whatever you like.", 'keyring' ), Keyring_Util::admin_url( 'instagram', array( 'action' => 'verify' ) ) ) . '</p>';
+		echo '<p>' . __( "Once you've saved those changes, copy the <strong>CLIENT ID</strong> value into the <strong>API Key</strong> field, and the <strong>CLIENT SECRET</strong> value into the <strong>API Secret</strong> field and click save (you don't need an App ID value for Instagram).", 'keyring' ) . '</p>';
+	}
+
+	function build_token_meta( $token ) {
+		if ( empty( $token['user'] ) ) {
+			$meta = array();
+		} else {
+			$meta = array(
+				'user_id'  => $token['user']->id,
+				'username' => $token['user']->username,
+				'name'     => $token['user']->full_name,
+				'picture'  => $token['user']->profile_picture,
+			);
+		}
+
+		return apply_filters( 'keyring_access_token_meta', $meta, 'instagram', $token, null, $this );
+	}
+
+	function get_display( Keyring_Access_Token $token ) {
+		return $token->get_meta( 'name' );
+	}
+}
+
+add_action( 'keyring_load_services', array( 'Keyring_Service_Instagram', 'init' ) );

+ 233 - 0
app/plugins/keyring/includes/services/extended/instapaper.php

@@ -0,0 +1,233 @@
+<?php
+
+/**
+ * Instapaper uses xAuth, just to be difficult.
+ */
+
+class Keyring_Service_Instapaper extends Keyring_Service_OAuth1 {
+	const NAME  = 'instapaper';
+	const LABEL = 'Instapaper';
+
+	function __construct() {
+		parent::__construct();
+
+		// Enable "basic" UI for entering key/secret, and the request UI for user/pass
+		if ( ! KEYRING__HEADLESS_MODE ) {
+			add_action( 'keyring_instapaper_manage_ui', array( $this, 'basic_ui' ) );
+			add_filter( 'keyring_instapaper_basic_ui_intro', array( $this, 'basic_ui_intro' ) );
+			add_action( 'keyring_instapaper_request_ui', array( $this, 'request_ui' ) );
+		}
+
+		$this->authorization_header = true;
+
+		$this->set_endpoint( 'access_token', 'https://www.instapaper.com/api/1/oauth/access_token',         'POST' );
+		$this->set_endpoint( 'verify',       'https://www.instapaper.com/api/1/account/verify_credentials', 'POST' );
+
+		$creds = $this->get_credentials();
+		$this->app_id  = $creds['app_id'];
+		$this->key     = $creds['key'];
+		$this->secret  = $creds['secret'];
+
+		$this->consumer = new OAuthConsumer( $this->key, $this->secret, $this->callback_url );
+		$this->signature_method = new OAuthSignatureMethod_HMAC_SHA1;
+
+		$this->requires_token( true );
+	}
+
+	function basic_ui_intro() {
+		echo '<p>' . __( "To use the Instapaper API, you need to get manually approved. <a href='http://www.instapaper.com/main/request_oauth_consumer_token'>Apply here</a>, then wait for a reply email.", 'keyring' ) . '</p>';
+		echo '<p>' . __( "Once you get approved, you'll get an email back with your details. Copy the <strong>OAuth consumer key</strong> value into the <strong>API Key</strong> field, and the <strong>OAuth consumer secret</strong> value into the <strong>API Secret</strong> field and click save (you don't need an App ID value for Instapaper).", 'keyring' ) . '</p>';
+	}
+
+	/**
+	 * Mostly duplicated from HTTP Basic
+	 */
+	function request_ui() {
+		// Common Header
+		echo '<div class="wrap">';
+		screen_icon( 'ms-admin' );
+		echo '<h2>' . __( 'Account Details', 'keyring' ) . '</h2>';
+
+		// Handle errors
+		if ( isset( $_GET['error'] ) ) {
+			echo '<div id="keyring-admin-errors" class="updated"><ul>';
+			switch ( $_GET['error'] ) {
+			case '401':
+				echo '<li>' . __( 'Your account details could not be confirmed, please try again.', 'keyring' ) . '</li>';
+				break;
+			case 'empty':
+				echo '<li>' . __( 'Please make sure you enter a username and password.', 'keyring' ) . '</li>';
+				break;
+			}
+			echo '</ul></div>';
+		}
+
+		// Even though it doesn't make too much sense, we support request tokens in HTTP Basic
+		// to ensure consistency with other services
+		$request_token = new Keyring_Request_Token(
+			$this->get_name(),
+			array(),
+			apply_filters(
+				'keyring_request_token_meta',
+				array(
+					'for' => isset( $_REQUEST['for'] ) ? (string) $_REQUEST['for'] : false
+				),
+				$this->get_name(),
+				array() // no token
+			)
+		);
+		$request_token     = apply_filters( 'keyring_request_token', $request_token, $this );
+		$request_token_id  = $this->store_token( $request_token );
+		Keyring_Util::debug( 'xAuth/Instapaper Stored Request token ' . $request_token_id );
+
+		echo apply_filters( 'keyring_' . $this->get_name() . '_request_ui_intro', '' );
+
+		// Output basic form for collecting user/pass
+		echo '<p>' . sprintf( __( 'Enter your username (or email address) and password for accessing <strong>%s</strong>:', 'keyring' ), $this->get_label() ) . '</p>';
+		echo '<form method="post" action="">';
+		echo '<input type="hidden" name="service" value="' . esc_attr( $this->get_name() ) . '" />';
+		echo '<input type="hidden" name="action" value="verify" />';
+		echo '<input type="hidden" name="state" value="' . esc_attr( $request_token_id ) . '" />';
+		wp_nonce_field( 'keyring-verify', 'kr_nonce', false );
+		wp_nonce_field( 'keyring-verify-' . $this->get_name(), 'nonce', false );
+		echo '<table class="form-table">';
+		echo '<tr><th scope="row">' . __( 'Email address', 'keyring' ) . '</th>';
+		echo '<td><input type="text" name="username" value="" id="username" class="regular-text"></td></tr>';
+		echo '<tr><th scope="row">' . __( 'Password', 'keyring' ) . '</th>';
+		echo '<td><input type="password" name="password" value="" id="password" class="regular-text"></td></tr>';
+		echo '</table>';
+		echo '<p class="submitbox">';
+		echo '<input type="submit" name="submit" value="' . __( 'Verify Details', 'keyring' ) . '" id="submit" class="button-primary">';
+		echo '<a href="' . esc_attr( $_SERVER['HTTP_REFERER'] ) . '" class="submitdelete" id="logincancel" style="margin-left:2em;">' . __( 'Cancel', 'keyring' ) . '</a>';
+		echo '</p>';
+		echo '</form>';
+		echo '</div>';
+		?><script type="text/javascript" charset="utf-8">
+			jQuery( document ).ready( function() {
+				jQuery( '#username' ).focus();
+			} );
+		</script><?php
+	}
+
+	function request_token() { }
+
+	function verify_token() {
+		if ( !isset( $_REQUEST['nonce'] ) || !wp_verify_nonce( $_REQUEST['nonce'], 'keyring-verify-' . $this->get_name() ) ) {
+			Keyring::error( __( 'Invalid/missing verification nonce.', 'keyring' ) );
+			exit;
+		}
+
+		// Load up the request token that got us here and globalize it
+		if ( $_REQUEST['state'] ) {
+			global $keyring_request_token;
+			$state = (int) $_REQUEST['state'];
+			$keyring_request_token = $this->store->get_token( array( 'id' => $state, 'type' => 'request' ) );
+			Keyring_Util::debug( 'xAuth/Instapaper Loaded Request Token ' . $_REQUEST['state'] );
+			Keyring_Util::debug( $keyring_request_token );
+
+			// Remove request token, don't need it any more.
+			$this->store->delete( array( 'id' => $state, 'type' => 'request' ) );
+		}
+
+		if ( !strlen( $_POST['username'] ) ) {
+			$url = Keyring_Util::admin_url(
+				$this->get_name(),
+				array(
+					'action' => 'request',
+					'error' => 'empty',
+					'kr_nonce' => wp_create_nonce( 'keyring-request' )
+				)
+			);
+			Keyring_Util::debug( $url );
+			wp_safe_redirect( $url );
+			exit;
+		}
+
+		$body = array(
+			'x_auth_mode'     => 'client_auth',
+			'x_auth_password' => $_POST['password'],
+			'x_auth_username' => $_POST['username'],
+		);
+		ksort( $body );
+		$this->set_token( new Keyring_Access_Token( $this->get_name(), null, array() ) );
+		$res = $this->request( $this->access_token_url, array( 'method' => $this->access_token_method, 'raw_response' => true, 'body' => $body ) );
+		Keyring_Util::debug( 'OAuth1 Access Token Response' );
+		Keyring_Util::debug( $res );
+
+		// We will get a 401 if they entered an incorrect user/pass combo. ::request
+		// will then return a Keyring_Error
+		if ( Keyring_Util::is_error( $res ) ) {
+			$url = Keyring_Util::admin_url(
+				$this->get_name(),
+				array(
+					'action'   => 'request',
+					'error'    => '401',
+					'kr_nonce' => wp_create_nonce( 'keyring-request' )
+				)
+			);
+			Keyring_Util::debug( $url );
+			wp_safe_redirect( $url );
+			exit;
+		}
+
+		parse_str( $res, $token );
+
+		$meta = array_merge( array( 'username' => $_POST['username'] ), $this->build_token_meta( $token ) );
+
+		$access_token = new Keyring_Access_Token(
+			$this->get_name(),
+			new OAuthToken( $token['oauth_token'], $token['oauth_token_secret'] ),
+			$meta
+		);
+		$access_token = apply_filters( 'keyring_access_token', $access_token );
+
+		// If we didn't get a 401, then we'll assume it's OK
+		$id = $this->store_token( $access_token );
+		$this->verified( $id, $keyring_request_token );
+	}
+
+	function parse_response( $response ) {
+		return json_decode( $response );
+	}
+
+	function build_token_meta( $token ) {
+		// Set the token so that we can make requests using it
+		$this->set_token(
+			new Keyring_Access_Token(
+				$this->get_name(),
+				new OAuthToken(
+					$token['oauth_token'],
+					$token['oauth_token_secret']
+				)
+			)
+		);
+
+		$response = $this->request( $this->verify_url, array( 'method' => $this->verify_method ) );
+		if ( Keyring_Util::is_error( $response ) ) {
+			$meta = array();
+		} else {
+			$meta = array(
+				'user_id'    => $response[0]->user_id,
+				'username'   => $response[0]->username,
+				'name'       => $response[0]->username,
+				'_classname' => get_called_class(),
+			);
+		}
+
+		return apply_filters( 'keyring_access_token_meta', $meta, 'instapaper', $token, $response, $this );
+	}
+
+	function get_display( Keyring_Access_Token $token ) {
+		return $token->get_meta( 'username' );
+	}
+
+	function test_connection() {
+			$response = $this->request( $this->verify_url, array( 'method' => $this->verify_method ) );
+			if ( !Keyring_Util::is_error( $response ) )
+				return true;
+
+			return $response;
+	}
+}
+
+add_action( 'keyring_load_services', array( 'Keyring_Service_Instapaper', 'init' ) );

+ 89 - 0
app/plugins/keyring/includes/services/extended/linkedin.php

@@ -0,0 +1,89 @@
+<?php
+
+/**
+ * LinkedIn service definition for Keyring. Clean implementation of OAuth1
+ */
+
+class Keyring_Service_LinkedIn extends Keyring_Service_OAuth1 {
+	const NAME  = 'linkedin';
+	const LABEL = 'LinkedIn';
+
+	function __construct() {
+		parent::__construct();
+
+		$this->authorization_header = true;
+		$this->authorization_realm = "api.linkedin.com";
+
+		// Enable "basic" UI for entering key/secret
+		if ( ! KEYRING__HEADLESS_MODE ) {
+			add_action( 'keyring_linkedin_manage_ui', array( $this, 'basic_ui' ) );
+			add_filter( 'keyring_linkedin_basic_ui_intro', array( $this, 'basic_ui_intro' ) );
+		}
+
+		$this->set_endpoint( 'request_token', 'https://api.linkedin.com/uas/oauth/requestToken', 'POST' );
+		$this->set_endpoint( 'authorize',     'https://api.linkedin.com/uas/oauth/authorize',    'GET'  );
+		$this->set_endpoint( 'access_token',  'https://api.linkedin.com/uas/oauth/accessToken',  'GET'  );
+
+		$creds = $this->get_credentials();
+		$this->app_id  = $creds['app_id'];
+		$this->key     = $creds['key'];
+		$this->secret  = $creds['secret'];
+
+		$this->consumer = new OAuthConsumer( $this->key, $this->secret, $this->callback_url );
+		$this->signature_method = new OAuthSignatureMethod_HMAC_SHA1;
+	}
+
+	function basic_ui_intro() {
+		echo '<p>' . __( "To connect to LinkedIn, you'll first need to <a href='https://www.linkedin.com/secure/developer?newapp='>create an app</a>. A lot of the details are required, but they're not actually important to the operation of your app, since Keyring will override any important settings.", 'keyring' ) . '</p>';
+		echo '<p>' . __( "Once you've created your app, go down to the <strong>OAuth Keys</strong> section and copy the <strong>API Key</strong> value into the <strong>API Key</strong> field below, and the <strong>Secret Key</strong> value into the <strong>API Secret</strong> field and click save (you don't need an App ID value for LinkedIn).", 'keyring' ) . '</p>';
+	}
+
+	function parse_response( $response ) {
+		if ( '<?xml' == substr( $response, 0, 5 ) ) // Errors always come back as XML
+			return simplexml_load_string( $response );
+		else
+			return json_decode( $response );
+	}
+
+	function build_token_meta( $token ) {
+		// Set the token so that we can make requests using it
+		$this->set_token(
+			new Keyring_Access_Token(
+				$this->get_name(),
+				new OAuthToken(
+					$token['oauth_token'],
+					$token['oauth_token_secret']
+				)
+			)
+		);
+
+		// Get user profile information
+		$response = $this->request( "https://api.linkedin.com/v1/people/~:(id,formatted-name,picture-url)?format=json" );
+		if ( Keyring_Util::is_error( $response ) ) {
+			$meta = array();
+		} else {
+			$this->person = $response;
+			$meta = array(
+				'user_id' => $this->person->id,
+				'name'    => $this->person->formattedName,
+				'picture' => $this->person->pictureUrl,
+			);
+		}
+
+		return apply_filters( 'keyring_access_token_meta', $meta,  'linkedin', $token, $response, $this );
+	}
+
+	function get_display( Keyring_Access_Token $token ) {
+		return $token->get_meta( 'name' );
+	}
+
+	function test_connection() {
+			$res = $this->request( "https://api.linkedin.com/v1/people/~:(id,formatted-name)?format=json" );
+			if ( !Keyring_Util::is_error( $res ) )
+				return true;
+
+			return $res;
+	}
+}
+
+add_action( 'keyring_load_services', array( 'Keyring_Service_LinkedIn', 'init' ) );

+ 95 - 0
app/plugins/keyring/includes/services/extended/moves.php

@@ -0,0 +1,95 @@
+<?php
+
+/**
+ * Moves service definition for Keyring.
+ * https://dev.moves-app.com/
+ */
+
+class Keyring_Service_Moves extends Keyring_Service_OAuth2 {
+	const NAME  = 'moves';
+	const LABEL = 'Moves';
+	const SCOPE = 'activity location';
+
+	function __construct() {
+		parent::__construct();
+
+		$this->place_types = array(
+			'unknown'    => __( 'Unknown', 'keyring' ),
+			'home'       => __( 'Home', 'keyring' ),
+			'work'       => __( 'Work', 'keyring' ),
+			'school'     => __( 'School', 'keyring' ),
+			'user'       => __( 'Manually Named', 'keyring' ),
+			'foursquare' => __( 'Selected from foursquare', 'keyring' ),
+		);
+
+		$this->activity_types = array(
+			'wlk' => __( 'Walking', 'keyring' ),
+			'cyc' => __( 'Cycling', 'keyring' ),
+			'run' => __( 'Running', 'keyring' ),
+			'trp' => __( 'Transport', 'keyring' ),
+		);
+
+		// Enable "basic" UI for entering key/secret
+		if ( ! KEYRING__HEADLESS_MODE ) {
+			add_action( 'keyring_moves_manage_ui', array( $this, 'basic_ui' ) );
+			add_filter( 'keyring_moves_basic_ui_intro', array( $this, 'basic_ui_intro' ) );
+		}
+
+		$this->set_endpoint( 'authorize',    'https://api.moves-app.com/oauth/v1/authorize',    'GET'  );
+		$this->set_endpoint( 'access_token', 'https://api.moves-app.com/oauth/v1/access_token', 'POST' );
+		$this->set_endpoint( 'verify_token', 'https://api.moves-app.com/oauth/v1/tokeninfo',    'GET' );
+		$this->set_endpoint( 'profile',      'https://api.moves-app.com/api/v1/user/profile',   'GET'  );
+
+		$creds = $this->get_credentials();
+		$this->app_id  = $creds['app_id'];
+		$this->key     = $creds['key'];
+		$this->secret  = $creds['secret'];
+
+		$this->consumer = new OAuthConsumer( $this->key, $this->secret, $this->callback_url );
+		$this->signature_method = new OAuthSignatureMethod_HMAC_SHA1;
+
+		$this->authorization_header    = 'Bearer';
+		$this->authorization_parameter = false;
+
+		add_filter( 'keyring_moves_request_token_params', array( $this, 'request_token_params' ) );
+	}
+
+	function basic_ui_intro() {
+		echo '<p>' . __( "Head over and <a href='https://dev.moves-app.com/apps/new'>create a new application</a> on Moves-app which you'll use to connect.", 'keyring' ) . '</p>';
+		echo '<p>' . sprintf( __( "Once it's created, click the <strong>Development</strong> tab. Your <strong>App ID</strong> and <strong>API Key</strong> are both shown on that page as <strong>Client ID</strong>. Enter your <strong>Client secret</strong> in the <strong>API Secret</strong> box. On that tab there is also a <strong>Redirect URI</strong> box, which you should set to <code>%s</code>.", 'keyring' ), Keyring_Util::admin_url( self::NAME, array( 'action' => 'verify' ) ) ) . '</p>';
+	}
+
+	function request_token_params( $params ) {
+		$params['scope'] = apply_filters( 'keyring_moves_scope', self::SCOPE );
+		return $params;
+	}
+
+	function build_token_meta( $token ) {
+		$meta = array(
+			'user_id'       => $token['user_id'],
+			'refresh_token' => $token['refresh_token'],
+			'expires'       => time() + $token['expires_in'],
+			'_classname'    => get_called_class(),
+		);
+
+		$this->set_token(
+			new Keyring_Access_Token(
+				$this->get_name(),
+				$token['access_token'],
+				array()
+			)
+		);
+		$response = $this->request( $this->profile_url );
+		if ( !Keyring_Util::is_error( $response ) ) {
+			$meta['first_date'] = $response->profile->firstDate;
+		}
+
+		return apply_filters( 'keyring_access_token_meta', $meta, self::NAME, $token, array(), $this );
+	}
+
+	function get_display( Keyring_Access_Token $token ) {
+		return $token->get_meta( 'user_id' );
+	}
+}
+
+add_action( 'keyring_load_services', array( 'Keyring_Service_Moves', 'init' ) );

+ 77 - 0
app/plugins/keyring/includes/services/extended/runkeeper.php

@@ -0,0 +1,77 @@
+<?php
+
+/**
+ * Runkeeper service definition for Keyring.
+ * http://developer.runkeeper.com/
+ */
+
+class Keyring_Service_RunKeeper extends Keyring_Service_OAuth2 {
+	const NAME  = 'runkeeper';
+	const LABEL = 'RunKeeper';
+
+	function __construct() {
+		parent::__construct();
+
+		// Enable "basic" UI for entering key/secret
+		if ( ! KEYRING__HEADLESS_MODE ) {
+			add_action( 'keyring_runkeeper_manage_ui', array( $this, 'basic_ui' ) );
+			add_filter( 'keyring_runkeeper_basic_ui_intro', array( $this, 'basic_ui_intro' ) );
+		}
+
+		$this->set_endpoint( 'authorize',    'https://runkeeper.com/apps/authorize',    'GET'  );
+		$this->set_endpoint( 'access_token', 'https://runkeeper.com/apps/token',        'POST' );
+		$this->set_endpoint( 'deauthorize',  'https://runkeeper.com/apps/de-authorize', 'POST' );
+		$this->set_endpoint( 'user',         'https://api.runkeeper.com/user',          'GET'  );
+		$this->set_endpoint( 'profile',      'https://api.runkeeper.com/profile',       'GET'  );
+
+		$creds = $this->get_credentials();
+		$this->app_id  = $creds['app_id'];
+		$this->key     = $creds['key'];
+		$this->secret  = $creds['secret'];
+
+		$this->consumer = new OAuthConsumer( $this->key, $this->secret, $this->callback_url );
+		$this->signature_method = new OAuthSignatureMethod_HMAC_SHA1;
+
+		$this->authorization_header    = 'Bearer';
+		$this->authorization_parameter = false;
+	}
+
+	function basic_ui_intro() {
+		echo '<p>' . __( "You'll need to <a href='http://runkeeper.com/partner/applications/registerForm'>register a new application</a> on RunKeeper so that you can connect. Be sure to check the <strong>Read Health Information</strong> option under <strong>Permissions Requests</strong> (and explain why you want to read that data). You will also be required to set an <strong>Estimated Date of Publication</strong>.", 'keyring' ) . '</p>';
+		echo '<p>' . __( "Once you've registered your application, click the <strong>Application Keys and URLs</strong> next to it, and copy the <strong>Client ID</strong> into the <strong>API Key</strong> field below, and the <strong>Client Secret</strong> value into <strong>API Secret</strong>.", 'keyring' ) . '</p>';
+	}
+
+	function build_token_meta( $token ) {
+		$this->set_token(
+			new Keyring_Access_Token(
+				$this->get_name(),
+				$token['access_token'],
+				array()
+			)
+		);
+		$response = $this->request( $this->user_url, array( 'method' => $this->user_method ) );
+		if ( Keyring_Util::is_error( $response ) ) {
+			$meta = array();
+		} else {
+			// Only useful thing in that request is userID
+			$meta = array( 'user_id' => (int) $response->userID );
+
+			// Now get the rest of their profile
+			$profile = $this->request( $this->profile_url, array( 'method' => $this->profile_method ) );
+			if ( !Keyring_Util::is_error( $profile ) ) {
+				$meta['username'] = substr( $profile->profile, strrpos( $profile->profile, '/' ) + 1 );
+				$meta['name']     = $profile->name;
+				$meta['picture']  = $profile->large_picture;
+			}
+
+			return apply_filters( 'keyring_access_token_meta', $meta, 'runkeeper', $token, $profile, $this );
+		}
+		return array();
+	}
+
+	function get_display( Keyring_Access_Token $token ) {
+		return $token->get_meta( 'name' );;
+	}
+}
+
+add_action( 'keyring_load_services', array( 'Keyring_Service_RunKeeper', 'init' ) );

+ 94 - 0
app/plugins/keyring/includes/services/extended/tripit.php

@@ -0,0 +1,94 @@
+<?php
+
+/**
+ * TripIt service definition for Keyring. Clean implementation of OAuth1
+ */
+
+class Keyring_Service_TripIt extends Keyring_Service_OAuth1 {
+	const NAME  = 'tripit';
+	const LABEL = 'TripIt';
+
+	function __construct() {
+		parent::__construct();
+
+		// Enable "basic" UI for entering key/secret
+		if ( ! KEYRING__HEADLESS_MODE ) {
+			add_action( 'keyring_tripit_manage_ui', array( $this, 'basic_ui' ) );
+			add_filter( 'keyring_tripit_basic_ui_intro', array( $this, 'basic_ui_intro' ) );
+		}
+
+		$this->authorization_header = true;
+		$this->authorization_realm  = false;
+
+		$this->set_endpoint( 'request_token', 'https://api.tripit.com/oauth/request_token',  'POST' );
+		$this->set_endpoint( 'authorize',     'https://www.tripit.com/oauth/authorize',      'GET'  );
+		$this->set_endpoint( 'access_token',  'https://api.tripit.com/oauth/access_token',   'POST' );
+		$this->set_endpoint( 'verify',        'https://api.tripit.com/v1/get/profile/id/me', 'GET'  );
+
+		$creds = $this->get_credentials();
+		$this->app_id  = $creds['app_id'];
+		$this->key     = $creds['key'];
+		$this->secret  = $creds['secret'];
+
+		$this->consumer = new OAuthConsumer( $this->key, $this->secret, $this->callback_url );
+		$this->signature_method = new OAuthSignatureMethod_HMAC_SHA1;
+
+		$this->requires_token( true );
+	}
+
+	function basic_ui_intro() {
+		echo '<p>' . __( "If you haven't created an app on TripIt yet, <a href='https://www.tripit.com/developer/create'>create one now</a>. Make sure you set it to being a 'Web application or widget', and other than that the settings are all up to you.", 'keyring' ) . '</p>';
+		echo '<p>' . __( "Once you've created your app, you will see a yellow box at the top of the page, where you can get your <strong>API Key</strong> and <strong>API Secret</strong>, to enter below (you don't need an App ID value for TripIt).", 'keyring' ) . '</p>';
+	}
+
+	function parse_response( $response ) {
+		return json_decode( $response );
+	}
+
+	function build_token_meta( $token ) {
+		// Set the token so that we can make requests using it
+		$this->set_token(
+			new Keyring_Access_Token(
+				$this->get_name(),
+				new OAuthToken(
+					$token['oauth_token'],
+					$token['oauth_token_secret']
+				)
+			)
+		);
+
+		$response = $this->request( $this->verify_url, array( 'method' => $this->verify_method ) );
+		if ( Keyring_Util::is_error( $response ) ) {
+			$meta = array();
+		} else {
+			$meta = array(
+				'user_id'    => $response->Profile->{'@attributes'}->ref,
+				'username'   => $response->Profile->screen_name,
+				'name'       => $response->Profile->public_display_name,
+				'picture'    => $response->Profile->photo_url,
+				'_classname' => get_called_class(),
+			);
+		}
+
+		return apply_filters( 'keyring_access_token_meta', $meta, 'tripit', $token, $response, $this );
+	}
+
+	function get_display( Keyring_Access_Token $token ) {
+		return $token->get_meta( 'name' );
+	}
+
+	function request( $url, array $params = array() ) {
+		$url = add_query_arg( array( 'format' => 'json' ), $url );
+		return parent::request( $url, $params );
+	}
+
+	function test_connection() {
+		$response = $this->request( $this->verify_url, array( 'method' => $this->verify_method ) );
+		if ( !Keyring_Util::is_error( $response ) )
+			return true;
+
+		return $response;
+	}
+}
+
+add_action( 'keyring_load_services', array( 'Keyring_Service_TripIt', 'init' ) );

+ 84 - 0
app/plugins/keyring/includes/services/extended/tumblr.php

@@ -0,0 +1,84 @@
+<?php
+
+/**
+ * Tumblr service definition for Keyring. Clean implementation of OAuth1
+ */
+
+class Keyring_Service_Tumblr extends Keyring_Service_OAuth1 {
+	const NAME  = 'tumblr';
+	const LABEL = 'Tumblr';
+
+	function __construct() {
+		parent::__construct();
+
+		// Enable "basic" UI for entering key/secret
+		if ( ! KEYRING__HEADLESS_MODE ) {
+			add_action( 'keyring_tumblr_manage_ui', array( $this, 'basic_ui' ) );
+			add_filter( 'keyring_tumblr_basic_ui_intro', array( $this, 'basic_ui_intro' ) );
+		}
+
+		$this->set_endpoint( 'request_token', 'http://www.tumblr.com/oauth/request_token', 'POST' );
+		$this->set_endpoint( 'authorize',     'http://www.tumblr.com/oauth/authorize',     'GET' );
+		$this->set_endpoint( 'access_token',  'http://www.tumblr.com/oauth/access_token',  'POST' );
+
+		$creds = $this->get_credentials();
+		$this->app_id  = $creds['app_id'];
+		$this->key     = $creds['key'];
+		$this->secret  = $creds['secret'];
+
+		$this->consumer = new OAuthConsumer( $this->key, $this->secret, $this->callback_url );
+		$this->signature_method = new OAuthSignatureMethod_HMAC_SHA1;
+
+		$this->authorization_header = true; // Send OAuth token in the header, not querystring
+		$this->authorization_realm = 'tumblr.com';
+	}
+
+	function basic_ui_intro() {
+		echo '<p>' . sprintf( __( "To get started, <a href='http://www.tumblr.com/oauth/register'>register an application with Tumblr</a>. The <strong>Default callback URL</strong> should be set to <code>%s</code>, and you can enter whatever you like in the other fields.", 'keyring' ), Keyring_Util::admin_url( 'tumblr', array( 'action' => 'verify' ) ) ) . '</p>';
+		echo '<p>' . __( "Once you've created your app, copy the <strong>OAuth Consumer Key</strong> into the <strong>API Key</strong> field below. Click the <strong>Show secret key</strong> link, and then copy the <strong>Secret Key</strong> value into the <strong>API Secret</strong> field below. You don't need an App ID value for Tumblr.", 'keyring' ) . '</p>';
+	}
+
+	function parse_response( $response ) {
+		return json_decode( $response );
+	}
+
+	function build_token_meta( $token ) {
+		// Set the token so that we can make requests using it
+		$this->set_token(
+			new Keyring_Access_Token(
+				'tumblr',
+				new OAuthToken(
+					$token['oauth_token'],
+					$token['oauth_token_secret']
+				)
+			)
+		);
+
+		$response = $this->request( 'http://api.tumblr.com/v2/user/info', array( 'method' => 'POST' ) );
+
+		if ( Keyring_Util::is_error( $response ) ) {
+			$meta = array();
+		} else {
+			$this->person = $response->response->user;
+			$meta = array(
+				'name' => $this->person->name,
+			);
+		}
+
+		return apply_filters( 'keyring_access_token_meta', $meta, 'tumblr', $token, $response, $this );
+	}
+
+	function get_display( Keyring_Access_Token $token ) {
+		return $token->get_meta( 'name' );
+	}
+
+	function test_connection() {
+			$res = $this->request( 'http://api.tumblr.com/v2/user/info', array( 'method' => 'POST' ) );
+			if ( !Keyring_Util::is_error( $res ) )
+				return true;
+
+			return $res;
+	}
+}
+
+add_action( 'keyring_load_services', array( 'Keyring_Service_Tumblr', 'init' ) );

+ 89 - 0
app/plugins/keyring/includes/services/extended/twitter.php

@@ -0,0 +1,89 @@
+<?php
+
+/**
+ * Twitter service definition for Keyring. Clean implementation of OAuth1
+ */
+
+class Keyring_Service_Twitter extends Keyring_Service_OAuth1 {
+	const NAME  = 'twitter';
+	const LABEL = 'Twitter';
+
+	function __construct() {
+		parent::__construct();
+
+		// Enable "basic" UI for entering key/secret
+		if ( ! KEYRING__HEADLESS_MODE ) {
+			add_action( 'keyring_twitter_manage_ui', array( $this, 'basic_ui' ) );
+			add_filter( 'keyring_twitter_basic_ui_intro', array( $this, 'basic_ui_intro' ) );
+		}
+
+		$this->authorization_header = true;
+		$this->authorization_realm  = "twitter.com";
+
+		$this->set_endpoint( 'request_token', 'https://twitter.com/oauth/request_token', 'POST' );
+		$this->set_endpoint( 'authorize',     'https://twitter.com/oauth/authorize',     'GET' );
+		$this->set_endpoint( 'access_token',  'https://twitter.com/oauth/access_token',  'POST' );
+		$this->set_endpoint( 'verify',        'https://api.twitter.com/1.1/account/verify_credentials.json', 'GET' );
+
+		$creds = $this->get_credentials();
+		$this->app_id  = $creds['app_id'];
+		$this->key     = $creds['key'];
+		$this->secret  = $creds['secret'];
+
+		$this->consumer = new OAuthConsumer( $this->key, $this->secret, $this->callback_url );
+		$this->signature_method = new OAuthSignatureMethod_HMAC_SHA1;
+
+		$this->requires_token( true );
+	}
+
+	function basic_ui_intro() {
+		echo '<p>' . sprintf( __( "If you haven't already, you'll need to <a href='https://dev.twitter.com/apps/new'>create an app on Twitter</a> (log in using your normal Twitter account). Make sure you enter something for the <strong>Callback URL</strong>, even though Keyring will override it with the correct value. Just enter your homepage, e.g. <code>%s</code>.", 'keyring' ), get_bloginfo( 'url' ) ) . '</p>';
+		echo '<p>' . __( "Once you've created an app, copy and paste your <strong>Consumer key</strong> and <strong>Consumer secret</strong> (from under the <strong>OAuth settings</strong> section of your app's details) into the boxes below. You don't need an App ID for Twitter.", 'keyring' ) . '</p>';
+	}
+
+	function parse_response( $response ) {
+		return json_decode( $response );
+	}
+
+	function build_token_meta( $token ) {
+		// Set the token so that we can make requests using it
+		$this->set_token(
+			new Keyring_Access_Token(
+				$this->get_name(),
+				new OAuthToken(
+					$token['oauth_token'],
+					$token['oauth_token_secret']
+				)
+			)
+		);
+
+		$response = $this->request( $this->verify_url, array( 'method' => $this->verify_method ) );
+		if ( Keyring_Util::is_error( $response ) ) {
+			$meta = array();
+		} else {
+			$meta = array(
+				'user_id'    => $token['user_id'],
+				'username'   => $token['screen_name'],
+				'name'       => $response->name,
+				'picture'    => str_replace( '_normal.', '.', $response->profile_image_url ),
+				'_classname' => get_called_class(),
+			);
+		}
+
+		return apply_filters( 'keyring_access_token_meta', $meta, 'twitter', $token, $response, $this );
+	}
+
+	function get_display( Keyring_Access_Token $token ) {
+		return '@' . $token->get_meta( 'username' );
+	}
+
+	function test_connection() {
+			$res = $this->request( 'https://api.twitter.com/1.1/account/verify_credentials.json' );
+			if ( !Keyring_Util::is_error( $res ) )
+				return true;
+
+			return $res;
+	}
+}
+
+add_action( 'keyring_load_services', array( 'Keyring_Service_Twitter', 'init' ) );

+ 135 - 0
app/plugins/keyring/includes/services/extended/yahoo.php

@@ -0,0 +1,135 @@
+<?php
+
+/**
+ * Yahoo service definition for Keyring. Clean implementation of OAuth1
+ */
+
+class Keyring_Service_Yahoo extends Keyring_Service_OAuth1 {
+	const NAME  = 'yahoo';
+	const LABEL = 'Yahoo! Updates';
+
+	function __construct() {
+		parent::__construct();
+
+		// Enable "basic" UI for entering key/secret
+		if ( ! KEYRING__HEADLESS_MODE ) {
+			add_action( 'keyring_yahoo_manage_ui', array( $this, 'basic_ui' ) );
+			add_filter( 'keyring_yahoo_basic_ui_intro', array( $this, 'basic_ui_intro' ) );
+		}
+
+		$this->set_endpoint( 'request_token', 'https://api.login.yahoo.com/oauth/v2/get_request_token', 'GET' );
+		$this->set_endpoint( 'authorize',     'https://api.login.yahoo.com/oauth/v2/request_auth',      'GET' );
+		$this->set_endpoint( 'access_token',  'https://api.login.yahoo.com/oauth/v2/get_token',         'POST' );
+
+		$creds = $this->get_credentials();
+		$this->app_id  = $creds['app_id'];
+		$this->key     = $creds['key'];
+		$this->secret  = $creds['secret'];
+
+		$this->consumer = new OAuthConsumer( $this->key, $this->secret, $this->callback_url );
+		$this->signature_method = new OAuthSignatureMethod_HMAC_SHA1;
+	}
+
+	function basic_ui_intro() {
+		echo '<p>' . sprintf( __( "To connect to Yahoo!, you need to <a href='https://developer.apps.yahoo.com/dashboard/createKey.html'>Create a new project</a>. Make sure you set the <strong>Access Scope</strong> to <strong>This app requires access to private user data</strong>. When you select that, you will be asked for an <strong>Application Domain</strong>, which should probably be set to <code>http://%s</code>. Which APIs you request access for will depend on how Keyring will be used on this site. Common ones will be <strong>Contacts</strong>, <strong>Social Directory</strong>, <strong>Status</strong>, and <strong>Updates</strong>.", 'keyring' ), $_SERVER['HTTP_HOST'] ) . '</p>';
+		echo '<p>' . __( "Once you've created your project, copy and paste your <strong>Consumer key</strong> and <strong>Consumer secret</strong> (from under the <strong>Authentication Information: OAuth</strong> section of your app's details) into the boxes below. You don't need an App ID for Yahoo!.", 'keyring' ) . '</p>';
+	}
+
+	function parse_response( $response ) {
+		return json_decode( $response );
+	}
+
+	function build_token_meta( $token ) {
+		$expires = isset( $token['oauth_expires_in'] ) ? gmdate( 'Y-m-d H:i:s', time() + $token['oauth_expires_in'] ) : 0;
+
+		$this->set_token(
+			new Keyring_Access_Token(
+				'yahoo',
+				new OAuthToken(
+					$token['oauth_token'],
+					$token['oauth_token_secret']
+				)
+			)
+		);
+
+		// Get user profile information
+		$response = $this->request( "http://social.yahooapis.com/v1/user/{$token['xoauth_yahoo_guid']}/profile?format=json" );
+
+		if ( Keyring_Util::is_error( $response ) ) {
+			$meta = array();
+		} else {
+			$this->person = $response->profile;
+			$meta = array(
+				'user_id' => $token['xoauth_yahoo_guid'],
+				'name'    => $this->person->nickname,
+				'picture' => $this->person->image->imageUrl,
+			);
+		}
+
+		return apply_filters( 'keyring_access_token_meta', $meta, 'yahoo', $token, $response, $this );
+	}
+
+	function get_display( Keyring_Access_Token$token ) {
+		return $token->get_meta( 'name' );
+	}
+
+	function test_connection() {
+		$this->maybe_refresh_token();
+
+		$guid = $this->token->get_meta( 'external_id' );
+
+		$res = $this->request( 'http://social.yahooapis.com/v1/user/' . $guid . '/profile?format=json' );
+		if ( !Keyring_Util::is_error( $res ) )
+			return true;
+
+		return $res;
+	}
+
+	function maybe_refresh_token() {
+		global $wpdb;
+
+		if ( empty( $this->token->token ) || empty( $this->token->token->tokenExpires ) )
+			return;
+
+		if ( $this->token->token->tokenExpires && $this->token->token->tokenExpires < time() ) {
+			$api_url  = 'https://api.login.yahoo.com/oauth/v2/get_token';
+			$api_url .= '?oauth_session_handle=' . $this->token->token->sessionHandle;
+
+			$refresh = $this->request( $api_url, array(
+				'method'       => 'GET',
+				'raw_response' => true,
+			) );
+
+			if ( !Keyring_Util::is_error( $refresh ) ) {
+				$token = $this->parse_access_token( $refresh );
+
+				// Fake request token
+				global $keyring_request_token;
+				$keyring_request_token = new Keyring_Request_Token(
+					$this->get_name(),
+					array()
+				);
+
+				// Build (real) access token
+				$access_token = new Keyring_Access_Token(
+					$this->get_name(),
+					new OAuthToken(
+						$token['oauth_token'],
+						$token['oauth_token_secret']
+					),
+					$this->build_token_meta( $token ),
+					$this->token->unique_id
+				);
+
+				// Store the updated access token
+				$access_token = apply_filters( 'keyring_access_token', $access_token, $token );
+				$id = $this->store->update( $access_token );
+
+				// And switch to using it
+				$this->set_token( $access_token );
+			}
+		}
+	}
+}
+
+add_action( 'keyring_load_services', array( 'Keyring_Service_Yahoo', 'init' ) );

+ 181 - 0
app/plugins/keyring/includes/stores/singlestore.php

@@ -0,0 +1,181 @@
+<?php
+
+/**
+ * Token storage for a normal, single-blog installation. Works with multiple
+ * users, but not recommended for a Multi-Site install (see multistore.php)
+ * Uses CPT because that's what we have available to us and it's easy.
+ *
+ * @package Keyring
+ */
+class Keyring_SingleStore extends Keyring_Store {
+	var $unique_id = false;
+
+	static function &init() {
+		static $instance = false;
+
+		if ( !$instance ) {
+			register_post_type( 'kr_request_token', array(
+				'label'       => __( 'Keyring Request Token', 'keyring' ),
+				'description' => __( 'Token or authentication details stored by Keyring. Request tokens are used during the authorization flow.', 'keyring' ),
+				'public'      => false,
+			) );
+
+			register_post_type( 'kr_access_token', array(
+				'label'       => __( 'Keyring Access Token', 'keyring' ),
+				'description' => __( 'Token or authentication details stored by Keyring. Access tokens are used to make secure requests.', 'keyring' ),
+				'public'      => false,
+			) );
+
+			$instance = new Keyring_SingleStore;
+		}
+
+		return $instance;
+	}
+
+	function insert( $token ) {
+		// Avoid duplicates by checking to see if this exists already
+		$found = get_posts( array(
+			'numberposts' => 1,
+			'post_type'   => 'kr_' . $token->type() . '_token',
+			'meta_key'    => 'service',
+			'meta_value'  => $token->get_name(),
+			'author_id'   => get_current_user_id(),
+			's'           => serialize( $token->token ), // Search the post content for this token
+			'exact'       => true, // Require exact content match
+		) );
+
+		if ( $found ) {
+			$token->unique_id = $found[0]->ID;
+			return $this->update( $token );
+		}
+
+		$post = array(
+			'post_type'    => 'kr_' . $token->type() . '_token',
+			'post_status'  => 'publish',
+			'post_content' => serialize( $token->token ),
+		);
+		$id = wp_insert_post( add_magic_quotes( $post ) );
+		if ( $id ) {
+			// Always record what service this token is for
+			update_post_meta( $id, 'service', $token->get_name() );
+
+			// Optionally include any meta related to this token
+			foreach ( (array) $token->get_meta( false, true ) as $key => $val ) {
+				update_post_meta( $id, $key, $val );
+			}
+			return $id;
+		}
+		return false;
+	}
+
+	function update( $token ) {
+		if ( !$token->unique_id )
+			return false;
+
+		$id = $token->unique_id;
+		$post = get_post( $id );
+		if ( !$post )
+			return false;
+
+		$post->post_content = serialize( $token->token );
+		wp_update_post( $post );
+
+		foreach ( $token->get_meta( false, true ) as $key => $val ) {
+			update_post_meta( $id, $key, $val );
+		}
+
+		return $id;
+	}
+
+	function delete( $args = array() ) {
+		if ( !$args['id'] )
+			return false;
+		return wp_delete_post( $args['id'] );
+	}
+
+	function get_tokens( $args = array() ) {
+		$defaults = array(
+			'type'    => 'access',
+			'service' => false,
+			'user_id' => get_current_user_id(),
+			'blog_id' => get_current_blog_id(),
+		);
+		$args = wp_parse_args( $args, $defaults );
+
+		$query = array(
+			'numberposts' => -1, // all
+			'post_type'   => 'kr_' . $args['type'] . '_token',
+			'author_id'   => $args['user_id'],
+		);
+
+		// Get tokens for a specific service
+		if ( $args['service'] ) {
+			$query['meta_key']   = 'service';
+			$query['meta_value'] = $args['service'];
+		}
+
+		$token_type = 'request' == $args['type'] ? 'Keyring_Request_Token' : 'Keyring_Access_Token';
+		$tokens = array();
+		$posts = get_posts( $query );
+		if ( count( $posts ) ) {
+			foreach ( $posts as $post ) {
+				$meta = get_post_meta( $post->ID );
+				foreach ( $meta as $mid => $met ) {
+					$meta[$mid] = $met[0];
+				}
+
+				$tokens[] = new $token_type(
+					get_post_meta(
+						$post->ID,
+						'service',
+						true
+					),
+					unserialize( $post->post_content ),
+					$meta,
+					$post->ID
+				);
+			}
+		}
+
+		return $tokens;
+	}
+
+	function get_token( $args = array() ) {
+		$defaults = array(
+			'id'      => false,
+			'type'    => 'access',
+			'service' => false,
+			'user_id' => get_current_user_id(),
+			'blog_id' => get_current_blog_id(),
+		);
+		$args = wp_parse_args( $args, $defaults );
+
+		if ( !$args['id'] && !$args['service'] )
+			return false;
+
+		$post = get_post( $args['id'] );
+		if ( $post ) {
+			$meta = get_post_meta( $post->ID );
+			foreach ( $meta as $mid => $met ) {
+				$meta[$mid] = $met[0];
+			}
+
+			$token_type = 'kr_request_token' == $post->post_type ? 'Keyring_Request_Token' : 'Keyring_Access_Token';
+			return new $token_type(
+				get_post_meta(
+					$post->ID,
+					'service',
+					true
+				),
+				unserialize( $post->post_content ),
+				$meta,
+				$post->ID
+			);
+		}
+		return false;
+	}
+
+	function count( $args = array() ) {
+		return count( $this->get_tokens( $args ) );
+	}
+}

+ 307 - 0
app/plugins/keyring/keyring.php

@@ -0,0 +1,307 @@
+<?php
+/*
+Plugin Name: Keyring
+Plugin URI: http://dentedreality.com.au/projects/wp-keyring/
+Description: Keyring helps you manage your keys. It provides a generic, very hookable framework for connecting to remote systems and managing your access tokens, username/password combos etc for those services. On its own it doesn't do much, but it enables other plugins to do things that require authorization to act on your behalf.
+Version: 1.5.1
+Author: Beau Lebens
+Author URI: http://dentedreality.com.au
+*/
+
+// Define this in your wp-config (and set to true) to enable debugging
+defined( 'KEYRING__DEBUG_MODE' ) or define( 'KEYRING__DEBUG_MODE', false );
+
+// The name of a class which extends Keyring_Store to handle storage/manipulation of tokens.
+// Optionally define this in your wp-config.php or some other global config file.
+defined( 'KEYRING__TOKEN_STORE' ) or define( 'KEYRING__TOKEN_STORE', 'Keyring_SingleStore' );
+
+// Keyring can be run in "headless" mode, which just avoids creating any UI, and leaves
+// that up to you. Defaults to off (provides its own basic UI).
+defined( 'KEYRING__HEADLESS_MODE' ) or define( 'KEYRING__HEADLESS_MODE', false );
+
+// Debug/messaging levels. Don't mess with these
+define( 'KEYRING__DEBUG_NOTICE', 1 );
+define( 'KEYRING__DEBUG_WARN',   2 );
+define( 'KEYRING__DEBUG_ERROR',  3 );
+
+// Indicates Keyring is installed/active so that other plugins can detect it
+define( 'KEYRING__VERSION', '1.5.1' );
+
+/**
+ * Core Keyring class that handles UI and the general flow of requesting access tokens etc
+ * to manage access to remote services.
+ *
+ * @package Keyring
+ */
+class Keyring {
+	protected $registered_services = array();
+	protected $store               = false;
+	protected $errors              = array();
+	protected $messages            = array();
+	var $admin_page                = 'keyring';
+
+	function __construct() {
+		if ( ! KEYRING__HEADLESS_MODE ) {
+			require_once dirname( __FILE__ ) . '/admin-ui.php';
+			Keyring_Admin_UI::init();
+
+			add_filter( 'keyring_admin_url', function( $url ) {
+				return admin_url( 'tools.php?page=' . Keyring::init()->admin_page );
+			} );
+		}
+
+		// This is used internally to create URLs, and also to know when to
+		// attach handers. @see admin_url() and request_handlers()
+		$this->admin_page = apply_filters( 'keyring_admin_page', 'keyring' );
+	}
+
+	static function &init( $force_load = false ) {
+		static $instance = false;
+
+		if ( !$instance ) {
+			if ( ! KEYRING__HEADLESS_MODE )
+				load_plugin_textdomain( 'keyring', false, dirname( plugin_basename( __FILE__ ) ) . '/languages/' );
+			$instance = new Keyring;
+
+			// Keyring is being loaded 'late', so we need to do some extra set-up
+			if ( did_action( 'init' ) || $force_load ) {
+				$instance->plugins_loaded();
+				do_action( 'keyring_load_services' );
+			}
+		} else {
+			if ( $force_load ) {
+				$instance->plugins_loaded();
+				do_action( 'keyring_load_services' );
+			}
+		}
+
+		return $instance;
+	}
+
+	static function plugins_loaded() {
+		// Load stores early so we can confirm they're loaded correctly
+		require_once dirname( __FILE__ ) . '/store.php';
+		do_action( 'keyring_load_token_stores' );
+		if ( !defined( 'KEYRING__TOKEN_STORE' ) || !class_exists( KEYRING__TOKEN_STORE ) || !in_array( 'Keyring_Store', class_parents( KEYRING__TOKEN_STORE ) ) )
+			wp_die( sprintf( __( 'Invalid <code>KEYRING__TOKEN_STORE</code> specified. Please make sure <code>KEYRING__TOKEN_STORE</code> is set to a valid classname for handling token storage in <code>%s</code> (or <code>wp-config.php</code>)', 'keyring' ), __FILE__ ) );
+
+		// Load base token and service definitions + core services
+		require_once dirname( __FILE__ ) . '/token.php';
+		require_once dirname( __FILE__ ) . '/service.php'; // Triggers a load of all core + extended service definitions
+
+		// Initiate Keyring
+		add_action( 'init', array( 'Keyring', 'init' ), 1 );
+
+		// Load external Services (plugins etc should hook to this to define new ones/extensions)
+		add_action( 'init', function() {
+			do_action( 'keyring_load_services' );
+		}, 2 );
+
+		/**
+		 * And trigger request handlers, which plugins and extended Services use to handle UI,
+		 * redirects, errors etc.
+		 * @see ::request_handlers()
+		 */
+		add_action( 'admin_init', array( 'Keyring', 'request_handlers' ), 100 );
+	}
+
+	/**
+	 * Core request handler which is the crux of everything. An action is called
+	 * here for almost everything Keyring does, so you can use it to intercept
+	 * almost everything. Based entirely on $_REQUEST[page|action|service]
+	 */
+	static function request_handlers() {
+		global $current_user;
+
+		if ( defined( 'KEYRING__FORCE_USER' ) && KEYRING__FORCE_USER && in_array( $_REQUEST['action'], array( 'request', 'verify' ) ) ) {
+			global $current_user;
+			$real_user = $current_user->ID;
+			wp_set_current_user( KEYRING__FORCE_USER );
+		}
+
+		if (
+				!empty( $_REQUEST['action'] )
+			&&
+				in_array( $_REQUEST['action'], apply_filters( 'keyring_core_actions', array( 'request', 'verify', 'created', 'delete', 'manage' ) ) )
+			&&
+				!empty( $_REQUEST['service'] )
+			&&
+				in_array( $_REQUEST['service'], array_keys( Keyring::get_registered_services() ) )
+		) {
+			// We have an action here to allow us to do things pre-authorization, just in case
+			do_action( "pre_keyring_{$_REQUEST['service']}_{$_REQUEST['action']}", $_REQUEST );
+
+			// Core nonce check required for everything. "keyring-ACTION" is the kr_nonce format
+			if ( !isset( $_REQUEST['kr_nonce'] ) || !wp_verify_nonce( $_REQUEST['kr_nonce'], 'keyring-' . $_REQUEST['action'] ) ) {
+				Keyring::error( __( 'Invalid/missing Keyring core nonce. All core actions require a valid nonce.', 'keyring' ) );
+				exit;
+			}
+
+			Keyring_Util::debug( "keyring_{$_REQUEST['service']}_{$_REQUEST['action']}" );
+			Keyring_Util::debug( $_GET );
+			do_action( "keyring_{$_REQUEST['service']}_{$_REQUEST['action']}", $_REQUEST );
+
+			if ( 'delete' == $_REQUEST['action'] )
+				do_action( "keyring_connection_deleted", $_REQUEST['service'], $_REQUEST );
+		}
+
+		if ( defined( 'KEYRING__FORCE_USER' ) && KEYRING__FORCE_USER && in_array( $_REQUEST['action'], array( 'request', 'verify' ) ) )
+			wp_set_current_user( $real_user );
+	}
+
+	static function register_service( Keyring_Service $service ) {
+		if ( Keyring_Util::is_service( $service ) ) {
+			Keyring::init()->registered_services[ $service->get_name() ] = $service;
+			return true;
+		}
+		return false;
+	}
+
+	static function get_registered_services() {
+		return Keyring::init()->registered_services;
+	}
+
+	static function get_service_by_name( $name ) {
+		$keyring = Keyring::init();
+		if ( !isset( $keyring->registered_services[ $name ] ) )
+			return null;
+
+		return $keyring->registered_services[ $name ];
+	}
+
+	static function get_token_store() {
+		$keyring = Keyring::init();
+
+		if ( !$keyring->store )
+			$keyring->store = call_user_func( array( KEYRING__TOKEN_STORE, 'init' ) );
+
+		return $keyring->store;
+	}
+
+	static function message( $str ) {
+		$keyring = Keyring::init();
+		$keyring->messages[] = $str;
+	}
+
+	/**
+	 * Generic error handler/trigger.
+	 * @param  String $str	Informational message (user-readable)
+	 * @param  array  $info Additional information relating to the error.
+	 */
+	static function error( $str, $info = array() ) {
+		$keyring = Keyring::init();
+		$keyring->errors[] = $str;
+		do_action( 'keyring_error', $str, $info, isset( $this ) ? $this : null );
+		wp_die( $str, __( 'Keyring Error', 'keyring' ) );
+		exit;
+	}
+
+	function has_errors() {
+		return count( $this->errors );
+	}
+
+	function has_messages() {
+		return count( $this->messages );
+	}
+
+	function get_messages() {
+		return $this->messages;
+	}
+
+	function get_errors() {
+		return $this->errors;
+	}
+}
+
+class Keyring_Util {
+	static function debug( $str, $level = KEYRING__DEBUG_NOTICE ) {
+		if ( !KEYRING__DEBUG_MODE )
+			return;
+
+		if ( is_object( $str ) || is_array( $str ) )
+			$str = print_r( $str, true );
+
+		switch ( $level ) {
+		case KEYRING__DEBUG_WARN :
+			echo "<div style='border:solid 1px #000; padding: 5px; background: #eee;'>Keyring Warning: $str</div>";
+			break;
+		case KEYRING__DEBUG_ERROR :
+			wp_die( '<h1>Keyring Error:</h1>' . '<p>' . $str . '</p>' );
+			exit;
+		}
+
+		error_log( "Keyring: $str" );
+	}
+
+	static function is_service( $service ) {
+		if ( is_object( $service ) && is_subclass_of( $service, 'Keyring_Service' ) )
+			return true;
+
+		return false;
+	}
+
+	static function has_custom_ui( $service, $action ) {
+		return has_action( "keyring_{$service}_{$action}_ui" );
+	}
+
+	/**
+	 * Get a URL to the Keyring admin UI, works kinda like WP's admin_url()
+	 *
+	 * @param string $service Shortname of a specific service.
+	 * @return URL to Keyring admin UI (main listing, or specific service verify process)
+	 */
+	static function admin_url( $service = false, $params = array() ) {
+		$url = apply_filters( 'keyring_admin_url', admin_url( '' ) );
+
+		if ( $service )
+			$url = add_query_arg( array( 'service' => $service ), $url );
+
+		if ( count( $params ) )
+			$url = add_query_arg( $params, $url );
+
+		return $url;
+	}
+
+	static function connect_to( $service, $for ) {
+		Keyring_Util::debug( 'Connect to: ' . $service );
+		// Redirect into Keyring's auth handler if a valid service is provided
+		$kr_nonce = wp_create_nonce( 'keyring-request' );
+		$request_nonce = wp_create_nonce( 'keyring-request-' . $service );
+		wp_safe_redirect(
+			Keyring_Util::admin_url(
+				$service,
+				array(
+					'action'   => 'request',
+					'kr_nonce' => $kr_nonce,
+					'nonce'    => $request_nonce,
+					'for'      => $for
+				)
+			)
+		);
+		exit;
+	}
+
+	static function token_select_box( $tokens, $name, $create = false ) {
+		?><select name="<?php echo esc_attr( $name ); ?>" id="<?php echo esc_attr( $name ); ?>">
+		<?php if ( $create ) : ?>
+			<option value="new"><?php _e( 'Create a new connection&hellip;', 'keyring' ); ?></option>
+		<?php endif; ?>
+		<?php foreach ( (array) $tokens as $token ) : ?>
+			<option value="<?php echo $token->get_uniq_id(); ?>"><?php echo $token->get_display(); ?></option>
+		<?php endforeach; ?>
+		</select><?php
+	}
+
+	static function is_error( $obj ) {
+		return is_a( $obj, 'Keyring_Error' );
+	}
+}
+
+/**
+ * Stub implementation of an error object. May at some point get custom, but
+ * treat it like a normal WP_Error for now.
+ */
+class Keyring_Error extends WP_Error { }
+
+// This is the main hook that kicks off everything. Needs to be early so we have time to load everything.
+add_action( 'plugins_loaded', array( 'Keyring', 'plugins_loaded' ) );

+ 656 - 0
app/plugins/keyring/languages/keyring.po

@@ -0,0 +1,656 @@
+# Copyright (C) 2013 Keyring
+# This file is distributed under the same license as the Keyring package.
+msgid ""
+msgstr ""
+"Project-Id-Version: Keyring\n"
+"Report-Msgid-Bugs-To: http://wordpress.org/tag/keyring\n"
+"POT-Creation-Date: 2013-11-13 23:15:58+00:00\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"PO-Revision-Date: 2013-11-13 18:17-0500\n"
+"Last-Translator: Beau Lebens <beau@dentedreality.com.au>\n"
+"Language-Team:  <beau@dentedreality.com.au>\n"
+"Language: English\n"
+"X-Generator: Poedit 1.5.7\n"
+
+#: admin-ui.php:56
+msgid "Keyring: Managed Connections"
+msgstr ""
+
+#: admin-ui.php:56
+msgid "Add New"
+msgstr ""
+
+#: admin-ui.php:59
+msgid "Add New Connection"
+msgstr ""
+
+#: admin-ui.php:60 includes/services/extended/google-contacts.php:155
+#: service.php:148
+msgid "&larr; Back"
+msgstr ""
+
+#: admin-ui.php:63
+msgid "Keyring Error!"
+msgstr ""
+
+#. #-#-#-#-#  plugin.pot (Keyring 1.5)  #-#-#-#-#
+#. Plugin Name of the plugin/theme
+#: admin-ui.php:66
+msgid "Keyring"
+msgstr ""
+
+#: admin-ui.php:76
+msgid "Start Again"
+msgstr ""
+
+#: admin-ui.php:98
+msgid "Invalid/missing delete nonce."
+msgstr ""
+
+#: admin-ui.php:103
+msgid "That connection has been deleted."
+msgstr ""
+
+#: admin-ui.php:105
+msgid "Could not delete that connection!"
+msgstr ""
+
+#: admin-ui.php:149
+msgid "Click a service to create a new connection:"
+msgstr ""
+
+#: admin-ui.php:159
+msgid "Manage"
+msgstr ""
+
+#: admin-ui.php:166
+msgid "There are no fully-configured services available to connect to."
+msgstr ""
+
+#: admin-ui.php:170
+msgid ""
+"The following services need to be configured correctly before you can "
+"connect to them."
+msgstr ""
+
+#: admin-ui.php:208
+msgid ""
+"You haven't added any connections yet. <a href=\"%s\">Add a New Connection</"
+"a>."
+msgstr ""
+
+#: admin-ui.php:213
+msgid "Service"
+msgstr ""
+
+#: admin-ui.php:214 admin-ui.php:228
+msgid "Avatar"
+msgstr ""
+
+#: admin-ui.php:215
+msgid "External ID"
+msgstr ""
+
+#: admin-ui.php:216
+msgid "Name"
+msgstr ""
+
+#: admin-ui.php:255
+msgid "Delete"
+msgstr ""
+
+#: includes/services/core/http-basic.php:33
+#: includes/services/extended/instapaper.php:49
+msgid "Account Details"
+msgstr ""
+
+#: includes/services/core/http-basic.php:40
+#: includes/services/extended/instapaper.php:56
+msgid "Your account details could not be confirmed, please try again."
+msgstr ""
+
+#: includes/services/core/http-basic.php:43
+#: includes/services/extended/instapaper.php:59
+msgid "Please make sure you enter a username and password."
+msgstr ""
+
+#: includes/services/core/http-basic.php:70
+msgid "Enter your username and password for accessing <strong>%s</strong>:"
+msgstr ""
+
+#: includes/services/core/http-basic.php:78
+msgid "Username"
+msgstr ""
+
+#: includes/services/core/http-basic.php:80
+#: includes/services/extended/instapaper.php:96
+msgid "Password"
+msgstr ""
+
+#: includes/services/core/http-basic.php:84
+#: includes/services/extended/instapaper.php:100
+msgid "Verify Details"
+msgstr ""
+
+#: includes/services/core/http-basic.php:85
+#: includes/services/extended/google-contacts.php:197
+#: includes/services/extended/instapaper.php:101 service.php:187
+msgid "Cancel"
+msgstr ""
+
+#: includes/services/core/http-basic.php:102
+#: includes/services/core/oauth1.php:199 includes/services/core/oauth2.php:71
+#: includes/services/extended/instapaper.php:116
+msgid "Invalid/missing verification nonce."
+msgstr ""
+
+#: includes/services/core/http-basic.php:173
+#: includes/services/core/oauth1.php:259 includes/services/core/oauth2.php:174
+msgid "No token"
+msgstr ""
+
+#: includes/services/core/http-basic.php:203
+msgid "Unsupported method specified for verify_token."
+msgstr ""
+
+#: includes/services/core/oauth1.php:55 includes/services/core/oauth2.php:31
+msgid "Invalid/missing request nonce."
+msgstr ""
+
+#: includes/services/core/oauth1.php:128
+msgid "Unsupported method specified for request_token."
+msgstr ""
+
+#: includes/services/core/oauth1.php:169 includes/services/core/oauth1.php:251
+msgid ""
+"There was a problem connecting to %s to create an authorized connection. "
+"Please try again in a moment."
+msgstr ""
+
+#: includes/services/core/oauth1.php:349
+msgid "Unsupported method specified."
+msgstr ""
+
+#: includes/services/core/oauth2.php:77 includes/services/core/oauth2.php:151
+msgid "There was a problem authorizing with %s. Please try again in a moment."
+msgstr ""
+
+#: includes/services/core/oauth2.php:91
+msgid ""
+"Failed to load your request token while connecting to %s. Please try again "
+"in a moment."
+msgstr ""
+
+#: includes/services/extended/example.php:58
+msgid "Continue"
+msgstr ""
+
+#: includes/services/extended/example.php:94
+msgid "Done"
+msgstr ""
+
+#: includes/services/extended/facebook.php:39
+msgid "If you haven't already, you'll need to set up an app on Facebook:"
+msgstr ""
+
+#: includes/services/extended/facebook.php:41
+msgid ""
+"Click <strong>+ Create New App</strong> at the top-right of <a href='https://"
+"developers.facebook.com/apps'>this page</a>"
+msgstr ""
+
+#: includes/services/extended/facebook.php:42
+msgid ""
+"Enter a name for your app (maybe the name of your website?) and click "
+"<strong>Continue</strong> (ignore the other settings)"
+msgstr ""
+
+#: includes/services/extended/facebook.php:43
+msgid "Enter whatever is in the CAPTCHA and click <strong>Continue</strong>"
+msgstr ""
+
+#: includes/services/extended/facebook.php:44
+msgid ""
+"Put your domain name in the <strong>App Domains</strong> box. That value is "
+"probably <code>%s</code>"
+msgstr ""
+
+#: includes/services/extended/facebook.php:45
+msgid ""
+"Click the <strong>Website with Facebook Login</strong> box and enter the URL "
+"to your website, which is probably <code>%s</code>"
+msgstr ""
+
+#: includes/services/extended/facebook.php:46
+msgid "Click <strong>Save Changes</strong>"
+msgstr ""
+
+#: includes/services/extended/facebook.php:48
+msgid ""
+"Once you're done configuring your app, copy and paste your <strong>App ID</"
+"strong> and <strong>App Secret</strong> (in the top section of your app's "
+"Basic details) into the appropriate fields below. Leave the App Key field "
+"blank."
+msgstr ""
+
+#: includes/services/extended/flickr.php:36
+msgid ""
+"To connect to Flickr, you'll need to <a href='http://www.flickr.com/services/"
+"apps/create/apply/?'>create an application at Flickr.com</a>. If this is a "
+"personal website then you can use a non-commercial key (which will be "
+"approved automatically)."
+msgstr ""
+
+#: includes/services/extended/flickr.php:37
+msgid ""
+"Once you've created your app, enter the API <strong>Key</strong> and "
+"<strong>Secret</strong> below (App ID is not required for Flickr apps)."
+msgstr ""
+
+#: includes/services/extended/foursquare.php:38
+msgid ""
+"If you haven't already, you'll need to <a href='https://foursquare.com/"
+"developers/register'>create a new app at Foursquare</a>. You should only "
+"need to worry about these settings:"
+msgstr ""
+
+#: includes/services/extended/foursquare.php:40
+msgid ""
+"<strong>Your app name</strong>: enter whatever you like, maybe your "
+"website's name?"
+msgstr ""
+
+#: includes/services/extended/foursquare.php:41
+msgid ""
+"<strong>Download / welcome page url</strong>: just enter your website's URL, "
+"<code>%s</code>"
+msgstr ""
+
+#: includes/services/extended/foursquare.php:42
+msgid "<strong>Redirect URI(s)</strong>: Copy-paste this, <code>%s</code>"
+msgstr ""
+
+#: includes/services/extended/foursquare.php:43
+msgid "<strong>New users can connect via the web</strong>: check the box"
+msgstr ""
+
+#: includes/services/extended/foursquare.php:45
+msgid ""
+"Once you've saved those changes, copy the <strong>Client id</strong> value "
+"into the <strong>API Key</strong> field, and the <strong>Client secret</"
+"strong> value into the <strong>API Secret</strong> field and click save (you "
+"don't need an App ID value for Foursquare)."
+msgstr ""
+
+#: includes/services/extended/google-contacts.php:57
+msgid ""
+"Google controls access to all of their APIs through their API Console. <a "
+"href='https://code.google.com/apis/console'>Go to the console</a> and click "
+"the project dropdown just under the logo in the upper left of the screen. "
+"Click <strong>Create&hellip;</strong> to create a new project. Enter a name "
+"and then click <strong>Create project</strong>. You don't technically need "
+"access to any of the additional APIs, but if you want to, then feel free to "
+"enable them"
+msgstr ""
+
+#: includes/services/extended/google-contacts.php:58
+msgid "Now you need to set up an OAuth Client ID."
+msgstr ""
+
+#: includes/services/extended/google-contacts.php:60
+msgid "Click <strong>API Access</strong> in the menu on the left."
+msgstr ""
+
+#: includes/services/extended/google-contacts.php:61
+msgid ""
+"Click the big blue button labelled <strong>Create an OAuth 2.0 client "
+"ID&hellip;</strong>"
+msgstr ""
+
+#: includes/services/extended/google-contacts.php:62
+msgid ""
+"You must enter a <strong>Product name</strong>, but you can skip the logo "
+"and home page URL"
+msgstr ""
+
+#: includes/services/extended/google-contacts.php:63
+msgid "Leave the Application type set to <strong>Web application</strong>"
+msgstr ""
+
+#: includes/services/extended/google-contacts.php:64
+msgid ""
+"Next to <strong>Your site or hostname</strong>, click <strong>(more options)"
+"</strong> <code>%s</code>"
+msgstr ""
+
+#: includes/services/extended/google-contacts.php:65
+msgid ""
+"In the <strong>Authorized Redirect URIs</strong> box, enter the URL <code>"
+"%s</code>"
+msgstr ""
+
+#: includes/services/extended/google-contacts.php:66
+msgid ""
+"For the <strong>Authorized JavaScript Origins</strong>, enter the URL of "
+"your domain, e.g. <code>http://%s</code>"
+msgstr ""
+
+#: includes/services/extended/google-contacts.php:67
+msgid "Click <strong>Create client ID</strong> when you're done"
+msgstr ""
+
+#: includes/services/extended/google-contacts.php:69
+msgid ""
+"Once you've saved your details, copy the <strong>Client ID</strong> into the "
+"<strong>Client ID</strong> field below, and the <strong>Client secret</"
+"strong> value into <strong>Client Secret</strong>. The Redirect URI box "
+"should fill itself out for you."
+msgstr ""
+
+#: includes/services/extended/google-contacts.php:147 service.php:140
+msgid "Invalid/missing management nonce."
+msgstr ""
+
+#: includes/services/extended/google-contacts.php:154 service.php:147
+msgid "Keyring Service Management"
+msgstr ""
+
+#: includes/services/extended/google-contacts.php:156 service.php:149
+msgid "%s API Credentials"
+msgstr ""
+
+#: includes/services/extended/google-contacts.php:166 service.php:159
+msgid "Credentials saved."
+msgstr ""
+
+#: includes/services/extended/google-contacts.php:188
+msgid "Client ID"
+msgstr ""
+
+#: includes/services/extended/google-contacts.php:190
+msgid "Client Secret"
+msgstr ""
+
+#: includes/services/extended/google-contacts.php:192
+msgid "Redirect URI"
+msgstr ""
+
+#: includes/services/extended/google-contacts.php:196 service.php:186
+msgid "Save Changes"
+msgstr ""
+
+#: includes/services/extended/instagram.php:38
+msgid ""
+"To get started, <a href='http://instagram.com/developer/clients/"
+"register/'>register an OAuth client on Instagram</a>. The most important "
+"setting is the <strong>OAuth redirect_uri</strong>, which should be set to "
+"<code>%s</code>. You can set the other values to whatever you like."
+msgstr ""
+
+#: includes/services/extended/instagram.php:39
+msgid ""
+"Once you've saved those changes, copy the <strong>CLIENT ID</strong> value "
+"into the <strong>API Key</strong> field, and the <strong>CLIENT SECRET</"
+"strong> value into the <strong>API Secret</strong> field and click save (you "
+"don't need an App ID value for Instagram)."
+msgstr ""
+
+#: includes/services/extended/instapaper.php:38
+msgid ""
+"To use the Instapaper API, you need to get manually approved. <a "
+"href='http://www.instapaper.com/main/request_oauth_consumer_token'>Apply "
+"here</a>, then wait for a reply email."
+msgstr ""
+
+#: includes/services/extended/instapaper.php:39
+msgid ""
+"Once you get approved, you'll get an email back with your details. Copy the "
+"<strong>OAuth consumer key</strong> value into the <strong>API Key</strong> "
+"field, and the <strong>OAuth consumer secret</strong> value into the "
+"<strong>API Secret</strong> field and click save (you don't need an App ID "
+"value for Instapaper)."
+msgstr ""
+
+#: includes/services/extended/instapaper.php:86
+msgid ""
+"Enter your username (or email address) and password for accessing <strong>"
+"%s</strong>:"
+msgstr ""
+
+#: includes/services/extended/instapaper.php:94
+msgid "Email address"
+msgstr ""
+
+#: includes/services/extended/linkedin.php:37
+msgid ""
+"To connect to LinkedIn, you'll first need to <a href='https://www.linkedin."
+"com/secure/developer?newapp='>create an app</a>. A lot of the details are "
+"required, but they're not actually important to the operation of your app, "
+"since Keyring will override any important settings."
+msgstr ""
+
+#: includes/services/extended/linkedin.php:38
+msgid ""
+"Once you've created your app, go down to the <strong>OAuth Keys</strong> "
+"section and copy the <strong>API Key</strong> value into the <strong>API "
+"Key</strong> field below, and the <strong>Secret Key</strong> value into the "
+"<strong>API Secret</strong> field and click save (you don't need an App ID "
+"value for LinkedIn)."
+msgstr ""
+
+#: includes/services/extended/moves.php:17
+msgid "Unknown"
+msgstr ""
+
+#: includes/services/extended/moves.php:18
+msgid "Home"
+msgstr ""
+
+#: includes/services/extended/moves.php:19
+msgid "Work"
+msgstr ""
+
+#: includes/services/extended/moves.php:20
+msgid "School"
+msgstr ""
+
+#: includes/services/extended/moves.php:21
+msgid "Manually Named"
+msgstr ""
+
+#: includes/services/extended/moves.php:22
+msgid "Selected from foursquare"
+msgstr ""
+
+#: includes/services/extended/moves.php:26
+msgid "Walking"
+msgstr ""
+
+#: includes/services/extended/moves.php:27
+msgid "Cycling"
+msgstr ""
+
+#: includes/services/extended/moves.php:28
+msgid "Running"
+msgstr ""
+
+#: includes/services/extended/moves.php:29
+msgid "Transport"
+msgstr ""
+
+#: includes/services/extended/moves.php:58
+msgid ""
+"Head over and <a href='https://dev.moves-app.com/apps/new'>create a new "
+"application</a> on Moves-app which you'll use to connect."
+msgstr ""
+
+#: includes/services/extended/moves.php:59
+msgid ""
+"Once it's created, click the <strong>Development</strong> tab. Your "
+"<strong>App ID</strong> and <strong>API Key</strong> are both shown on that "
+"page as <strong>Client ID</strong>. Enter your <strong>Client secret</"
+"strong> in the <strong>API Secret</strong> box. On that tab there is also a "
+"<strong>Redirect URI</strong> box, which you should set to <code>%s</code>."
+msgstr ""
+
+#: includes/services/extended/runkeeper.php:40
+msgid ""
+"You'll need to <a href='http://runkeeper.com/partner/applications/"
+"registerForm'>register a new application</a> on RunKeeper so that you can "
+"connect. Be sure to check the <strong>Read Health Information</strong> "
+"option under <strong>Permissions Requests</strong> (and explain why you want "
+"to read that data). You will also be required to set an <strong>Estimated "
+"Date of Publication</strong>."
+msgstr ""
+
+#: includes/services/extended/runkeeper.php:41
+msgid ""
+"Once you've registered your application, click the <strong>Application Keys "
+"and URLs</strong> next to it, and copy the <strong>Client ID</strong> into "
+"the <strong>API Key</strong> field below, and the <strong>Client Secret</"
+"strong> value into <strong>API Secret</strong>."
+msgstr ""
+
+#: includes/services/extended/tripit.php:40
+msgid ""
+"If you haven't created an app on TripIt yet, <a href='https://www.tripit.com/"
+"developer/create'>create one now</a>. Make sure you set it to being a 'Web "
+"application or widget', and other than that the settings are all up to you."
+msgstr ""
+
+#: includes/services/extended/tripit.php:41
+msgid ""
+"Once you've created your app, you will see a yellow box at the top of the "
+"page, where you can get your <strong>API Key</strong> and <strong>API "
+"Secret</strong>, to enter below (you don't need an App ID value for TripIt)."
+msgstr ""
+
+#: includes/services/extended/tumblr.php:37
+msgid ""
+"To get started, <a href='http://www.tumblr.com/oauth/register'>register an "
+"application with Tumblr</a>. The <strong>Default callback URL</strong> "
+"should be set to <code>%s</code>, and you can enter whatever you like in the "
+"other fields."
+msgstr ""
+
+#: includes/services/extended/tumblr.php:38
+msgid ""
+"Once you've created your app, copy the <strong>OAuth Consumer Key</strong> "
+"into the <strong>API Key</strong> field below. Click the <strong>Show secret "
+"key</strong> link, and then copy the <strong>Secret Key</strong> value into "
+"the <strong>API Secret</strong> field below. You don't need an App ID value "
+"for Tumblr."
+msgstr ""
+
+#: includes/services/extended/twitter.php:40
+msgid ""
+"If you haven't already, you'll need to <a href='https://dev.twitter.com/apps/"
+"new'>create an app on Twitter</a> (log in using your normal Twitter "
+"account). Make sure you enter something for the <strong>Callback URL</"
+"strong>, even though Keyring will override it with the correct value. Just "
+"enter your homepage, e.g. <code>%s</code>."
+msgstr ""
+
+#: includes/services/extended/twitter.php:41
+msgid ""
+"Once you've created an app, copy and paste your <strong>Consumer key</"
+"strong> and <strong>Consumer secret</strong> (from under the <strong>OAuth "
+"settings</strong> section of your app's details) into the boxes below. You "
+"don't need an App ID for Twitter."
+msgstr ""
+
+#: includes/services/extended/yahoo.php:34
+msgid ""
+"To connect to Yahoo!, you need to <a href='https://developer.apps.yahoo.com/"
+"dashboard/createKey.html'>Create a new project</a>. Make sure you set the "
+"<strong>Access Scope</strong> to <strong>This app requires access to private "
+"user data</strong>. When you select that, you will be asked for an "
+"<strong>Application Domain</strong>, which should probably be set to "
+"<code>http://%s</code>. Which APIs you request access for will depend on how "
+"Keyring will be used on this site. Common ones will be <strong>Contacts</"
+"strong>, <strong>Social Directory</strong>, <strong>Status</strong>, and "
+"<strong>Updates</strong>."
+msgstr ""
+
+#: includes/services/extended/yahoo.php:35
+msgid ""
+"Once you've created your project, copy and paste your <strong>Consumer key</"
+"strong> and <strong>Consumer secret</strong> (from under the "
+"<strong>Authentication Information: OAuth</strong> section of your app's "
+"details) into the boxes below. You don't need an App ID for Yahoo!."
+msgstr ""
+
+#: includes/stores/singlestore.php:18
+msgid "Keyring Request Token"
+msgstr ""
+
+#: includes/stores/singlestore.php:19
+msgid ""
+"Token or authentication details stored by Keyring. Request tokens are used "
+"during the authorization flow."
+msgstr ""
+
+#: includes/stores/singlestore.php:24
+msgid "Keyring Access Token"
+msgstr ""
+
+#: includes/stores/singlestore.php:25
+msgid ""
+"Token or authentication details stored by Keyring. Access tokens are used to "
+"make secure requests."
+msgstr ""
+
+#: keyring.php:86
+msgid ""
+"Invalid <code>KEYRING__TOKEN_STORE</code> specified. Please make sure "
+"<code>KEYRING__TOKEN_STORE</code> is set to a valid classname for handling "
+"token storage in <code>%s</code> (or <code>wp-config.php</code>)"
+msgstr ""
+
+#: keyring.php:136
+msgid ""
+"Invalid/missing Keyring core nonce. All core actions require a valid nonce."
+msgstr ""
+
+#: keyring.php:195
+msgid "Keyring Error"
+msgstr ""
+
+#: keyring.php:287
+msgid "Create a new connection&hellip;"
+msgstr ""
+
+#: service.php:178
+msgid "App ID"
+msgstr ""
+
+#: service.php:180
+msgid "API Key"
+msgstr ""
+
+#: service.php:182
+msgid "API Secret"
+msgstr ""
+
+#. Plugin URI of the plugin/theme
+msgid "http://dentedreality.com.au/projects/wp-keyring/"
+msgstr ""
+
+#. Description of the plugin/theme
+msgid ""
+"Keyring helps you manage your keys. It provides a generic, very hookable "
+"framework for connecting to remote systems and managing your access tokens, "
+"username/password combos etc for those services. On its own it doesn't do "
+"much, but it enables other plugins to do things that require authorization "
+"to act on your behalf."
+msgstr ""
+
+#. Author of the plugin/theme
+msgid "Beau Lebens"
+msgstr ""
+
+#. Author URI of the plugin/theme
+msgid "http://dentedreality.com.au"
+msgstr ""

+ 142 - 0
app/plugins/keyring/readme.txt

@@ -0,0 +1,142 @@
+=== Keyring ===
+
+Contributors: beaulebens, mdawaffe, jshreve, automattic
+Tags: authentication, security, oauth, http basic, key, token, authorization, delicious, facebook, flickr, foursquare, google contacts, instagram, instapaper, linkedin, runkeeper, tripit, tumblr, twitter, yahoo, web services
+Requires at least: 3.3
+Tested up to: 3.6
+Stable Tag: 1.5.1
+
+An authentication framework that handles authorization with external web services.
+
+== Description ==
+
+See the [Keyring Developer's Guide](http://dentedreality.com.au/projects/wp-keyring/) for more details.
+
+Keyring provides a very hookable, completely customizable framework for connecting your WordPress to an external service. It takes care of all the heavy lifting when making authenticated requests, so all you need to do is implement cool features and not worry about these tricky bits.
+
+Out of the box, Keyring currently comes with base Service definitions for webservices which use:
+
+* HTTP Basic
+* OAuth1
+* OAuth2
+
+And includes an example service implementation (services/extended/example.php) plus ready-to-use definitions for:
+
+* [Delicious](http://delicious.com/)
+* [Facebook](http://facebook.com/)
+* [Flickr](http://flickr.com/)
+* [Foursquare](http://foursquare.com/)
+* [Google Contacts](http://google.com/)
+* [Instagram](http://instagram.com/)
+* [Instapaper](http://instapaper.com/)
+* [LinkedIn](http://linkedin.com/)
+* [Moves](http://moves-app.com/)
+* [RunKeeper](http://runkeeper.com/)
+* [TripIt](http://tripit.com/)
+* [Tumblr](http://tumblr.com/)
+* [Twitter](http://twitter.com/)
+* [Yahoo! Updates](http://yahoo.com/)
+
+You can very easily write your own Service definitions and then use all the power of Keyring to hook into that authentication flow. See the [Keyring Developer's Guide](http://dentedreality.com.au/projects/wp-keyring/) for more details.
+
+
+== Installation ==
+
+1. Install Keyring either via the WordPress.org plugin directory, or by uploading the files to your server
+2. Activate Keyring in Plugins > Installed Plugins
+3. Go to Tools > Keyring > Add New and you will be prompted to configure services before making user-specific connections to them
+
+== Frequently Asked Questions ==
+
+= How Do I Use Keyring in my Plugin? =
+
+Check out the [Keyring Developer's Guide](http://dentedreality.com.au/projects/wp-keyring/).
+
+See [Keyring Social Importers](http://wordpress.org/plugins/keyring-social-importers/) for an example. You can also extend Keyring Service classes directly, rather than attaching the service as a property to an object (like the Importers do).
+
+= Will Keyring work on my WordPress? =
+
+Keyring requires PHP 5.3+ to work, because it makes use of some modern features in PHP like late static binding and abstract classes. Other than that, as long as you meet the minimum required WP version, you should be OK to get started. If you get a cryptic "T_PAAMAYIM_NEKUDOTAYIM" error, you need to upgrade to PHP 5.3+.
+
+Your webserver will also need to be able to make outbound HTTPS requests for some operations with some services to work correctly.
+
+= How do I configure Services? =
+
+Most services within Keyring require some sort of API key/secret before you can connect to them.
+
+1. Go to Tools > Keyring > Add New
+2. Click the name of a service in the bottom section, or 'Manage' next to one of the services in the top section
+3. Enter your API details (you will need to get those from the specific service)
+4. Click 'Save Changes'
+5. Now you should be able to create a new connection to that service
+
+= How do I connect to 'x' service? =
+
+1. Go to Tools > Keyring > Add New
+2. Click the name of the service in the top section (if it's in the bottom section, then that service has not been configured for API access yet, see above)
+3. Follow through any authentication prompts to connect
+4. You should now be connected, and your connection details should be listed on the Keyring admin page (which you will be redirected to once authentication is complete)
+
+= Now what? =
+
+Keyring just provides a framework for handling connections to external services. You need to download another plugin which makes use of Keyring to do anything useful (e.g. an importer or content-syncing plugin).
+
+= How does Keyring store tokens? =
+
+* By default, on a single-site install, Keyring stores tokens in your wp_posts table with a custom post type of 'keyring_token'
+* Coming soon, Keyring will store tokens for a multi-site install in a specified blog/site's wp_posts (so you can set a single site aside for just token storage if you like)
+* Keyring provides a framework for you to write your own token storage engine (see store.php and includes/stores/).
+
+= How do I add to the list of services Keyring can connect to? =
+
+Add files to includes/services/extended/ that either implement one of the includes/services/core/ service foundations, or start from scratch. Follow one of the existing service definitions for a template, and see service.php in the root of Keyring for some detail on methods you need to define, and optional ones that might make your life easier.
+
+== Changelog ==
+= 1.5.1 =
+* Remove example OAuth application included within that library. Unnecessary and contains an XSS vulnerability.
+
+= 1.5 =
+* Enhancement: Added Moves as a service
+* Bugfix: OAuth2 services were having querystring parameters stripped during POST requests. No longer doing that.
+* Bugfix: typo in profile request for RunKeeper service
+
+= 1.4 =
+* WARNING: BREAKING CHANGES
+* BREAKING: Depending on where you were loading Keyring, the new filtering on 'keyring_admin_url' might require some changes on your end
+* BREAKING: Credentials for Services are handled slightly differently now (especially if you were using constants), so confirm they are loading before rolling out this update
+* Introduce concept of "is_configured()" to Services so that you can test if a service has been set up correctly before attempting to use it
+* Change get_credentials() so that it checks for a service-specific _get_credentials(), then generic constants, then in the DB
+* get_credentials() is now always called when initiating a service, to load its details from the most appropriate place available
+* In the default Admin UI, split services out to show which ones are configured/ready to connect and which ones need attention
+* Add extensive helper instructions to the configuration pages for apps with links to where you need to go to register etc
+* Update Twitter requests to 1.1 endpoint, ready for them retiring v1
+* Keep track of request response codes (Props justinshreve)
+* Start adding some additional information to Keyring::error() for better handling
+
+= 1.3 =
+* Added Service definitions for Instapaper (paid account required) and TripIt
+* Improved access and request token filters
+* Specify request token in token query for custom storage engines that don't use globally-unique ids
+* Pass request token to verification of access tokens
+* Make Keyring::init() be callable after init (it will trigger everything it needs automatically)
+* Changed admin UI to use ListTable
+
+= 1.2 =
+* WARNING: BREAKING CHANGES
+* Huge overhaul of codebase to support Request tokens, passing reference via 'state' param (BREAKING)
+* Shuffled around how tokens are managed so that more places explicitly expect a Keyring_Token (BREAKING)
+* Force serialization of stored tokens when using SingleStore (BREAKING)
+* Big cleanup/changes to how token storage works, and how Keyring_Store looks (BREAKING)
+* Standardized handling of meta with tokens (BREAKING)
+* Added RunKeeper Service definition
+* Added a bunch of filters and tried to standardize them everywhere
+* Improve some nonce checking
+* Improved debugging information for different service types
+* Introduced app_ids for services that support/require them
+* Removed all wp_die()s in favor of Keyring::error(); exit;
+* Introduced test_connection() methods, props pento
+* Whitespace/alignment cleanup
+* Switched to using stable-tagging system in the WP.org repo
+
+= 1.1 =
+* First tagged version

+ 320 - 0
app/plugins/keyring/service.php

@@ -0,0 +1,320 @@
+<?php
+/**
+ * A Service is a remote site/service/system for which Keyring is capable of managing
+ * authentication. Each Service should have a series of methods for handling the creation
+ * of an authentication token, verifying the token and for performing authenticated
+ * requests.
+ *
+ * @package Keyring
+ */
+abstract class Keyring_Service {
+	const NAME          = '';
+	const LABEL         = '';
+	protected $token          = false;
+	protected $requires_token = true;
+	protected $store          = false;
+
+	private   $request_response_code = '';
+
+	/**
+	 * Handle the first part of getting a Token for this Service. In some cases
+	 * this may involve UI, in others it might just be a redirect.
+	 */
+	abstract function request_token();
+
+	/**
+	 * Second step/verification of a Token. This is where you can make a
+	 * test request, load meta, whatever you need to do. MUST include a call
+	 * to ::verified() at the end, if the Token is successfully verified.
+	 *
+	 * @return void
+	 * @author Beau Lebens
+	 */
+	abstract function verify_token();
+
+	/**
+	 * Make an outbound request against this Service, using the current Token
+	 * if ->requires_token() return true.
+	 *
+	 * @param string $url The URL to make the request against
+	 * @param array $params Additional parameters for the request (a la WP_HTTP)
+	 * @return String containing the body of the response on success, or Keyring_Error on any non-200 response
+	 */
+	abstract function request( $url, array $params );
+
+	/**
+	 * Get a displayable string for the passed token, for this service
+	 *
+	 * @param obj $token Keyring_Access_Token object
+	 * @return String for display, describing $token
+	 */
+	abstract function get_display( Keyring_Access_Token $token );
+
+	/**
+	 * Get an array of meta data to store with this token, based on parsing the access token
+	 * details passed back from the remote service.
+	 *
+	 * @param Mixed $token
+	 * @return Array containing keyed values to store along with this token
+	 */
+	function build_token_meta( $token ) {
+		return apply_filters( 'keyring_access_token_meta', array(), $this->get_name(), $token, null, $this );
+	}
+
+	function __construct() {
+		$this->store = Keyring::get_token_store();
+
+		// Default methods for handling actions, should always be defined (thus abstract, see above)
+		add_action( 'keyring_' . $this->get_name() . '_request', array( $this, 'request_token' ) );
+		add_action( 'keyring_' . $this->get_name() . '_verify', array( $this, 'verify_token' ) );
+	}
+
+	static function &init() {
+		static $instance = false;
+
+		if ( !$instance ) {
+			$class = get_called_class();
+			$services = Keyring::get_registered_services();
+			if ( in_array( $class::NAME, array_keys( $services ) ) ) {
+				$instance = $services[ $class::NAME ];
+			} else {
+				$instance = new $class;
+				Keyring::register_service( $instance );
+			}
+		}
+
+		return $instance;
+	}
+
+	/**
+	 * Get/set whether this Service requires a token before making requests.
+	 *
+	 * @param boolean $does_it
+	 * @return True if token is required, false if not. If called with no
+	 *         param, then just returns true/false. If called with a bool,
+	 *         then set requirement to true/false as specified.
+	 */
+	function requires_token( $does_it = null ) {
+		if ( is_null( $does_it ) )
+			return $this->requires_token;
+
+		$requires = $this->requires_token;
+		$this->requires_token = $does_it;
+		return $requires;
+	}
+
+	function get_name() {
+		$c = get_called_class();
+		if ( '' != $c::NAME )
+			$name = $c::NAME;
+		else
+			$name = strtolower( $c );
+		return $name;
+	}
+
+	function get_label() {
+		$c = get_called_class();
+		if ( '' != $c::LABEL )
+			$label = $c::LABEL;
+		else
+			$label = $this->get_name();
+		return $label;
+	}
+
+	function set_endpoint( $type, $url, $method = 'GET' ) {
+		$this->{$type . '_url'}    = $url;
+		$this->{$type . '_method'} = strtoupper( $method );
+		return true;
+	}
+
+	function get_request_response_code() {
+		return $this->request_response_code;
+	}
+
+	function set_request_response_code( $code ) {
+		$this->request_response_code = $code;
+	}
+
+	function basic_ui() {
+		if ( !isset( $_REQUEST['nonce'] ) || !wp_verify_nonce( $_REQUEST['nonce'], 'keyring-manage-' . $this->get_name() ) ) {
+			Keyring::error( __( 'Invalid/missing management nonce.', 'keyring' ) );
+			exit;
+		}
+
+		// Common Header
+		echo '<div class="wrap">';
+		screen_icon( 'ms-admin' );
+		echo '<h2>' . __( 'Keyring Service Management', 'keyring' ) . '</h2>';
+		echo '<p><a href="' . Keyring_Util::admin_url( false, array( 'action' => 'services' ) ) . '">' . __( '&larr; Back', 'keyring' ) . '</a></p>';
+		echo '<h3>' . sprintf( __( '%s API Credentials', 'keyring' ), esc_html( $this->get_label() ) ) . '</h3>';
+
+		// Handle actually saving credentials
+		if ( isset( $_POST['api_key'] ) && isset( $_POST['api_secret'] ) ) {
+			// Store credentials against this service
+			$this->update_credentials( array(
+				'app_id' => stripslashes( $_POST['app_id'] ),
+				'key'    => stripslashes( $_POST['api_key'] ),
+				'secret' => stripslashes( $_POST['api_secret'] )
+			) );
+			echo '<div class="updated"><p>' . __( 'Credentials saved.', 'keyring' ) . '</p></div>';
+		}
+
+		$app_id = $api_key = $api_secret = '';
+		if ( $creds = $this->get_credentials() ) {
+			$app_id     = $creds['app_id'];
+			$api_key    = $creds['key'];
+			$api_secret = $creds['secret'];
+		}
+
+		echo apply_filters( 'keyring_' . $this->get_name() . '_basic_ui_intro', '' );
+
+		// Output basic form for collecting key/secret
+		echo '<form method="post" action="">';
+		echo '<input type="hidden" name="service" value="' . esc_attr( $this->get_name() ) . '" />';
+		echo '<input type="hidden" name="action" value="manage" />';
+		wp_nonce_field( 'keyring-manage', 'kr_nonce', false );
+		wp_nonce_field( 'keyring-manage-' . $this->get_name(), 'nonce', false );
+		echo '<table class="form-table">';
+		echo '<tr><th scope="row">' . __( 'App ID', 'keyring' ) . '</th>';
+		echo '<td><input type="text" name="app_id" value="' . esc_attr( $app_id ) . '" id="app_id" class="regular-text"></td></tr>';
+		echo '<tr><th scope="row">' . __( 'API Key', 'keyring' ) . '</th>';
+		echo '<td><input type="text" name="api_key" value="' . esc_attr( $api_key ) . '" id="api_key" class="regular-text"></td></tr>';
+		echo '<tr><th scope="row">' . __( 'API Secret', 'keyring' ) . '</th>';
+		echo '<td><input type="text" name="api_secret" value="' . esc_attr( $api_secret ) . '" id="api_secret" class="regular-text"></td></tr>';
+		echo '</table>';
+		echo '<p class="submitbox">';
+		echo '<input type="submit" name="submit" value="' . __( 'Save Changes', 'keyring' ) . '" id="submit" class="button-primary">';
+		echo '<a href="' . esc_url( $_SERVER['HTTP_REFERER'] ) . '" class="submitdelete" style="margin-left:2em;">' . __( 'Cancel', 'keyring' ) . '</a>';
+		echo '</p>';
+		echo '</form>';
+		?><script type="text/javascript" charset="utf-8">
+			jQuery( document ).ready( function() {
+				jQuery( '#app_id' ).focus();
+			} );
+		</script><?php
+		echo '</div>';
+	}
+
+	/**
+	 * Return any stored credentials for this service, or false if none.
+	 *
+	 * @return Array containing credentials or false if none
+	 */
+	function get_credentials() {
+		// First attempt custom credentials for this service
+		// Return null from _get_credentials() to allow falling through to the other checks below
+		// Return false if the service requires no configuration
+		if ( method_exists( $this, '_get_credentials' ) ) {
+			$creds = $this->_get_credentials();
+
+			if ( !is_null( $creds ) )
+				return apply_filters( 'keyring_credentials', $creds, $this->get_name() );
+		}
+
+		// Then check for generic constants
+		$name = $this->get_name();
+		$name = strtoupper( preg_replace( '/[^a-zA-Z0-9]/', '', $name ) ); // Remove all non alpha-numeric chars from name
+		if (
+			defined( 'KEYRING__' . $name . '_ID' )
+		&&
+			defined( 'KEYRING__' . $name . '_KEY' )
+		&&
+			defined( 'KEYRING__' . $name . '_SECRET' )
+		) {
+			$creds = array(
+				'app_id' => constant( 'KEYRING__' . $name . '_ID' ),
+				'key'    => constant( 'KEYRING__' . $name . '_KEY' ),
+				'secret' => constant( 'KEYRING__' . $name . '_SECRET' ),
+			);
+			return apply_filters( 'keyring_credentials', $creds, $this->get_name() );
+		}
+
+		// Last check in the database for a shared store of credentials
+		$all = apply_filters( 'keyring_credentials', get_option( 'keyring_credentials' ) );
+		if ( !empty( $all[ $this->get_name() ] ) ) {
+			$creds = $all[ $this->get_name() ];
+			return apply_filters( 'keyring_credentials', $creds, $this->get_name() );
+		}
+
+		return false;
+	}
+
+	/**
+	 * Update stored credentials for this service. Accept an array and just
+	 * store it in a serialized array, keyed off the name of the service.
+	 *
+	 * @param array $credentials
+	 */
+	function update_credentials( array $credentials ) {
+		$all = apply_filters( 'keyring_credentials', get_option( 'keyring_credentials' ) );
+		$all[ $this->get_name() ] = $credentials;
+		return update_option( 'keyring_credentials', $all );
+	}
+
+	/**
+	 * If a service requires some sort of configuration before it can be used (e.g. specifying a key/secret),
+	 * then this method allows you to confirm that that configuration has taken place before attempting to
+	 * use it. You can use it to ::get_credentials() or something and make sure they look valid for example.
+	 * Return a boolean. Default just returns true, meaning "this service is configured correctly and OK to use".
+	 * @return Boolean true if service is configured correctly, false otherwise.
+	 */
+	function is_configured() {
+		return true;
+	}
+
+	function verified( $id, $request_token = null ) {
+		$c = get_called_class();
+
+		// If something else needs to be done, do it
+		do_action( 'keyring_connection_verified', $c::NAME, $id, $request_token );
+
+		// Back to Keyring admin, with ?service=SERVICE&created=UNIQUE_ID&kr_nonce=NONCE
+		$kr_nonce = wp_create_nonce( 'keyring-created' );
+		$url = apply_filters( 'keyring_verified_redirect', Keyring_Util::admin_url( $c::NAME, array( 'action' => 'created', 'id' => $id, 'kr_nonce' => $kr_nonce ) ), $c::NAME );
+		Keyring_Util::debug( 'Verified connection, redirect to ' . $url );
+		wp_safe_redirect( $url );
+		exit;
+	}
+
+	function is_connected() {
+		$c = get_called_class();
+		return Keyring::get_token_store()->count( array( 'service' => $c::NAME ) );
+	}
+
+	function store_token( $token ) {
+		$token->meta['_classname'] = get_called_class();
+		$id = $this->store->insert( $token );
+		return $id;
+	}
+
+	function set_token( Keyring_Access_Token $token ) {
+		$this->token = $token;
+	}
+
+	/**
+	 * Just returns the currently-set token for this service
+	 * @return [type] [description]
+	 */
+	function get_token() {
+		return $this->token;
+	}
+
+	function get_tokens( $id = false ) {
+		$c = get_called_class();
+		return $this->store->get_tokens( array( 'service' => $c::NAME, 'type' => 'access' ) );
+	}
+
+	function token_select_box( $name, $create = false ) {
+		$tokens = $this->get_tokens();
+		return Keyring_Util::token_select_box( $tokens, $name, $create );
+	}
+}
+
+// Load all packaged services in the ./includes/services/ directory by including all PHP files, first in core, then in extended
+// Remove a Service (prevent it from loading at all) by filtering on 'keyring_services'
+$keyring_services = glob( dirname( __FILE__ ) . "/includes/services/core/*.php" );
+$keyring_services = array_merge( $keyring_services, glob( dirname( __FILE__ ) . "/includes/services/extended/*.php" ) );
+$keyring_services = apply_filters( 'keyring_services', $keyring_services );
+foreach ( $keyring_services as $keyring_service )
+	require $keyring_service;
+unset( $keyring_services, $keyring_service );

+ 56 - 0
app/plugins/keyring/store.php

@@ -0,0 +1,56 @@
+<?php
+
+/**
+ * Template for creating a Keyring Token Store. All storage engines
+ * MUST extend this. These engines are used for storing and managing
+ * authentication tokens for remote Services. Use $meta to handle any
+ * custom requirements (access v request tokens, scope, etc)
+ *
+ * @package Keyring
+ */
+abstract class Keyring_Store {
+	/**
+	 * Any set up required to initiate this storage engine.
+	 */
+	static function &init() {}
+
+	/**
+	 * Insert a new token into this storage engine.
+	 */
+	abstract function insert( $token );
+
+	/**
+	 * Update an existing token with a new token value and/or metadata.
+	 */
+	abstract function update( $token );
+
+	/**
+	 * Delete a token, or tokens.
+	 */
+	abstract function delete( $args = array() );
+
+	/**
+	 * Get an array of tokens for $service. If an $id is provided, then only get that single
+	 * specific token (for the specified service).
+	 */
+	abstract function get_tokens( $args = array() );
+
+	/**
+	 * Singular version of ::get_tokens(). Functions exactly the same, but
+	 * only ever returns one token.
+	 */
+	abstract function get_token( $args = array() );
+
+	/**
+	 * Get the number of tokens for a service
+	 */
+	abstract function count( $args = array() );
+}
+
+// Load all packaged token store engines in the ./includes/stores/ directory by including all PHP files
+// Remove a Token Store (prevent it from loading at all) by filtering on 'keyring_token_stores'
+$keyring_stores = glob( dirname( __FILE__ ) . "/includes/stores/*.php" );
+$keyring_stores = apply_filters( 'keyring_token_stores', $keyring_stores );
+foreach ( $keyring_stores as $keyring_store )
+	require $keyring_store;
+unset( $keyring_stores, $keyring_store );

+ 141 - 0
app/plugins/keyring/token.php

@@ -0,0 +1,141 @@
+<?php
+
+/**
+ * Keyring connection tokens all look the same, although they may have varying
+ * amounts of information stuffed in their meta values. Store a meta value
+ * called "_classname" which contains the name of a Keyring_Service class to
+ * use to "re-hydrate" the service this token is associated with.
+ * @see Keyring_Request_Token
+ * @see Keyring_Access_Token
+ *
+ * @package Keyring
+ */
+class Keyring_Token {
+	var $name      = false;
+	var $token     = false;
+	var $meta      = array();
+	var $service   = false; // Will contain a Keyring_Service object
+	var $unique_id = false;
+
+	/**
+	 * Create a Keyring_Token instance.
+	 * @param string  $service Shortname for the service this token is for
+	 * @param mixed  $token The actual auth token (OAuth, string, etc)
+	 * @param array   $meta Additional information related to this token
+	 * @param mixed $uniq A unique identifier for this token (if available)
+	 */
+	function __construct( $service, $token, $meta = array(), $uniq = false ) {
+		$this->name      = strtolower( $service ); // Name of the service this token is for
+		$this->token     = $token;
+		$this->unique_id = $uniq;
+		$this->meta      = $meta;
+		$this->get_service();
+	}
+
+	function __toString() {
+		return (string) $this->token;
+	}
+
+	function get_uniq_id() {
+		if ( isset( $this->unique_id ) )
+			return $this->unique_id;
+		return null;
+	}
+
+	function get_display() {
+		if ( $service = $this->get_service() )
+			return $service->get_display( $this );
+		return $this->name;
+	}
+
+	function get_service() {
+		if ( !$this->service ) {
+			$class = $this->get_meta( '_classname', true );
+			if ( $class && class_exists( $class ) ) {
+				$this->service = call_user_func( array( $class, 'init' ) );
+			} else {
+				$this->service = Keyring::get_service_by_name( $this->get_name() );
+			}
+		}
+		return $this->service;
+	}
+
+	function get_name() {
+		return $this->name;
+	}
+
+	/**
+	 * Get a specific piece of meta data for this token, or all meta as an array.
+	 *
+	 * @param mixed $name The key name for a specific meta item, or false for all.
+	 * @param bool $allow_hidden Allow access to "hidden" meta (prefixed with "_")
+	 * @return Mixed meta value, array of meta values, or null
+	 */
+	function get_meta( $name = false, $allow_hidden = false ) {
+		$return = null;
+		if ( $name ) {
+			if ( '_' != substr( $name, 0, 1 ) || $allow_hidden ) {
+				if ( isset( $this->meta[ $name ] ) ) {
+					$return = $this->meta[ $name ];
+				}
+			}
+		} else {
+			foreach ( (array) $this->meta as $key => $val ) {
+				if ( '_' != substr( $key, 0, 1 ) || $allow_hidden ) {
+					$return[ $key ] = $val;
+				}
+			}
+		}
+
+		return $return;
+	}
+
+	/**
+	* Check if a token has expired, or will expire in the next $window seconds
+	**/
+	function is_expired( $window = 0 ) {
+		if ( !$expires = $this->get_meta( 'expires' ) )
+			return false; // No expires value, assume it's a permanent token
+
+		if ( '0000-00-00 00:00:00' == $expires )
+			return false; // Doesn't expire
+
+		if ( ( time() + $window ) > strtotime( $expires ) )
+			return true; // Token's expiry time has passed, or will pass before $window
+
+		// Not expired
+		return false;
+	}
+}
+
+/**
+ * During the first phase of the auth flow, we normally want to (or are required to)
+ * store some details before sending the user off to a remote service to grant access.
+ * Use a request token to store those details locally, then we can retrieve them when
+ * we get back to finish the auth flow.
+ */
+class Keyring_Request_Token extends Keyring_Token {
+	function __construct( $service, $token, $meta = array(), $uniq = false ) {
+		$meta['type'] = 'request';
+		return parent::__construct( $service, $token, $meta, $uniq );
+	}
+
+	function type() {
+		return 'request';
+	}
+}
+
+/**
+ * Access tokens are what are 'permanently' stored, containing the information required
+ * to make secure connections/requests on behalf of the user of a remote service.
+ */
+class Keyring_Access_Token extends Keyring_Token {
+	function __construct( $service, $token, $meta = array(), $uniq = false ) {
+		$meta['type'] = 'access';
+		return parent::__construct( $service, $token, $meta, $uniq );
+	}
+
+	function type() {
+		return 'access';
+	}
+}

+ 1 - 0
app/plugins/woocommerce

@@ -0,0 +1 @@
+Subproject commit 98e49e3b99f5c4acb02886edc38149aceb0c9f92

+ 231 - 0
app/plugins/wordpress-importer/languages/wordpress-importer.pot

@@ -0,0 +1,231 @@
+# Copyright (C) 2011 WordPress Importer
+# This file is distributed under the same license as the WordPress Importer package.
+msgid ""
+msgstr ""
+"Project-Id-Version: WordPress Importer 0.5\n"
+"Report-Msgid-Bugs-To: http://wordpress.org/tag/wordpress-importer\n"
+"POT-Creation-Date: 2011-07-16 15:45:12+00:00\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"PO-Revision-Date: 2010-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+
+#: parsers.php:42 parsers.php:63
+msgid "There was an error when reading this WXR file"
+msgstr ""
+
+#: parsers.php:43
+msgid ""
+"Details are shown above. The importer will now try again with a different "
+"parser..."
+msgstr ""
+
+#: parsers.php:67 parsers.php:72 parsers.php:262 parsers.php:451
+msgid ""
+"This does not appear to be a WXR file, missing/invalid WXR version number"
+msgstr ""
+
+#: wordpress-importer.php:134 wordpress-importer.php:143
+#: wordpress-importer.php:194 wordpress-importer.php:202
+msgid "Sorry, there has been an error."
+msgstr ""
+
+#: wordpress-importer.php:135
+msgid "The file does not exist, please try again."
+msgstr ""
+
+#: wordpress-importer.php:178
+msgid "All done."
+msgstr ""
+
+#: wordpress-importer.php:178
+msgid "Have fun!"
+msgstr ""
+
+#: wordpress-importer.php:179
+msgid "Remember to update the passwords and roles of imported users."
+msgstr ""
+
+#: wordpress-importer.php:210
+msgid ""
+"This WXR file (version %s) may not be supported by this version of the "
+"importer. Please consider updating."
+msgstr ""
+
+#: wordpress-importer.php:235
+msgid ""
+"Failed to import author %s. Their posts will be attributed to the current "
+"user."
+msgstr ""
+
+#: wordpress-importer.php:261
+msgid "Assign Authors"
+msgstr ""
+
+#: wordpress-importer.php:262
+msgid ""
+"To make it easier for you to edit and save the imported content, you may "
+"want to reassign the author of the imported item to an existing user of this "
+"site. For example, you may want to import all the entries as <code>admin</"
+"code>s entries."
+msgstr ""
+
+#: wordpress-importer.php:264
+msgid ""
+"If a new user is created by WordPress, a new password will be randomly "
+"generated and the new user&#8217;s role will be set as %s. Manually changing "
+"the new user&#8217;s details will be necessary."
+msgstr ""
+
+#: wordpress-importer.php:274
+msgid "Import Attachments"
+msgstr ""
+
+#: wordpress-importer.php:277
+msgid "Download and import file attachments"
+msgstr ""
+
+#: wordpress-importer.php:281
+msgid "Submit"
+msgstr ""
+
+#: wordpress-importer.php:294
+msgid "Import author:"
+msgstr ""
+
+#: wordpress-importer.php:305
+msgid "or create new user with login name:"
+msgstr ""
+
+#: wordpress-importer.php:308
+msgid "as a new user:"
+msgstr ""
+
+#: wordpress-importer.php:316
+msgid "assign posts to an existing user:"
+msgstr ""
+
+#: wordpress-importer.php:318
+msgid "or assign posts to an existing user:"
+msgstr ""
+
+#: wordpress-importer.php:319
+msgid "- Select -"
+msgstr ""
+
+#: wordpress-importer.php:369
+msgid ""
+"Failed to create new user for %s. Their posts will be attributed to the "
+"current user."
+msgstr ""
+
+#: wordpress-importer.php:418
+msgid "Failed to import category %s"
+msgstr ""
+
+#: wordpress-importer.php:456
+msgid "Failed to import post tag %s"
+msgstr ""
+
+#: wordpress-importer.php:500 wordpress-importer.php:626
+msgid "Failed to import %s %s"
+msgstr ""
+
+#: wordpress-importer.php:522
+msgid "Failed to import &#8220;%s&#8221;: Invalid post type %s"
+msgstr ""
+
+#: wordpress-importer.php:543
+msgid "%s &#8220;%s&#8221; already exists."
+msgstr ""
+
+#: wordpress-importer.php:598
+msgid "Failed to import %s &#8220;%s&#8221;"
+msgstr ""
+
+#: wordpress-importer.php:744
+msgid "Menu item skipped due to missing menu slug"
+msgstr ""
+
+#: wordpress-importer.php:751
+msgid "Menu item skipped due to invalid menu slug: %s"
+msgstr ""
+
+#: wordpress-importer.php:814
+msgid "Fetching attachments is not enabled"
+msgstr ""
+
+#: wordpress-importer.php:827
+msgid "Invalid file type"
+msgstr ""
+
+#: wordpress-importer.php:871
+msgid "Remote server did not respond"
+msgstr ""
+
+#: wordpress-importer.php:877
+msgid "Remote server returned error response %1$d %2$s"
+msgstr ""
+
+#: wordpress-importer.php:884
+msgid "Remote file is incorrect size"
+msgstr ""
+
+#: wordpress-importer.php:889
+msgid "Zero size file downloaded"
+msgstr ""
+
+#: wordpress-importer.php:895
+msgid "Remote file is too large, limit is %s"
+msgstr ""
+
+#: wordpress-importer.php:994
+msgid "Import WordPress"
+msgstr ""
+
+#: wordpress-importer.php:1001
+msgid ""
+"A new version of this importer is available. Please update to version %s to "
+"ensure compatibility with newer export files."
+msgstr ""
+
+#: wordpress-importer.php:1016
+msgid ""
+"Howdy! Upload your WordPress eXtended RSS (WXR) file and we&#8217;ll import "
+"the posts, pages, comments, custom fields, categories, and tags into this "
+"site."
+msgstr ""
+
+#: wordpress-importer.php:1017
+msgid "Choose a WXR (.xml) file to upload, then click Upload file and import."
+msgstr ""
+
+#: wordpress-importer.php:1091
+msgid ""
+"Import <strong>posts, pages, comments, custom fields, categories, and tags</"
+"strong> from a WordPress export file."
+msgstr ""
+
+#. Plugin Name of the plugin/theme
+msgid "WordPress Importer"
+msgstr ""
+
+#. Plugin URI of the plugin/theme
+msgid "http://wordpress.org/extend/plugins/wordpress-importer/"
+msgstr ""
+
+#. Description of the plugin/theme
+msgid ""
+"Import posts, pages, comments, custom fields, categories, tags and more from "
+"a WordPress export file."
+msgstr ""
+
+#. Author of the plugin/theme
+msgid "wordpressdotorg"
+msgstr ""
+
+#. Author URI of the plugin/theme
+msgid "http://wordpress.org/"
+msgstr ""

+ 664 - 0
app/plugins/wordpress-importer/parsers.php

@@ -0,0 +1,664 @@
+<?php
+/**
+ * WordPress eXtended RSS file parser implementations
+ *
+ * @package WordPress
+ * @subpackage Importer
+ */
+
+/**
+ * WordPress Importer class for managing parsing of WXR files.
+ */
+class WXR_Parser {
+	function parse( $file ) {
+		// Attempt to use proper XML parsers first
+		if ( extension_loaded( 'simplexml' ) ) {
+			$parser = new WXR_Parser_SimpleXML;
+			$result = $parser->parse( $file );
+
+			// If SimpleXML succeeds or this is an invalid WXR file then return the results
+			if ( ! is_wp_error( $result ) || 'SimpleXML_parse_error' != $result->get_error_code() )
+				return $result;
+		} else if ( extension_loaded( 'xml' ) ) {
+			$parser = new WXR_Parser_XML;
+			$result = $parser->parse( $file );
+
+			// If XMLParser succeeds or this is an invalid WXR file then return the results
+			if ( ! is_wp_error( $result ) || 'XML_parse_error' != $result->get_error_code() )
+				return $result;
+		}
+
+		// We have a malformed XML file, so display the error and fallthrough to regex
+		if ( isset($result) && defined('IMPORT_DEBUG') && IMPORT_DEBUG ) {
+			echo '<pre>';
+			if ( 'SimpleXML_parse_error' == $result->get_error_code() ) {
+				foreach  ( $result->get_error_data() as $error )
+					echo $error->line . ':' . $error->column . ' ' . esc_html( $error->message ) . "\n";
+			} else if ( 'XML_parse_error' == $result->get_error_code() ) {
+				$error = $result->get_error_data();
+				echo $error[0] . ':' . $error[1] . ' ' . esc_html( $error[2] );
+			}
+			echo '</pre>';
+			echo '<p><strong>' . __( 'There was an error when reading this WXR file', 'wordpress-importer' ) . '</strong><br />';
+			echo __( 'Details are shown above. The importer will now try again with a different parser...', 'wordpress-importer' ) . '</p>';
+		}
+
+		// use regular expressions if nothing else available or this is bad XML
+		$parser = new WXR_Parser_Regex;
+		return $parser->parse( $file );
+	}
+}
+
+/**
+ * WXR Parser that makes use of the SimpleXML PHP extension.
+ */
+class WXR_Parser_SimpleXML {
+	function parse( $file ) {
+		$authors = $posts = $categories = $tags = $terms = array();
+
+		$internal_errors = libxml_use_internal_errors(true);
+
+		$dom = new DOMDocument;
+		$old_value = null;
+		if ( function_exists( 'libxml_disable_entity_loader' ) ) {
+			$old_value = libxml_disable_entity_loader( true );
+		}
+		$success = $dom->loadXML( file_get_contents( $file ) );
+		if ( ! is_null( $old_value ) ) {
+			libxml_disable_entity_loader( $old_value );
+		}
+
+		if ( ! $success || isset( $dom->doctype ) ) {
+			return new WP_Error( 'SimpleXML_parse_error', __( 'There was an error when reading this WXR file', 'wordpress-importer' ), libxml_get_errors() );
+		}
+
+		$xml = simplexml_import_dom( $dom );
+		unset( $dom );
+
+		// halt if loading produces an error
+		if ( ! $xml )
+			return new WP_Error( 'SimpleXML_parse_error', __( 'There was an error when reading this WXR file', 'wordpress-importer' ), libxml_get_errors() );
+
+		$wxr_version = $xml->xpath('/rss/channel/wp:wxr_version');
+		if ( ! $wxr_version )
+			return new WP_Error( 'WXR_parse_error', __( 'This does not appear to be a WXR file, missing/invalid WXR version number', 'wordpress-importer' ) );
+
+		$wxr_version = (string) trim( $wxr_version[0] );
+		// confirm that we are dealing with the correct file format
+		if ( ! preg_match( '/^\d+\.\d+$/', $wxr_version ) )
+			return new WP_Error( 'WXR_parse_error', __( 'This does not appear to be a WXR file, missing/invalid WXR version number', 'wordpress-importer' ) );
+
+		$base_url = $xml->xpath('/rss/channel/wp:base_site_url');
+		$base_url = (string) trim( $base_url[0] );
+
+		$namespaces = $xml->getDocNamespaces();
+		if ( ! isset( $namespaces['wp'] ) )
+			$namespaces['wp'] = 'http://wordpress.org/export/1.1/';
+		if ( ! isset( $namespaces['excerpt'] ) )
+			$namespaces['excerpt'] = 'http://wordpress.org/export/1.1/excerpt/';
+
+		// grab authors
+		foreach ( $xml->xpath('/rss/channel/wp:author') as $author_arr ) {
+			$a = $author_arr->children( $namespaces['wp'] );
+			$login = (string) $a->author_login;
+			$authors[$login] = array(
+				'author_id' => (int) $a->author_id,
+				'author_login' => $login,
+				'author_email' => (string) $a->author_email,
+				'author_display_name' => (string) $a->author_display_name,
+				'author_first_name' => (string) $a->author_first_name,
+				'author_last_name' => (string) $a->author_last_name
+			);
+		}
+
+		// grab cats, tags and terms
+		foreach ( $xml->xpath('/rss/channel/wp:category') as $term_arr ) {
+			$t = $term_arr->children( $namespaces['wp'] );
+			$categories[] = array(
+				'term_id' => (int) $t->term_id,
+				'category_nicename' => (string) $t->category_nicename,
+				'category_parent' => (string) $t->category_parent,
+				'cat_name' => (string) $t->cat_name,
+				'category_description' => (string) $t->category_description
+			);
+		}
+
+		foreach ( $xml->xpath('/rss/channel/wp:tag') as $term_arr ) {
+			$t = $term_arr->children( $namespaces['wp'] );
+			$tags[] = array(
+				'term_id' => (int) $t->term_id,
+				'tag_slug' => (string) $t->tag_slug,
+				'tag_name' => (string) $t->tag_name,
+				'tag_description' => (string) $t->tag_description
+			);
+		}
+
+		foreach ( $xml->xpath('/rss/channel/wp:term') as $term_arr ) {
+			$t = $term_arr->children( $namespaces['wp'] );
+			$terms[] = array(
+				'term_id' => (int) $t->term_id,
+				'term_taxonomy' => (string) $t->term_taxonomy,
+				'slug' => (string) $t->term_slug,
+				'term_parent' => (string) $t->term_parent,
+				'term_name' => (string) $t->term_name,
+				'term_description' => (string) $t->term_description
+			);
+		}
+
+		// grab posts
+		foreach ( $xml->channel->item as $item ) {
+			$post = array(
+				'post_title' => (string) $item->title,
+				'guid' => (string) $item->guid,
+			);
+
+			$dc = $item->children( 'http://purl.org/dc/elements/1.1/' );
+			$post['post_author'] = (string) $dc->creator;
+
+			$content = $item->children( 'http://purl.org/rss/1.0/modules/content/' );
+			$excerpt = $item->children( $namespaces['excerpt'] );
+			$post['post_content'] = (string) $content->encoded;
+			$post['post_excerpt'] = (string) $excerpt->encoded;
+
+			$wp = $item->children( $namespaces['wp'] );
+			$post['post_id'] = (int) $wp->post_id;
+			$post['post_date'] = (string) $wp->post_date;
+			$post['post_date_gmt'] = (string) $wp->post_date_gmt;
+			$post['comment_status'] = (string) $wp->comment_status;
+			$post['ping_status'] = (string) $wp->ping_status;
+			$post['post_name'] = (string) $wp->post_name;
+			$post['status'] = (string) $wp->status;
+			$post['post_parent'] = (int) $wp->post_parent;
+			$post['menu_order'] = (int) $wp->menu_order;
+			$post['post_type'] = (string) $wp->post_type;
+			$post['post_password'] = (string) $wp->post_password;
+			$post['is_sticky'] = (int) $wp->is_sticky;
+
+			if ( isset($wp->attachment_url) )
+				$post['attachment_url'] = (string) $wp->attachment_url;
+
+			foreach ( $item->category as $c ) {
+				$att = $c->attributes();
+				if ( isset( $att['nicename'] ) )
+					$post['terms'][] = array(
+						'name' => (string) $c,
+						'slug' => (string) $att['nicename'],
+						'domain' => (string) $att['domain']
+					);
+			}
+
+			foreach ( $wp->postmeta as $meta ) {
+				$post['postmeta'][] = array(
+					'key' => (string) $meta->meta_key,
+					'value' => (string) $meta->meta_value
+				);
+			}
+
+			foreach ( $wp->comment as $comment ) {
+				$meta = array();
+				if ( isset( $comment->commentmeta ) ) {
+					foreach ( $comment->commentmeta as $m ) {
+						$meta[] = array(
+							'key' => (string) $m->meta_key,
+							'value' => (string) $m->meta_value
+						);
+					}
+				}
+			
+				$post['comments'][] = array(
+					'comment_id' => (int) $comment->comment_id,
+					'comment_author' => (string) $comment->comment_author,
+					'comment_author_email' => (string) $comment->comment_author_email,
+					'comment_author_IP' => (string) $comment->comment_author_IP,
+					'comment_author_url' => (string) $comment->comment_author_url,
+					'comment_date' => (string) $comment->comment_date,
+					'comment_date_gmt' => (string) $comment->comment_date_gmt,
+					'comment_content' => (string) $comment->comment_content,
+					'comment_approved' => (string) $comment->comment_approved,
+					'comment_type' => (string) $comment->comment_type,
+					'comment_parent' => (string) $comment->comment_parent,
+					'comment_user_id' => (int) $comment->comment_user_id,
+					'commentmeta' => $meta,
+				);
+			}
+
+			$posts[] = $post;
+		}
+
+		return array(
+			'authors' => $authors,
+			'posts' => $posts,
+			'categories' => $categories,
+			'tags' => $tags,
+			'terms' => $terms,
+			'base_url' => $base_url,
+			'version' => $wxr_version
+		);
+	}
+}
+
+/**
+ * WXR Parser that makes use of the XML Parser PHP extension.
+ */
+class WXR_Parser_XML {
+	var $wp_tags = array(
+		'wp:post_id', 'wp:post_date', 'wp:post_date_gmt', 'wp:comment_status', 'wp:ping_status', 'wp:attachment_url',
+		'wp:status', 'wp:post_name', 'wp:post_parent', 'wp:menu_order', 'wp:post_type', 'wp:post_password',
+		'wp:is_sticky', 'wp:term_id', 'wp:category_nicename', 'wp:category_parent', 'wp:cat_name', 'wp:category_description',
+		'wp:tag_slug', 'wp:tag_name', 'wp:tag_description', 'wp:term_taxonomy', 'wp:term_parent',
+		'wp:term_name', 'wp:term_description', 'wp:author_id', 'wp:author_login', 'wp:author_email', 'wp:author_display_name',
+		'wp:author_first_name', 'wp:author_last_name',
+	);
+	var $wp_sub_tags = array(
+		'wp:comment_id', 'wp:comment_author', 'wp:comment_author_email', 'wp:comment_author_url',
+		'wp:comment_author_IP',	'wp:comment_date', 'wp:comment_date_gmt', 'wp:comment_content',
+		'wp:comment_approved', 'wp:comment_type', 'wp:comment_parent', 'wp:comment_user_id',
+	);
+
+	function parse( $file ) {
+		$this->wxr_version = $this->in_post = $this->cdata = $this->data = $this->sub_data = $this->in_tag = $this->in_sub_tag = false;
+		$this->authors = $this->posts = $this->term = $this->category = $this->tag = array();
+
+		$xml = xml_parser_create( 'UTF-8' );
+		xml_parser_set_option( $xml, XML_OPTION_SKIP_WHITE, 1 );
+		xml_parser_set_option( $xml, XML_OPTION_CASE_FOLDING, 0 );
+		xml_set_object( $xml, $this );
+		xml_set_character_data_handler( $xml, 'cdata' );
+		xml_set_element_handler( $xml, 'tag_open', 'tag_close' );
+
+		if ( ! xml_parse( $xml, file_get_contents( $file ), true ) ) {
+			$current_line = xml_get_current_line_number( $xml );
+			$current_column = xml_get_current_column_number( $xml );
+			$error_code = xml_get_error_code( $xml );
+			$error_string = xml_error_string( $error_code );
+			return new WP_Error( 'XML_parse_error', 'There was an error when reading this WXR file', array( $current_line, $current_column, $error_string ) );
+		}
+		xml_parser_free( $xml );
+
+		if ( ! preg_match( '/^\d+\.\d+$/', $this->wxr_version ) )
+			return new WP_Error( 'WXR_parse_error', __( 'This does not appear to be a WXR file, missing/invalid WXR version number', 'wordpress-importer' ) );
+
+		return array(
+			'authors' => $this->authors,
+			'posts' => $this->posts,
+			'categories' => $this->category,
+			'tags' => $this->tag,
+			'terms' => $this->term,
+			'base_url' => $this->base_url,
+			'version' => $this->wxr_version
+		);
+	}
+
+	function tag_open( $parse, $tag, $attr ) {
+		if ( in_array( $tag, $this->wp_tags ) ) {
+			$this->in_tag = substr( $tag, 3 );
+			return;
+		}
+
+		if ( in_array( $tag, $this->wp_sub_tags ) ) {
+			$this->in_sub_tag = substr( $tag, 3 );
+			return;
+		}
+
+		switch ( $tag ) {
+			case 'category':
+				if ( isset($attr['domain'], $attr['nicename']) ) {
+					$this->sub_data['domain'] = $attr['domain'];
+					$this->sub_data['slug'] = $attr['nicename'];
+				}
+				break;
+			case 'item': $this->in_post = true;
+			case 'title': if ( $this->in_post ) $this->in_tag = 'post_title'; break;
+			case 'guid': $this->in_tag = 'guid'; break;
+			case 'dc:creator': $this->in_tag = 'post_author'; break;
+			case 'content:encoded': $this->in_tag = 'post_content'; break;
+			case 'excerpt:encoded': $this->in_tag = 'post_excerpt'; break;
+
+			case 'wp:term_slug': $this->in_tag = 'slug'; break;
+			case 'wp:meta_key': $this->in_sub_tag = 'key'; break;
+			case 'wp:meta_value': $this->in_sub_tag = 'value'; break;
+		}
+	}
+
+	function cdata( $parser, $cdata ) {
+		if ( ! trim( $cdata ) )
+			return;
+
+		$this->cdata .= trim( $cdata );
+	}
+
+	function tag_close( $parser, $tag ) {
+		switch ( $tag ) {
+			case 'wp:comment':
+				unset( $this->sub_data['key'], $this->sub_data['value'] ); // remove meta sub_data
+				if ( ! empty( $this->sub_data ) )
+					$this->data['comments'][] = $this->sub_data;
+				$this->sub_data = false;
+				break;
+			case 'wp:commentmeta':
+				$this->sub_data['commentmeta'][] = array(
+					'key' => $this->sub_data['key'],
+					'value' => $this->sub_data['value']
+				);
+				break;
+			case 'category':
+				if ( ! empty( $this->sub_data ) ) {
+					$this->sub_data['name'] = $this->cdata;
+					$this->data['terms'][] = $this->sub_data;
+				}
+				$this->sub_data = false;
+				break;
+			case 'wp:postmeta':
+				if ( ! empty( $this->sub_data ) )
+					$this->data['postmeta'][] = $this->sub_data;
+				$this->sub_data = false;
+				break;
+			case 'item':
+				$this->posts[] = $this->data;
+				$this->data = false;
+				break;
+			case 'wp:category':
+			case 'wp:tag':
+			case 'wp:term':
+				$n = substr( $tag, 3 );
+				array_push( $this->$n, $this->data );
+				$this->data = false;
+				break;
+			case 'wp:author':
+				if ( ! empty($this->data['author_login']) )
+					$this->authors[$this->data['author_login']] = $this->data;
+				$this->data = false;
+				break;
+			case 'wp:base_site_url':
+				$this->base_url = $this->cdata;
+				break;
+			case 'wp:wxr_version':
+				$this->wxr_version = $this->cdata;
+				break;
+
+			default:
+				if ( $this->in_sub_tag ) {
+					$this->sub_data[$this->in_sub_tag] = ! empty( $this->cdata ) ? $this->cdata : '';
+					$this->in_sub_tag = false;
+				} else if ( $this->in_tag ) {
+					$this->data[$this->in_tag] = ! empty( $this->cdata ) ? $this->cdata : '';
+					$this->in_tag = false;
+				}
+		}
+
+		$this->cdata = false;
+	}
+}
+
+/**
+ * WXR Parser that uses regular expressions. Fallback for installs without an XML parser.
+ */
+class WXR_Parser_Regex {
+	var $authors = array();
+	var $posts = array();
+	var $categories = array();
+	var $tags = array();
+	var $terms = array();
+	var $base_url = '';
+
+	function WXR_Parser_Regex() {
+		$this->__construct();
+	}
+
+	function __construct() {
+		$this->has_gzip = is_callable( 'gzopen' );
+	}
+
+	function parse( $file ) {
+		$wxr_version = $in_post = false;
+
+		$fp = $this->fopen( $file, 'r' );
+		if ( $fp ) {
+			while ( ! $this->feof( $fp ) ) {
+				$importline = rtrim( $this->fgets( $fp ) );
+
+				if ( ! $wxr_version && preg_match( '|<wp:wxr_version>(\d+\.\d+)</wp:wxr_version>|', $importline, $version ) )
+					$wxr_version = $version[1];
+
+				if ( false !== strpos( $importline, '<wp:base_site_url>' ) ) {
+					preg_match( '|<wp:base_site_url>(.*?)</wp:base_site_url>|is', $importline, $url );
+					$this->base_url = $url[1];
+					continue;
+				}
+				if ( false !== strpos( $importline, '<wp:category>' ) ) {
+					preg_match( '|<wp:category>(.*?)</wp:category>|is', $importline, $category );
+					$this->categories[] = $this->process_category( $category[1] );
+					continue;
+				}
+				if ( false !== strpos( $importline, '<wp:tag>' ) ) {
+					preg_match( '|<wp:tag>(.*?)</wp:tag>|is', $importline, $tag );
+					$this->tags[] = $this->process_tag( $tag[1] );
+					continue;
+				}
+				if ( false !== strpos( $importline, '<wp:term>' ) ) {
+					preg_match( '|<wp:term>(.*?)</wp:term>|is', $importline, $term );
+					$this->terms[] = $this->process_term( $term[1] );
+					continue;
+				}
+				if ( false !== strpos( $importline, '<wp:author>' ) ) {
+					preg_match( '|<wp:author>(.*?)</wp:author>|is', $importline, $author );
+					$a = $this->process_author( $author[1] );
+					$this->authors[$a['author_login']] = $a;
+					continue;
+				}
+				if ( false !== strpos( $importline, '<item>' ) ) {
+					$post = '';
+					$in_post = true;
+					continue;
+				}
+				if ( false !== strpos( $importline, '</item>' ) ) {
+					$in_post = false;
+					$this->posts[] = $this->process_post( $post );
+					continue;
+				}
+				if ( $in_post ) {
+					$post .= $importline . "\n";
+				}
+			}
+
+			$this->fclose($fp);
+		}
+
+		if ( ! $wxr_version )
+			return new WP_Error( 'WXR_parse_error', __( 'This does not appear to be a WXR file, missing/invalid WXR version number', 'wordpress-importer' ) );
+
+		return array(
+			'authors' => $this->authors,
+			'posts' => $this->posts,
+			'categories' => $this->categories,
+			'tags' => $this->tags,
+			'terms' => $this->terms,
+			'base_url' => $this->base_url,
+			'version' => $wxr_version
+		);
+	}
+
+	function get_tag( $string, $tag ) {
+		preg_match( "|<$tag.*?>(.*?)</$tag>|is", $string, $return );
+		if ( isset( $return[1] ) ) {
+			if ( substr( $return[1], 0, 9 ) == '<![CDATA[' ) {
+				if ( strpos( $return[1], ']]]]><![CDATA[>' ) !== false ) {
+					preg_match_all( '|<!\[CDATA\[(.*?)\]\]>|s', $return[1], $matches );
+					$return = '';
+					foreach( $matches[1] as $match )
+						$return .= $match;
+				} else {
+					$return = preg_replace( '|^<!\[CDATA\[(.*)\]\]>$|s', '$1', $return[1] );
+				}
+			} else {
+				$return = $return[1];
+			}
+		} else {
+			$return = '';
+		}
+		return $return;
+	}
+
+	function process_category( $c ) {
+		return array(
+			'term_id' => $this->get_tag( $c, 'wp:term_id' ),
+			'cat_name' => $this->get_tag( $c, 'wp:cat_name' ),
+			'category_nicename'	=> $this->get_tag( $c, 'wp:category_nicename' ),
+			'category_parent' => $this->get_tag( $c, 'wp:category_parent' ),
+			'category_description' => $this->get_tag( $c, 'wp:category_description' ),
+		);
+	}
+
+	function process_tag( $t ) {
+		return array(
+			'term_id' => $this->get_tag( $t, 'wp:term_id' ),
+			'tag_name' => $this->get_tag( $t, 'wp:tag_name' ),
+			'tag_slug' => $this->get_tag( $t, 'wp:tag_slug' ),
+			'tag_description' => $this->get_tag( $t, 'wp:tag_description' ),
+		);
+	}
+
+	function process_term( $t ) {
+		return array(
+			'term_id' => $this->get_tag( $t, 'wp:term_id' ),
+			'term_taxonomy' => $this->get_tag( $t, 'wp:term_taxonomy' ),
+			'slug' => $this->get_tag( $t, 'wp:term_slug' ),
+			'term_parent' => $this->get_tag( $t, 'wp:term_parent' ),
+			'term_name' => $this->get_tag( $t, 'wp:term_name' ),
+			'term_description' => $this->get_tag( $t, 'wp:term_description' ),
+		);
+	}
+
+	function process_author( $a ) {
+		return array(
+			'author_id' => $this->get_tag( $a, 'wp:author_id' ),
+			'author_login' => $this->get_tag( $a, 'wp:author_login' ),
+			'author_email' => $this->get_tag( $a, 'wp:author_email' ),
+			'author_display_name' => $this->get_tag( $a, 'wp:author_display_name' ),
+			'author_first_name' => $this->get_tag( $a, 'wp:author_first_name' ),
+			'author_last_name' => $this->get_tag( $a, 'wp:author_last_name' ),
+		);
+	}
+
+	function process_post( $post ) {
+		$post_id        = $this->get_tag( $post, 'wp:post_id' );
+		$post_title     = $this->get_tag( $post, 'title' );
+		$post_date      = $this->get_tag( $post, 'wp:post_date' );
+		$post_date_gmt  = $this->get_tag( $post, 'wp:post_date_gmt' );
+		$comment_status = $this->get_tag( $post, 'wp:comment_status' );
+		$ping_status    = $this->get_tag( $post, 'wp:ping_status' );
+		$status         = $this->get_tag( $post, 'wp:status' );
+		$post_name      = $this->get_tag( $post, 'wp:post_name' );
+		$post_parent    = $this->get_tag( $post, 'wp:post_parent' );
+		$menu_order     = $this->get_tag( $post, 'wp:menu_order' );
+		$post_type      = $this->get_tag( $post, 'wp:post_type' );
+		$post_password  = $this->get_tag( $post, 'wp:post_password' );
+		$is_sticky      = $this->get_tag( $post, 'wp:is_sticky' );
+		$guid           = $this->get_tag( $post, 'guid' );
+		$post_author    = $this->get_tag( $post, 'dc:creator' );
+
+		$post_excerpt = $this->get_tag( $post, 'excerpt:encoded' );
+		$post_excerpt = preg_replace_callback( '|<(/?[A-Z]+)|', array( &$this, '_normalize_tag' ), $post_excerpt );
+		$post_excerpt = str_replace( '<br>', '<br />', $post_excerpt );
+		$post_excerpt = str_replace( '<hr>', '<hr />', $post_excerpt );
+
+		$post_content = $this->get_tag( $post, 'content:encoded' );
+		$post_content = preg_replace_callback( '|<(/?[A-Z]+)|', array( &$this, '_normalize_tag' ), $post_content );
+		$post_content = str_replace( '<br>', '<br />', $post_content );
+		$post_content = str_replace( '<hr>', '<hr />', $post_content );
+
+		$postdata = compact( 'post_id', 'post_author', 'post_date', 'post_date_gmt', 'post_content', 'post_excerpt',
+			'post_title', 'status', 'post_name', 'comment_status', 'ping_status', 'guid', 'post_parent',
+			'menu_order', 'post_type', 'post_password', 'is_sticky'
+		);
+
+		$attachment_url = $this->get_tag( $post, 'wp:attachment_url' );
+		if ( $attachment_url )
+			$postdata['attachment_url'] = $attachment_url;
+
+		preg_match_all( '|<category domain="([^"]+?)" nicename="([^"]+?)">(.+?)</category>|is', $post, $terms, PREG_SET_ORDER );
+		foreach ( $terms as $t ) {
+			$post_terms[] = array(
+				'slug' => $t[2],
+				'domain' => $t[1],
+				'name' => str_replace( array( '<![CDATA[', ']]>' ), '', $t[3] ),
+			);
+		}
+		if ( ! empty( $post_terms ) ) $postdata['terms'] = $post_terms;
+
+		preg_match_all( '|<wp:comment>(.+?)</wp:comment>|is', $post, $comments );
+		$comments = $comments[1];
+		if ( $comments ) {
+			foreach ( $comments as $comment ) {
+				preg_match_all( '|<wp:commentmeta>(.+?)</wp:commentmeta>|is', $comment, $commentmeta );
+				$commentmeta = $commentmeta[1];
+				$c_meta = array();
+				foreach ( $commentmeta as $m ) {
+					$c_meta[] = array(
+						'key' => $this->get_tag( $m, 'wp:meta_key' ),
+						'value' => $this->get_tag( $m, 'wp:meta_value' ),
+					);
+				}
+
+				$post_comments[] = array(
+					'comment_id' => $this->get_tag( $comment, 'wp:comment_id' ),
+					'comment_author' => $this->get_tag( $comment, 'wp:comment_author' ),
+					'comment_author_email' => $this->get_tag( $comment, 'wp:comment_author_email' ),
+					'comment_author_IP' => $this->get_tag( $comment, 'wp:comment_author_IP' ),
+					'comment_author_url' => $this->get_tag( $comment, 'wp:comment_author_url' ),
+					'comment_date' => $this->get_tag( $comment, 'wp:comment_date' ),
+					'comment_date_gmt' => $this->get_tag( $comment, 'wp:comment_date_gmt' ),
+					'comment_content' => $this->get_tag( $comment, 'wp:comment_content' ),
+					'comment_approved' => $this->get_tag( $comment, 'wp:comment_approved' ),
+					'comment_type' => $this->get_tag( $comment, 'wp:comment_type' ),
+					'comment_parent' => $this->get_tag( $comment, 'wp:comment_parent' ),
+					'comment_user_id' => $this->get_tag( $comment, 'wp:comment_user_id' ),
+					'commentmeta' => $c_meta,
+				);
+			}
+		}
+		if ( ! empty( $post_comments ) ) $postdata['comments'] = $post_comments;
+
+		preg_match_all( '|<wp:postmeta>(.+?)</wp:postmeta>|is', $post, $postmeta );
+		$postmeta = $postmeta[1];
+		if ( $postmeta ) {
+			foreach ( $postmeta as $p ) {
+				$post_postmeta[] = array(
+					'key' => $this->get_tag( $p, 'wp:meta_key' ),
+					'value' => $this->get_tag( $p, 'wp:meta_value' ),
+				);
+			}
+		}
+		if ( ! empty( $post_postmeta ) ) $postdata['postmeta'] = $post_postmeta;
+
+		return $postdata;
+	}
+
+	function _normalize_tag( $matches ) {
+		return '<' . strtolower( $matches[1] );
+	}
+
+	function fopen( $filename, $mode = 'r' ) {
+		if ( $this->has_gzip )
+			return gzopen( $filename, $mode );
+		return fopen( $filename, $mode );
+	}
+
+	function feof( $fp ) {
+		if ( $this->has_gzip )
+			return gzeof( $fp );
+		return feof( $fp );
+	}
+
+	function fgets( $fp, $len = 8192 ) {
+		if ( $this->has_gzip )
+			return gzgets( $fp, $len );
+		return fgets( $fp, $len );
+	}
+
+	function fclose( $fp ) {
+		if ( $this->has_gzip )
+			return gzclose( $fp );
+		return fclose( $fp );
+	}
+}

+ 107 - 0
app/plugins/wordpress-importer/readme.txt

@@ -0,0 +1,107 @@
+=== WordPress Importer ===
+Contributors: wordpressdotorg
+Donate link: 
+Tags: importer, wordpress
+Requires at least: 3.0
+Tested up to: 3.8
+Stable tag: 0.6.1
+License: GPLv2 or later
+License URI: http://www.gnu.org/licenses/gpl-2.0.html
+
+Import posts, pages, comments, custom fields, categories, tags and more from a WordPress export file.
+
+== Description ==
+
+The WordPress Importer will import the following content from a WordPress export file:
+
+* Posts, pages and other custom post types
+* Comments
+* Custom fields and post meta
+* Categories, tags and terms from custom taxonomies
+* Authors
+
+For further information and instructions please see the [Codex page on Importing Content](http://codex.wordpress.org/Importing_Content#WordPress)
+
+== Installation ==
+
+The quickest method for installing the importer is:
+
+1. Visit Tools -> Import in the WordPress dashboard
+1. Click on the WordPress link in the list of importers
+1. Click "Install Now"
+1. Finally click "Activate Plugin & Run Importer"
+
+If you would prefer to do things manually then follow these instructions:
+
+1. Upload the `wordpress-importer` folder to the `/wp-content/plugins/` directory
+1. Activate the plugin through the 'Plugins' menu in WordPress
+1. Go to the Tools -> Import screen, click on WordPress
+
+== Changelog ==
+
+= 0.6 =
+* Support for WXR 1.2 and multiple CDATA sections
+* Post aren't duplicates if their post_type's are different
+
+= 0.5.2 =
+* Double check that the uploaded export file exists before processing it. This prevents incorrect error messages when
+an export file is uploaded to a server with bad permissions and WordPress 3.3 or 3.3.1 is being used.
+
+= 0.5 =
+* Import comment meta (requires export from WordPress 3.2)
+* Minor bugfixes and enhancements
+
+= 0.4 =
+* Map comment user_id where possible
+* Import attachments from `wp:attachment_url`
+* Upload attachments to correct directory
+* Remap resized image URLs correctly
+
+= 0.3 =
+* Use an XML Parser if possible
+* Proper import support for nav menus
+* ... and much more, see [Trac ticket #15197](http://core.trac.wordpress.org/ticket/15197)
+
+= 0.1 =
+* Initial release
+
+== Upgrade Notice ==
+
+= 0.6 =
+Support for exports from WordPress 3.4.
+
+= 0.5.2 =
+Fix incorrect error message when the export file could not be uploaded.
+
+= 0.5 =
+Import comment meta and other minor bugfixes and enhancements.
+
+= 0.4 =
+Bug fixes for attachment importing and other small enhancements.
+
+= 0.3 =
+Upgrade for a more robust and reliable experience when importing WordPress export files, and for compatibility with WordPress 3.1.
+
+== Frequently Asked Questions ==
+
+= Help! I'm getting out of memory errors or a blank screen. =
+If your exported file is very large, the import script may run into your host's configured memory limit for PHP.
+
+A message like "Fatal error: Allowed memory size of 8388608 bytes exhausted" indicates that the script can't successfully import your XML file under the current PHP memory limit. If you have access to the php.ini file, you can manually increase the limit; if you do not (your WordPress installation is hosted on a shared server, for instance), you might have to break your exported XML file into several smaller pieces and run the import script one at a time.
+
+For those with shared hosting, the best alternative may be to consult hosting support to determine the safest approach for running the import. A host may be willing to temporarily lift the memory limit and/or run the process directly from their end.
+
+-- [WordPress Codex: Importing Content](http://codex.wordpress.org/Importing_Content#Before_Importing)
+
+== Filters ==
+
+The importer has a couple of filters to allow you to completely enable/block certain features:
+
+* `import_allow_create_users`: return false if you only want to allow mapping to existing users
+* `import_allow_fetch_attachments`: return false if you do not wish to allow importing and downloading of attachments
+* `import_attachment_size_limit`: return an integer value for the maximum file size in bytes to save (default is 0, which is unlimited)
+
+There are also a few actions available to hook into:
+
+* `import_start`: occurs after the export file has been uploaded and author import settings have been chosen
+* `import_end`: called after the last output from the importer

+ 1132 - 0
app/plugins/wordpress-importer/wordpress-importer.php

@@ -0,0 +1,1132 @@
+<?php
+/*
+Plugin Name: WordPress Importer
+Plugin URI: http://wordpress.org/extend/plugins/wordpress-importer/
+Description: Import posts, pages, comments, custom fields, categories, tags and more from a WordPress export file.
+Author: wordpressdotorg
+Author URI: http://wordpress.org/
+Version: 0.6.1
+Text Domain: wordpress-importer
+License: GPL version 2 or later - http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
+*/
+
+if ( ! defined( 'WP_LOAD_IMPORTERS' ) )
+	return;
+
+/** Display verbose errors */
+define( 'IMPORT_DEBUG', false );
+
+// Load Importer API
+require_once ABSPATH . 'wp-admin/includes/import.php';
+
+if ( ! class_exists( 'WP_Importer' ) ) {
+	$class_wp_importer = ABSPATH . 'wp-admin/includes/class-wp-importer.php';
+	if ( file_exists( $class_wp_importer ) )
+		require $class_wp_importer;
+}
+
+// include WXR file parsers
+require dirname( __FILE__ ) . '/parsers.php';
+
+/**
+ * WordPress Importer class for managing the import process of a WXR file
+ *
+ * @package WordPress
+ * @subpackage Importer
+ */
+if ( class_exists( 'WP_Importer' ) ) {
+class WP_Import extends WP_Importer {
+	var $max_wxr_version = 1.2; // max. supported WXR version
+
+	var $id; // WXR attachment ID
+
+	// information to import from WXR file
+	var $version;
+	var $authors = array();
+	var $posts = array();
+	var $terms = array();
+	var $categories = array();
+	var $tags = array();
+	var $base_url = '';
+
+	// mappings from old information to new
+	var $processed_authors = array();
+	var $author_mapping = array();
+	var $processed_terms = array();
+	var $processed_posts = array();
+	var $post_orphans = array();
+	var $processed_menu_items = array();
+	var $menu_item_orphans = array();
+	var $missing_menu_items = array();
+
+	var $fetch_attachments = false;
+	var $url_remap = array();
+	var $featured_images = array();
+
+	function WP_Import() { /* nothing */ }
+
+	/**
+	 * Registered callback function for the WordPress Importer
+	 *
+	 * Manages the three separate stages of the WXR import process
+	 */
+	function dispatch() {
+		$this->header();
+
+		$step = empty( $_GET['step'] ) ? 0 : (int) $_GET['step'];
+		switch ( $step ) {
+			case 0:
+				$this->greet();
+				break;
+			case 1:
+				check_admin_referer( 'import-upload' );
+				if ( $this->handle_upload() )
+					$this->import_options();
+				break;
+			case 2:
+				check_admin_referer( 'import-wordpress' );
+				$this->fetch_attachments = ( ! empty( $_POST['fetch_attachments'] ) && $this->allow_fetch_attachments() );
+				$this->id = (int) $_POST['import_id'];
+				$file = get_attached_file( $this->id );
+				set_time_limit(0);
+				$this->import( $file );
+				break;
+		}
+
+		$this->footer();
+	}
+
+	/**
+	 * The main controller for the actual import stage.
+	 *
+	 * @param string $file Path to the WXR file for importing
+	 */
+	function import( $file ) {
+		add_filter( 'import_post_meta_key', array( $this, 'is_valid_meta_key' ) );
+		add_filter( 'http_request_timeout', array( &$this, 'bump_request_timeout' ) );
+
+		$this->import_start( $file );
+
+		$this->get_author_mapping();
+
+		wp_suspend_cache_invalidation( true );
+		$this->process_categories();
+		$this->process_tags();
+		$this->process_terms();
+		$this->process_posts();
+		wp_suspend_cache_invalidation( false );
+
+		// update incorrect/missing information in the DB
+		$this->backfill_parents();
+		$this->backfill_attachment_urls();
+		$this->remap_featured_images();
+
+		$this->import_end();
+	}
+
+	/**
+	 * Parses the WXR file and prepares us for the task of processing parsed data
+	 *
+	 * @param string $file Path to the WXR file for importing
+	 */
+	function import_start( $file ) {
+		if ( ! is_file($file) ) {
+			echo '<p><strong>' . __( 'Sorry, there has been an error.', 'wordpress-importer' ) . '</strong><br />';
+			echo __( 'The file does not exist, please try again.', 'wordpress-importer' ) . '</p>';
+			$this->footer();
+			die();
+		}
+
+		$import_data = $this->parse( $file );
+
+		if ( is_wp_error( $import_data ) ) {
+			echo '<p><strong>' . __( 'Sorry, there has been an error.', 'wordpress-importer' ) . '</strong><br />';
+			echo esc_html( $import_data->get_error_message() ) . '</p>';
+			$this->footer();
+			die();
+		}
+
+		$this->version = $import_data['version'];
+		$this->get_authors_from_import( $import_data );
+		$this->posts = $import_data['posts'];
+		$this->terms = $import_data['terms'];
+		$this->categories = $import_data['categories'];
+		$this->tags = $import_data['tags'];
+		$this->base_url = esc_url( $import_data['base_url'] );
+
+		wp_defer_term_counting( true );
+		wp_defer_comment_counting( true );
+
+		do_action( 'import_start' );
+	}
+
+	/**
+	 * Performs post-import cleanup of files and the cache
+	 */
+	function import_end() {
+		wp_import_cleanup( $this->id );
+
+		wp_cache_flush();
+		foreach ( get_taxonomies() as $tax ) {
+			delete_option( "{$tax}_children" );
+			_get_term_hierarchy( $tax );
+		}
+
+		wp_defer_term_counting( false );
+		wp_defer_comment_counting( false );
+
+		echo '<p>' . __( 'All done.', 'wordpress-importer' ) . ' <a href="' . admin_url() . '">' . __( 'Have fun!', 'wordpress-importer' ) . '</a>' . '</p>';
+		echo '<p>' . __( 'Remember to update the passwords and roles of imported users.', 'wordpress-importer' ) . '</p>';
+
+		do_action( 'import_end' );
+	}
+
+	/**
+	 * Handles the WXR upload and initial parsing of the file to prepare for
+	 * displaying author import options
+	 *
+	 * @return bool False if error uploading or invalid file, true otherwise
+	 */
+	function handle_upload() {
+		$file = wp_import_handle_upload();
+
+		if ( isset( $file['error'] ) ) {
+			echo '<p><strong>' . __( 'Sorry, there has been an error.', 'wordpress-importer' ) . '</strong><br />';
+			echo esc_html( $file['error'] ) . '</p>';
+			return false;
+		} else if ( ! file_exists( $file['file'] ) ) {
+			echo '<p><strong>' . __( 'Sorry, there has been an error.', 'wordpress-importer' ) . '</strong><br />';
+			printf( __( 'The export file could not be found at <code>%s</code>. It is likely that this was caused by a permissions problem.', 'wordpress-importer' ), esc_html( $file['file'] ) );
+			echo '</p>';
+			return false;
+		}
+
+		$this->id = (int) $file['id'];
+		$import_data = $this->parse( $file['file'] );
+		if ( is_wp_error( $import_data ) ) {
+			echo '<p><strong>' . __( 'Sorry, there has been an error.', 'wordpress-importer' ) . '</strong><br />';
+			echo esc_html( $import_data->get_error_message() ) . '</p>';
+			return false;
+		}
+
+		$this->version = $import_data['version'];
+		if ( $this->version > $this->max_wxr_version ) {
+			echo '<div class="error"><p><strong>';
+			printf( __( 'This WXR file (version %s) may not be supported by this version of the importer. Please consider updating.', 'wordpress-importer' ), esc_html($import_data['version']) );
+			echo '</strong></p></div>';
+		}
+
+		$this->get_authors_from_import( $import_data );
+
+		return true;
+	}
+
+	/**
+	 * Retrieve authors from parsed WXR data
+	 *
+	 * Uses the provided author information from WXR 1.1 files
+	 * or extracts info from each post for WXR 1.0 files
+	 *
+	 * @param array $import_data Data returned by a WXR parser
+	 */
+	function get_authors_from_import( $import_data ) {
+		if ( ! empty( $import_data['authors'] ) ) {
+			$this->authors = $import_data['authors'];
+		// no author information, grab it from the posts
+		} else {
+			foreach ( $import_data['posts'] as $post ) {
+				$login = sanitize_user( $post['post_author'], true );
+				if ( empty( $login ) ) {
+					printf( __( 'Failed to import author %s. Their posts will be attributed to the current user.', 'wordpress-importer' ), esc_html( $post['post_author'] ) );
+					echo '<br />';
+					continue;
+				}
+
+				if ( ! isset($this->authors[$login]) )
+					$this->authors[$login] = array(
+						'author_login' => $login,
+						'author_display_name' => $post['post_author']
+					);
+			}
+		}
+	}
+
+	/**
+	 * Display pre-import options, author importing/mapping and option to
+	 * fetch attachments
+	 */
+	function import_options() {
+		$j = 0;
+?>
+<form action="<?php echo admin_url( 'admin.php?import=wordpress&amp;step=2' ); ?>" method="post">
+	<?php wp_nonce_field( 'import-wordpress' ); ?>
+	<input type="hidden" name="import_id" value="<?php echo $this->id; ?>" />
+
+<?php if ( ! empty( $this->authors ) ) : ?>
+	<h3><?php _e( 'Assign Authors', 'wordpress-importer' ); ?></h3>
+	<p><?php _e( 'To make it easier for you to edit and save the imported content, you may want to reassign the author of the imported item to an existing user of this site. For example, you may want to import all the entries as <code>admin</code>s entries.', 'wordpress-importer' ); ?></p>
+<?php if ( $this->allow_create_users() ) : ?>
+	<p><?php printf( __( 'If a new user is created by WordPress, a new password will be randomly generated and the new user&#8217;s role will be set as %s. Manually changing the new user&#8217;s details will be necessary.', 'wordpress-importer' ), esc_html( get_option('default_role') ) ); ?></p>
+<?php endif; ?>
+	<ol id="authors">
+<?php foreach ( $this->authors as $author ) : ?>
+		<li><?php $this->author_select( $j++, $author ); ?></li>
+<?php endforeach; ?>
+	</ol>
+<?php endif; ?>
+
+<?php if ( $this->allow_fetch_attachments() ) : ?>
+	<h3><?php _e( 'Import Attachments', 'wordpress-importer' ); ?></h3>
+	<p>
+		<input type="checkbox" value="1" name="fetch_attachments" id="import-attachments" />
+		<label for="import-attachments"><?php _e( 'Download and import file attachments', 'wordpress-importer' ); ?></label>
+	</p>
+<?php endif; ?>
+
+	<p class="submit"><input type="submit" class="button" value="<?php esc_attr_e( 'Submit', 'wordpress-importer' ); ?>" /></p>
+</form>
+<?php
+	}
+
+	/**
+	 * Display import options for an individual author. That is, either create
+	 * a new user based on import info or map to an existing user
+	 *
+	 * @param int $n Index for each author in the form
+	 * @param array $author Author information, e.g. login, display name, email
+	 */
+	function author_select( $n, $author ) {
+		_e( 'Import author:', 'wordpress-importer' );
+		echo ' <strong>' . esc_html( $author['author_display_name'] );
+		if ( $this->version != '1.0' ) echo ' (' . esc_html( $author['author_login'] ) . ')';
+		echo '</strong><br />';
+
+		if ( $this->version != '1.0' )
+			echo '<div style="margin-left:18px">';
+
+		$create_users = $this->allow_create_users();
+		if ( $create_users ) {
+			if ( $this->version != '1.0' ) {
+				_e( 'or create new user with login name:', 'wordpress-importer' );
+				$value = '';
+			} else {
+				_e( 'as a new user:', 'wordpress-importer' );
+				$value = esc_attr( sanitize_user( $author['author_login'], true ) );
+			}
+
+			echo ' <input type="text" name="user_new['.$n.']" value="'. $value .'" /><br />';
+		}
+
+		if ( ! $create_users && $this->version == '1.0' )
+			_e( 'assign posts to an existing user:', 'wordpress-importer' );
+		else
+			_e( 'or assign posts to an existing user:', 'wordpress-importer' );
+		wp_dropdown_users( array( 'name' => "user_map[$n]", 'multi' => true, 'show_option_all' => __( '- Select -', 'wordpress-importer' ) ) );
+		echo '<input type="hidden" name="imported_authors['.$n.']" value="' . esc_attr( $author['author_login'] ) . '" />';
+
+		if ( $this->version != '1.0' )
+			echo '</div>';
+	}
+
+	/**
+	 * Map old author logins to local user IDs based on decisions made
+	 * in import options form. Can map to an existing user, create a new user
+	 * or falls back to the current user in case of error with either of the previous
+	 */
+	function get_author_mapping() {
+		if ( ! isset( $_POST['imported_authors'] ) )
+			return;
+
+		$create_users = $this->allow_create_users();
+
+		foreach ( (array) $_POST['imported_authors'] as $i => $old_login ) {
+			// Multisite adds strtolower to sanitize_user. Need to sanitize here to stop breakage in process_posts.
+			$santized_old_login = sanitize_user( $old_login, true );
+			$old_id = isset( $this->authors[$old_login]['author_id'] ) ? intval($this->authors[$old_login]['author_id']) : false;
+
+			if ( ! empty( $_POST['user_map'][$i] ) ) {
+				$user = get_userdata( intval($_POST['user_map'][$i]) );
+				if ( isset( $user->ID ) ) {
+					if ( $old_id )
+						$this->processed_authors[$old_id] = $user->ID;
+					$this->author_mapping[$santized_old_login] = $user->ID;
+				}
+			} else if ( $create_users ) {
+				if ( ! empty($_POST['user_new'][$i]) ) {
+					$user_id = wp_create_user( $_POST['user_new'][$i], wp_generate_password() );
+				} else if ( $this->version != '1.0' ) {
+					$user_data = array(
+						'user_login' => $old_login,
+						'user_pass' => wp_generate_password(),
+						'user_email' => isset( $this->authors[$old_login]['author_email'] ) ? $this->authors[$old_login]['author_email'] : '',
+						'display_name' => $this->authors[$old_login]['author_display_name'],
+						'first_name' => isset( $this->authors[$old_login]['author_first_name'] ) ? $this->authors[$old_login]['author_first_name'] : '',
+						'last_name' => isset( $this->authors[$old_login]['author_last_name'] ) ? $this->authors[$old_login]['author_last_name'] : '',
+					);
+					$user_id = wp_insert_user( $user_data );
+				}
+
+				if ( ! is_wp_error( $user_id ) ) {
+					if ( $old_id )
+						$this->processed_authors[$old_id] = $user_id;
+					$this->author_mapping[$santized_old_login] = $user_id;
+				} else {
+					printf( __( 'Failed to create new user for %s. Their posts will be attributed to the current user.', 'wordpress-importer' ), esc_html($this->authors[$old_login]['author_display_name']) );
+					if ( defined('IMPORT_DEBUG') && IMPORT_DEBUG )
+						echo ' ' . $user_id->get_error_message();
+					echo '<br />';
+				}
+			}
+
+			// failsafe: if the user_id was invalid, default to the current user
+			if ( ! isset( $this->author_mapping[$santized_old_login] ) ) {
+				if ( $old_id )
+					$this->processed_authors[$old_id] = (int) get_current_user_id();
+				$this->author_mapping[$santized_old_login] = (int) get_current_user_id();
+			}
+		}
+	}
+
+	/**
+	 * Create new categories based on import information
+	 *
+	 * Doesn't create a new category if its slug already exists
+	 */
+	function process_categories() {
+		$this->categories = apply_filters( 'wp_import_categories', $this->categories );
+
+		if ( empty( $this->categories ) )
+			return;
+
+		foreach ( $this->categories as $cat ) {
+			// if the category already exists leave it alone
+			$term_id = term_exists( $cat['category_nicename'], 'category' );
+			if ( $term_id ) {
+				if ( is_array($term_id) ) $term_id = $term_id['term_id'];
+				if ( isset($cat['term_id']) )
+					$this->processed_terms[intval($cat['term_id'])] = (int) $term_id;
+				continue;
+			}
+
+			$category_parent = empty( $cat['category_parent'] ) ? 0 : category_exists( $cat['category_parent'] );
+			$category_description = isset( $cat['category_description'] ) ? $cat['category_description'] : '';
+			$catarr = array(
+				'category_nicename' => $cat['category_nicename'],
+				'category_parent' => $category_parent,
+				'cat_name' => $cat['cat_name'],
+				'category_description' => $category_description
+			);
+
+			$id = wp_insert_category( $catarr );
+			if ( ! is_wp_error( $id ) ) {
+				if ( isset($cat['term_id']) )
+					$this->processed_terms[intval($cat['term_id'])] = $id;
+			} else {
+				printf( __( 'Failed to import category %s', 'wordpress-importer' ), esc_html($cat['category_nicename']) );
+				if ( defined('IMPORT_DEBUG') && IMPORT_DEBUG )
+					echo ': ' . $id->get_error_message();
+				echo '<br />';
+				continue;
+			}
+		}
+
+		unset( $this->categories );
+	}
+
+	/**
+	 * Create new post tags based on import information
+	 *
+	 * Doesn't create a tag if its slug already exists
+	 */
+	function process_tags() {
+		$this->tags = apply_filters( 'wp_import_tags', $this->tags );
+
+		if ( empty( $this->tags ) )
+			return;
+
+		foreach ( $this->tags as $tag ) {
+			// if the tag already exists leave it alone
+			$term_id = term_exists( $tag['tag_slug'], 'post_tag' );
+			if ( $term_id ) {
+				if ( is_array($term_id) ) $term_id = $term_id['term_id'];
+				if ( isset($tag['term_id']) )
+					$this->processed_terms[intval($tag['term_id'])] = (int) $term_id;
+				continue;
+			}
+
+			$tag_desc = isset( $tag['tag_description'] ) ? $tag['tag_description'] : '';
+			$tagarr = array( 'slug' => $tag['tag_slug'], 'description' => $tag_desc );
+
+			$id = wp_insert_term( $tag['tag_name'], 'post_tag', $tagarr );
+			if ( ! is_wp_error( $id ) ) {
+				if ( isset($tag['term_id']) )
+					$this->processed_terms[intval($tag['term_id'])] = $id['term_id'];
+			} else {
+				printf( __( 'Failed to import post tag %s', 'wordpress-importer' ), esc_html($tag['tag_name']) );
+				if ( defined('IMPORT_DEBUG') && IMPORT_DEBUG )
+					echo ': ' . $id->get_error_message();
+				echo '<br />';
+				continue;
+			}
+		}
+
+		unset( $this->tags );
+	}
+
+	/**
+	 * Create new terms based on import information
+	 *
+	 * Doesn't create a term its slug already exists
+	 */
+	function process_terms() {
+		$this->terms = apply_filters( 'wp_import_terms', $this->terms );
+
+		if ( empty( $this->terms ) )
+			return;
+
+		foreach ( $this->terms as $term ) {
+			// if the term already exists in the correct taxonomy leave it alone
+			$term_id = term_exists( $term['slug'], $term['term_taxonomy'] );
+			if ( $term_id ) {
+				if ( is_array($term_id) ) $term_id = $term_id['term_id'];
+				if ( isset($term['term_id']) )
+					$this->processed_terms[intval($term['term_id'])] = (int) $term_id;
+				continue;
+			}
+
+			if ( empty( $term['term_parent'] ) ) {
+				$parent = 0;
+			} else {
+				$parent = term_exists( $term['term_parent'], $term['term_taxonomy'] );
+				if ( is_array( $parent ) ) $parent = $parent['term_id'];
+			}
+			$description = isset( $term['term_description'] ) ? $term['term_description'] : '';
+			$termarr = array( 'slug' => $term['slug'], 'description' => $description, 'parent' => intval($parent) );
+
+			$id = wp_insert_term( $term['term_name'], $term['term_taxonomy'], $termarr );
+			if ( ! is_wp_error( $id ) ) {
+				if ( isset($term['term_id']) )
+					$this->processed_terms[intval($term['term_id'])] = $id['term_id'];
+			} else {
+				printf( __( 'Failed to import %s %s', 'wordpress-importer' ), esc_html($term['term_taxonomy']), esc_html($term['term_name']) );
+				if ( defined('IMPORT_DEBUG') && IMPORT_DEBUG )
+					echo ': ' . $id->get_error_message();
+				echo '<br />';
+				continue;
+			}
+		}
+
+		unset( $this->terms );
+	}
+
+	/**
+	 * Create new posts based on import information
+	 *
+	 * Posts marked as having a parent which doesn't exist will become top level items.
+	 * Doesn't create a new post if: the post type doesn't exist, the given post ID
+	 * is already noted as imported or a post with the same title and date already exists.
+	 * Note that new/updated terms, comments and meta are imported for the last of the above.
+	 */
+	function process_posts() {
+		$this->posts = apply_filters( 'wp_import_posts', $this->posts );
+
+		foreach ( $this->posts as $post ) {
+			$post = apply_filters( 'wp_import_post_data_raw', $post );
+
+			if ( ! post_type_exists( $post['post_type'] ) ) {
+				printf( __( 'Failed to import &#8220;%s&#8221;: Invalid post type %s', 'wordpress-importer' ),
+					esc_html($post['post_title']), esc_html($post['post_type']) );
+				echo '<br />';
+				do_action( 'wp_import_post_exists', $post );
+				continue;
+			}
+
+			if ( isset( $this->processed_posts[$post['post_id']] ) && ! empty( $post['post_id'] ) )
+				continue;
+
+			if ( $post['status'] == 'auto-draft' )
+				continue;
+
+			if ( 'nav_menu_item' == $post['post_type'] ) {
+				$this->process_menu_item( $post );
+				continue;
+			}
+
+			$post_type_object = get_post_type_object( $post['post_type'] );
+
+			$post_exists = post_exists( $post['post_title'], '', $post['post_date'] );
+			if ( $post_exists && get_post_type( $post_exists ) == $post['post_type'] ) {
+				printf( __('%s &#8220;%s&#8221; already exists.', 'wordpress-importer'), $post_type_object->labels->singular_name, esc_html($post['post_title']) );
+				echo '<br />';
+				$comment_post_ID = $post_id = $post_exists;
+			} else {
+				$post_parent = (int) $post['post_parent'];
+				if ( $post_parent ) {
+					// if we already know the parent, map it to the new local ID
+					if ( isset( $this->processed_posts[$post_parent] ) ) {
+						$post_parent = $this->processed_posts[$post_parent];
+					// otherwise record the parent for later
+					} else {
+						$this->post_orphans[intval($post['post_id'])] = $post_parent;
+						$post_parent = 0;
+					}
+				}
+
+				// map the post author
+				$author = sanitize_user( $post['post_author'], true );
+				if ( isset( $this->author_mapping[$author] ) )
+					$author = $this->author_mapping[$author];
+				else
+					$author = (int) get_current_user_id();
+
+				$postdata = array(
+					'import_id' => $post['post_id'], 'post_author' => $author, 'post_date' => $post['post_date'],
+					'post_date_gmt' => $post['post_date_gmt'], 'post_content' => $post['post_content'],
+					'post_excerpt' => $post['post_excerpt'], 'post_title' => $post['post_title'],
+					'post_status' => $post['status'], 'post_name' => $post['post_name'],
+					'comment_status' => $post['comment_status'], 'ping_status' => $post['ping_status'],
+					'guid' => $post['guid'], 'post_parent' => $post_parent, 'menu_order' => $post['menu_order'],
+					'post_type' => $post['post_type'], 'post_password' => $post['post_password']
+				);
+
+				$original_post_ID = $post['post_id'];
+				$postdata = apply_filters( 'wp_import_post_data_processed', $postdata, $post );
+
+				if ( 'attachment' == $postdata['post_type'] ) {
+					$remote_url = ! empty($post['attachment_url']) ? $post['attachment_url'] : $post['guid'];
+
+					// try to use _wp_attached file for upload folder placement to ensure the same location as the export site
+					// e.g. location is 2003/05/image.jpg but the attachment post_date is 2010/09, see media_handle_upload()
+					$postdata['upload_date'] = $post['post_date'];
+					if ( isset( $post['postmeta'] ) ) {
+						foreach( $post['postmeta'] as $meta ) {
+							if ( $meta['key'] == '_wp_attached_file' ) {
+								if ( preg_match( '%^[0-9]{4}/[0-9]{2}%', $meta['value'], $matches ) )
+									$postdata['upload_date'] = $matches[0];
+								break;
+							}
+						}
+					}
+
+					$comment_post_ID = $post_id = $this->process_attachment( $postdata, $remote_url );
+				} else {
+					$comment_post_ID = $post_id = wp_insert_post( $postdata, true );
+					do_action( 'wp_import_insert_post', $post_id, $original_post_ID, $postdata, $post );
+				}
+
+				if ( is_wp_error( $post_id ) ) {
+					printf( __( 'Failed to import %s &#8220;%s&#8221;', 'wordpress-importer' ),
+						$post_type_object->labels->singular_name, esc_html($post['post_title']) );
+					if ( defined('IMPORT_DEBUG') && IMPORT_DEBUG )
+						echo ': ' . $post_id->get_error_message();
+					echo '<br />';
+					continue;
+				}
+
+				if ( $post['is_sticky'] == 1 )
+					stick_post( $post_id );
+			}
+
+			// map pre-import ID to local ID
+			$this->processed_posts[intval($post['post_id'])] = (int) $post_id;
+
+			if ( ! isset( $post['terms'] ) )
+				$post['terms'] = array();
+
+			$post['terms'] = apply_filters( 'wp_import_post_terms', $post['terms'], $post_id, $post );
+
+			// add categories, tags and other terms
+			if ( ! empty( $post['terms'] ) ) {
+				$terms_to_set = array();
+				foreach ( $post['terms'] as $term ) {
+					// back compat with WXR 1.0 map 'tag' to 'post_tag'
+					$taxonomy = ( 'tag' == $term['domain'] ) ? 'post_tag' : $term['domain'];
+					$term_exists = term_exists( $term['slug'], $taxonomy );
+					$term_id = is_array( $term_exists ) ? $term_exists['term_id'] : $term_exists;
+					if ( ! $term_id ) {
+						$t = wp_insert_term( $term['name'], $taxonomy, array( 'slug' => $term['slug'] ) );
+						if ( ! is_wp_error( $t ) ) {
+							$term_id = $t['term_id'];
+							do_action( 'wp_import_insert_term', $t, $term, $post_id, $post );
+						} else {
+							printf( __( 'Failed to import %s %s', 'wordpress-importer' ), esc_html($taxonomy), esc_html($term['name']) );
+							if ( defined('IMPORT_DEBUG') && IMPORT_DEBUG )
+								echo ': ' . $t->get_error_message();
+							echo '<br />';
+							do_action( 'wp_import_insert_term_failed', $t, $term, $post_id, $post );
+							continue;
+						}
+					}
+					$terms_to_set[$taxonomy][] = intval( $term_id );
+				}
+
+				foreach ( $terms_to_set as $tax => $ids ) {
+					$tt_ids = wp_set_post_terms( $post_id, $ids, $tax );
+					do_action( 'wp_import_set_post_terms', $tt_ids, $ids, $tax, $post_id, $post );
+				}
+				unset( $post['terms'], $terms_to_set );
+			}
+
+			if ( ! isset( $post['comments'] ) )
+				$post['comments'] = array();
+
+			$post['comments'] = apply_filters( 'wp_import_post_comments', $post['comments'], $post_id, $post );
+
+			// add/update comments
+			if ( ! empty( $post['comments'] ) ) {
+				$num_comments = 0;
+				$inserted_comments = array();
+				foreach ( $post['comments'] as $comment ) {
+					$comment_id	= $comment['comment_id'];
+					$newcomments[$comment_id]['comment_post_ID']      = $comment_post_ID;
+					$newcomments[$comment_id]['comment_author']       = $comment['comment_author'];
+					$newcomments[$comment_id]['comment_author_email'] = $comment['comment_author_email'];
+					$newcomments[$comment_id]['comment_author_IP']    = $comment['comment_author_IP'];
+					$newcomments[$comment_id]['comment_author_url']   = $comment['comment_author_url'];
+					$newcomments[$comment_id]['comment_date']         = $comment['comment_date'];
+					$newcomments[$comment_id]['comment_date_gmt']     = $comment['comment_date_gmt'];
+					$newcomments[$comment_id]['comment_content']      = $comment['comment_content'];
+					$newcomments[$comment_id]['comment_approved']     = $comment['comment_approved'];
+					$newcomments[$comment_id]['comment_type']         = $comment['comment_type'];
+					$newcomments[$comment_id]['comment_parent'] 	  = $comment['comment_parent'];
+					$newcomments[$comment_id]['commentmeta']          = isset( $comment['commentmeta'] ) ? $comment['commentmeta'] : array();
+					if ( isset( $this->processed_authors[$comment['comment_user_id']] ) )
+						$newcomments[$comment_id]['user_id'] = $this->processed_authors[$comment['comment_user_id']];
+				}
+				ksort( $newcomments );
+
+				foreach ( $newcomments as $key => $comment ) {
+					// if this is a new post we can skip the comment_exists() check
+					if ( ! $post_exists || ! comment_exists( $comment['comment_author'], $comment['comment_date'] ) ) {
+						if ( isset( $inserted_comments[$comment['comment_parent']] ) )
+							$comment['comment_parent'] = $inserted_comments[$comment['comment_parent']];
+						$comment = wp_filter_comment( $comment );
+						$inserted_comments[$key] = wp_insert_comment( $comment );
+						do_action( 'wp_import_insert_comment', $inserted_comments[$key], $comment, $comment_post_ID, $post );
+
+						foreach( $comment['commentmeta'] as $meta ) {
+							$value = maybe_unserialize( $meta['value'] );
+							add_comment_meta( $inserted_comments[$key], $meta['key'], $value );
+						}
+
+						$num_comments++;
+					}
+				}
+				unset( $newcomments, $inserted_comments, $post['comments'] );
+			}
+
+			if ( ! isset( $post['postmeta'] ) )
+				$post['postmeta'] = array();
+
+			$post['postmeta'] = apply_filters( 'wp_import_post_meta', $post['postmeta'], $post_id, $post );
+
+			// add/update post meta
+			if ( ! empty( $post['postmeta'] ) ) {
+				foreach ( $post['postmeta'] as $meta ) {
+					$key = apply_filters( 'import_post_meta_key', $meta['key'], $post_id, $post );
+					$value = false;
+
+					if ( '_edit_last' == $key ) {
+						if ( isset( $this->processed_authors[intval($meta['value'])] ) )
+							$value = $this->processed_authors[intval($meta['value'])];
+						else
+							$key = false;
+					}
+
+					if ( $key ) {
+						// export gets meta straight from the DB so could have a serialized string
+						if ( ! $value )
+							$value = maybe_unserialize( $meta['value'] );
+
+						add_post_meta( $post_id, $key, $value );
+						do_action( 'import_post_meta', $post_id, $key, $value );
+
+						// if the post has a featured image, take note of this in case of remap
+						if ( '_thumbnail_id' == $key )
+							$this->featured_images[$post_id] = (int) $value;
+					}
+				}
+			}
+		}
+
+		unset( $this->posts );
+	}
+
+	/**
+	 * Attempt to create a new menu item from import data
+	 *
+	 * Fails for draft, orphaned menu items and those without an associated nav_menu
+	 * or an invalid nav_menu term. If the post type or term object which the menu item
+	 * represents doesn't exist then the menu item will not be imported (waits until the
+	 * end of the import to retry again before discarding).
+	 *
+	 * @param array $item Menu item details from WXR file
+	 */
+	function process_menu_item( $item ) {
+		// skip draft, orphaned menu items
+		if ( 'draft' == $item['status'] )
+			return;
+
+		$menu_slug = false;
+		if ( isset($item['terms']) ) {
+			// loop through terms, assume first nav_menu term is correct menu
+			foreach ( $item['terms'] as $term ) {
+				if ( 'nav_menu' == $term['domain'] ) {
+					$menu_slug = $term['slug'];
+					break;
+				}
+			}
+		}
+
+		// no nav_menu term associated with this menu item
+		if ( ! $menu_slug ) {
+			_e( 'Menu item skipped due to missing menu slug', 'wordpress-importer' );
+			echo '<br />';
+			return;
+		}
+
+		$menu_id = term_exists( $menu_slug, 'nav_menu' );
+		if ( ! $menu_id ) {
+			printf( __( 'Menu item skipped due to invalid menu slug: %s', 'wordpress-importer' ), esc_html( $menu_slug ) );
+			echo '<br />';
+			return;
+		} else {
+			$menu_id = is_array( $menu_id ) ? $menu_id['term_id'] : $menu_id;
+		}
+
+		foreach ( $item['postmeta'] as $meta )
+			$$meta['key'] = $meta['value'];
+
+		if ( 'taxonomy' == $_menu_item_type && isset( $this->processed_terms[intval($_menu_item_object_id)] ) ) {
+			$_menu_item_object_id = $this->processed_terms[intval($_menu_item_object_id)];
+		} else if ( 'post_type' == $_menu_item_type && isset( $this->processed_posts[intval($_menu_item_object_id)] ) ) {
+			$_menu_item_object_id = $this->processed_posts[intval($_menu_item_object_id)];
+		} else if ( 'custom' != $_menu_item_type ) {
+			// associated object is missing or not imported yet, we'll retry later
+			$this->missing_menu_items[] = $item;
+			return;
+		}
+
+		if ( isset( $this->processed_menu_items[intval($_menu_item_menu_item_parent)] ) ) {
+			$_menu_item_menu_item_parent = $this->processed_menu_items[intval($_menu_item_menu_item_parent)];
+		} else if ( $_menu_item_menu_item_parent ) {
+			$this->menu_item_orphans[intval($item['post_id'])] = (int) $_menu_item_menu_item_parent;
+			$_menu_item_menu_item_parent = 0;
+		}
+
+		// wp_update_nav_menu_item expects CSS classes as a space separated string
+		$_menu_item_classes = maybe_unserialize( $_menu_item_classes );
+		if ( is_array( $_menu_item_classes ) )
+			$_menu_item_classes = implode( ' ', $_menu_item_classes );
+
+		$args = array(
+			'menu-item-object-id' => $_menu_item_object_id,
+			'menu-item-object' => $_menu_item_object,
+			'menu-item-parent-id' => $_menu_item_menu_item_parent,
+			'menu-item-position' => intval( $item['menu_order'] ),
+			'menu-item-type' => $_menu_item_type,
+			'menu-item-title' => $item['post_title'],
+			'menu-item-url' => $_menu_item_url,
+			'menu-item-description' => $item['post_content'],
+			'menu-item-attr-title' => $item['post_excerpt'],
+			'menu-item-target' => $_menu_item_target,
+			'menu-item-classes' => $_menu_item_classes,
+			'menu-item-xfn' => $_menu_item_xfn,
+			'menu-item-status' => $item['status']
+		);
+
+		$id = wp_update_nav_menu_item( $menu_id, 0, $args );
+		if ( $id && ! is_wp_error( $id ) )
+			$this->processed_menu_items[intval($item['post_id'])] = (int) $id;
+	}
+
+	/**
+	 * If fetching attachments is enabled then attempt to create a new attachment
+	 *
+	 * @param array $post Attachment post details from WXR
+	 * @param string $url URL to fetch attachment from
+	 * @return int|WP_Error Post ID on success, WP_Error otherwise
+	 */
+	function process_attachment( $post, $url ) {
+		if ( ! $this->fetch_attachments )
+			return new WP_Error( 'attachment_processing_error',
+				__( 'Fetching attachments is not enabled', 'wordpress-importer' ) );
+
+		// if the URL is absolute, but does not contain address, then upload it assuming base_site_url
+		if ( preg_match( '|^/[\w\W]+$|', $url ) )
+			$url = rtrim( $this->base_url, '/' ) . $url;
+
+		$upload = $this->fetch_remote_file( $url, $post );
+		if ( is_wp_error( $upload ) )
+			return $upload;
+
+		if ( $info = wp_check_filetype( $upload['file'] ) )
+			$post['post_mime_type'] = $info['type'];
+		else
+			return new WP_Error( 'attachment_processing_error', __('Invalid file type', 'wordpress-importer') );
+
+		$post['guid'] = $upload['url'];
+
+		// as per wp-admin/includes/upload.php
+		$post_id = wp_insert_attachment( $post, $upload['file'] );
+		wp_update_attachment_metadata( $post_id, wp_generate_attachment_metadata( $post_id, $upload['file'] ) );
+
+		// remap resized image URLs, works by stripping the extension and remapping the URL stub.
+		if ( preg_match( '!^image/!', $info['type'] ) ) {
+			$parts = pathinfo( $url );
+			$name = basename( $parts['basename'], ".{$parts['extension']}" ); // PATHINFO_FILENAME in PHP 5.2
+
+			$parts_new = pathinfo( $upload['url'] );
+			$name_new = basename( $parts_new['basename'], ".{$parts_new['extension']}" );
+
+			$this->url_remap[$parts['dirname'] . '/' . $name] = $parts_new['dirname'] . '/' . $name_new;
+		}
+
+		return $post_id;
+	}
+
+	/**
+	 * Attempt to download a remote file attachment
+	 *
+	 * @param string $url URL of item to fetch
+	 * @param array $post Attachment details
+	 * @return array|WP_Error Local file location details on success, WP_Error otherwise
+	 */
+	function fetch_remote_file( $url, $post ) {
+		// extract the file name and extension from the url
+		$file_name = basename( $url );
+
+		// get placeholder file in the upload dir with a unique, sanitized filename
+		$upload = wp_upload_bits( $file_name, 0, '', $post['upload_date'] );
+		if ( $upload['error'] )
+			return new WP_Error( 'upload_dir_error', $upload['error'] );
+
+		// fetch the remote url and write it to the placeholder file
+		$headers = wp_get_http( $url, $upload['file'] );
+
+		// request failed
+		if ( ! $headers ) {
+			@unlink( $upload['file'] );
+			return new WP_Error( 'import_file_error', __('Remote server did not respond', 'wordpress-importer') );
+		}
+
+		// make sure the fetch was successful
+		if ( $headers['response'] != '200' ) {
+			@unlink( $upload['file'] );
+			return new WP_Error( 'import_file_error', sprintf( __('Remote server returned error response %1$d %2$s', 'wordpress-importer'), esc_html($headers['response']), get_status_header_desc($headers['response']) ) );
+		}
+
+		$filesize = filesize( $upload['file'] );
+
+		if ( isset( $headers['content-length'] ) && $filesize != $headers['content-length'] ) {
+			@unlink( $upload['file'] );
+			return new WP_Error( 'import_file_error', __('Remote file is incorrect size', 'wordpress-importer') );
+		}
+
+		if ( 0 == $filesize ) {
+			@unlink( $upload['file'] );
+			return new WP_Error( 'import_file_error', __('Zero size file downloaded', 'wordpress-importer') );
+		}
+
+		$max_size = (int) $this->max_attachment_size();
+		if ( ! empty( $max_size ) && $filesize > $max_size ) {
+			@unlink( $upload['file'] );
+			return new WP_Error( 'import_file_error', sprintf(__('Remote file is too large, limit is %s', 'wordpress-importer'), size_format($max_size) ) );
+		}
+
+		// keep track of the old and new urls so we can substitute them later
+		$this->url_remap[$url] = $upload['url'];
+		$this->url_remap[$post['guid']] = $upload['url']; // r13735, really needed?
+		// keep track of the destination if the remote url is redirected somewhere else
+		if ( isset($headers['x-final-location']) && $headers['x-final-location'] != $url )
+			$this->url_remap[$headers['x-final-location']] = $upload['url'];
+
+		return $upload;
+	}
+
+	/**
+	 * Attempt to associate posts and menu items with previously missing parents
+	 *
+	 * An imported post's parent may not have been imported when it was first created
+	 * so try again. Similarly for child menu items and menu items which were missing
+	 * the object (e.g. post) they represent in the menu
+	 */
+	function backfill_parents() {
+		global $wpdb;
+
+		// find parents for post orphans
+		foreach ( $this->post_orphans as $child_id => $parent_id ) {
+			$local_child_id = $local_parent_id = false;
+			if ( isset( $this->processed_posts[$child_id] ) )
+				$local_child_id = $this->processed_posts[$child_id];
+			if ( isset( $this->processed_posts[$parent_id] ) )
+				$local_parent_id = $this->processed_posts[$parent_id];
+
+			if ( $local_child_id && $local_parent_id )
+				$wpdb->update( $wpdb->posts, array( 'post_parent' => $local_parent_id ), array( 'ID' => $local_child_id ), '%d', '%d' );
+		}
+
+		// all other posts/terms are imported, retry menu items with missing associated object
+		$missing_menu_items = $this->missing_menu_items;
+		foreach ( $missing_menu_items as $item )
+			$this->process_menu_item( $item );
+
+		// find parents for menu item orphans
+		foreach ( $this->menu_item_orphans as $child_id => $parent_id ) {
+			$local_child_id = $local_parent_id = 0;
+			if ( isset( $this->processed_menu_items[$child_id] ) )
+				$local_child_id = $this->processed_menu_items[$child_id];
+			if ( isset( $this->processed_menu_items[$parent_id] ) )
+				$local_parent_id = $this->processed_menu_items[$parent_id];
+
+			if ( $local_child_id && $local_parent_id )
+				update_post_meta( $local_child_id, '_menu_item_menu_item_parent', (int) $local_parent_id );
+		}
+	}
+
+	/**
+	 * Use stored mapping information to update old attachment URLs
+	 */
+	function backfill_attachment_urls() {
+		global $wpdb;
+		// make sure we do the longest urls first, in case one is a substring of another
+		uksort( $this->url_remap, array(&$this, 'cmpr_strlen') );
+
+		foreach ( $this->url_remap as $from_url => $to_url ) {
+			// remap urls in post_content
+			$wpdb->query( $wpdb->prepare("UPDATE {$wpdb->posts} SET post_content = REPLACE(post_content, %s, %s)", $from_url, $to_url) );
+			// remap enclosure urls
+			$result = $wpdb->query( $wpdb->prepare("UPDATE {$wpdb->postmeta} SET meta_value = REPLACE(meta_value, %s, %s) WHERE meta_key='enclosure'", $from_url, $to_url) );
+		}
+	}
+
+	/**
+	 * Update _thumbnail_id meta to new, imported attachment IDs
+	 */
+	function remap_featured_images() {
+		// cycle through posts that have a featured image
+		foreach ( $this->featured_images as $post_id => $value ) {
+			if ( isset( $this->processed_posts[$value] ) ) {
+				$new_id = $this->processed_posts[$value];
+				// only update if there's a difference
+				if ( $new_id != $value )
+					update_post_meta( $post_id, '_thumbnail_id', $new_id );
+			}
+		}
+	}
+
+	/**
+	 * Parse a WXR file
+	 *
+	 * @param string $file Path to WXR file for parsing
+	 * @return array Information gathered from the WXR file
+	 */
+	function parse( $file ) {
+		$parser = new WXR_Parser();
+		return $parser->parse( $file );
+	}
+
+	// Display import page title
+	function header() {
+		echo '<div class="wrap">';
+		screen_icon();
+		echo '<h2>' . __( 'Import WordPress', 'wordpress-importer' ) . '</h2>';
+
+		$updates = get_plugin_updates();
+		$basename = plugin_basename(__FILE__);
+		if ( isset( $updates[$basename] ) ) {
+			$update = $updates[$basename];
+			echo '<div class="error"><p><strong>';
+			printf( __( 'A new version of this importer is available. Please update to version %s to ensure compatibility with newer export files.', 'wordpress-importer' ), $update->update->new_version );
+			echo '</strong></p></div>';
+		}
+	}
+
+	// Close div.wrap
+	function footer() {
+		echo '</div>';
+	}
+
+	/**
+	 * Display introductory text and file upload form
+	 */
+	function greet() {
+		echo '<div class="narrow">';
+		echo '<p>'.__( 'Howdy! Upload your WordPress eXtended RSS (WXR) file and we&#8217;ll import the posts, pages, comments, custom fields, categories, and tags into this site.', 'wordpress-importer' ).'</p>';
+		echo '<p>'.__( 'Choose a WXR (.xml) file to upload, then click Upload file and import.', 'wordpress-importer' ).'</p>';
+		wp_import_upload_form( 'admin.php?import=wordpress&amp;step=1' );
+		echo '</div>';
+	}
+
+	/**
+	 * Decide if the given meta key maps to information we will want to import
+	 *
+	 * @param string $key The meta key to check
+	 * @return string|bool The key if we do want to import, false if not
+	 */
+	function is_valid_meta_key( $key ) {
+		// skip attachment metadata since we'll regenerate it from scratch
+		// skip _edit_lock as not relevant for import
+		if ( in_array( $key, array( '_wp_attached_file', '_wp_attachment_metadata', '_edit_lock' ) ) )
+			return false;
+		return $key;
+	}
+
+	/**
+	 * Decide whether or not the importer is allowed to create users.
+	 * Default is true, can be filtered via import_allow_create_users
+	 *
+	 * @return bool True if creating users is allowed
+	 */
+	function allow_create_users() {
+		return apply_filters( 'import_allow_create_users', true );
+	}
+
+	/**
+	 * Decide whether or not the importer should attempt to download attachment files.
+	 * Default is true, can be filtered via import_allow_fetch_attachments. The choice
+	 * made at the import options screen must also be true, false here hides that checkbox.
+	 *
+	 * @return bool True if downloading attachments is allowed
+	 */
+	function allow_fetch_attachments() {
+		return apply_filters( 'import_allow_fetch_attachments', true );
+	}
+
+	/**
+	 * Decide what the maximum file size for downloaded attachments is.
+	 * Default is 0 (unlimited), can be filtered via import_attachment_size_limit
+	 *
+	 * @return int Maximum attachment file size to import
+	 */
+	function max_attachment_size() {
+		return apply_filters( 'import_attachment_size_limit', 0 );
+	}
+
+	/**
+	 * Added to http_request_timeout filter to force timeout at 60 seconds during import
+	 * @return int 60
+	 */
+	function bump_request_timeout() {
+		return 60;
+	}
+
+	// return the difference in length between two strings
+	function cmpr_strlen( $a, $b ) {
+		return strlen($b) - strlen($a);
+	}
+}
+
+} // class_exists( 'WP_Importer' )
+
+function wordpress_importer_init() {
+	load_plugin_textdomain( 'wordpress-importer', false, dirname( plugin_basename( __FILE__ ) ) . '/languages' );
+
+	/**
+	 * WordPress Importer object for registering the import callback
+	 * @global WP_Import $wp_import
+	 */
+	$GLOBALS['wp_import'] = new WP_Import();
+	register_importer( 'wordpress', 'WordPress', __('Import <strong>posts, pages, comments, custom fields, categories, and tags</strong> from a WordPress export file.', 'wordpress-importer'), array( $GLOBALS['wp_import'], 'dispatch' ) );
+}
+add_action( 'admin_init', 'wordpress_importer_init' );

+ 1 - 1
app/themes/_wd

@@ -1 +1 @@
-Subproject commit 4945b5096671620b5df357449ed3a127ac0debaa
+Subproject commit 7d10910949ebab77ee3d44757d280563aded8d92

+ 1 - 0
app/themes/aesop-sample-theme

@@ -0,0 +1 @@
+Subproject commit 4dd68c25f3c067cf500d2d0a4a012caea7df2c86

+ 9260 - 0
theme-unit-test-data.xml

@@ -0,0 +1,9260 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ This is a WordPress eXtended RSS file generated by WordPress as an export of your site.
+ It contains information about your site's posts, pages, comments, categories, and other content.
+ You may use this file to transfer that content from one site to another.
+ This file is not intended to serve as a complete backup of your site.
+
+ To import this information into a WordPress site follow these steps:
+ 1. Log in to that site as an administrator.
+ 2. Go to Tools: Import in the WordPress admin panel.
+ 3. Install the "WordPress" importer from the list.
+ 4. Activate & Run Importer.
+ 5. Upload this file using the form provided on that page.
+ 6. You will first be asked to map the authors in this export file to users
+    on the site. For each author, you may choose to map to an
+    existing user on the site or to create a new user.
+ 7. WordPress will then import each of the posts, pages, comments, categories, etc.
+    contained in this file into your site.
+-->
+<!-- generator="WordPress.com" created="2013-09-19 16:56"-->
+<rss version="2.0" xmlns:excerpt="http://wordpress.org/export/1.2/excerpt/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:wp="http://wordpress.org/export/1.2/">
+  <channel>
+<title>Theme Unit Test Data</title>
+<link>http://wpthemetestdata.wordpress.com</link>
+<description>Just another WordPress website with a purposefully really long description</description>
+<pubDate>Thu, 19 Sep 2013 16:56:30 +0000</pubDate>
+<language>en</language>
+<wp:wxr_version>1.2</wp:wxr_version>
+<wp:base_site_url>http://wordpress.com/</wp:base_site_url>
+<wp:base_blog_url>http://wpthemetestdata.wordpress.com</wp:base_blog_url>
+<wp:wp_author>
+  <wp:author_login>themedemos</wp:author_login>
+  <wp:author_email>lance+demos@automattic.com</wp:author_email>
+  <wp:author_display_name><![CDATA[Theme Buster]]></wp:author_display_name>
+  <wp:author_first_name><![CDATA[]]></wp:author_first_name>
+  <wp:author_last_name><![CDATA[]]></wp:author_last_name>
+</wp:wp_author>
+<wp:wp_author>
+  <wp:author_login>lance</wp:author_login>
+  <wp:author_email>lance@automattic.com</wp:author_email>
+  <wp:author_display_name><![CDATA[Lance Willett]]></wp:author_display_name>
+  <wp:author_first_name><![CDATA[]]></wp:author_first_name>
+  <wp:author_last_name><![CDATA[]]></wp:author_last_name>
+</wp:wp_author>
+<wp:wp_author>
+  <wp:author_login>chipbennett</wp:author_login>
+  <wp:author_email>chip@chipbennett.net</wp:author_email>
+  <wp:author_display_name><![CDATA[Chip Bennett]]></wp:author_display_name>
+  <wp:author_first_name><![CDATA[]]></wp:author_first_name>
+  <wp:author_last_name><![CDATA[]]></wp:author_last_name>
+</wp:wp_author>
+<wp:wp_author>
+  <wp:author_login>emiluzelac</wp:author_login>
+  <wp:author_email>emil@uzelac.me</wp:author_email>
+  <wp:author_display_name><![CDATA[Emil Uzelac]]></wp:author_display_name>
+  <wp:author_first_name><![CDATA[]]></wp:author_first_name>
+  <wp:author_last_name><![CDATA[]]></wp:author_last_name>
+</wp:wp_author>
+<wp:wp_author>
+  <wp:author_login>kobenland</wp:author_login>
+  <wp:author_email>konstantin@obenland.it</wp:author_email>
+  <wp:author_display_name><![CDATA[Konstantin Obenland]]></wp:author_display_name>
+  <wp:author_first_name><![CDATA[]]></wp:author_first_name>
+  <wp:author_last_name><![CDATA[]]></wp:author_last_name>
+</wp:wp_author>
+<wp:category>
+  <wp:term_id>2835016</wp:term_id>
+  <wp:category_nicename>aciform</wp:category_nicename>
+  <wp:category_parent/>
+  <wp:cat_name><![CDATA[aciform]]></wp:cat_name>
+</wp:category>
+<wp:category>
+  <wp:term_id>1020423</wp:term_id>
+  <wp:category_nicename>antiquarianism</wp:category_nicename>
+  <wp:category_parent/>
+  <wp:cat_name><![CDATA[antiquarianism]]></wp:cat_name>
+</wp:category>
+<wp:category>
+  <wp:term_id>33280</wp:term_id>
+  <wp:category_nicename>arrangement</wp:category_nicename>
+  <wp:category_parent/>
+  <wp:cat_name><![CDATA[arrangement]]></wp:cat_name>
+</wp:category>
+<wp:category>
+  <wp:term_id>2720660</wp:term_id>
+  <wp:category_nicename>asmodeus</wp:category_nicename>
+  <wp:category_parent/>
+  <wp:cat_name><![CDATA[asmodeus]]></wp:cat_name>
+</wp:category>
+<wp:category>
+  <wp:term_id>1356</wp:term_id>
+  <wp:category_nicename>blogroll</wp:category_nicename>
+  <wp:category_parent/>
+  <wp:cat_name><![CDATA[Blogroll]]></wp:cat_name>
+</wp:category>
+<wp:category>
+  <wp:term_id>714120</wp:term_id>
+  <wp:category_nicename>broder</wp:category_nicename>
+  <wp:category_parent/>
+  <wp:cat_name><![CDATA[broder]]></wp:cat_name>
+</wp:category>
+<wp:category>
+  <wp:term_id>30256</wp:term_id>
+  <wp:category_nicename>buying</wp:category_nicename>
+  <wp:category_parent/>
+  <wp:cat_name><![CDATA[buying]]></wp:cat_name>
+</wp:category>
+<wp:category>
+  <wp:term_id>111995</wp:term_id>
+  <wp:category_nicename>cat-a</wp:category_nicename>
+  <wp:category_parent/>
+  <wp:cat_name><![CDATA[Cat A]]></wp:cat_name>
+</wp:category>
+<wp:category>
+  <wp:term_id>111996</wp:term_id>
+  <wp:category_nicename>cat-b</wp:category_nicename>
+  <wp:category_parent/>
+  <wp:cat_name><![CDATA[Cat B]]></wp:cat_name>
+</wp:category>
+<wp:category>
+  <wp:term_id>111997</wp:term_id>
+  <wp:category_nicename>cat-c</wp:category_nicename>
+  <wp:category_parent/>
+  <wp:cat_name><![CDATA[Cat C]]></wp:cat_name>
+</wp:category>
+<wp:category>
+  <wp:term_id>62501</wp:term_id>
+  <wp:category_nicename>championship</wp:category_nicename>
+  <wp:category_parent/>
+  <wp:cat_name><![CDATA[championship]]></wp:cat_name>
+</wp:category>
+<wp:category>
+  <wp:term_id>2835020</wp:term_id>
+  <wp:category_nicename>chastening</wp:category_nicename>
+  <wp:category_parent/>
+  <wp:cat_name><![CDATA[chastening]]></wp:cat_name>
+</wp:category>
+<wp:category>
+  <wp:term_id>96553</wp:term_id>
+  <wp:category_nicename>clerkship</wp:category_nicename>
+  <wp:category_parent/>
+  <wp:cat_name><![CDATA[clerkship]]></wp:cat_name>
+</wp:category>
+<wp:category>
+  <wp:term_id>2834984</wp:term_id>
+  <wp:category_nicename>disinclination</wp:category_nicename>
+  <wp:category_parent/>
+  <wp:cat_name><![CDATA[disinclination]]></wp:cat_name>
+</wp:category>
+<wp:category>
+  <wp:term_id>1454829</wp:term_id>
+  <wp:category_nicename>disinfection</wp:category_nicename>
+  <wp:category_parent/>
+  <wp:cat_name><![CDATA[disinfection]]></wp:cat_name>
+</wp:category>
+<wp:category>
+  <wp:term_id>167368</wp:term_id>
+  <wp:category_nicename>dispatch</wp:category_nicename>
+  <wp:category_parent/>
+  <wp:cat_name><![CDATA[dispatch]]></wp:cat_name>
+</wp:category>
+<wp:category>
+  <wp:term_id>2834987</wp:term_id>
+  <wp:category_nicename>echappee</wp:category_nicename>
+  <wp:category_parent/>
+  <wp:cat_name><![CDATA[echappee]]></wp:cat_name>
+</wp:category>
+<wp:category>
+  <wp:term_id>161095136</wp:term_id>
+  <wp:category_nicename>edge-case-2</wp:category_nicename>
+  <wp:category_parent/>
+  <wp:cat_name><![CDATA[Edge Case]]></wp:cat_name>
+  <wp:category_description><![CDATA[Posts that have edge-case related tests]]></wp:category_description>
+</wp:category>
+<wp:category>
+  <wp:term_id>2834990</wp:term_id>
+  <wp:category_nicename>enphagy</wp:category_nicename>
+  <wp:category_parent/>
+  <wp:cat_name><![CDATA[enphagy]]></wp:cat_name>
+</wp:category>
+<wp:category>
+  <wp:term_id>2834992</wp:term_id>
+  <wp:category_nicename>equipollent</wp:category_nicename>
+  <wp:category_parent/>
+  <wp:cat_name><![CDATA[equipollent]]></wp:cat_name>
+</wp:category>
+<wp:category>
+  <wp:term_id>2835022</wp:term_id>
+  <wp:category_nicename>fatuity</wp:category_nicename>
+  <wp:category_parent/>
+  <wp:cat_name><![CDATA[fatuity]]></wp:cat_name>
+</wp:category>
+<wp:category>
+  <wp:term_id>3128700</wp:term_id>
+  <wp:category_nicename>foo-a</wp:category_nicename>
+  <wp:category_parent/>
+  <wp:cat_name><![CDATA[Foo A]]></wp:cat_name>
+</wp:category>
+<wp:category>
+  <wp:term_id>3128707</wp:term_id>
+  <wp:category_nicename>foo-parent</wp:category_nicename>
+  <wp:category_parent/>
+  <wp:cat_name><![CDATA[Foo Parent]]></wp:cat_name>
+</wp:category>
+<wp:category>
+  <wp:term_id>2835023</wp:term_id>
+  <wp:category_nicename>gaberlunzie</wp:category_nicename>
+  <wp:category_parent/>
+  <wp:cat_name><![CDATA[gaberlunzie]]></wp:cat_name>
+</wp:category>
+<wp:category>
+  <wp:term_id>2835026</wp:term_id>
+  <wp:category_nicename>illtempered</wp:category_nicename>
+  <wp:category_parent/>
+  <wp:cat_name><![CDATA[illtempered]]></wp:cat_name>
+</wp:category>
+<wp:category>
+  <wp:term_id>315209</wp:term_id>
+  <wp:category_nicename>insubordination</wp:category_nicename>
+  <wp:category_parent/>
+  <wp:cat_name><![CDATA[insubordination]]></wp:cat_name>
+</wp:category>
+<wp:category>
+  <wp:term_id>376018</wp:term_id>
+  <wp:category_nicename>lender</wp:category_nicename>
+  <wp:category_parent/>
+  <wp:cat_name><![CDATA[lender]]></wp:cat_name>
+</wp:category>
+<wp:category>
+  <wp:term_id>4675</wp:term_id>
+  <wp:category_nicename>markup</wp:category_nicename>
+  <wp:category_parent/>
+  <wp:cat_name><![CDATA[Markup]]></wp:cat_name>
+  <wp:category_description><![CDATA[Posts in this category test markup tags and styles.]]></wp:category_description>
+</wp:category>
+<wp:category>
+  <wp:term_id>329026</wp:term_id>
+  <wp:category_nicename>media-2</wp:category_nicename>
+  <wp:category_parent/>
+  <wp:cat_name><![CDATA[Media]]></wp:cat_name>
+  <wp:category_description><![CDATA[Posts that have media-related tests]]></wp:category_description>
+</wp:category>
+<wp:category>
+  <wp:term_id>2835029</wp:term_id>
+  <wp:category_nicename>monosyllable</wp:category_nicename>
+  <wp:category_parent/>
+  <wp:cat_name><![CDATA[monosyllable]]></wp:cat_name>
+</wp:category>
+<wp:category>
+  <wp:term_id>2835030</wp:term_id>
+  <wp:category_nicename>packthread</wp:category_nicename>
+  <wp:category_parent/>
+  <wp:cat_name><![CDATA[packthread]]></wp:cat_name>
+</wp:category>
+<wp:category>
+  <wp:term_id>2835031</wp:term_id>
+  <wp:category_nicename>palter</wp:category_nicename>
+  <wp:category_parent/>
+  <wp:cat_name><![CDATA[palter]]></wp:cat_name>
+</wp:category>
+<wp:category>
+  <wp:term_id>2834994</wp:term_id>
+  <wp:category_nicename>papilionaceous</wp:category_nicename>
+  <wp:category_parent/>
+  <wp:cat_name><![CDATA[papilionaceous]]></wp:cat_name>
+</wp:category>
+<wp:category>
+  <wp:term_id>54150</wp:term_id>
+  <wp:category_nicename>parent</wp:category_nicename>
+  <wp:category_parent/>
+  <wp:cat_name><![CDATA[Parent]]></wp:cat_name>
+</wp:category>
+<wp:category>
+  <wp:term_id>6004933</wp:term_id>
+  <wp:category_nicename>parent-category</wp:category_nicename>
+  <wp:category_parent/>
+  <wp:cat_name><![CDATA[Parent Category]]></wp:cat_name>
+  <wp:category_description><![CDATA[This is a parent category. It will contain child categories]]></wp:category_description>
+</wp:category>
+<wp:category>
+  <wp:term_id>1922221</wp:term_id>
+  <wp:category_nicename>personable</wp:category_nicename>
+  <wp:category_parent/>
+  <wp:cat_name><![CDATA[personable]]></wp:cat_name>
+</wp:category>
+<wp:category>
+  <wp:term_id>44090582</wp:term_id>
+  <wp:category_nicename>post-formats</wp:category_nicename>
+  <wp:category_parent/>
+  <wp:cat_name><![CDATA[Post Formats]]></wp:cat_name>
+  <wp:category_description><![CDATA[Posts in this category test post formats.]]></wp:category_description>
+</wp:category>
+<wp:category>
+  <wp:term_id>2834996</wp:term_id>
+  <wp:category_nicename>propylaeum</wp:category_nicename>
+  <wp:category_parent/>
+  <wp:cat_name><![CDATA[propylaeum]]></wp:cat_name>
+</wp:category>
+<wp:category>
+  <wp:term_id>177992</wp:term_id>
+  <wp:category_nicename>pustule</wp:category_nicename>
+  <wp:category_parent/>
+  <wp:cat_name><![CDATA[pustule]]></wp:cat_name>
+</wp:category>
+<wp:category>
+  <wp:term_id>2835000</wp:term_id>
+  <wp:category_nicename>quartern</wp:category_nicename>
+  <wp:category_parent/>
+  <wp:cat_name><![CDATA[quartern]]></wp:cat_name>
+</wp:category>
+<wp:category>
+  <wp:term_id>34975</wp:term_id>
+  <wp:category_nicename>scholarship</wp:category_nicename>
+  <wp:category_parent/>
+  <wp:cat_name><![CDATA[scholarship]]></wp:cat_name>
+</wp:category>
+<wp:category>
+  <wp:term_id>2835035</wp:term_id>
+  <wp:category_nicename>selfconvicted</wp:category_nicename>
+  <wp:category_parent/>
+  <wp:cat_name><![CDATA[selfconvicted]]></wp:cat_name>
+</wp:category>
+<wp:category>
+  <wp:term_id>2835006</wp:term_id>
+  <wp:category_nicename>showshoe</wp:category_nicename>
+  <wp:category_parent/>
+  <wp:cat_name><![CDATA[showshoe]]></wp:cat_name>
+</wp:category>
+<wp:category>
+  <wp:term_id>2835007</wp:term_id>
+  <wp:category_nicename>sloyd</wp:category_nicename>
+  <wp:category_parent/>
+  <wp:cat_name><![CDATA[sloyd]]></wp:cat_name>
+</wp:category>
+<wp:category>
+  <wp:term_id>30849</wp:term_id>
+  <wp:category_nicename>sub</wp:category_nicename>
+  <wp:category_parent>aciform</wp:category_parent>
+  <wp:cat_name><![CDATA[sub]]></wp:cat_name>
+</wp:category>
+<wp:category>
+  <wp:term_id>2835009</wp:term_id>
+  <wp:category_nicename>sublunary</wp:category_nicename>
+  <wp:category_parent/>
+  <wp:cat_name><![CDATA[sublunary]]></wp:cat_name>
+</wp:category>
+<wp:category>
+  <wp:term_id>2016057</wp:term_id>
+  <wp:category_nicename>tamtam</wp:category_nicename>
+  <wp:category_parent/>
+  <wp:cat_name><![CDATA[tamtam]]></wp:cat_name>
+</wp:category>
+<wp:category>
+  <wp:term_id>33328006</wp:term_id>
+  <wp:category_nicename>template-2</wp:category_nicename>
+  <wp:category_parent/>
+  <wp:cat_name><![CDATA[Template]]></wp:cat_name>
+  <wp:category_description><![CDATA[Posts with template-related tests]]></wp:category_description>
+</wp:category>
+<wp:category>
+  <wp:term_id>1</wp:term_id>
+  <wp:category_nicename>uncategorized</wp:category_nicename>
+  <wp:category_parent/>
+  <wp:cat_name><![CDATA[Uncategorized]]></wp:cat_name>
+</wp:category>
+<wp:category>
+  <wp:term_id>54090</wp:term_id>
+  <wp:category_nicename>unpublished</wp:category_nicename>
+  <wp:category_parent/>
+  <wp:cat_name><![CDATA[Unpublished]]></wp:cat_name>
+  <wp:category_description><![CDATA[Posts in this category test unpublished posts.]]></wp:category_description>
+</wp:category>
+<wp:category>
+  <wp:term_id>2835037</wp:term_id>
+  <wp:category_nicename>weakhearted</wp:category_nicename>
+  <wp:category_parent/>
+  <wp:cat_name><![CDATA[weakhearted]]></wp:cat_name>
+</wp:category>
+<wp:category>
+  <wp:term_id>312342</wp:term_id>
+  <wp:category_nicename>ween</wp:category_nicename>
+  <wp:category_parent/>
+  <wp:cat_name><![CDATA[ween]]></wp:cat_name>
+</wp:category>
+<wp:category>
+  <wp:term_id>1327706</wp:term_id>
+  <wp:category_nicename>wellhead</wp:category_nicename>
+  <wp:category_parent/>
+  <wp:cat_name><![CDATA[wellhead]]></wp:cat_name>
+</wp:category>
+<wp:category>
+  <wp:term_id>2835043</wp:term_id>
+  <wp:category_nicename>wellintentioned</wp:category_nicename>
+  <wp:category_parent/>
+  <wp:cat_name><![CDATA[wellintentioned]]></wp:cat_name>
+</wp:category>
+<wp:category>
+  <wp:term_id>2835045</wp:term_id>
+  <wp:category_nicename>whetstone</wp:category_nicename>
+  <wp:category_parent/>
+  <wp:cat_name><![CDATA[whetstone]]></wp:cat_name>
+</wp:category>
+<wp:category>
+  <wp:term_id>67899</wp:term_id>
+  <wp:category_nicename>years</wp:category_nicename>
+  <wp:category_parent/>
+  <wp:cat_name><![CDATA[years]]></wp:cat_name>
+</wp:category>
+<wp:category>
+  <wp:term_id>1043326</wp:term_id>
+  <wp:category_nicename>child-1</wp:category_nicename>
+  <wp:category_parent>parent</wp:category_parent>
+  <wp:cat_name><![CDATA[Child 1]]></wp:cat_name>
+</wp:category>
+<wp:category>
+  <wp:term_id>1043329</wp:term_id>
+  <wp:category_nicename>child-2</wp:category_nicename>
+  <wp:category_parent>child-1</wp:category_parent>
+  <wp:cat_name><![CDATA[Child 2]]></wp:cat_name>
+</wp:category>
+<wp:category>
+  <wp:term_id>158081316</wp:term_id>
+  <wp:category_nicename>child-category-01</wp:category_nicename>
+  <wp:category_parent>parent-category</wp:category_parent>
+  <wp:cat_name><![CDATA[Child Category 01]]></wp:cat_name>
+  <wp:category_description><![CDATA[This is a description for the Child Category 01.]]></wp:category_description>
+</wp:category>
+<wp:category>
+  <wp:term_id>158081319</wp:term_id>
+  <wp:category_nicename>child-category-02</wp:category_nicename>
+  <wp:category_parent>parent-category</wp:category_parent>
+  <wp:cat_name><![CDATA[Child Category 02]]></wp:cat_name>
+  <wp:category_description><![CDATA[This is a description for the Child Category 02.]]></wp:category_description>
+</wp:category>
+<wp:category>
+  <wp:term_id>158081321</wp:term_id>
+  <wp:category_nicename>child-category-03</wp:category_nicename>
+  <wp:category_parent>parent-category</wp:category_parent>
+  <wp:cat_name><![CDATA[Child Category 03]]></wp:cat_name>
+  <wp:category_description><![CDATA[This is a description for the Child Category 03.]]></wp:category_description>
+</wp:category>
+<wp:category>
+  <wp:term_id>158081323</wp:term_id>
+  <wp:category_nicename>child-category-04</wp:category_nicename>
+  <wp:category_parent>parent-category</wp:category_parent>
+  <wp:cat_name><![CDATA[Child Category 04]]></wp:cat_name>
+  <wp:category_description><![CDATA[This is a description for the Child Category 04.]]></wp:category_description>
+</wp:category>
+<wp:category>
+  <wp:term_id>158081325</wp:term_id>
+  <wp:category_nicename>child-category-05</wp:category_nicename>
+  <wp:category_parent>parent-category</wp:category_parent>
+  <wp:cat_name><![CDATA[Child Category 05]]></wp:cat_name>
+  <wp:category_description><![CDATA[This is a description for the Child Category 05.]]></wp:category_description>
+</wp:category>
+<wp:category>
+  <wp:term_id>3128710</wp:term_id>
+  <wp:category_nicename>foo-a-foo-parent</wp:category_nicename>
+  <wp:category_parent>foo-parent</wp:category_parent>
+  <wp:cat_name><![CDATA[Foo A]]></wp:cat_name>
+</wp:category>
+<wp:category>
+  <wp:term_id>57037077</wp:term_id>
+  <wp:category_nicename>grandchild-category</wp:category_nicename>
+  <wp:category_parent>child-category-03</wp:category_parent>
+  <wp:cat_name><![CDATA[Grandchild Category]]></wp:cat_name>
+  <wp:category_description><![CDATA[This is a description for the Grandchild Category.]]></wp:category_description>
+</wp:category>
+<wp:tag>
+  <wp:term_id>695220</wp:term_id>
+  <wp:tag_slug>8bit</wp:tag_slug>
+  <wp:tag_name><![CDATA[8BIT]]></wp:tag_name>
+  <wp:tag_description><![CDATA[Tags posts about 8BIT.]]></wp:tag_description>
+</wp:tag>
+<wp:tag>
+  <wp:term_id>38590737</wp:term_id>
+  <wp:tag_slug>alignment-2</wp:tag_slug>
+  <wp:tag_name><![CDATA[alignment]]></wp:tag_name>
+</wp:tag>
+<wp:tag>
+  <wp:term_id>651</wp:term_id>
+  <wp:tag_slug>articles</wp:tag_slug>
+  <wp:tag_name><![CDATA[Articles]]></wp:tag_name>
+  <wp:tag_description><![CDATA[Tags posts about Articles.]]></wp:tag_description>
+</wp:tag>
+<wp:tag>
+  <wp:term_id>6935</wp:term_id>
+  <wp:tag_slug>aside</wp:tag_slug>
+  <wp:tag_name><![CDATA[aside]]></wp:tag_name>
+</wp:tag>
+<wp:tag>
+  <wp:term_id>413</wp:term_id>
+  <wp:tag_slug>audio</wp:tag_slug>
+  <wp:tag_name><![CDATA[audio]]></wp:tag_name>
+</wp:tag>
+<wp:tag>
+  <wp:term_id>36446125</wp:term_id>
+  <wp:tag_slug>captions-2</wp:tag_slug>
+  <wp:tag_name><![CDATA[captions]]></wp:tag_name>
+</wp:tag>
+<wp:tag>
+  <wp:term_id>1656</wp:term_id>
+  <wp:tag_slug>categories</wp:tag_slug>
+  <wp:tag_name><![CDATA[categories]]></wp:tag_name>
+</wp:tag>
+<wp:tag>
+  <wp:term_id>4870</wp:term_id>
+  <wp:tag_slug>chat</wp:tag_slug>
+  <wp:tag_name><![CDATA[chat]]></wp:tag_name>
+</wp:tag>
+<wp:tag>
+  <wp:term_id>2834913</wp:term_id>
+  <wp:tag_slug>chattels</wp:tag_slug>
+  <wp:tag_name><![CDATA[chattels]]></wp:tag_name>
+</wp:tag>
+<wp:tag>
+  <wp:term_id>2834914</wp:term_id>
+  <wp:tag_slug>cienaga</wp:tag_slug>
+  <wp:tag_name><![CDATA[cienaga]]></wp:tag_name>
+</wp:tag>
+<wp:tag>
+  <wp:term_id>2834899</wp:term_id>
+  <wp:tag_slug>claycold</wp:tag_slug>
+  <wp:tag_name><![CDATA[claycold]]></wp:tag_name>
+</wp:tag>
+<wp:tag>
+  <wp:term_id>12525</wp:term_id>
+  <wp:tag_slug>codex</wp:tag_slug>
+  <wp:tag_name><![CDATA[Codex]]></wp:tag_name>
+</wp:tag>
+<wp:tag>
+  <wp:term_id>1861347</wp:term_id>
+  <wp:tag_slug>comments-2</wp:tag_slug>
+  <wp:tag_name><![CDATA[comments]]></wp:tag_name>
+</wp:tag>
+<wp:tag>
+  <wp:term_id>35181409</wp:term_id>
+  <wp:tag_slug>content-2</wp:tag_slug>
+  <wp:tag_name><![CDATA[content]]></wp:tag_name>
+</wp:tag>
+<wp:tag>
+  <wp:term_id>124338</wp:term_id>
+  <wp:tag_slug>crushing</wp:tag_slug>
+  <wp:tag_name><![CDATA[crushing]]></wp:tag_name>
+</wp:tag>
+<wp:tag>
+  <wp:term_id>169</wp:term_id>
+  <wp:tag_slug>css</wp:tag_slug>
+  <wp:tag_name><![CDATA[css]]></wp:tag_name>
+</wp:tag>
+<wp:tag>
+  <wp:term_id>385439</wp:term_id>
+  <wp:tag_slug>depo</wp:tag_slug>
+  <wp:tag_name><![CDATA[depo]]></wp:tag_name>
+</wp:tag>
+<wp:tag>
+  <wp:term_id>2834915</wp:term_id>
+  <wp:tag_slug>dinarchy</wp:tag_slug>
+  <wp:tag_name><![CDATA[dinarchy]]></wp:tag_name>
+</wp:tag>
+<wp:tag>
+  <wp:term_id>2834900</wp:term_id>
+  <wp:tag_slug>doolie</wp:tag_slug>
+  <wp:tag_name><![CDATA[doolie]]></wp:tag_name>
+</wp:tag>
+<wp:tag>
+  <wp:term_id>13207917</wp:term_id>
+  <wp:tag_slug>dowork</wp:tag_slug>
+  <wp:tag_name><![CDATA[dowork]]></wp:tag_name>
+  <wp:tag_description><![CDATA[Tags posts about #dowork.]]></wp:tag_description>
+</wp:tag>
+<wp:tag>
+  <wp:term_id>16894899</wp:term_id>
+  <wp:tag_slug>edge-case</wp:tag_slug>
+  <wp:tag_name><![CDATA[edge case]]></wp:tag_name>
+</wp:tag>
+<wp:tag>
+  <wp:term_id>161043722</wp:term_id>
+  <wp:tag_slug>embeds-2</wp:tag_slug>
+  <wp:tag_name><![CDATA[embeds]]></wp:tag_name>
+</wp:tag>
+<wp:tag>
+  <wp:term_id>2834901</wp:term_id>
+  <wp:tag_slug>energumen</wp:tag_slug>
+  <wp:tag_name><![CDATA[energumen]]></wp:tag_name>
+</wp:tag>
+<wp:tag>
+  <wp:term_id>781363</wp:term_id>
+  <wp:tag_slug>ephialtes</wp:tag_slug>
+  <wp:tag_name><![CDATA[ephialtes]]></wp:tag_name>
+</wp:tag>
+<wp:tag>
+  <wp:term_id>2834902</wp:term_id>
+  <wp:tag_slug>eudiometer</wp:tag_slug>
+  <wp:tag_name><![CDATA[eudiometer]]></wp:tag_name>
+</wp:tag>
+<wp:tag>
+  <wp:term_id>31262653</wp:term_id>
+  <wp:tag_slug>excerpt-2</wp:tag_slug>
+  <wp:tag_name><![CDATA[excerpt]]></wp:tag_name>
+</wp:tag>
+<wp:tag>
+  <wp:term_id>112207</wp:term_id>
+  <wp:tag_slug>fail</wp:tag_slug>
+  <wp:tag_name><![CDATA[Fail]]></wp:tag_name>
+  <wp:tag_description><![CDATA[Tags posts about fail.]]></wp:tag_description>
+</wp:tag>
+<wp:tag>
+  <wp:term_id>8923091</wp:term_id>
+  <wp:tag_slug>featured-image</wp:tag_slug>
+  <wp:tag_name><![CDATA[featured image]]></wp:tag_name>
+</wp:tag>
+<wp:tag>
+  <wp:term_id>2834916</wp:term_id>
+  <wp:tag_slug>figuriste</wp:tag_slug>
+  <wp:tag_name><![CDATA[figuriste]]></wp:tag_name>
+</wp:tag>
+<wp:tag>
+  <wp:term_id>2962</wp:term_id>
+  <wp:tag_slug>filler</wp:tag_slug>
+  <wp:tag_name><![CDATA[filler]]></wp:tag_name>
+</wp:tag>
+<wp:tag>
+  <wp:term_id>44189092</wp:term_id>
+  <wp:tag_slug>formatting-2</wp:tag_slug>
+  <wp:tag_name><![CDATA[formatting]]></wp:tag_name>
+</wp:tag>
+<wp:tag>
+  <wp:term_id>109004</wp:term_id>
+  <wp:tag_slug>ftw</wp:tag_slug>
+  <wp:tag_name><![CDATA[FTW]]></wp:tag_name>
+</wp:tag>
+<wp:tag>
+  <wp:term_id>272</wp:term_id>
+  <wp:tag_slug>fun</wp:tag_slug>
+  <wp:tag_name><![CDATA[Fun]]></wp:tag_name>
+  <wp:tag_description><![CDATA[Tags posts about fun.]]></wp:tag_description>
+</wp:tag>
+<wp:tag>
+  <wp:term_id>3263</wp:term_id>
+  <wp:tag_slug>gallery</wp:tag_slug>
+  <wp:tag_name><![CDATA[gallery]]></wp:tag_name>
+</wp:tag>
+<wp:tag>
+  <wp:term_id>1549412</wp:term_id>
+  <wp:tag_slug>goes-here</wp:tag_slug>
+  <wp:tag_name><![CDATA[goes here]]></wp:tag_name>
+</wp:tag>
+<wp:tag>
+  <wp:term_id>2834917</wp:term_id>
+  <wp:tag_slug>habergeon</wp:tag_slug>
+  <wp:tag_name><![CDATA[habergeon]]></wp:tag_name>
+</wp:tag>
+<wp:tag>
+  <wp:term_id>137419</wp:term_id>
+  <wp:tag_slug>hapless</wp:tag_slug>
+  <wp:tag_name><![CDATA[hapless]]></wp:tag_name>
+</wp:tag>
+<wp:tag>
+  <wp:term_id>2834918</wp:term_id>
+  <wp:tag_slug>hartshorn</wp:tag_slug>
+  <wp:tag_name><![CDATA[hartshorn]]></wp:tag_name>
+</wp:tag>
+<wp:tag>
+  <wp:term_id>2834919</wp:term_id>
+  <wp:tag_slug>hostility-impregnability</wp:tag_slug>
+  <wp:tag_name><![CDATA[hostility impregnability]]></wp:tag_name>
+</wp:tag>
+<wp:tag>
+  <wp:term_id>647</wp:term_id>
+  <wp:tag_slug>html</wp:tag_slug>
+  <wp:tag_name><![CDATA[html]]></wp:tag_name>
+</wp:tag>
+<wp:tag>
+  <wp:term_id>686</wp:term_id>
+  <wp:tag_slug>image</wp:tag_slug>
+  <wp:tag_name><![CDATA[image]]></wp:tag_name>
+</wp:tag>
+<wp:tag>
+  <wp:term_id>2834920</wp:term_id>
+  <wp:tag_slug>impropriation</wp:tag_slug>
+  <wp:tag_name><![CDATA[impropriation]]></wp:tag_name>
+</wp:tag>
+<wp:tag>
+  <wp:term_id>66451</wp:term_id>
+  <wp:tag_slug>is</wp:tag_slug>
+  <wp:tag_name><![CDATA[is]]></wp:tag_name>
+</wp:tag>
+<wp:tag>
+  <wp:term_id>76655687</wp:term_id>
+  <wp:tag_slug>jetpack-2</wp:tag_slug>
+  <wp:tag_name><![CDATA[jetpack]]></wp:tag_name>
+</wp:tag>
+<wp:tag>
+  <wp:term_id>2834903</wp:term_id>
+  <wp:tag_slug>knave</wp:tag_slug>
+  <wp:tag_name><![CDATA[knave]]></wp:tag_name>
+</wp:tag>
+<wp:tag>
+  <wp:term_id>26060</wp:term_id>
+  <wp:tag_slug>layout</wp:tag_slug>
+  <wp:tag_name><![CDATA[layout]]></wp:tag_name>
+</wp:tag>
+<wp:tag>
+  <wp:term_id>2717</wp:term_id>
+  <wp:tag_slug>link</wp:tag_slug>
+  <wp:tag_name><![CDATA[link]]></wp:tag_name>
+</wp:tag>
+<wp:tag>
+  <wp:term_id>35081376</wp:term_id>
+  <wp:tag_slug>lists-2</wp:tag_slug>
+  <wp:tag_name><![CDATA[lists]]></wp:tag_name>
+</wp:tag>
+<wp:tag>
+  <wp:term_id>118729</wp:term_id>
+  <wp:tag_slug>lorem</wp:tag_slug>
+  <wp:tag_name><![CDATA[lorem]]></wp:tag_name>
+</wp:tag>
+<wp:tag>
+  <wp:term_id>3785</wp:term_id>
+  <wp:tag_slug>love</wp:tag_slug>
+  <wp:tag_name><![CDATA[Love]]></wp:tag_name>
+  <wp:tag_description><![CDATA[Tags posts about love.]]></wp:tag_description>
+</wp:tag>
+<wp:tag>
+  <wp:term_id>38696790</wp:term_id>
+  <wp:tag_slug>markup-2</wp:tag_slug>
+  <wp:tag_name><![CDATA[markup]]></wp:tag_name>
+</wp:tag>
+<wp:tag>
+  <wp:term_id>292</wp:term_id>
+  <wp:tag_slug>media</wp:tag_slug>
+  <wp:tag_name><![CDATA[media]]></wp:tag_name>
+</wp:tag>
+<wp:tag>
+  <wp:term_id>392241</wp:term_id>
+  <wp:tag_slug>misinformed</wp:tag_slug>
+  <wp:tag_name><![CDATA[misinformed]]></wp:tag_name>
+</wp:tag>
+<wp:tag>
+  <wp:term_id>2834904</wp:term_id>
+  <wp:tag_slug>moil</wp:tag_slug>
+  <wp:tag_name><![CDATA[moil]]></wp:tag_name>
+</wp:tag>
+<wp:tag>
+  <wp:term_id>11212</wp:term_id>
+  <wp:tag_slug>more</wp:tag_slug>
+  <wp:tag_name><![CDATA[more]]></wp:tag_name>
+</wp:tag>
+<wp:tag>
+  <wp:term_id>2834921</wp:term_id>
+  <wp:tag_slug>mornful</wp:tag_slug>
+  <wp:tag_name><![CDATA[mornful]]></wp:tag_name>
+</wp:tag>
+<wp:tag>
+  <wp:term_id>57948</wp:term_id>
+  <wp:tag_slug>mothership</wp:tag_slug>
+  <wp:tag_name><![CDATA[Mothership]]></wp:tag_name>
+  <wp:tag_description><![CDATA[Tags posts about motherships.]]></wp:tag_description>
+</wp:tag>
+<wp:tag>
+  <wp:term_id>1560278</wp:term_id>
+  <wp:tag_slug>mustread</wp:tag_slug>
+  <wp:tag_name><![CDATA[Must Read]]></wp:tag_name>
+  <wp:tag_description><![CDATA[Tags posts about articles you must read.]]></wp:tag_description>
+</wp:tag>
+<wp:tag>
+  <wp:term_id>36752930</wp:term_id>
+  <wp:tag_slug>nailedit</wp:tag_slug>
+  <wp:tag_name><![CDATA[Nailed It]]></wp:tag_name>
+  <wp:tag_description><![CDATA[Tags posts about that nailed it.]]></wp:tag_description>
+</wp:tag>
+<wp:tag>
+  <wp:term_id>239264</wp:term_id>
+  <wp:tag_slug>outlaw</wp:tag_slug>
+  <wp:tag_name><![CDATA[outlaw]]></wp:tag_name>
+</wp:tag>
+<wp:tag>
+  <wp:term_id>697683</wp:term_id>
+  <wp:tag_slug>pagination</wp:tag_slug>
+  <wp:tag_name><![CDATA[pagination]]></wp:tag_name>
+</wp:tag>
+<wp:tag>
+  <wp:term_id>2834905</wp:term_id>
+  <wp:tag_slug>pamphjlet</wp:tag_slug>
+  <wp:tag_name><![CDATA[pamphjlet]]></wp:tag_name>
+</wp:tag>
+<wp:tag>
+  <wp:term_id>39214087</wp:term_id>
+  <wp:tag_slug>password-2</wp:tag_slug>
+  <wp:tag_name><![CDATA[password]]></wp:tag_name>
+</wp:tag>
+<wp:tag>
+  <wp:term_id>835</wp:term_id>
+  <wp:tag_slug>pictures</wp:tag_slug>
+  <wp:tag_name><![CDATA[Pictures]]></wp:tag_name>
+</wp:tag>
+<wp:tag>
+  <wp:term_id>161099149</wp:term_id>
+  <wp:tag_slug>pingbacks-2</wp:tag_slug>
+  <wp:tag_name><![CDATA[pingbacks]]></wp:tag_name>
+</wp:tag>
+<wp:tag>
+  <wp:term_id>1042764</wp:term_id>
+  <wp:tag_slug>pneumatics</wp:tag_slug>
+  <wp:tag_name><![CDATA[pneumatics]]></wp:tag_name>
+</wp:tag>
+<wp:tag>
+  <wp:term_id>2834906</wp:term_id>
+  <wp:tag_slug>portly-portreeve</wp:tag_slug>
+  <wp:tag_name><![CDATA[portly portreeve]]></wp:tag_name>
+</wp:tag>
+<wp:tag>
+  <wp:term_id>1187</wp:term_id>
+  <wp:tag_slug>post</wp:tag_slug>
+  <wp:tag_name><![CDATA[post]]></wp:tag_name>
+</wp:tag>
+<wp:tag>
+  <wp:term_id>44090582</wp:term_id>
+  <wp:tag_slug>post-formats</wp:tag_slug>
+  <wp:tag_name><![CDATA[Post Formats]]></wp:tag_name>
+</wp:tag>
+<wp:tag>
+  <wp:term_id>2834922</wp:term_id>
+  <wp:tag_slug>precipitancy</wp:tag_slug>
+  <wp:tag_name><![CDATA[precipitancy]]></wp:tag_name>
+</wp:tag>
+<wp:tag>
+  <wp:term_id>300925</wp:term_id>
+  <wp:tag_slug>privation</wp:tag_slug>
+  <wp:tag_name><![CDATA[privation]]></wp:tag_name>
+</wp:tag>
+<wp:tag>
+  <wp:term_id>16889</wp:term_id>
+  <wp:tag_slug>programme</wp:tag_slug>
+  <wp:tag_name><![CDATA[programme]]></wp:tag_name>
+</wp:tag>
+<wp:tag>
+  <wp:term_id>56714</wp:term_id>
+  <wp:tag_slug>psychological</wp:tag_slug>
+  <wp:tag_name><![CDATA[psychological]]></wp:tag_name>
+</wp:tag>
+<wp:tag>
+  <wp:term_id>2834907</wp:term_id>
+  <wp:tag_slug>puncher</wp:tag_slug>
+  <wp:tag_name><![CDATA[puncher]]></wp:tag_name>
+</wp:tag>
+<wp:tag>
+  <wp:term_id>3099</wp:term_id>
+  <wp:tag_slug>quote</wp:tag_slug>
+  <wp:tag_name><![CDATA[quote]]></wp:tag_name>
+</wp:tag>
+<wp:tag>
+  <wp:term_id>2834908</wp:term_id>
+  <wp:tag_slug>ramose</wp:tag_slug>
+  <wp:tag_name><![CDATA[ramose]]></wp:tag_name>
+</wp:tag>
+<wp:tag>
+  <wp:term_id>40586</wp:term_id>
+  <wp:tag_slug>read-more</wp:tag_slug>
+  <wp:tag_name><![CDATA[read more]]></wp:tag_name>
+</wp:tag>
+<wp:tag>
+  <wp:term_id>71229</wp:term_id>
+  <wp:tag_slug>readability</wp:tag_slug>
+  <wp:tag_name><![CDATA[readability]]></wp:tag_name>
+</wp:tag>
+<wp:tag>
+  <wp:term_id>531008</wp:term_id>
+  <wp:tag_slug>renegade</wp:tag_slug>
+  <wp:tag_name><![CDATA[renegade]]></wp:tag_name>
+</wp:tag>
+<wp:tag>
+  <wp:term_id>2834909</wp:term_id>
+  <wp:tag_slug>retrocede</wp:tag_slug>
+  <wp:tag_name><![CDATA[retrocede]]></wp:tag_name>
+</wp:tag>
+<wp:tag>
+  <wp:term_id>412776</wp:term_id>
+  <wp:tag_slug>shortcode</wp:tag_slug>
+  <wp:tag_name><![CDATA[shortcode]]></wp:tag_name>
+</wp:tag>
+<wp:tag>
+  <wp:term_id>2834923</wp:term_id>
+  <wp:tag_slug>stagnation-unhorsed</wp:tag_slug>
+  <wp:tag_name><![CDATA[stagnation unhorsed]]></wp:tag_name>
+</wp:tag>
+<wp:tag>
+  <wp:term_id>472597</wp:term_id>
+  <wp:tag_slug>standard-2</wp:tag_slug>
+  <wp:tag_name><![CDATA[standard]]></wp:tag_name>
+</wp:tag>
+<wp:tag>
+  <wp:term_id>577</wp:term_id>
+  <wp:tag_slug>status</wp:tag_slug>
+  <wp:tag_name><![CDATA[status]]></wp:tag_name>
+</wp:tag>
+<wp:tag>
+  <wp:term_id>45997922</wp:term_id>
+  <wp:tag_slug>sticky-2</wp:tag_slug>
+  <wp:tag_name><![CDATA[sticky]]></wp:tag_name>
+</wp:tag>
+<wp:tag>
+  <wp:term_id>4668</wp:term_id>
+  <wp:tag_slug>success</wp:tag_slug>
+  <wp:tag_name><![CDATA[Success]]></wp:tag_name>
+  <wp:tag_description><![CDATA[Tags posts about success.]]></wp:tag_description>
+</wp:tag>
+<wp:tag>
+  <wp:term_id>655802</wp:term_id>
+  <wp:tag_slug>swagger</wp:tag_slug>
+  <wp:tag_name><![CDATA[Swagger]]></wp:tag_name>
+  <wp:tag_description><![CDATA[Tags posts about swagger.]]></wp:tag_description>
+</wp:tag>
+<wp:tag>
+  <wp:term_id>1790856</wp:term_id>
+  <wp:tag_slug>tag-a</wp:tag_slug>
+  <wp:tag_name><![CDATA[Tag A]]></wp:tag_name>
+</wp:tag>
+<wp:tag>
+  <wp:term_id>1790857</wp:term_id>
+  <wp:tag_slug>tag-b</wp:tag_slug>
+  <wp:tag_name><![CDATA[Tag B]]></wp:tag_name>
+</wp:tag>
+<wp:tag>
+  <wp:term_id>1790858</wp:term_id>
+  <wp:tag_slug>tag-c</wp:tag_slug>
+  <wp:tag_name><![CDATA[Tag C]]></wp:tag_name>
+</wp:tag>
+<wp:tag>
+  <wp:term_id>22652</wp:term_id>
+  <wp:tag_slug>tag1</wp:tag_slug>
+  <wp:tag_name><![CDATA[tag1]]></wp:tag_name>
+</wp:tag>
+<wp:tag>
+  <wp:term_id>22653</wp:term_id>
+  <wp:tag_slug>tag2</wp:tag_slug>
+  <wp:tag_name><![CDATA[tag2]]></wp:tag_name>
+</wp:tag>
+<wp:tag>
+  <wp:term_id>359495</wp:term_id>
+  <wp:tag_slug>tag3</wp:tag_slug>
+  <wp:tag_name><![CDATA[tag3]]></wp:tag_name>
+</wp:tag>
+<wp:tag>
+  <wp:term_id>1502</wp:term_id>
+  <wp:tag_slug>tags</wp:tag_slug>
+  <wp:tag_name><![CDATA[Tags]]></wp:tag_name>
+  <wp:tag_description><![CDATA[Tags posts about tags. #inception]]></wp:tag_description>
+</wp:tag>
+<wp:tag>
+  <wp:term_id>11867</wp:term_id>
+  <wp:tag_slug>template</wp:tag_slug>
+  <wp:tag_name><![CDATA[template]]></wp:tag_name>
+</wp:tag>
+<wp:tag>
+  <wp:term_id>5117</wp:term_id>
+  <wp:tag_slug>text</wp:tag_slug>
+  <wp:tag_name><![CDATA[text]]></wp:tag_name>
+</wp:tag>
+<wp:tag>
+  <wp:term_id>14347</wp:term_id>
+  <wp:tag_slug>the-man</wp:tag_slug>
+  <wp:tag_name><![CDATA[the man]]></wp:tag_name>
+</wp:tag>
+<wp:tag>
+  <wp:term_id>2834910</wp:term_id>
+  <wp:tag_slug>thunderheaded</wp:tag_slug>
+  <wp:tag_name><![CDATA[thunderheaded]]></wp:tag_name>
+</wp:tag>
+<wp:tag>
+  <wp:term_id>1235460</wp:term_id>
+  <wp:tag_slug>tiled</wp:tag_slug>
+  <wp:tag_name><![CDATA[tiled]]></wp:tag_name>
+</wp:tag>
+<wp:tag>
+  <wp:term_id>1653</wp:term_id>
+  <wp:tag_slug>title</wp:tag_slug>
+  <wp:tag_name><![CDATA[title]]></wp:tag_name>
+</wp:tag>
+<wp:tag>
+  <wp:term_id>64903049</wp:term_id>
+  <wp:tag_slug>trackbacks-2</wp:tag_slug>
+  <wp:tag_name><![CDATA[trackbacks]]></wp:tag_name>
+</wp:tag>
+<wp:tag>
+  <wp:term_id>11320090</wp:term_id>
+  <wp:tag_slug>twitter-2</wp:tag_slug>
+  <wp:tag_name><![CDATA[twitter]]></wp:tag_name>
+</wp:tag>
+<wp:tag>
+  <wp:term_id>2834911</wp:term_id>
+  <wp:tag_slug>unculpable</wp:tag_slug>
+  <wp:tag_name><![CDATA[unculpable]]></wp:tag_name>
+</wp:tag>
+<wp:tag>
+  <wp:term_id>207758</wp:term_id>
+  <wp:tag_slug>unseen</wp:tag_slug>
+  <wp:tag_name><![CDATA[Unseen]]></wp:tag_name>
+  <wp:tag_description><![CDATA[Tags posts about things that cannot be unseen.]]></wp:tag_description>
+</wp:tag>
+<wp:tag>
+  <wp:term_id>412</wp:term_id>
+  <wp:tag_slug>video</wp:tag_slug>
+  <wp:tag_name><![CDATA[video]]></wp:tag_name>
+</wp:tag>
+<wp:tag>
+  <wp:term_id>20117770</wp:term_id>
+  <wp:tag_slug>videopress</wp:tag_slug>
+  <wp:tag_name><![CDATA[videopress]]></wp:tag_name>
+</wp:tag>
+<wp:tag>
+  <wp:term_id>2834912</wp:term_id>
+  <wp:tag_slug>withered-brandnew</wp:tag_slug>
+  <wp:tag_name><![CDATA[withered brandnew]]></wp:tag_name>
+</wp:tag>
+<wp:tag>
+  <wp:term_id>33</wp:term_id>
+  <wp:tag_slug>wordpress</wp:tag_slug>
+  <wp:tag_name><![CDATA[WordPress]]></wp:tag_name>
+  <wp:tag_description><![CDATA[Tags posts about WordPress.]]></wp:tag_description>
+</wp:tag>
+<wp:tag>
+  <wp:term_id>15787590</wp:term_id>
+  <wp:tag_slug>wordpress-tv</wp:tag_slug>
+  <wp:tag_name><![CDATA[wordpress.tv]]></wp:tag_name>
+</wp:tag>
+<wp:tag>
+  <wp:term_id>2834924</wp:term_id>
+  <wp:tag_slug>xanthopsia</wp:tag_slug>
+  <wp:tag_name><![CDATA[xanthopsia]]></wp:tag_name>
+</wp:tag>
+<wp:term>
+  <wp:term_id>161107798</wp:term_id>
+  <wp:term_taxonomy>nav_menu</wp:term_taxonomy>
+  <wp:term_slug>all-pages</wp:term_slug>
+  <wp:term_name><![CDATA[All Pages]]></wp:term_name>
+</wp:term>
+<wp:term>
+  <wp:term_id>161104374</wp:term_id>
+  <wp:term_taxonomy>nav_menu</wp:term_taxonomy>
+  <wp:term_slug>short</wp:term_slug>
+  <wp:term_name><![CDATA[Short]]></wp:term_name>
+</wp:term>
+<wp:term>
+  <wp:term_id>161101812</wp:term_id>
+  <wp:term_taxonomy>nav_menu</wp:term_taxonomy>
+  <wp:term_slug>all-pages-flat</wp:term_slug>
+  <wp:term_name><![CDATA[All Pages Flat]]></wp:term_name>
+</wp:term>
+<wp:term>
+  <wp:term_id>158084196</wp:term_id>
+  <wp:term_taxonomy>nav_menu</wp:term_taxonomy>
+  <wp:term_slug>testing-menu</wp:term_slug>
+  <wp:term_name><![CDATA[Testing Menu]]></wp:term_name>
+</wp:term>
+<wp:term>
+  <wp:term_id>158085404</wp:term_id>
+  <wp:term_taxonomy>nav_menu</wp:term_taxonomy>
+  <wp:term_slug>empty-menu</wp:term_slug>
+  <wp:term_name><![CDATA[Empty Menu]]></wp:term_name>
+</wp:term>
+<generator>http://wordpress.com/</generator>
+<image>
+		<url>https://s2.wp.com/i/buttonw-com.png</url>
+		<title>Theme Unit Test DataTheme Unit Test Data</title>
+		<link>http://wpthemetestdata.wordpress.com</link>
+	</image>
+	<item>
+  <title>About The Tests</title>
+  <link>http://wpthemetestdata.wordpress.com/about/</link>
+  <pubDate>Mon, 26 Jul 2010 02:40:01 +0000</pubDate>
+  <dc:creator>themedemos</dc:creator>
+  <guid isPermaLink="false">http://wpthemetestdata.wordpress.com/about/</guid>
+  <description/>
+  <content:encoded><![CDATA[This site is using the standard WordPress Theme Unit Test Data for content. The Theme Unit Test is a series of posts and pages that match up with a checklist on the WordPress codex. You can use the data and checklist together to test your theme.
+
+<h2>WordPress Theme Development Resources</h2>
+
+<ol>
+	<li>See <a href="http://codex.wordpress.org/Theme_Development">Theme Development</a> for <a href="http://codex.wordpress.org/Theme_Development#Code_Standards">code standards</a>, examples of best practices, and <a href="http://codex.wordpress.org/Theme_Development#Resources_and_References">resources for Theme development</a>.</li>
+	<li>See <a href="http://codex.wordpress.org/Theme_Unit_Test">Theme Unit Test</a> for a robust test suite for your Theme and get the latest version of the test data you see here.</li>
+	<li>See <a href="http://codex.wordpress.org/Theme_Review">Theme Review</a> for a guide to submitting your Theme to the <a href="http://wordpress.org/extend/themes/">Themes Directory</a>.</li>
+</ol>]]></content:encoded>
+  <excerpt:encoded><![CDATA[]]></excerpt:encoded>
+  <wp:post_id>2</wp:post_id>
+  <wp:post_date>2010-07-25 19:40:01</wp:post_date>
+  <wp:post_date_gmt>2010-07-26 02:40:01</wp:post_date_gmt>
+  <wp:comment_status>closed</wp:comment_status>
+  <wp:ping_status>closed</wp:ping_status>
+  <wp:post_name>about</wp:post_name>
+  <wp:status>publish</wp:status>
+  <wp:post_parent>0</wp:post_parent>
+  <wp:menu_order>1</wp:menu_order>
+  <wp:post_type>page</wp:post_type>
+  <wp:post_password/>
+  <wp:is_sticky>0</wp:is_sticky>
+  <wp:postmeta>
+    <wp:meta_key>_wp_page_template</wp:meta_key>
+    <wp:meta_value><![CDATA[default]]></wp:meta_value>
+  </wp:postmeta>
+</item>
+<item>
+  <title>Lorem Ipsum</title>
+  <link>http://wpthemetestdata.wordpress.com/lorem-ipsum/</link>
+  <pubDate>Tue, 04 Sep 2007 16:52:50 +0000</pubDate>
+  <dc:creator>themedemos</dc:creator>
+  <guid isPermaLink="false">http://wpthemetestdata.wordpress.com/lorem-ipsum/</guid>
+  <description/>
+  <content:encoded><![CDATA[Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec mollis. Quisque convallis libero in sapien pharetra tincidunt. Aliquam elit ante, malesuada id, tempor eu, gravida id, odio. Maecenas suscipit, risus et eleifend imperdiet, nisi orci ullamcorper massa, et adipiscing orci velit quis magna. Praesent sit amet ligula id orci venenatis auctor. Phasellus porttitor, metus non tincidunt dapibus, orci pede pretium neque, sit amet adipiscing ipsum lectus et libero. Aenean bibendum. Curabitur mattis quam id urna. Vivamus dui. Donec nonummy lacinia lorem. Cras risus arcu, sodales ac, ultrices ac, mollis quis, justo. Sed a libero. Quisque risus erat, posuere at, tristique non, lacinia quis, eros.
+
+Cras volutpat, lacus quis semper pharetra, nisi enim dignissim est, et sollicitudin quam ipsum vel mi. Sed commodo urna ac urna. Nullam eu tortor. Curabitur sodales scelerisque magna. Donec ultricies tristique pede. Nullam libero. Nam sollicitudin felis vel metus. Nullam posuere molestie metus. Nullam molestie, nunc id suscipit rhoncus, felis mi vulputate lacus, a ultrices tortor dolor eget augue. Aenean ultricies felis ut turpis. Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Suspendisse placerat tellus ac nulla. Proin adipiscing sem ac risus. Maecenas nisi. Cras semper.
+
+Praesent interdum mollis neque. In egestas nulla eget pede. Integer eu purus sed diam dictum scelerisque. Morbi cursus velit et felis. Maecenas faucibus aliquet erat. In aliquet rhoncus tellus. Integer auctor nibh a nunc fringilla tempus. Cras turpis urna, dignissim vel, suscipit pulvinar, rutrum quis, sem. Ut lobortis convallis dui. Sed nonummy orci a justo. Morbi nec diam eget eros eleifend tincidunt.
+
+Curabitur non elit. Pellentesque iaculis, nisl non aliquet adipiscing, purus urna aliquet orci, sed sodales pede neque at massa. Pellentesque laoreet, enim eget varius mollis, sapien erat suscipit metus, sit amet iaculis nulla sapien id felis. Aliquam erat volutpat. Nam congue nulla a ligula. Morbi tempor hendrerit erat. Curabitur augue. Vestibulum nulla est, commodo et, fringilla quis, bibendum eget, ipsum. Suspendisse pulvinar iaculis ante. Mauris dignissim ante quis nisi. Aliquam ante mi, aliquam et, pellentesque ac, dapibus et, enim. In vulputate justo vel magna. Phasellus imperdiet justo. Proin odio orci, dapibus id, porta a, pellentesque id, erat. Aliquam erat volutpat. Mauris nonummy varius libero. Sed dolor ipsum, tempor non, aliquet et, pulvinar quis, dui. Pellentesque mauris diam, lobortis id, varius varius, facilisis at, nulla.
+
+Cras pede. Nullam id velit sit amet turpis tincidunt sagittis. Nunc malesuada. Nunc consequat scelerisque odio. Donec eu leo. Nunc pellentesque felis sed odio. Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Vivamus lobortis metus in lectus. Cras mollis quam eget sapien. Pellentesque non lorem sit amet sem lacinia euismod.
+
+Nulla eget diam eget leo imperdiet consequat. Morbi nunc magna, pellentesque eu, porta at, ultricies ut, neque. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; In tincidunt. Praesent ut orci id eros congue ultrices. Mauris non neque. Donec nulla ante, molestie sit amet, fermentum nec, blandit sit amet, purus. Fusce eget diam eu odio iaculis mollis. Phasellus consectetuer pede quis nisi. Proin non sem ut elit pulvinar faucibus. In a turpis nec augue fringilla elementum.
+
+Nullam felis. Donec in nulla. Suspendisse sodales, turpis in suscipit ullamcorper, enim nunc sagittis risus, eu auctor velit tortor ut turpis. Mauris id augue at neque aliquam eleifend. Sed eget augue. Nunc faucibus ligula sed massa. Etiam non nulla. Etiam accumsan ullamcorper nisl. In pharetra massa at nunc. Nunc elementum. Duis sodales enim nec libero. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos hymenaeos. Praesent dapibus eros sodales urna. Duis magna nisi, lobortis quis, tincidunt rutrum, posuere non, ipsum.
+
+Aliquam convallis neque vitae diam. In diam. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Duis fermentum arcu in tortor. Sed nibh leo, rhoncus eu, fermentum et, scelerisque ac, massa. Cras id turpis. Etiam commodo sem luctus lorem. Morbi at mi. In rutrum. Aenean luctus pede euismod tortor. Phasellus dictum. Cras neque justo, venenatis sit amet, tristique et, vulputate in, dui. Etiam sed mi gravida sapien imperdiet dictum. Aliquam gravida orci a tortor. Donec tempor. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Vivamus risus ante, pellentesque vitae, luctus eget, scelerisque sed, libero. Donec massa.
+
+Donec libero mauris, volutpat at, convallis vel, laoreet euismod, augue. In accumsan malesuada risus. Mauris metus magna, condimentum in, nonummy non, ornare eu, velit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Proin posuere. Proin rhoncus rutrum lorem. Phasellus dignissim massa non libero volutpat tincidunt. In hac habitasse platea dictumst. Phasellus eget eros. Nulla in nulla. Vivamus quis mauris. Maecenas pharetra rhoncus tellus. Sed sit amet lacus.
+
+Quisque interdum felis a tellus. Aliquam sed diam ac velit aliquam rutrum. Morbi commodo, risus a pulvinar adipiscing, tortor pede posuere risus, ac ornare tellus massa nec lectus. Vivamus mollis metus ac sapien. Nam sed est a libero ullamcorper dapibus. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Aenean a erat ac nibh accumsan volutpat. Phasellus pulvinar consequat turpis. Curabitur ante metus, tempus ut, consequat eu, sollicitudin sit amet, justo. Duis ut libero.
+
+ี€ีกีตีฅึ€ีฅีถ
+
+Lorem Ipsum-ีจ ีฟีบีกีฃึ€ีธึ‚ีฉีตีกีถ ึ‡ ีฟีบีกีฃึ€ีกีฏีกีถ ีกึ€ีคีตีธึ‚ีถีกีขีฅึ€ีธึ‚ีฉีตีกีถ ีฐีกีดีกึ€ ีถีกีญีกีฟีฅีฝีพีกีฎ ีดีธีคีฅีฌีกีตีซีถ ีฟีฅึ„ีฝีฟ ีง: ีีฏีฝีกีฎ 1500-ีกีฏีกีถีถีฅึ€ีซึ` Lorem Ipsum-ีจ ีฐีกีถีคีซีฝีกึีฅีฌ ีง ีฟีบีกีฃึ€ีกีฏีกีถ ีกึ€ีคีตีธึ‚ีถีกีขีฅึ€ีธึ‚ีฉีตีกีถ ีฝีฟีกีถีคีกึ€ีฟ ีดีธีคีฅีฌีกีตีซีถ ีฟีฅึ„ีฝีฟ, ีซีถีนีจ ีดีซ ีกีถีฐีกีตีฟ ีฟีบีกีฃึ€ีซีนีซ ีฏีธีฒีดีซึ ีฟีกึ€ีขีฅึ€ ีฟีกีผีกีฟีฅีฝีกีฏีถีฅึ€ีซ ึ…ึ€ีซีถีกีฏีถีฅึ€ีซ ีฃีซึ€ึ„ ีฝีฟีฅีฒีฎีฅีฌีธึ‚ ีปีกีถึ„ีฅึ€ีซ ีกึ€ีคีตีธึ‚ีถึ„ ีง: ิฑีตีฝ ีฟีฅึ„ีฝีฟีจ ีธีน ีดีซีกีตีถ ีฏีกึ€ีธีฒีกึีฅีฌ ีง ีฃีธีตีกีฟึ‡ีฅีฌ ีฐีซีถีฃ ีคีกึ€ีกีทึ€ีปีกีถ, ีกีตีฌึ‡ ีถีฅึ€ีกีผีพีฅีฌ ีง ีงีฌีฅีฏีฟึ€ีธีถีกีตีซีถ ีฟีบีกีฃึ€ีธึ‚ีฉีตีกีถ ีดีฅีป` ีดีถีกีฌีธีพ ีงีกีบีฅีฝ ีกีถึƒีธึƒีธีญ: ิฑีตีถ ีฐีกีตีฟีถีซ ีง ีคีกึ€ีฑีฅีฌ 1960-ีกีฏีกีถีถีฅึ€ีซีถ Lorem Ipsum ีขีธีพีกีถีคีกีฏีธีฒ Letraset ีงีปีฅึ€ีซ ีฉีธีฒีกึ€ีฏีดีกีถ ีกึ€ีคีตีธึ‚ีถึ„ีธึ‚ีด, ีซีฝีฏ ีกีพีฅีฌีซ ีธึ‚ีท ีฐีกีดีกีฏีกึ€ีฃีนีกีตีซีถ ีฟีบีกีฃึ€ีธึ‚ีฉีตีกีถ ีกีตีถีบีซีฝีซ ีฎึ€ีกีฃึ€ีฅึ€ีซ ีฉีธีฒีกึ€ีฏีดีกีถ ีฐีฅีฟึ‡ีกีถึ„ีธีพ, ีซีถีนีบีซีฝีซีถ ีง Aldus PageMaker-ีจ, ีธึ€ีจ ีถีฅึ€ีกีผีธึ‚ีด ีง Lorem Ipsum-ีซ ีฟีกึ€ีกีฟีฅีฝีกีฏีถีฅึ€:
+
+ะ‘ัŠะปะณะฐั€ัะบะธ
+
+Lorem Ipsum ะต ะตะปะตะผะตะฝั‚ะฐั€ะตะฝ ะฟั€ะธะผะตั€ะตะฝ ั‚ะตะบัั‚, ะธะทะฟะพะปะทะฒะฐะฝ ะฒ ะฟะตั‡ะฐั‚ะฐั€ัะบะฐั‚ะฐ ะธ ั‚ะธะฟะพะณั€ะฐั„ัะบะฐั‚ะฐ ะธะฝะดัƒัั‚ั€ะธั. Lorem Ipsum ะต ะธะฝะดัƒัั‚ั€ะธะฐะปะตะฝ ัั‚ะฐะฝะดะฐั€ั‚ ะพั‚ ะพะบะพะปะพ 1500 ะณะพะดะธะฝะฐ, ะบะพะณะฐั‚ะพ ะฝะตะธะทะฒะตัั‚ะตะฝ ะฟะตั‡ะฐั‚ะฐั€ ะฒะทะตะผะฐ ะฝัะบะพะปะบะพ ะฟะตั‡ะฐั‚ะฐั€ัะบะธ ะฑัƒะบะฒะธ ะธ ะณะธ ั€ะฐะทะฑัŠั€ะบะฒะฐ, ะทะฐ ะดะฐ ะฝะฐะฟะตั‡ะฐั‚ะฐ ั ั‚ัั… ะบะฝะธะณะฐ ั ะฟั€ะธะผะตั€ะฝะธ ัˆั€ะธั„ั‚ะพะฒะต. ะขะพะทะธ ะฝะฐั‡ะธะฝ ะฝะต ัะฐะผะพ ะต ะพั†ะตะปัะป ะฟะพะฒะตั‡ะต ะพั‚ 5 ะฒะตะบะฐ, ะฝะพ ะต ะฝะฐะฒะปัะทัŠะป ะธ ะฒ ะฟัƒะฑะปะธะบัƒะฒะฐะฝะตั‚ะพ ะฝะฐ ะตะปะตะบั‚ั€ะพะฝะฝะธ ะธะทะดะฐะฝะธั ะบะฐั‚ะพ ะต ะทะฐะฟะฐะทะตะฝ ะฟะพั‡ั‚ะธ ะฑะตะท ะฟั€ะพะผัะฝะฐ. ะŸะพะฟัƒะปัั€ะธะทะธั€ะฐะฝ ะต ะฟั€ะตะท 60ั‚ะต ะณะพะดะธะฝะธ ะฝะฐ 20ั‚ะธ ะฒะตะบ ััŠั ะธะทะดะฐะฒะฐะฝะตั‚ะพ ะฝะฐ Letraset ะปะธัั‚ะธ, ััŠะดัŠั€ะถะฐั‰ะธ Lorem Ipsum ะฟะฐัะฐะถะธ, ะฟะพะฟัƒะปัั€ะตะฝ ะต ะธ ะฒ ะฝะฐัˆะธ ะดะฝะธ ะฒัŠะฒ ัะพั„ั‚ัƒะตั€ ะทะฐ ะฟะตั‡ะฐั‚ะฝะธ ะธะทะดะฐะฝะธั ะบะฐั‚ะพ Aldus PageMaker, ะบะพะนั‚ะพ ะฒะบะปัŽั‡ะฒะฐ ั€ะฐะทะปะธั‡ะฝะธ ะฒะตั€ัะธะธ ะฝะฐ Lorem Ipsum.
+
+Catalร 
+
+Lorem Ipsum รฉs un text de farciment usat per la indรบstria de la tipografia i la impremta. Lorem Ipsum ha estat el text estร ndard de la indรบstria des de l'any 1500, quan un impressor desconegut va fer servir una galerada de text i la va mesclar per crear un llibre de mostres tipogrร fiques. No nomรฉs ha sobreviscut cinc segles, sinรณ que ha fet el salt cap a la creaciรณ de tipus de lletra electrรฒnics, romanent essencialment sense canvis. Es va popularitzar l'any 1960 amb el llanรงament de fulls Letraset que contenien passatges de Lorem Ipsum, i mรฉs recentment amb programari d'autoediciรณ com Aldus Pagemaker que inclou versions de Lorem Ipsum.
+
+Hrvatski
+
+Lorem Ipsum je jednostavno probni tekst koji se koristi u tiskarskoj i slovoslagarskoj industriji. Lorem Ipsum postoji kao industrijski standard joลก od 16-og stoljeฤ‡a, kada je nepoznati tiskar uzeo tiskarsku galiju slova i posloลพio ih da bi napravio knjigu s uzorkom tiska. Taj je tekst ne samo preลพivio pet stoljeฤ‡a, veฤ‡ se i vinuo u svijet elektronskog slovoslagarstva, ostajuฤ‡i u suลกtini nepromijenjen. Postao je popularan tijekom 1960-ih s pojavom Letraset listova s odlomcima Lorem Ipsum-a, a u skorije vrijeme sa software-om za stolno izdavaลกtvo kao ลกto je Aldus PageMaker koji takoฤ‘er sadrลพi varijante Lorem Ipsum-a.
+
+ฤŒesky
+
+Lorem Ipsum je demonstrativnรญ vรฝplลˆovรฝ text pouลพรญvanรฝ v tiskaล™skรฉm a knihaล™skรฉm prลฏmyslu. Lorem Ipsum je povaลพovรกno za standard v tรฉto oblasti uลพ od zaฤรกtku 16. stoletรญ, kdy dnes neznรกmรฝ tiskaล™ vzal kusy textu a na jejich zรกkladฤ› vytvoล™il speciรกlnรญ vzorovou knihu. Jeho odkaz nevydrลพel pouze pฤ›t stoletรญ, on pล™eลพil i nรกstup elektronickรฉ sazby v podstatฤ› beze zmฤ›ny. Nejvรญce popularizovรกno bylo Lorem Ipsum v ลกedesรกtรฝch letech 20. stoletรญ, kdy byly vydรกvรกny speciรกlnรญ vzornรญky s jeho pasรกลพemi a pozdฤ›ji pak dรญky poฤรญtaฤovรฝm DTP programลฏm jako Aldus PageMaker.
+
+Romรขna
+
+Lorem Ipsum este pur ลŸi simplu o machetฤƒ pentru text a industriei tipografice. Lorem Ipsum a fost macheta standard a industriei รฎncฤƒ din secolul al XVI-lea, cรขnd un tipograf anonim a luat o planลŸetฤƒ de litere ลŸi le-a amestecat pentru a crea o carte demonstrativฤƒ pentru literele respective. Nu doar cฤƒ a supravieลฃuit timp de cinci secole, dar ลŸi a facut saltul รฎn tipografia electronicฤƒ practic neschimbatฤƒ. A fost popularizatฤƒ รฎn anii '60 odatฤƒ cu ieลŸirea colilor Letraset care conลฃineau pasaje Lorem Ipsum, iar mai recent, prin programele de publicare pentru calculator, ca Aldus PageMaker care includeau versiuni de Lorem Ipsum.
+
+ะกั€ะฟัะบะธ
+
+Lorem Ipsum ั˜ะต ั˜ะตะดะฝะพัั‚ะฐะฒะฝะพ ะผะพะดะตะป ั‚ะตะบัั‚ะฐ ะบะพั˜ะธ ัะต ะบะพั€ะธัั‚ะธ ัƒ ัˆั‚ะฐะผะฟะฐั€ัะบะพั˜ ะธ ัะปะพะฒะพัะปะฐะณะฐั‡ะบะพั˜ ะธะฝะดัƒัั‚ั€ะธั˜ะธ. Lorem ipsum ั˜ะต ะฑะธะพ ัั‚ะฐะฝะดะฐั€ะด ะทะฐ ะผะพะดะตะป ั‚ะตะบัั‚ะฐ ั˜ะพัˆ ะพะด 1500. ะณะพะดะธะฝะต, ะบะฐะดะฐ ั˜ะต ะฝะตะฟะพะทะฝะฐั‚ะธ ัˆั‚ะฐะผะฟะฐั€ ัƒะทะตะพ ะบัƒั‚ะธั˜ัƒ ัะฐ ัะปะพะฒะธะผะฐ ะธ ัะปะพะถะธะพ ะธั… ะบะฐะบะพ ะฑะธ ะฝะฐะฟั€ะฐะฒะธะพ ัƒะทะพั€ะฐะบ ะบัšะธะณะต. ะะต ัะฐะผะพ ัˆั‚ะพ ั˜ะต ะพะฒะฐั˜ ะผะพะดะตะป ะพะฟัั‚ะฐะพ ะฟะตั‚ ะฒะตะบะพะฒะฐ, ะฝะตะณะพ ั˜ะต ั‡ะฐะบ ะฟะพั‡ะตะพ ะดะฐ ัะต ะบะพั€ะธัั‚ะธ ะธ ัƒ ะตะปะตะบั‚ั€ะพะฝัะบะธะผ ะผะตะดะธั˜ะธะผะฐ, ะฝะตะฟั€ะพะผะตะฝะธะฒัˆะธ ัะต. ะŸะพะฟัƒะปะฐั€ะธะทะพะฒะฐะฝ ั˜ะต ัˆะตะทะดะตัะตั‚ะธั… ะณะพะดะธะฝะฐ ะดะฒะฐะดะตัะตั‚ะพะณ ะฒะตะบะฐ ะทะฐั˜ะตะดะฝะพ ัะฐ ะปะธัั‚ะพะฒะธะผะฐ ะปะตั‚ะตั€ัะตั‚ะฐ ะบะพั˜ะธ ััƒ ัะฐะดั€ะถะฐะปะธ Lorem Ipsum ะฟะฐััƒัะต, ะฐ ะดะฐะฝะฐั ัะฐ ัะพั„ั‚ะฒะตั€ัะบะธะผ ะฟะฐะบะตั‚ะพะผ ะทะฐ ะฟั€ะตะปะพะผ ะบะฐะพ ัˆั‚ะพ ั˜ะต Aldus PageMaker ะบะพั˜ะธ ั˜ะต ัะฐะดั€ะถะฐะพ Lorem Ipsum ะฒะตั€ะทะธั˜ะต.]]></content:encoded>
+  <excerpt:encoded><![CDATA[]]></excerpt:encoded>
+  <wp:post_id>146</wp:post_id>
+  <wp:post_date>2007-09-04 09:52:50</wp:post_date>
+  <wp:post_date_gmt>2007-09-04 16:52:50</wp:post_date_gmt>
+  <wp:comment_status>closed</wp:comment_status>
+  <wp:ping_status>closed</wp:ping_status>
+  <wp:post_name>lorem-ipsum</wp:post_name>
+  <wp:status>publish</wp:status>
+  <wp:post_parent>0</wp:post_parent>
+  <wp:menu_order>7</wp:menu_order>
+  <wp:post_type>page</wp:post_type>
+  <wp:post_password/>
+  <wp:is_sticky>0</wp:is_sticky>
+  <wp:postmeta>
+    <wp:meta_key>_wp_page_template</wp:meta_key>
+    <wp:meta_value><![CDATA[default]]></wp:meta_value>
+  </wp:postmeta>
+</item>
+<item>
+  <title>Page with comments</title>
+  <link>http://wpthemetestdata.wordpress.com/about/page-with-comments/</link>
+  <pubDate>Tue, 04 Sep 2007 17:47:47 +0000</pubDate>
+  <dc:creator>themedemos</dc:creator>
+  <guid isPermaLink="false">http://wpthemetestdata.wordpress.com/page-with-comments/</guid>
+  <description/>
+  <content:encoded><![CDATA[Repository-hosted Themes are required to support display of comments on static Pages as well as on single blog Posts.  This static Page has comments, and these comments should be displayed.
+If the Theme includes a custom option to prevent static Pages from displaying comments, such option must be disabled (i.e. so that static Pages display comments) by default.
+Also, verify that this Page does not display taxonomy information (e.g. categories or tags) or time-stamp information (Page publish date/time).]]></content:encoded>
+  <excerpt:encoded><![CDATA[]]></excerpt:encoded>
+  <wp:post_id>155</wp:post_id>
+  <wp:post_date>2007-09-04 10:47:47</wp:post_date>
+  <wp:post_date_gmt>2007-09-04 17:47:47</wp:post_date_gmt>
+  <wp:comment_status>open</wp:comment_status>
+  <wp:ping_status>closed</wp:ping_status>
+  <wp:post_name>page-with-comments</wp:post_name>
+  <wp:status>publish</wp:status>
+  <wp:post_parent>2</wp:post_parent>
+  <wp:menu_order>3</wp:menu_order>
+  <wp:post_type>page</wp:post_type>
+  <wp:post_password/>
+  <wp:is_sticky>0</wp:is_sticky>
+  <wp:postmeta>
+    <wp:meta_key>_wp_page_template</wp:meta_key>
+    <wp:meta_value><![CDATA[default]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:comment>
+    <wp:comment_id>167</wp:comment_id>
+    <wp:comment_author><![CDATA[Anon]]></wp:comment_author>
+    <wp:comment_author_email>anon@example.com</wp:comment_author_email>
+    <wp:comment_author_url/>
+    <wp:comment_author_IP>59.167.157.3</wp:comment_author_IP>
+    <wp:comment_date>2007-09-04 10:49:28</wp:comment_date>
+    <wp:comment_date_gmt>2007-09-04 00:49:28</wp:comment_date_gmt>
+    <wp:comment_content><![CDATA[Anonymous comment.]]></wp:comment_content>
+    <wp:comment_approved>1</wp:comment_approved>
+    <wp:comment_type/>
+    <wp:comment_parent>0</wp:comment_parent>
+    <wp:comment_user_id>0</wp:comment_user_id>
+  </wp:comment>
+  <wp:comment>
+    <wp:comment_id>168</wp:comment_id>
+    <wp:comment_author><![CDATA[tellyworthtest2]]></wp:comment_author>
+    <wp:comment_author_email>tellyworth+test2@gmail.com</wp:comment_author_email>
+    <wp:comment_author_url/>
+    <wp:comment_author_IP>59.167.157.3</wp:comment_author_IP>
+    <wp:comment_date>2007-09-04 10:49:03</wp:comment_date>
+    <wp:comment_date_gmt>2007-09-04 00:49:03</wp:comment_date_gmt>
+    <wp:comment_content><![CDATA[Contributor comment.]]></wp:comment_content>
+    <wp:comment_approved>1</wp:comment_approved>
+    <wp:comment_type/>
+    <wp:comment_parent>0</wp:comment_parent>
+    <wp:comment_user_id>0</wp:comment_user_id>
+  </wp:comment>
+  <wp:comment>
+    <wp:comment_id>169</wp:comment_id>
+    <wp:comment_author><![CDATA[John Doe]]></wp:comment_author>
+    <wp:comment_author_email>example@example.org</wp:comment_author_email>
+    <wp:comment_author_url>http://example.org</wp:comment_author_url>
+    <wp:comment_author_IP>59.167.157.3</wp:comment_author_IP>
+    <wp:comment_date>2007-09-04 10:48:51</wp:comment_date>
+    <wp:comment_date_gmt>2007-09-04 17:48:51</wp:comment_date_gmt>
+    <wp:comment_content><![CDATA[Author comment.]]></wp:comment_content>
+    <wp:comment_approved>1</wp:comment_approved>
+    <wp:comment_type/>
+    <wp:comment_parent>0</wp:comment_parent>
+    <wp:comment_user_id>0</wp:comment_user_id>
+  </wp:comment>
+</item>
+<item>
+  <title>Page with comments disabled</title>
+  <link>http://wpthemetestdata.wordpress.com/about/page-with-comments-disabled/</link>
+  <pubDate>Tue, 04 Sep 2007 17:48:10 +0000</pubDate>
+  <dc:creator>themedemos</dc:creator>
+  <guid isPermaLink="false">http://wpthemetestdata.wordpress.com/page-with-comments-disabled/</guid>
+  <description/>
+  <content:encoded><![CDATA[This static Page is set not to allow comments. Verify that the Page does not display a comment list, comment reply links, or comment reply form.
+Also, verify that the Page does not display a "comments are closed" type message. Such messages are not suitable for static Pages, and should only be used on blog Posts.]]></content:encoded>
+  <excerpt:encoded><![CDATA[]]></excerpt:encoded>
+  <wp:post_id>156</wp:post_id>
+  <wp:post_date>2007-09-04 10:48:10</wp:post_date>
+  <wp:post_date_gmt>2007-09-04 17:48:10</wp:post_date_gmt>
+  <wp:comment_status>closed</wp:comment_status>
+  <wp:ping_status>closed</wp:ping_status>
+  <wp:post_name>page-with-comments-disabled</wp:post_name>
+  <wp:status>publish</wp:status>
+  <wp:post_parent>2</wp:post_parent>
+  <wp:menu_order>4</wp:menu_order>
+  <wp:post_type>page</wp:post_type>
+  <wp:post_password/>
+  <wp:is_sticky>0</wp:is_sticky>
+  <wp:postmeta>
+    <wp:meta_key>_wp_page_template</wp:meta_key>
+    <wp:meta_value><![CDATA[default]]></wp:meta_value>
+  </wp:postmeta>
+</item>
+<item>
+  <title>Level 3</title>
+  <link>http://wpthemetestdata.wordpress.com/level-1/level-2/level-3/</link>
+  <pubDate>Tue, 11 Dec 2007 06:23:16 +0000</pubDate>
+  <dc:creator>themedemos</dc:creator>
+  <guid isPermaLink="false">http://wpthemetestdata.wordpress.com/level-3/</guid>
+  <description/>
+  <content:encoded><![CDATA[Level 3 of the reverse hierarchy test.]]></content:encoded>
+  <excerpt:encoded><![CDATA[]]></excerpt:encoded>
+  <wp:post_id>172</wp:post_id>
+  <wp:post_date>2007-12-11 16:23:16</wp:post_date>
+  <wp:post_date_gmt>2007-12-11 06:23:16</wp:post_date_gmt>
+  <wp:comment_status>closed</wp:comment_status>
+  <wp:ping_status>closed</wp:ping_status>
+  <wp:post_name>level-3</wp:post_name>
+  <wp:status>publish</wp:status>
+  <wp:post_parent>173</wp:post_parent>
+  <wp:menu_order>0</wp:menu_order>
+  <wp:post_type>page</wp:post_type>
+  <wp:post_password/>
+  <wp:is_sticky>0</wp:is_sticky>
+  <wp:postmeta>
+    <wp:meta_key>_wp_page_template</wp:meta_key>
+    <wp:meta_value><![CDATA[default]]></wp:meta_value>
+  </wp:postmeta>
+</item>
+<item>
+  <title>Level 2</title>
+  <link>http://wpthemetestdata.wordpress.com/level-1/level-2/</link>
+  <pubDate>Tue, 11 Dec 2007 06:23:33 +0000</pubDate>
+  <dc:creator>themedemos</dc:creator>
+  <guid isPermaLink="false">http://wpthemetestdata.wordpress.com/level-2/</guid>
+  <description/>
+  <content:encoded><![CDATA[Level 2 of the reverse hierarchy test.]]></content:encoded>
+  <excerpt:encoded><![CDATA[]]></excerpt:encoded>
+  <wp:post_id>173</wp:post_id>
+  <wp:post_date>2007-12-11 16:23:33</wp:post_date>
+  <wp:post_date_gmt>2007-12-11 06:23:33</wp:post_date_gmt>
+  <wp:comment_status>closed</wp:comment_status>
+  <wp:ping_status>closed</wp:ping_status>
+  <wp:post_name>level-2</wp:post_name>
+  <wp:status>publish</wp:status>
+  <wp:post_parent>174</wp:post_parent>
+  <wp:menu_order>0</wp:menu_order>
+  <wp:post_type>page</wp:post_type>
+  <wp:post_password/>
+  <wp:is_sticky>0</wp:is_sticky>
+  <wp:postmeta>
+    <wp:meta_key>_wp_page_template</wp:meta_key>
+    <wp:meta_value><![CDATA[default]]></wp:meta_value>
+  </wp:postmeta>
+</item>
+<item>
+  <title>Level 1</title>
+  <link>http://wpthemetestdata.wordpress.com/level-1/</link>
+  <pubDate>Tue, 11 Dec 2007 23:25:40 +0000</pubDate>
+  <dc:creator>themedemos</dc:creator>
+  <guid isPermaLink="false">http://wpthemetestdata.wordpress.com/level-1/</guid>
+  <description/>
+  <content:encoded><![CDATA[Level 1 of the reverse hierarchy test.  This is to make sure the importer correctly assigns parents and children even when the children come first in the export file.]]></content:encoded>
+  <excerpt:encoded><![CDATA[]]></excerpt:encoded>
+  <wp:post_id>174</wp:post_id>
+  <wp:post_date>2007-12-11 16:25:40</wp:post_date>
+  <wp:post_date_gmt>2007-12-11 23:25:40</wp:post_date_gmt>
+  <wp:comment_status>closed</wp:comment_status>
+  <wp:ping_status>closed</wp:ping_status>
+  <wp:post_name>level-1</wp:post_name>
+  <wp:status>publish</wp:status>
+  <wp:post_parent>0</wp:post_parent>
+  <wp:menu_order>5</wp:menu_order>
+  <wp:post_type>page</wp:post_type>
+  <wp:post_password/>
+  <wp:is_sticky>0</wp:is_sticky>
+  <wp:postmeta>
+    <wp:meta_key>_wp_page_template</wp:meta_key>
+    <wp:meta_value><![CDATA[default]]></wp:meta_value>
+  </wp:postmeta>
+</item>
+<item>
+  <title>Clearing Floats</title>
+  <link>http://wpthemetestdata.wordpress.com/about/clearing-floats/</link>
+  <pubDate>Sun, 01 Aug 2010 16:42:26 +0000</pubDate>
+  <dc:creator>themedemos</dc:creator>
+  <guid isPermaLink="false">http://wpthemetestdata.wordpress.com/</guid>
+  <description/>
+  <content:encoded><![CDATA[The last item in this page's content is a floated image. Make sure any elements after it are clearing properly.
+
+<img class="alignleft size-thumbnail wp-image-827" title="Camera" src="http://wpthemetestdata.files.wordpress.com/2010/08/manhattansummer.jpg?w=150" alt="" width="150" height="112" />]]></content:encoded>
+  <excerpt:encoded><![CDATA[]]></excerpt:encoded>
+  <wp:post_id>501</wp:post_id>
+  <wp:post_date>2010-08-01 09:42:26</wp:post_date>
+  <wp:post_date_gmt>2010-08-01 16:42:26</wp:post_date_gmt>
+  <wp:comment_status>closed</wp:comment_status>
+  <wp:ping_status>closed</wp:ping_status>
+  <wp:post_name>clearing-floats</wp:post_name>
+  <wp:status>publish</wp:status>
+  <wp:post_parent>2</wp:post_parent>
+  <wp:menu_order>2</wp:menu_order>
+  <wp:post_type>page</wp:post_type>
+  <wp:post_password/>
+  <wp:is_sticky>0</wp:is_sticky>
+  <wp:postmeta>
+    <wp:meta_key>_wp_page_template</wp:meta_key>
+    <wp:meta_value><![CDATA[default]]></wp:meta_value>
+  </wp:postmeta>
+</item>
+<item>
+  <title>canola2</title>
+  <link>http://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/canola2/</link>
+  <pubDate>Mon, 10 Jan 2011 13:17:54 +0000</pubDate>
+  <dc:creator>themedemos</dc:creator>
+  <guid isPermaLink="false">http://wpthemetestdata.files.wordpress.com/2008/06/canola2.jpg</guid>
+  <description/>
+  <content:encoded><![CDATA[]]></content:encoded>
+  <excerpt:encoded><![CDATA[Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec mollis. Quisque convallis libero in sapien pharetra tincidunt. Aliquam elit ante, malesuada id, tempor eu, gravida id, odio. Maecenas suscipit, risus et eleifend imperdiet, nisi orci ullamcorper massa, et adipiscing orci velit quis magna.]]></excerpt:encoded>
+  <wp:post_id>611</wp:post_id>
+  <wp:post_date>2011-01-10 06:17:54</wp:post_date>
+  <wp:post_date_gmt>2011-01-10 13:17:54</wp:post_date_gmt>
+  <wp:comment_status>open</wp:comment_status>
+  <wp:ping_status>closed</wp:ping_status>
+  <wp:post_name>canola2</wp:post_name>
+  <wp:status>inherit</wp:status>
+  <wp:post_parent>555</wp:post_parent>
+  <wp:menu_order>0</wp:menu_order>
+  <wp:post_type>attachment</wp:post_type>
+  <wp:post_password/>
+  <wp:is_sticky>0</wp:is_sticky>
+  <wp:attachment_url>http://wpthemetestdata.files.wordpress.com/2008/06/canola2.jpg</wp:attachment_url>
+  <wp:postmeta>
+    <wp:meta_key>_wp_attachment_image_alt</wp:meta_key>
+    <wp:meta_value><![CDATA[canola]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_wp_attachment_image_alt</wp:meta_key>
+    <wp:meta_value><![CDATA[canola]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_attachment_original_parent_id</wp:meta_key>
+    <wp:meta_value><![CDATA[555]]></wp:meta_value>
+  </wp:postmeta>
+</item>
+<item>
+  <title>dsc20050727_091048_222</title>
+  <link>http://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dsc20050727_091048_222/</link>
+  <pubDate>Mon, 10 Jan 2011 13:20:37 +0000</pubDate>
+  <dc:creator>themedemos</dc:creator>
+  <guid isPermaLink="false">http://wpthemetestdata.files.wordpress.com/2008/06/dsc20050727_091048_222.jpg</guid>
+  <description/>
+  <content:encoded><![CDATA[]]></content:encoded>
+  <excerpt:encoded><![CDATA[]]></excerpt:encoded>
+  <wp:post_id>616</wp:post_id>
+  <wp:post_date>2011-01-10 06:20:37</wp:post_date>
+  <wp:post_date_gmt>2011-01-10 13:20:37</wp:post_date_gmt>
+  <wp:comment_status>open</wp:comment_status>
+  <wp:ping_status>closed</wp:ping_status>
+  <wp:post_name>dsc20050727_091048_222</wp:post_name>
+  <wp:status>inherit</wp:status>
+  <wp:post_parent>555</wp:post_parent>
+  <wp:menu_order>0</wp:menu_order>
+  <wp:post_type>attachment</wp:post_type>
+  <wp:post_password/>
+  <wp:is_sticky>0</wp:is_sticky>
+  <wp:attachment_url>http://wpthemetestdata.files.wordpress.com/2008/06/dsc20050727_091048_222.jpg</wp:attachment_url>
+  <wp:postmeta>
+    <wp:meta_key>_wp_attachment_image_alt</wp:meta_key>
+    <wp:meta_value><![CDATA[dsc20050727_091048_222]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_wp_attachment_image_alt</wp:meta_key>
+    <wp:meta_value><![CDATA[dsc20050727_091048_222]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_attachment_original_parent_id</wp:meta_key>
+    <wp:meta_value><![CDATA[555]]></wp:meta_value>
+  </wp:postmeta>
+</item>
+<item>
+  <title>dsc20050813_115856_52</title>
+  <link>http://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dsc20050813_115856_52/</link>
+  <pubDate>Mon, 10 Jan 2011 13:20:57 +0000</pubDate>
+  <dc:creator>themedemos</dc:creator>
+  <guid isPermaLink="false">http://wpthemetestdata.files.wordpress.com/2008/06/dsc20050813_115856_52.jpg</guid>
+  <description/>
+  <content:encoded><![CDATA[]]></content:encoded>
+  <excerpt:encoded><![CDATA[]]></excerpt:encoded>
+  <wp:post_id>617</wp:post_id>
+  <wp:post_date>2011-01-10 06:20:57</wp:post_date>
+  <wp:post_date_gmt>2011-01-10 13:20:57</wp:post_date_gmt>
+  <wp:comment_status>open</wp:comment_status>
+  <wp:ping_status>closed</wp:ping_status>
+  <wp:post_name>dsc20050813_115856_52</wp:post_name>
+  <wp:status>inherit</wp:status>
+  <wp:post_parent>555</wp:post_parent>
+  <wp:menu_order>0</wp:menu_order>
+  <wp:post_type>attachment</wp:post_type>
+  <wp:post_password/>
+  <wp:is_sticky>0</wp:is_sticky>
+  <wp:attachment_url>http://wpthemetestdata.files.wordpress.com/2008/06/dsc20050813_115856_52.jpg</wp:attachment_url>
+  <wp:postmeta>
+    <wp:meta_key>_wp_attachment_image_alt</wp:meta_key>
+    <wp:meta_value><![CDATA[dsc20050813_115856_52]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_wp_attachment_image_alt</wp:meta_key>
+    <wp:meta_value><![CDATA[dsc20050813_115856_52]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_attachment_original_parent_id</wp:meta_key>
+    <wp:meta_value><![CDATA[555]]></wp:meta_value>
+  </wp:postmeta>
+</item>
+<item>
+  <title>Front Page</title>
+  <link>http://wpthemetestdata.wordpress.com/front-page/</link>
+  <pubDate>Sat, 21 May 2011 01:49:43 +0000</pubDate>
+  <dc:creator>themedemos</dc:creator>
+  <guid isPermaLink="false">http://wpthemetestdata.wordpress.com/?page_id=701</guid>
+  <description/>
+  <content:encoded><![CDATA[Use this static Page to test the Theme's handling of the Front Page template file. 
+
+This is the Front Page content. Use this static Page to test the Front Page output of the Theme. The Theme should properly handle both Blog Posts Index as Front Page and static Page as Front Page.
+
+If the site is set to display the Blog Posts Index as the Front Page, then this text should not be visible. If the site is set to display a static Page as the Front Page, then this text may or may not be visible. If the Theme does not include a front-page.php template file, then this text should appear on the Front Page when set to display a static Page. If the Theme does include a front-page.php template file, then this text may or may not appear.]]></content:encoded>
+  <excerpt:encoded><![CDATA[]]></excerpt:encoded>
+  <wp:post_id>701</wp:post_id>
+  <wp:post_date>2011-05-20 18:49:43</wp:post_date>
+  <wp:post_date_gmt>2011-05-21 01:49:43</wp:post_date_gmt>
+  <wp:comment_status>open</wp:comment_status>
+  <wp:ping_status>closed</wp:ping_status>
+  <wp:post_name>front-page</wp:post_name>
+  <wp:status>publish</wp:status>
+  <wp:post_parent>0</wp:post_parent>
+  <wp:menu_order>0</wp:menu_order>
+  <wp:post_type>page</wp:post_type>
+  <wp:post_password/>
+  <wp:is_sticky>0</wp:is_sticky>
+  <wp:postmeta>
+    <wp:meta_key>_wp_page_template</wp:meta_key>
+    <wp:meta_value><![CDATA[default]]></wp:meta_value>
+  </wp:postmeta>
+</item>
+<item>
+  <title>Blog</title>
+  <link>http://wpthemetestdata.wordpress.com/blog/</link>
+  <pubDate>Sat, 21 May 2011 01:51:43 +0000</pubDate>
+  <dc:creator>themedemos</dc:creator>
+  <guid isPermaLink="false">http://wpthemetestdata.wordpress.com/?page_id=703</guid>
+  <description/>
+  <content:encoded><![CDATA[Use this static Page to test the Theme's handling of the Blog Posts Index page. If the site is set to display a static Page on the Front Page, and this Page is set to display the Blog Posts Index, then this text should not appear.]]></content:encoded>
+  <excerpt:encoded><![CDATA[]]></excerpt:encoded>
+  <wp:post_id>703</wp:post_id>
+  <wp:post_date>2011-05-20 18:51:43</wp:post_date>
+  <wp:post_date_gmt>2011-05-21 01:51:43</wp:post_date_gmt>
+  <wp:comment_status>open</wp:comment_status>
+  <wp:ping_status>closed</wp:ping_status>
+  <wp:post_name>blog</wp:post_name>
+  <wp:status>publish</wp:status>
+  <wp:post_parent>0</wp:post_parent>
+  <wp:menu_order>0</wp:menu_order>
+  <wp:post_type>page</wp:post_type>
+  <wp:post_password/>
+  <wp:is_sticky>0</wp:is_sticky>
+  <wp:postmeta>
+    <wp:meta_key>_wp_page_template</wp:meta_key>
+    <wp:meta_value><![CDATA[default]]></wp:meta_value>
+  </wp:postmeta>
+</item>
+<item>
+  <title>Page A</title>
+  <link>http://wpthemetestdata.wordpress.com/page-a/</link>
+  <pubDate>Fri, 24 Jun 2011 01:38:52 +0000</pubDate>
+  <dc:creator>themedemos</dc:creator>
+  <guid isPermaLink="false">http://wpthemetestdata.wordpress.com/?page_id=733</guid>
+  <description/>
+  <content:encoded><![CDATA[Integer posuere erat a ante venenatis dapibus posuere velit aliquet. Aenean lacinia bibendum nulla sed consectetur. Etiam porta sem malesuada magna mollis euismod. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus.]]></content:encoded>
+  <excerpt:encoded><![CDATA[]]></excerpt:encoded>
+  <wp:post_id>733</wp:post_id>
+  <wp:post_date>2011-06-23 18:38:52</wp:post_date>
+  <wp:post_date_gmt>2011-06-24 01:38:52</wp:post_date_gmt>
+  <wp:comment_status>open</wp:comment_status>
+  <wp:ping_status>closed</wp:ping_status>
+  <wp:post_name>page-a</wp:post_name>
+  <wp:status>publish</wp:status>
+  <wp:post_parent>0</wp:post_parent>
+  <wp:menu_order>10</wp:menu_order>
+  <wp:post_type>page</wp:post_type>
+  <wp:post_password/>
+  <wp:is_sticky>0</wp:is_sticky>
+  <wp:postmeta>
+    <wp:meta_key>_wp_page_template</wp:meta_key>
+    <wp:meta_value><![CDATA[default]]></wp:meta_value>
+  </wp:postmeta>
+</item>
+<item>
+  <title>Bell on Wharf</title>
+  <link>http://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/100_5478/</link>
+  <pubDate>Fri, 15 Jul 2011 21:34:50 +0000</pubDate>
+  <dc:creator>themedemos</dc:creator>
+  <guid isPermaLink="false">http://wpthemetestdata.files.wordpress.com/2008/06/100_5478.jpg</guid>
+  <description/>
+  <content:encoded><![CDATA[Public domain via http://www.burningwell.org/gallery2/v/Objects/100_5540.JPG.html]]></content:encoded>
+  <excerpt:encoded><![CDATA[Bell on wharf in San Francisco]]></excerpt:encoded>
+  <wp:post_id>754</wp:post_id>
+  <wp:post_date>2011-07-15 14:34:50</wp:post_date>
+  <wp:post_date_gmt>2011-07-15 21:34:50</wp:post_date_gmt>
+  <wp:comment_status>open</wp:comment_status>
+  <wp:ping_status>closed</wp:ping_status>
+  <wp:post_name>100_5478</wp:post_name>
+  <wp:status>inherit</wp:status>
+  <wp:post_parent>555</wp:post_parent>
+  <wp:menu_order>0</wp:menu_order>
+  <wp:post_type>attachment</wp:post_type>
+  <wp:post_password/>
+  <wp:is_sticky>0</wp:is_sticky>
+  <wp:attachment_url>http://wpthemetestdata.files.wordpress.com/2008/06/100_5478.jpg</wp:attachment_url>
+  <wp:postmeta>
+    <wp:meta_key>_wp_attachment_image_alt</wp:meta_key>
+    <wp:meta_value><![CDATA[Bell on Wharf]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_wp_attachment_image_alt</wp:meta_key>
+    <wp:meta_value><![CDATA[Bell on Wharf]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_attachment_original_parent_id</wp:meta_key>
+    <wp:meta_value><![CDATA[555]]></wp:meta_value>
+  </wp:postmeta>
+</item>
+<item>
+  <title>Golden Gate Bridge</title>
+  <link>http://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/100_5540/</link>
+  <pubDate>Fri, 15 Jul 2011 21:35:55 +0000</pubDate>
+  <dc:creator>themedemos</dc:creator>
+  <guid isPermaLink="false">http://wpthemetestdata.files.wordpress.com/2008/06/100_5540.jpg</guid>
+  <description/>
+  <content:encoded><![CDATA[Public domain via http://www.burningwell.org/gallery2/v/Objects/100_5478.JPG.html]]></content:encoded>
+  <excerpt:encoded><![CDATA[Golden Gate Bridge]]></excerpt:encoded>
+  <wp:post_id>755</wp:post_id>
+  <wp:post_date>2011-07-15 14:35:55</wp:post_date>
+  <wp:post_date_gmt>2011-07-15 21:35:55</wp:post_date_gmt>
+  <wp:comment_status>open</wp:comment_status>
+  <wp:ping_status>closed</wp:ping_status>
+  <wp:post_name>100_5540</wp:post_name>
+  <wp:status>inherit</wp:status>
+  <wp:post_parent>555</wp:post_parent>
+  <wp:menu_order>0</wp:menu_order>
+  <wp:post_type>attachment</wp:post_type>
+  <wp:post_password/>
+  <wp:is_sticky>0</wp:is_sticky>
+  <wp:attachment_url>http://wpthemetestdata.files.wordpress.com/2008/06/100_5540.jpg</wp:attachment_url>
+  <wp:postmeta>
+    <wp:meta_key>_wp_attachment_image_alt</wp:meta_key>
+    <wp:meta_value><![CDATA[Golden Gate Bridge]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_wp_attachment_image_alt</wp:meta_key>
+    <wp:meta_value><![CDATA[Golden Gate Bridge]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_attachment_original_parent_id</wp:meta_key>
+    <wp:meta_value><![CDATA[555]]></wp:meta_value>
+  </wp:postmeta>
+</item>
+<item>
+  <title>Sunburst Over River</title>
+  <link>http://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/cep00032/</link>
+  <pubDate>Fri, 15 Jul 2011 21:41:24 +0000</pubDate>
+  <dc:creator>themedemos</dc:creator>
+  <guid isPermaLink="false">http://wpthemetestdata.files.wordpress.com/2008/06/cep00032.jpg</guid>
+  <description/>
+  <content:encoded><![CDATA[Public domain via http://www.burningwell.org/gallery2/v/Landscapes/ocean/CEP00032.jpg.html]]></content:encoded>
+  <excerpt:encoded><![CDATA[Sunburst over the Clinch River, Southwest Virginia.]]></excerpt:encoded>
+  <wp:post_id>756</wp:post_id>
+  <wp:post_date>2011-07-15 14:41:24</wp:post_date>
+  <wp:post_date_gmt>2011-07-15 21:41:24</wp:post_date_gmt>
+  <wp:comment_status>open</wp:comment_status>
+  <wp:ping_status>closed</wp:ping_status>
+  <wp:post_name>cep00032</wp:post_name>
+  <wp:status>inherit</wp:status>
+  <wp:post_parent>555</wp:post_parent>
+  <wp:menu_order>0</wp:menu_order>
+  <wp:post_type>attachment</wp:post_type>
+  <wp:post_password/>
+  <wp:is_sticky>0</wp:is_sticky>
+  <wp:attachment_url>http://wpthemetestdata.files.wordpress.com/2008/06/cep00032.jpg</wp:attachment_url>
+  <wp:postmeta>
+    <wp:meta_key>_wp_attachment_image_alt</wp:meta_key>
+    <wp:meta_value><![CDATA[Sunburst Over River]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_wp_attachment_image_alt</wp:meta_key>
+    <wp:meta_value><![CDATA[Sunburst Over River]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_attachment_original_parent_id</wp:meta_key>
+    <wp:meta_value><![CDATA[555]]></wp:meta_value>
+  </wp:postmeta>
+</item>
+<item>
+  <title>Boardwalk</title>
+  <link>http://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dcp_2082/</link>
+  <pubDate>Fri, 15 Jul 2011 21:41:27 +0000</pubDate>
+  <dc:creator>themedemos</dc:creator>
+  <guid isPermaLink="false">http://wpthemetestdata.files.wordpress.com/2008/06/dcp_2082.jpg</guid>
+  <description/>
+  <content:encoded><![CDATA[Public domain via http://www.burningwell.org/gallery2/v/Landscapes/ocean/DCP_2082.jpg.html]]></content:encoded>
+  <excerpt:encoded><![CDATA[Boardwalk at Westport, WA]]></excerpt:encoded>
+  <wp:post_id>757</wp:post_id>
+  <wp:post_date>2011-07-15 14:41:27</wp:post_date>
+  <wp:post_date_gmt>2011-07-15 21:41:27</wp:post_date_gmt>
+  <wp:comment_status>open</wp:comment_status>
+  <wp:ping_status>closed</wp:ping_status>
+  <wp:post_name>dcp_2082</wp:post_name>
+  <wp:status>inherit</wp:status>
+  <wp:post_parent>555</wp:post_parent>
+  <wp:menu_order>0</wp:menu_order>
+  <wp:post_type>attachment</wp:post_type>
+  <wp:post_password/>
+  <wp:is_sticky>0</wp:is_sticky>
+  <wp:attachment_url>http://wpthemetestdata.files.wordpress.com/2008/06/dcp_2082.jpg</wp:attachment_url>
+  <wp:postmeta>
+    <wp:meta_key>_wp_attachment_image_alt</wp:meta_key>
+    <wp:meta_value><![CDATA[Boardwalk]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_wp_attachment_image_alt</wp:meta_key>
+    <wp:meta_value><![CDATA[Boardwalk]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_attachment_original_parent_id</wp:meta_key>
+    <wp:meta_value><![CDATA[555]]></wp:meta_value>
+  </wp:postmeta>
+</item>
+<item>
+  <title>Yachtsody in Blue</title>
+  <link>http://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dsc03149/</link>
+  <pubDate>Fri, 15 Jul 2011 21:41:33 +0000</pubDate>
+  <dc:creator>themedemos</dc:creator>
+  <guid isPermaLink="false">http://wpthemetestdata.files.wordpress.com/2008/06/dsc03149.jpg</guid>
+  <description/>
+  <content:encoded><![CDATA[Public domain via http://www.burningwell.org/gallery2/v/Landscapes/ocean/dsc03149.jpg.html]]></content:encoded>
+  <excerpt:encoded><![CDATA[Boats and reflections, Royal Perth Yacht Club]]></excerpt:encoded>
+  <wp:post_id>758</wp:post_id>
+  <wp:post_date>2011-07-15 14:41:33</wp:post_date>
+  <wp:post_date_gmt>2011-07-15 21:41:33</wp:post_date_gmt>
+  <wp:comment_status>open</wp:comment_status>
+  <wp:ping_status>closed</wp:ping_status>
+  <wp:post_name>dsc03149</wp:post_name>
+  <wp:status>inherit</wp:status>
+  <wp:post_parent>555</wp:post_parent>
+  <wp:menu_order>0</wp:menu_order>
+  <wp:post_type>attachment</wp:post_type>
+  <wp:post_password/>
+  <wp:is_sticky>0</wp:is_sticky>
+  <wp:attachment_url>http://wpthemetestdata.files.wordpress.com/2008/06/dsc03149.jpg</wp:attachment_url>
+  <wp:postmeta>
+    <wp:meta_key>_wp_attachment_image_alt</wp:meta_key>
+    <wp:meta_value><![CDATA[Yachtsody in Blue]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_wp_attachment_image_alt</wp:meta_key>
+    <wp:meta_value><![CDATA[Yachtsody in Blue]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_attachment_original_parent_id</wp:meta_key>
+    <wp:meta_value><![CDATA[555]]></wp:meta_value>
+  </wp:postmeta>
+</item>
+<item>
+  <title>Rain Ripples</title>
+  <link>http://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dsc04563/</link>
+  <pubDate>Fri, 15 Jul 2011 21:41:37 +0000</pubDate>
+  <dc:creator>themedemos</dc:creator>
+  <guid isPermaLink="false">http://wpthemetestdata.files.wordpress.com/2008/06/dsc04563.jpg</guid>
+  <description/>
+  <content:encoded><![CDATA[Public domain via http://www.burningwell.org/gallery2/v/Landscapes/ocean/dsc04563.jpg.html]]></content:encoded>
+  <excerpt:encoded><![CDATA[Raindrop ripples on a pond]]></excerpt:encoded>
+  <wp:post_id>759</wp:post_id>
+  <wp:post_date>2011-07-15 14:41:37</wp:post_date>
+  <wp:post_date_gmt>2011-07-15 21:41:37</wp:post_date_gmt>
+  <wp:comment_status>open</wp:comment_status>
+  <wp:ping_status>closed</wp:ping_status>
+  <wp:post_name>dsc04563</wp:post_name>
+  <wp:status>inherit</wp:status>
+  <wp:post_parent>555</wp:post_parent>
+  <wp:menu_order>0</wp:menu_order>
+  <wp:post_type>attachment</wp:post_type>
+  <wp:post_password/>
+  <wp:is_sticky>0</wp:is_sticky>
+  <wp:attachment_url>http://wpthemetestdata.files.wordpress.com/2008/06/dsc04563.jpg</wp:attachment_url>
+  <wp:postmeta>
+    <wp:meta_key>_wp_attachment_image_alt</wp:meta_key>
+    <wp:meta_value><![CDATA[Rain Ripples]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_wp_attachment_image_alt</wp:meta_key>
+    <wp:meta_value><![CDATA[Rain Ripples]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_attachment_original_parent_id</wp:meta_key>
+    <wp:meta_value><![CDATA[555]]></wp:meta_value>
+  </wp:postmeta>
+</item>
+<item>
+  <title>Sydney Harbor Bridge</title>
+  <link>http://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dsc09114/</link>
+  <pubDate>Fri, 15 Jul 2011 21:41:41 +0000</pubDate>
+  <dc:creator>themedemos</dc:creator>
+  <guid isPermaLink="false">http://wpthemetestdata.files.wordpress.com/2008/06/dsc09114.jpg</guid>
+  <description/>
+  <content:encoded><![CDATA[Public domain via http://www.burningwell.org/gallery2/v/Objects/dsc09114.jpg.html]]></content:encoded>
+  <excerpt:encoded><![CDATA[Sydney Harbor Bridge]]></excerpt:encoded>
+  <wp:post_id>760</wp:post_id>
+  <wp:post_date>2011-07-15 14:41:41</wp:post_date>
+  <wp:post_date_gmt>2011-07-15 21:41:41</wp:post_date_gmt>
+  <wp:comment_status>open</wp:comment_status>
+  <wp:ping_status>closed</wp:ping_status>
+  <wp:post_name>dsc09114</wp:post_name>
+  <wp:status>inherit</wp:status>
+  <wp:post_parent>555</wp:post_parent>
+  <wp:menu_order>0</wp:menu_order>
+  <wp:post_type>attachment</wp:post_type>
+  <wp:post_password/>
+  <wp:is_sticky>0</wp:is_sticky>
+  <wp:attachment_url>http://wpthemetestdata.files.wordpress.com/2008/06/dsc09114.jpg</wp:attachment_url>
+  <wp:postmeta>
+    <wp:meta_key>_wp_attachment_image_alt</wp:meta_key>
+    <wp:meta_value><![CDATA[Sydney Harbor Bridge]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_wp_attachment_image_alt</wp:meta_key>
+    <wp:meta_value><![CDATA[Sydney Harbor Bridge]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_attachment_original_parent_id</wp:meta_key>
+    <wp:meta_value><![CDATA[555]]></wp:meta_value>
+  </wp:postmeta>
+</item>
+<item>
+  <title>Wind Farm</title>
+  <link>http://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dsc20050102_192118_51/</link>
+  <pubDate>Fri, 15 Jul 2011 21:41:42 +0000</pubDate>
+  <dc:creator>themedemos</dc:creator>
+  <guid isPermaLink="false">http://wpthemetestdata.files.wordpress.com/2008/06/dsc20050102_192118_51.jpg</guid>
+  <description/>
+  <content:encoded><![CDATA[Public domain via http://www.burningwell.org/gallery2/v/Landscapes/ocean/dsc20050102_192118_51.jpg.html]]></content:encoded>
+  <excerpt:encoded><![CDATA[Albany wind-farm against the sunset, Western Australia]]></excerpt:encoded>
+  <wp:post_id>761</wp:post_id>
+  <wp:post_date>2011-07-15 14:41:42</wp:post_date>
+  <wp:post_date_gmt>2011-07-15 21:41:42</wp:post_date_gmt>
+  <wp:comment_status>open</wp:comment_status>
+  <wp:ping_status>closed</wp:ping_status>
+  <wp:post_name>dsc20050102_192118_51</wp:post_name>
+  <wp:status>inherit</wp:status>
+  <wp:post_parent>555</wp:post_parent>
+  <wp:menu_order>0</wp:menu_order>
+  <wp:post_type>attachment</wp:post_type>
+  <wp:post_password/>
+  <wp:is_sticky>0</wp:is_sticky>
+  <wp:attachment_url>http://wpthemetestdata.files.wordpress.com/2008/06/dsc20050102_192118_51.jpg</wp:attachment_url>
+  <wp:postmeta>
+    <wp:meta_key>_wp_attachment_image_alt</wp:meta_key>
+    <wp:meta_value><![CDATA[Wind Farm]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_wp_attachment_image_alt</wp:meta_key>
+    <wp:meta_value><![CDATA[Wind Farm]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_attachment_original_parent_id</wp:meta_key>
+    <wp:meta_value><![CDATA[555]]></wp:meta_value>
+  </wp:postmeta>
+</item>
+<item>
+  <title>Antique Farm Machinery</title>
+  <link>http://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dsc20051220_160808_102/</link>
+  <pubDate>Fri, 15 Jul 2011 21:41:45 +0000</pubDate>
+  <dc:creator>themedemos</dc:creator>
+  <guid isPermaLink="false">http://wpthemetestdata.files.wordpress.com/2008/06/dsc20051220_160808_102.jpg</guid>
+  <description/>
+  <content:encoded><![CDATA[Public domain via http://www.burningwell.org/gallery2/v/Objects/dsc20051220_160808_102.jpg.html]]></content:encoded>
+  <excerpt:encoded><![CDATA[Antique farm machinery, Mount Barker Museum, Western Australia]]></excerpt:encoded>
+  <wp:post_id>762</wp:post_id>
+  <wp:post_date>2011-07-15 14:41:45</wp:post_date>
+  <wp:post_date_gmt>2011-07-15 21:41:45</wp:post_date_gmt>
+  <wp:comment_status>open</wp:comment_status>
+  <wp:ping_status>closed</wp:ping_status>
+  <wp:post_name>dsc20051220_160808_102</wp:post_name>
+  <wp:status>inherit</wp:status>
+  <wp:post_parent>555</wp:post_parent>
+  <wp:menu_order>0</wp:menu_order>
+  <wp:post_type>attachment</wp:post_type>
+  <wp:post_password/>
+  <wp:is_sticky>0</wp:is_sticky>
+  <wp:attachment_url>http://wpthemetestdata.files.wordpress.com/2008/06/dsc20051220_160808_102.jpg</wp:attachment_url>
+  <wp:postmeta>
+    <wp:meta_key>_wp_attachment_image_alt</wp:meta_key>
+    <wp:meta_value><![CDATA[Antique Farm Machinery]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_wp_attachment_image_alt</wp:meta_key>
+    <wp:meta_value><![CDATA[Antique Farm Machinery]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_attachment_original_parent_id</wp:meta_key>
+    <wp:meta_value><![CDATA[555]]></wp:meta_value>
+  </wp:postmeta>
+</item>
+<item>
+  <title>Orange Iris</title>
+  <link>http://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dsc02085/</link>
+  <pubDate>Fri, 15 Jul 2011 21:46:27 +0000</pubDate>
+  <dc:creator>themedemos</dc:creator>
+  <guid isPermaLink="false">http://wpthemetestdata.files.wordpress.com/2008/06/dsc02085.jpg</guid>
+  <description/>
+  <content:encoded><![CDATA[Public domain via http://www.burningwell.org/gallery2/main.php?g2_view=dynamicalbum.UpdatesAlbum&amp;g2_itemId=25895]]></content:encoded>
+  <excerpt:encoded><![CDATA[Orange Iris]]></excerpt:encoded>
+  <wp:post_id>763</wp:post_id>
+  <wp:post_date>2011-07-15 14:46:27</wp:post_date>
+  <wp:post_date_gmt>2011-07-15 21:46:27</wp:post_date_gmt>
+  <wp:comment_status>open</wp:comment_status>
+  <wp:ping_status>closed</wp:ping_status>
+  <wp:post_name>dsc02085</wp:post_name>
+  <wp:status>inherit</wp:status>
+  <wp:post_parent>555</wp:post_parent>
+  <wp:menu_order>0</wp:menu_order>
+  <wp:post_type>attachment</wp:post_type>
+  <wp:post_password/>
+  <wp:is_sticky>0</wp:is_sticky>
+  <wp:attachment_url>http://wpthemetestdata.files.wordpress.com/2008/06/dsc02085.jpg</wp:attachment_url>
+  <wp:postmeta>
+    <wp:meta_key>_wp_attachment_image_alt</wp:meta_key>
+    <wp:meta_value><![CDATA[Orange Iris]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_wp_attachment_image_alt</wp:meta_key>
+    <wp:meta_value><![CDATA[Orange Iris]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_attachment_original_parent_id</wp:meta_key>
+    <wp:meta_value><![CDATA[555]]></wp:meta_value>
+  </wp:postmeta>
+</item>
+<item>
+  <title>Rusty Rail</title>
+  <link>http://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dsc20051220_173257_119/</link>
+  <pubDate>Fri, 15 Jul 2011 21:47:17 +0000</pubDate>
+  <dc:creator>themedemos</dc:creator>
+  <guid isPermaLink="false">http://wpthemetestdata.files.wordpress.com/2008/06/dsc20051220_173257_119.jpg</guid>
+  <description/>
+  <content:encoded><![CDATA[Public domain via http://www.burningwell.org/gallery2/v/Objects/dsc20051220_173257_119.jpg.html]]></content:encoded>
+  <excerpt:encoded><![CDATA[Rusty rails with fishplate, Kojonup]]></excerpt:encoded>
+  <wp:post_id>764</wp:post_id>
+  <wp:post_date>2011-07-15 14:47:17</wp:post_date>
+  <wp:post_date_gmt>2011-07-15 21:47:17</wp:post_date_gmt>
+  <wp:comment_status>open</wp:comment_status>
+  <wp:ping_status>closed</wp:ping_status>
+  <wp:post_name>dsc20051220_173257_119</wp:post_name>
+  <wp:status>inherit</wp:status>
+  <wp:post_parent>555</wp:post_parent>
+  <wp:menu_order>0</wp:menu_order>
+  <wp:post_type>attachment</wp:post_type>
+  <wp:post_password/>
+  <wp:is_sticky>0</wp:is_sticky>
+  <wp:attachment_url>http://wpthemetestdata.files.wordpress.com/2008/06/dsc20051220_173257_119.jpg</wp:attachment_url>
+  <wp:postmeta>
+    <wp:meta_key>_wp_attachment_image_alt</wp:meta_key>
+    <wp:meta_value><![CDATA[Rusty Rail]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_wp_attachment_image_alt</wp:meta_key>
+    <wp:meta_value><![CDATA[Rusty Rail]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_attachment_original_parent_id</wp:meta_key>
+    <wp:meta_value><![CDATA[555]]></wp:meta_value>
+  </wp:postmeta>
+</item>
+<item>
+  <title>Sea and Rocks</title>
+  <link>http://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dscn3316/</link>
+  <pubDate>Fri, 15 Jul 2011 21:47:20 +0000</pubDate>
+  <dc:creator>themedemos</dc:creator>
+  <guid isPermaLink="false">http://wpthemetestdata.files.wordpress.com/2008/06/dscn3316.jpg</guid>
+  <description/>
+  <content:encoded><![CDATA[Public domain via http://www.burningwell.org/gallery2/v/Landscapes/ocean/dscn3316.jpg.html]]></content:encoded>
+  <excerpt:encoded><![CDATA[Sea and rocks, Plimmerton, New Zealand]]></excerpt:encoded>
+  <wp:post_id>765</wp:post_id>
+  <wp:post_date>2011-07-15 14:47:20</wp:post_date>
+  <wp:post_date_gmt>2011-07-15 21:47:20</wp:post_date_gmt>
+  <wp:comment_status>open</wp:comment_status>
+  <wp:ping_status>closed</wp:ping_status>
+  <wp:post_name>dscn3316</wp:post_name>
+  <wp:status>inherit</wp:status>
+  <wp:post_parent>555</wp:post_parent>
+  <wp:menu_order>0</wp:menu_order>
+  <wp:post_type>attachment</wp:post_type>
+  <wp:post_password/>
+  <wp:is_sticky>0</wp:is_sticky>
+  <wp:attachment_url>http://wpthemetestdata.files.wordpress.com/2008/06/dscn3316.jpg</wp:attachment_url>
+  <wp:postmeta>
+    <wp:meta_key>_wp_attachment_image_alt</wp:meta_key>
+    <wp:meta_value><![CDATA[Sea and Rocks]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_wp_attachment_image_alt</wp:meta_key>
+    <wp:meta_value><![CDATA[Sea and Rocks]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_attachment_original_parent_id</wp:meta_key>
+    <wp:meta_value><![CDATA[555]]></wp:meta_value>
+  </wp:postmeta>
+</item>
+<item>
+  <title>Big Sur</title>
+  <link>http://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/michelle_049/</link>
+  <pubDate>Fri, 15 Jul 2011 21:47:23 +0000</pubDate>
+  <dc:creator>themedemos</dc:creator>
+  <guid isPermaLink="false">http://wpthemetestdata.files.wordpress.com/2008/06/michelle_049.jpg</guid>
+  <description/>
+  <content:encoded><![CDATA[Public domain via http://www.burningwell.org/gallery2/v/Landscapes/ocean/michelle_049.jpg.html]]></content:encoded>
+  <excerpt:encoded><![CDATA[Beach at Big Sur, CA]]></excerpt:encoded>
+  <wp:post_id>766</wp:post_id>
+  <wp:post_date>2011-07-15 14:47:23</wp:post_date>
+  <wp:post_date_gmt>2011-07-15 21:47:23</wp:post_date_gmt>
+  <wp:comment_status>open</wp:comment_status>
+  <wp:ping_status>closed</wp:ping_status>
+  <wp:post_name>michelle_049</wp:post_name>
+  <wp:status>inherit</wp:status>
+  <wp:post_parent>555</wp:post_parent>
+  <wp:menu_order>0</wp:menu_order>
+  <wp:post_type>attachment</wp:post_type>
+  <wp:post_password/>
+  <wp:is_sticky>0</wp:is_sticky>
+  <wp:attachment_url>http://wpthemetestdata.files.wordpress.com/2008/06/michelle_049.jpg</wp:attachment_url>
+  <wp:postmeta>
+    <wp:meta_key>_wp_attachment_image_alt</wp:meta_key>
+    <wp:meta_value><![CDATA[Big Sur]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_wp_attachment_image_alt</wp:meta_key>
+    <wp:meta_value><![CDATA[Big Sur]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_attachment_original_parent_id</wp:meta_key>
+    <wp:meta_value><![CDATA[555]]></wp:meta_value>
+  </wp:postmeta>
+</item>
+<item>
+  <title>Windmill</title>
+  <link>http://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dcf-1-0/</link>
+  <pubDate>Fri, 15 Jul 2011 21:47:26 +0000</pubDate>
+  <dc:creator>themedemos</dc:creator>
+  <guid isPermaLink="false">http://wpthemetestdata.files.wordpress.com/2008/06/windmill.jpg</guid>
+  <description/>
+  <content:encoded><![CDATA[Public domain via http://www.burningwell.org/gallery2/v/Objects/Windmill.jpg.html]]></content:encoded>
+  <excerpt:encoded><![CDATA[Windmill shrouded in fog at a farm outside of Walker, Iowa]]></excerpt:encoded>
+  <wp:post_id>767</wp:post_id>
+  <wp:post_date>2011-07-15 14:47:26</wp:post_date>
+  <wp:post_date_gmt>2011-07-15 21:47:26</wp:post_date_gmt>
+  <wp:comment_status>open</wp:comment_status>
+  <wp:ping_status>closed</wp:ping_status>
+  <wp:post_name>dcf-1-0</wp:post_name>
+  <wp:status>inherit</wp:status>
+  <wp:post_parent>555</wp:post_parent>
+  <wp:menu_order>0</wp:menu_order>
+  <wp:post_type>attachment</wp:post_type>
+  <wp:post_password/>
+  <wp:is_sticky>0</wp:is_sticky>
+  <wp:attachment_url>http://wpthemetestdata.files.wordpress.com/2008/06/windmill.jpg</wp:attachment_url>
+  <wp:postmeta>
+    <wp:meta_key>_wp_attachment_image_alt</wp:meta_key>
+    <wp:meta_value><![CDATA[Windmill]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_wp_attachment_image_alt</wp:meta_key>
+    <wp:meta_value><![CDATA[Windmill]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_attachment_original_parent_id</wp:meta_key>
+    <wp:meta_value><![CDATA[555]]></wp:meta_value>
+  </wp:postmeta>
+</item>
+<item>
+  <title>Huatulco Coastline</title>
+  <link>http://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/alas-i-have-found-my-shangri-la/</link>
+  <pubDate>Fri, 15 Jul 2011 21:49:48 +0000</pubDate>
+  <dc:creator>themedemos</dc:creator>
+  <guid isPermaLink="false">http://wpthemetestdata.files.wordpress.com/2008/06/img_0513-1.jpg</guid>
+  <description/>
+  <content:encoded><![CDATA[Public domain via http://www.burningwell.org/gallery2/v/Landscapes/ocean/IMG_0513-1.JPG.html]]></content:encoded>
+  <excerpt:encoded><![CDATA[Sunrise over the coast in Huatulco, Oaxaca, Mexico]]></excerpt:encoded>
+  <wp:post_id>768</wp:post_id>
+  <wp:post_date>2011-07-15 14:49:48</wp:post_date>
+  <wp:post_date_gmt>2011-07-15 21:49:48</wp:post_date_gmt>
+  <wp:comment_status>open</wp:comment_status>
+  <wp:ping_status>closed</wp:ping_status>
+  <wp:post_name>alas-i-have-found-my-shangri-la</wp:post_name>
+  <wp:status>inherit</wp:status>
+  <wp:post_parent>555</wp:post_parent>
+  <wp:menu_order>0</wp:menu_order>
+  <wp:post_type>attachment</wp:post_type>
+  <wp:post_password/>
+  <wp:is_sticky>0</wp:is_sticky>
+  <wp:attachment_url>http://wpthemetestdata.files.wordpress.com/2008/06/img_0513-1.jpg</wp:attachment_url>
+  <wp:postmeta>
+    <wp:meta_key>_wp_attachment_image_alt</wp:meta_key>
+    <wp:meta_value><![CDATA[Huatulco Coastline]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_wp_attachment_image_alt</wp:meta_key>
+    <wp:meta_value><![CDATA[Huatulco Coastline]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_attachment_original_parent_id</wp:meta_key>
+    <wp:meta_value><![CDATA[555]]></wp:meta_value>
+  </wp:postmeta>
+</item>
+<item>
+  <title>Brazil Beach</title>
+  <link>http://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/img_0747/</link>
+  <pubDate>Fri, 15 Jul 2011 21:50:37 +0000</pubDate>
+  <dc:creator>themedemos</dc:creator>
+  <guid isPermaLink="false">http://wpthemetestdata.files.wordpress.com/2008/06/img_0747.jpg</guid>
+  <description/>
+  <content:encoded><![CDATA[Public domain via http://www.burningwell.org/gallery2/main.php?g2_view=dynamicalbum.UpdatesAlbum&amp;g2_itemId=25770]]></content:encoded>
+  <excerpt:encoded><![CDATA[Jericoacoara Ceara Brasil]]></excerpt:encoded>
+  <wp:post_id>769</wp:post_id>
+  <wp:post_date>2011-07-15 14:50:37</wp:post_date>
+  <wp:post_date_gmt>2011-07-15 21:50:37</wp:post_date_gmt>
+  <wp:comment_status>open</wp:comment_status>
+  <wp:ping_status>closed</wp:ping_status>
+  <wp:post_name>img_0747</wp:post_name>
+  <wp:status>inherit</wp:status>
+  <wp:post_parent>555</wp:post_parent>
+  <wp:menu_order>0</wp:menu_order>
+  <wp:post_type>attachment</wp:post_type>
+  <wp:post_password/>
+  <wp:is_sticky>0</wp:is_sticky>
+  <wp:attachment_url>http://wpthemetestdata.files.wordpress.com/2008/06/img_0747.jpg</wp:attachment_url>
+  <wp:postmeta>
+    <wp:meta_key>_wp_attachment_image_alt</wp:meta_key>
+    <wp:meta_value><![CDATA[Brazil Beach]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_wp_attachment_image_alt</wp:meta_key>
+    <wp:meta_value><![CDATA[Brazil Beach]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_attachment_original_parent_id</wp:meta_key>
+    <wp:meta_value><![CDATA[555]]></wp:meta_value>
+  </wp:postmeta>
+</item>
+<item>
+  <title>Huatulco Coastline</title>
+  <link>http://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/img_0767/</link>
+  <pubDate>Fri, 15 Jul 2011 21:51:19 +0000</pubDate>
+  <dc:creator>themedemos</dc:creator>
+  <guid isPermaLink="false">http://wpthemetestdata.files.wordpress.com/2008/06/img_0767.jpg</guid>
+  <description/>
+  <content:encoded><![CDATA[Public domain via http://www.burningwell.org/gallery2/v/Landscapes/ocean/IMG_0767.JPG.html]]></content:encoded>
+  <excerpt:encoded><![CDATA[Coastline in Huatulco, Oaxaca, Mexico]]></excerpt:encoded>
+  <wp:post_id>770</wp:post_id>
+  <wp:post_date>2011-07-15 14:51:19</wp:post_date>
+  <wp:post_date_gmt>2011-07-15 21:51:19</wp:post_date_gmt>
+  <wp:comment_status>open</wp:comment_status>
+  <wp:ping_status>closed</wp:ping_status>
+  <wp:post_name>img_0767</wp:post_name>
+  <wp:status>inherit</wp:status>
+  <wp:post_parent>555</wp:post_parent>
+  <wp:menu_order>0</wp:menu_order>
+  <wp:post_type>attachment</wp:post_type>
+  <wp:post_password/>
+  <wp:is_sticky>0</wp:is_sticky>
+  <wp:attachment_url>http://wpthemetestdata.files.wordpress.com/2008/06/img_0767.jpg</wp:attachment_url>
+  <wp:postmeta>
+    <wp:meta_key>_wp_attachment_image_alt</wp:meta_key>
+    <wp:meta_value><![CDATA[Huatulco Coastline]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_wp_attachment_image_alt</wp:meta_key>
+    <wp:meta_value><![CDATA[Huatulco Coastline]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_attachment_original_parent_id</wp:meta_key>
+    <wp:meta_value><![CDATA[555]]></wp:meta_value>
+  </wp:postmeta>
+</item>
+<item>
+  <title>Boat Barco Texture</title>
+  <link>http://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/img_8399/</link>
+  <pubDate>Fri, 15 Jul 2011 21:51:57 +0000</pubDate>
+  <dc:creator>themedemos</dc:creator>
+  <guid isPermaLink="false">http://wpthemetestdata.files.wordpress.com/2008/06/img_8399.jpg</guid>
+  <description/>
+  <content:encoded><![CDATA[Public domain via http://www.burningwell.org/gallery2/main.php?g2_view=dynamicalbum.UpdatesAlbum&amp;g2_itemId=25774]]></content:encoded>
+  <excerpt:encoded><![CDATA[Boat BW PB Barco Texture Beautiful Fishing]]></excerpt:encoded>
+  <wp:post_id>771</wp:post_id>
+  <wp:post_date>2011-07-15 14:51:57</wp:post_date>
+  <wp:post_date_gmt>2011-07-15 21:51:57</wp:post_date_gmt>
+  <wp:comment_status>open</wp:comment_status>
+  <wp:ping_status>closed</wp:ping_status>
+  <wp:post_name>img_8399</wp:post_name>
+  <wp:status>inherit</wp:status>
+  <wp:post_parent>555</wp:post_parent>
+  <wp:menu_order>0</wp:menu_order>
+  <wp:post_type>attachment</wp:post_type>
+  <wp:post_password/>
+  <wp:is_sticky>0</wp:is_sticky>
+  <wp:attachment_url>http://wpthemetestdata.files.wordpress.com/2008/06/img_8399.jpg</wp:attachment_url>
+  <wp:postmeta>
+    <wp:meta_key>_wp_attachment_image_alt</wp:meta_key>
+    <wp:meta_value><![CDATA[Boat Barco Texture]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_wp_attachment_image_alt</wp:meta_key>
+    <wp:meta_value><![CDATA[Boat Barco Texture]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_attachment_original_parent_id</wp:meta_key>
+    <wp:meta_value><![CDATA[555]]></wp:meta_value>
+  </wp:postmeta>
+</item>
+<item>
+  <title>dsc20040724_152504_532</title>
+  <link>http://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dsc20040724_152504_532-2/</link>
+  <pubDate>Mon, 04 Jun 2012 18:36:56 +0000</pubDate>
+  <dc:creator>themedemos</dc:creator>
+  <guid isPermaLink="false">https://wpthemetestdata.files.wordpress.com/2012/06/dsc20040724_152504_532.jpg</guid>
+  <description/>
+  <content:encoded><![CDATA[]]></content:encoded>
+  <excerpt:encoded><![CDATA[]]></excerpt:encoded>
+  <wp:post_id>807</wp:post_id>
+  <wp:post_date>2012-06-04 11:36:56</wp:post_date>
+  <wp:post_date_gmt>2012-06-04 18:36:56</wp:post_date_gmt>
+  <wp:comment_status>open</wp:comment_status>
+  <wp:ping_status>closed</wp:ping_status>
+  <wp:post_name>dsc20040724_152504_532-2</wp:post_name>
+  <wp:status>inherit</wp:status>
+  <wp:post_parent>555</wp:post_parent>
+  <wp:menu_order>0</wp:menu_order>
+  <wp:post_type>attachment</wp:post_type>
+  <wp:post_password/>
+  <wp:is_sticky>0</wp:is_sticky>
+  <wp:attachment_url>https://wpthemetestdata.files.wordpress.com/2012/06/dsc20040724_152504_532.jpg</wp:attachment_url>
+  <wp:postmeta>
+    <wp:meta_key>_attachment_original_parent_id</wp:meta_key>
+    <wp:meta_value><![CDATA[555]]></wp:meta_value>
+  </wp:postmeta>
+</item>
+<item>
+  <title>dsc20050604_133440_3421</title>
+  <link>http://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/dsc20050604_133440_3421/</link>
+  <pubDate>Mon, 04 Jun 2012 18:58:15 +0000</pubDate>
+  <dc:creator>themedemos</dc:creator>
+  <guid isPermaLink="false">https://wpthemetestdata.files.wordpress.com/2008/06/dsc20050604_133440_34211.jpg</guid>
+  <description/>
+  <content:encoded><![CDATA[]]></content:encoded>
+  <excerpt:encoded><![CDATA[]]></excerpt:encoded>
+  <wp:post_id>811</wp:post_id>
+  <wp:post_date>2012-06-04 11:58:15</wp:post_date>
+  <wp:post_date_gmt>2012-06-04 18:58:15</wp:post_date_gmt>
+  <wp:comment_status>open</wp:comment_status>
+  <wp:ping_status>closed</wp:ping_status>
+  <wp:post_name>dsc20050604_133440_3421</wp:post_name>
+  <wp:status>inherit</wp:status>
+  <wp:post_parent>555</wp:post_parent>
+  <wp:menu_order>0</wp:menu_order>
+  <wp:post_type>attachment</wp:post_type>
+  <wp:post_password/>
+  <wp:is_sticky>0</wp:is_sticky>
+  <wp:attachment_url>https://wpthemetestdata.files.wordpress.com/2008/06/dsc20050604_133440_34211.jpg</wp:attachment_url>
+  <wp:postmeta>
+    <wp:meta_key>_attachment_original_parent_id</wp:meta_key>
+    <wp:meta_value><![CDATA[555]]></wp:meta_value>
+  </wp:postmeta>
+</item>
+<item>
+  <title>St. Louis Blues</title>
+  <link>http://wpthemetestdata.wordpress.com/2010/07/02/post-format-audio/originaldixielandjazzbandwithalbernard-stlouisblues/</link>
+  <pubDate>Thu, 05 Jul 2012 16:49:29 +0000</pubDate>
+  <dc:creator>themedemos</dc:creator>
+  <guid isPermaLink="false">http://wpthemetestdata.files.wordpress.com/2008/06/originaldixielandjazzbandwithalbernard-stlouisblues.mp3</guid>
+  <description/>
+  <content:encoded><![CDATA[St. Louis Blues, by Original Dixieland Jazz Band with Al Bernard (public domain)]]></content:encoded>
+  <excerpt:encoded><![CDATA[St. Louis Blues, by Original Dixieland Jazz Band with Al Bernard (public domain)]]></excerpt:encoded>
+  <wp:post_id>821</wp:post_id>
+  <wp:post_date>2012-07-05 09:49:29</wp:post_date>
+  <wp:post_date_gmt>2012-07-05 16:49:29</wp:post_date_gmt>
+  <wp:comment_status>open</wp:comment_status>
+  <wp:ping_status>closed</wp:ping_status>
+  <wp:post_name>originaldixielandjazzbandwithalbernard-stlouisblues</wp:post_name>
+  <wp:status>inherit</wp:status>
+  <wp:post_parent>587</wp:post_parent>
+  <wp:menu_order>0</wp:menu_order>
+  <wp:post_type>attachment</wp:post_type>
+  <wp:post_password/>
+  <wp:is_sticky>0</wp:is_sticky>
+  <wp:attachment_url>http://wpthemetestdata.files.wordpress.com/2008/06/originaldixielandjazzbandwithalbernard-stlouisblues.mp3</wp:attachment_url>
+</item>
+<item>
+  <title>OLYMPUS DIGITAL CAMERA</title>
+  <link>http://wpthemetestdata.wordpress.com/about/clearing-floats/olympus-digital-camera/</link>
+  <pubDate>Thu, 05 Jul 2012 18:07:34 +0000</pubDate>
+  <dc:creator>themedemos</dc:creator>
+  <guid isPermaLink="false">http://wpthemetestdata.files.wordpress.com/2010/08/manhattansummer.jpg</guid>
+  <description/>
+  <content:encoded><![CDATA[]]></content:encoded>
+  <excerpt:encoded><![CDATA[]]></excerpt:encoded>
+  <wp:post_id>827</wp:post_id>
+  <wp:post_date>2012-07-05 11:07:34</wp:post_date>
+  <wp:post_date_gmt>2012-07-05 18:07:34</wp:post_date_gmt>
+  <wp:comment_status>open</wp:comment_status>
+  <wp:ping_status>closed</wp:ping_status>
+  <wp:post_name>olympus-digital-camera</wp:post_name>
+  <wp:status>inherit</wp:status>
+  <wp:post_parent>501</wp:post_parent>
+  <wp:menu_order>0</wp:menu_order>
+  <wp:post_type>attachment</wp:post_type>
+  <wp:post_password/>
+  <wp:is_sticky>0</wp:is_sticky>
+  <wp:attachment_url>http://wpthemetestdata.files.wordpress.com/2010/08/manhattansummer.jpg</wp:attachment_url>
+</item>
+<item>
+  <title>Image Alignment 580x300</title>
+  <link>http://wpthemetestdata.wordpress.com/2013/01/10/markup-image-alignment/image-alignment-580x300/</link>
+  <pubDate>Fri, 15 Mar 2013 00:44:50 +0000</pubDate>
+  <dc:creator>themedemos</dc:creator>
+  <guid isPermaLink="false">http://wpthemetestdata.files.wordpress.com/2013/03/image-alignment-580x300.jpg</guid>
+  <description/>
+  <content:encoded><![CDATA[]]></content:encoded>
+  <excerpt:encoded><![CDATA[]]></excerpt:encoded>
+  <wp:post_id>967</wp:post_id>
+  <wp:post_date>2013-03-14 19:44:50</wp:post_date>
+  <wp:post_date_gmt>2013-03-15 00:44:50</wp:post_date_gmt>
+  <wp:comment_status>open</wp:comment_status>
+  <wp:ping_status>open</wp:ping_status>
+  <wp:post_name>image-alignment-580x300</wp:post_name>
+  <wp:status>inherit</wp:status>
+  <wp:post_parent>1177</wp:post_parent>
+  <wp:menu_order>0</wp:menu_order>
+  <wp:post_type>attachment</wp:post_type>
+  <wp:post_password/>
+  <wp:is_sticky>0</wp:is_sticky>
+  <wp:attachment_url>http://wpthemetestdata.files.wordpress.com/2013/03/image-alignment-580x300.jpg</wp:attachment_url>
+  <wp:postmeta>
+    <wp:meta_key>pre_import_post_parent</wp:meta_key>
+    <wp:meta_value><![CDATA[0]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>pre_import_post_id</wp:meta_key>
+    <wp:meta_value><![CDATA[906]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_wp_attachment_image_alt</wp:meta_key>
+    <wp:meta_value><![CDATA[Image Alignment 580x300]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_attachment_original_parent_id</wp:meta_key>
+    <wp:meta_value><![CDATA[903]]></wp:meta_value>
+  </wp:postmeta>
+</item>
+<item>
+  <title>Image Alignment 150x150</title>
+  <link>http://wpthemetestdata.wordpress.com/2013/01/10/markup-image-alignment/image-alignment-150x150/</link>
+  <pubDate>Fri, 15 Mar 2013 00:44:49 +0000</pubDate>
+  <dc:creator>themedemos</dc:creator>
+  <guid isPermaLink="false">http://wpthemetestdata.files.wordpress.com/2013/03/image-alignment-150x150.jpg</guid>
+  <description/>
+  <content:encoded><![CDATA[]]></content:encoded>
+  <excerpt:encoded><![CDATA[]]></excerpt:encoded>
+  <wp:post_id>968</wp:post_id>
+  <wp:post_date>2013-03-14 19:44:49</wp:post_date>
+  <wp:post_date_gmt>2013-03-15 00:44:49</wp:post_date_gmt>
+  <wp:comment_status>open</wp:comment_status>
+  <wp:ping_status>open</wp:ping_status>
+  <wp:post_name>image-alignment-150x150</wp:post_name>
+  <wp:status>inherit</wp:status>
+  <wp:post_parent>1177</wp:post_parent>
+  <wp:menu_order>0</wp:menu_order>
+  <wp:post_type>attachment</wp:post_type>
+  <wp:post_password/>
+  <wp:is_sticky>0</wp:is_sticky>
+  <wp:attachment_url>http://wpthemetestdata.files.wordpress.com/2013/03/image-alignment-150x150.jpg</wp:attachment_url>
+  <wp:postmeta>
+    <wp:meta_key>pre_import_post_parent</wp:meta_key>
+    <wp:meta_value><![CDATA[0]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>pre_import_post_id</wp:meta_key>
+    <wp:meta_value><![CDATA[904]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_wp_attachment_image_alt</wp:meta_key>
+    <wp:meta_value><![CDATA[Image Alignment 150x150]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_attachment_original_parent_id</wp:meta_key>
+    <wp:meta_value><![CDATA[903]]></wp:meta_value>
+  </wp:postmeta>
+</item>
+<item>
+  <title>Horizontal Featured Image</title>
+  <link>http://wpthemetestdata.wordpress.com/2012/03/15/template-featured-image-horizontal/featured-image-horizontal-2/</link>
+  <pubDate>Fri, 15 Mar 2013 20:40:38 +0000</pubDate>
+  <dc:creator>themedemos</dc:creator>
+  <guid isPermaLink="false">http://wpthemetestdata.files.wordpress.com/2013/03/featured-image-horizontal.jpg</guid>
+  <description/>
+  <content:encoded><![CDATA[]]></content:encoded>
+  <excerpt:encoded><![CDATA[]]></excerpt:encoded>
+  <wp:post_id>1022</wp:post_id>
+  <wp:post_date>2013-03-15 15:40:38</wp:post_date>
+  <wp:post_date_gmt>2013-03-15 20:40:38</wp:post_date_gmt>
+  <wp:comment_status>open</wp:comment_status>
+  <wp:ping_status>open</wp:ping_status>
+  <wp:post_name>featured-image-horizontal-2</wp:post_name>
+  <wp:status>inherit</wp:status>
+  <wp:post_parent>1011</wp:post_parent>
+  <wp:menu_order>0</wp:menu_order>
+  <wp:post_type>attachment</wp:post_type>
+  <wp:post_password/>
+  <wp:is_sticky>0</wp:is_sticky>
+  <wp:attachment_url>http://wpthemetestdata.files.wordpress.com/2013/03/featured-image-horizontal.jpg</wp:attachment_url>
+  <wp:postmeta>
+    <wp:meta_key>pre_import_post_parent</wp:meta_key>
+    <wp:meta_value><![CDATA[0]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>pre_import_post_id</wp:meta_key>
+    <wp:meta_value><![CDATA[1022]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_wp_attachment_image_alt</wp:meta_key>
+    <wp:meta_value><![CDATA[Horizontal Featured Image]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_attachment_original_parent_id</wp:meta_key>
+    <wp:meta_value><![CDATA[1011]]></wp:meta_value>
+  </wp:postmeta>
+</item>
+<item>
+  <title>I Am Worth Loving Wallpaper</title>
+  <link>http://wpthemetestdata.wordpress.com/2013/01/10/markup-image-alignment/soworthloving-wallpaper/</link>
+  <pubDate>Thu, 14 Mar 2013 14:58:24 +0000</pubDate>
+  <dc:creator>themedemos</dc:creator>
+  <guid isPermaLink="false">http://wpthemetestdata.files.wordpress.com/2013/03/soworthloving-wallpaper.jpg</guid>
+  <description/>
+  <content:encoded><![CDATA[]]></content:encoded>
+  <excerpt:encoded><![CDATA[]]></excerpt:encoded>
+  <wp:post_id>1023</wp:post_id>
+  <wp:post_date>2013-03-14 09:58:24</wp:post_date>
+  <wp:post_date_gmt>2013-03-14 14:58:24</wp:post_date_gmt>
+  <wp:comment_status>open</wp:comment_status>
+  <wp:ping_status>open</wp:ping_status>
+  <wp:post_name>soworthloving-wallpaper</wp:post_name>
+  <wp:status>inherit</wp:status>
+  <wp:post_parent>1177</wp:post_parent>
+  <wp:menu_order>0</wp:menu_order>
+  <wp:post_type>attachment</wp:post_type>
+  <wp:post_password/>
+  <wp:is_sticky>0</wp:is_sticky>
+  <wp:attachment_url>http://wpthemetestdata.files.wordpress.com/2013/03/soworthloving-wallpaper.jpg</wp:attachment_url>
+  <wp:postmeta>
+    <wp:meta_key>pre_import_post_parent</wp:meta_key>
+    <wp:meta_value><![CDATA[0]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>pre_import_post_id</wp:meta_key>
+    <wp:meta_value><![CDATA[842]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_wp_attachment_image_alt</wp:meta_key>
+    <wp:meta_value><![CDATA[I Am Worth Loving Wallpaper]]></wp:meta_value>
+  </wp:postmeta>
+</item>
+<item>
+  <title>Image Alignment 300x200</title>
+  <link>http://wpthemetestdata.wordpress.com/2013/01/10/markup-image-alignment/image-alignment-300x200/</link>
+  <pubDate>Fri, 15 Mar 2013 00:44:49 +0000</pubDate>
+  <dc:creator>themedemos</dc:creator>
+  <guid isPermaLink="false">http://wpthemetestdata.files.wordpress.com/2013/03/image-alignment-300x200.jpg</guid>
+  <description/>
+  <content:encoded><![CDATA[]]></content:encoded>
+  <excerpt:encoded><![CDATA[]]></excerpt:encoded>
+  <wp:post_id>1025</wp:post_id>
+  <wp:post_date>2013-03-14 19:44:49</wp:post_date>
+  <wp:post_date_gmt>2013-03-15 00:44:49</wp:post_date_gmt>
+  <wp:comment_status>open</wp:comment_status>
+  <wp:ping_status>open</wp:ping_status>
+  <wp:post_name>image-alignment-300x200</wp:post_name>
+  <wp:status>inherit</wp:status>
+  <wp:post_parent>1177</wp:post_parent>
+  <wp:menu_order>0</wp:menu_order>
+  <wp:post_type>attachment</wp:post_type>
+  <wp:post_password/>
+  <wp:is_sticky>0</wp:is_sticky>
+  <wp:attachment_url>http://wpthemetestdata.files.wordpress.com/2013/03/image-alignment-300x200.jpg</wp:attachment_url>
+  <wp:postmeta>
+    <wp:meta_key>pre_import_post_parent</wp:meta_key>
+    <wp:meta_value><![CDATA[0]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>pre_import_post_id</wp:meta_key>
+    <wp:meta_value><![CDATA[905]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_wp_attachment_image_alt</wp:meta_key>
+    <wp:meta_value><![CDATA[Image Alignment 300x200]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_attachment_original_parent_id</wp:meta_key>
+    <wp:meta_value><![CDATA[903]]></wp:meta_value>
+  </wp:postmeta>
+</item>
+<item>
+  <title>Vertical Featured Image</title>
+  <link>http://wpthemetestdata.wordpress.com/2012/03/15/template-featured-image-vertical/featured-image-vertical-2/</link>
+  <pubDate>Fri, 15 Mar 2013 20:41:09 +0000</pubDate>
+  <dc:creator>themedemos</dc:creator>
+  <guid isPermaLink="false">http://wpthemetestdata.files.wordpress.com/2013/03/featured-image-vertical.jpg</guid>
+  <description/>
+  <content:encoded><![CDATA[]]></content:encoded>
+  <excerpt:encoded><![CDATA[]]></excerpt:encoded>
+  <wp:post_id>1027</wp:post_id>
+  <wp:post_date>2013-03-15 15:41:09</wp:post_date>
+  <wp:post_date_gmt>2013-03-15 20:41:09</wp:post_date_gmt>
+  <wp:comment_status>open</wp:comment_status>
+  <wp:ping_status>open</wp:ping_status>
+  <wp:post_name>featured-image-vertical-2</wp:post_name>
+  <wp:status>inherit</wp:status>
+  <wp:post_parent>1016</wp:post_parent>
+  <wp:menu_order>0</wp:menu_order>
+  <wp:post_type>attachment</wp:post_type>
+  <wp:post_password/>
+  <wp:is_sticky>0</wp:is_sticky>
+  <wp:attachment_url>http://wpthemetestdata.files.wordpress.com/2013/03/featured-image-vertical.jpg</wp:attachment_url>
+  <wp:postmeta>
+    <wp:meta_key>pre_import_post_parent</wp:meta_key>
+    <wp:meta_value><![CDATA[0]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>pre_import_post_id</wp:meta_key>
+    <wp:meta_value><![CDATA[1024]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_wp_attachment_image_alt</wp:meta_key>
+    <wp:meta_value><![CDATA[Horizontal Featured Image]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_attachment_original_parent_id</wp:meta_key>
+    <wp:meta_value><![CDATA[1016]]></wp:meta_value>
+  </wp:postmeta>
+</item>
+<item>
+  <title>Image Alignment 1200x4002</title>
+  <link>http://wpthemetestdata.wordpress.com/2013/01/10/markup-image-alignment/image-alignment-1200x4002/</link>
+  <pubDate>Fri, 15 Mar 2013 00:44:50 +0000</pubDate>
+  <dc:creator>themedemos</dc:creator>
+  <guid isPermaLink="false">http://wpthemetestdata.files.wordpress.com/2013/03/image-alignment-1200x4002.jpg</guid>
+  <description/>
+  <content:encoded><![CDATA[]]></content:encoded>
+  <excerpt:encoded><![CDATA[]]></excerpt:encoded>
+  <wp:post_id>1029</wp:post_id>
+  <wp:post_date>2013-03-14 19:44:50</wp:post_date>
+  <wp:post_date_gmt>2013-03-15 00:44:50</wp:post_date_gmt>
+  <wp:comment_status>open</wp:comment_status>
+  <wp:ping_status>open</wp:ping_status>
+  <wp:post_name>image-alignment-1200x4002</wp:post_name>
+  <wp:status>inherit</wp:status>
+  <wp:post_parent>1177</wp:post_parent>
+  <wp:menu_order>0</wp:menu_order>
+  <wp:post_type>attachment</wp:post_type>
+  <wp:post_password/>
+  <wp:is_sticky>0</wp:is_sticky>
+  <wp:attachment_url>http://wpthemetestdata.files.wordpress.com/2013/03/image-alignment-1200x4002.jpg</wp:attachment_url>
+  <wp:postmeta>
+    <wp:meta_key>pre_import_post_parent</wp:meta_key>
+    <wp:meta_value><![CDATA[0]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>pre_import_post_id</wp:meta_key>
+    <wp:meta_value><![CDATA[907]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_wp_attachment_image_alt</wp:meta_key>
+    <wp:meta_value><![CDATA[Image Alignment 1200x4002]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_attachment_original_parent_id</wp:meta_key>
+    <wp:meta_value><![CDATA[903]]></wp:meta_value>
+  </wp:postmeta>
+</item>
+<item>
+  <title>Unicorn Wallpaper</title>
+  <link>http://wpthemetestdata.wordpress.com/2010/08/08/post-format-image/unicorn-wallpaper/</link>
+  <pubDate>Fri, 15 Mar 2013 03:10:39 +0000</pubDate>
+  <dc:creator>themedemos</dc:creator>
+  <guid isPermaLink="false">http://wpthemetestdata.files.wordpress.com/2012/12/unicorn-wallpaper.jpg</guid>
+  <description/>
+  <content:encoded><![CDATA[]]></content:encoded>
+  <excerpt:encoded><![CDATA[]]></excerpt:encoded>
+  <wp:post_id>1045</wp:post_id>
+  <wp:post_date>2013-03-14 22:10:39</wp:post_date>
+  <wp:post_date_gmt>2013-03-15 03:10:39</wp:post_date_gmt>
+  <wp:comment_status>open</wp:comment_status>
+  <wp:ping_status>open</wp:ping_status>
+  <wp:post_name>unicorn-wallpaper</wp:post_name>
+  <wp:status>inherit</wp:status>
+  <wp:post_parent>1158</wp:post_parent>
+  <wp:menu_order>0</wp:menu_order>
+  <wp:post_type>attachment</wp:post_type>
+  <wp:post_password/>
+  <wp:is_sticky>0</wp:is_sticky>
+  <wp:attachment_url>http://wpthemetestdata.files.wordpress.com/2012/12/unicorn-wallpaper.jpg</wp:attachment_url>
+  <wp:postmeta>
+    <wp:meta_key>pre_import_post_parent</wp:meta_key>
+    <wp:meta_value><![CDATA[0]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>pre_import_post_id</wp:meta_key>
+    <wp:meta_value><![CDATA[967]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_wp_attachment_image_alt</wp:meta_key>
+    <wp:meta_value><![CDATA[Unicorn Wallpaper]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_attachment_original_parent_id</wp:meta_key>
+    <wp:meta_value><![CDATA[568]]></wp:meta_value>
+  </wp:postmeta>
+</item>
+<item>
+  <title>Pages</title>
+  <link>http://wpthemetestdata.wordpress.com/2013/04/09/pages/</link>
+  <pubDate>Tue, 09 Apr 2013 13:37:45 +0000</pubDate>
+  <dc:creator>chipbennett</dc:creator>
+  <guid isPermaLink="false">http://wpthemetestdata.wordpress.com/2013/04/09/pages</guid>
+  <description/>
+  <content:encoded><![CDATA[]]></content:encoded>
+  <excerpt:encoded><![CDATA[]]></excerpt:encoded>
+  <wp:post_id>1100</wp:post_id>
+  <wp:post_date>2013-04-09 06:37:45</wp:post_date>
+  <wp:post_date_gmt>2013-04-09 13:37:45</wp:post_date_gmt>
+  <wp:comment_status>open</wp:comment_status>
+  <wp:ping_status>closed</wp:ping_status>
+  <wp:post_name>pages</wp:post_name>
+  <wp:status>publish</wp:status>
+  <wp:post_parent>0</wp:post_parent>
+  <wp:menu_order>2</wp:menu_order>
+  <wp:post_type>nav_menu_item</wp:post_type>
+  <wp:post_password/>
+  <wp:is_sticky>0</wp:is_sticky>
+  <category domain="nav_menu" nicename="testing-menu"><![CDATA[Testing Menu]]></category>
+  <wp:postmeta>
+    <wp:meta_key>_publicize_pending</wp:meta_key>
+    <wp:meta_value><![CDATA[1]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_type</wp:meta_key>
+    <wp:meta_value><![CDATA[custom]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key>
+    <wp:meta_value><![CDATA[0]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_object_id</wp:meta_key>
+    <wp:meta_value><![CDATA[1100]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_object</wp:meta_key>
+    <wp:meta_value><![CDATA[custom]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_target</wp:meta_key>
+    <wp:meta_value><![CDATA[]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_classes</wp:meta_key>
+    <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_xfn</wp:meta_key>
+    <wp:meta_value><![CDATA[]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_url</wp:meta_key>
+    <wp:meta_value><![CDATA[#]]></wp:meta_value>
+  </wp:postmeta>
+</item>
+<item>
+  <title>Categories</title>
+  <link>http://wpthemetestdata.wordpress.com/2013/04/09/categories/</link>
+  <pubDate>Tue, 09 Apr 2013 13:37:45 +0000</pubDate>
+  <dc:creator>chipbennett</dc:creator>
+  <guid isPermaLink="false">http://wpthemetestdata.wordpress.com/2013/04/09/categories</guid>
+  <description/>
+  <content:encoded><![CDATA[]]></content:encoded>
+  <excerpt:encoded><![CDATA[]]></excerpt:encoded>
+  <wp:post_id>1101</wp:post_id>
+  <wp:post_date>2013-04-09 06:37:45</wp:post_date>
+  <wp:post_date_gmt>2013-04-09 13:37:45</wp:post_date_gmt>
+  <wp:comment_status>open</wp:comment_status>
+  <wp:ping_status>closed</wp:ping_status>
+  <wp:post_name>categories</wp:post_name>
+  <wp:status>publish</wp:status>
+  <wp:post_parent>0</wp:post_parent>
+  <wp:menu_order>10</wp:menu_order>
+  <wp:post_type>nav_menu_item</wp:post_type>
+  <wp:post_password/>
+  <wp:is_sticky>0</wp:is_sticky>
+  <category domain="nav_menu" nicename="testing-menu"><![CDATA[Testing Menu]]></category>
+  <wp:postmeta>
+    <wp:meta_key>_publicize_pending</wp:meta_key>
+    <wp:meta_value><![CDATA[1]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_type</wp:meta_key>
+    <wp:meta_value><![CDATA[custom]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key>
+    <wp:meta_value><![CDATA[0]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_object_id</wp:meta_key>
+    <wp:meta_value><![CDATA[1101]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_object</wp:meta_key>
+    <wp:meta_value><![CDATA[custom]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_target</wp:meta_key>
+    <wp:meta_value><![CDATA[]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_classes</wp:meta_key>
+    <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_xfn</wp:meta_key>
+    <wp:meta_value><![CDATA[]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_url</wp:meta_key>
+    <wp:meta_value><![CDATA[#]]></wp:meta_value>
+  </wp:postmeta>
+</item>
+<item>
+  <title/>
+  <link>http://wpthemetestdata.wordpress.com/2013/04/09/1112/</link>
+  <pubDate>Tue, 09 Apr 2013 13:37:46 +0000</pubDate>
+  <dc:creator>chipbennett</dc:creator>
+  <guid isPermaLink="false">http://wpthemetestdata.wordpress.com/2013/04/09/1112</guid>
+  <description/>
+  <content:encoded><![CDATA[Posts in this category test markup tags and styles.]]></content:encoded>
+  <excerpt:encoded><![CDATA[]]></excerpt:encoded>
+  <wp:post_id>1112</wp:post_id>
+  <wp:post_date>2013-04-09 06:37:46</wp:post_date>
+  <wp:post_date_gmt>2013-04-09 13:37:46</wp:post_date_gmt>
+  <wp:comment_status>open</wp:comment_status>
+  <wp:ping_status>closed</wp:ping_status>
+  <wp:post_name>1112</wp:post_name>
+  <wp:status>publish</wp:status>
+  <wp:post_parent>0</wp:post_parent>
+  <wp:menu_order>21</wp:menu_order>
+  <wp:post_type>nav_menu_item</wp:post_type>
+  <wp:post_password/>
+  <wp:is_sticky>0</wp:is_sticky>
+  <category domain="nav_menu" nicename="testing-menu"><![CDATA[Testing Menu]]></category>
+  <wp:postmeta>
+    <wp:meta_key>_publicize_pending</wp:meta_key>
+    <wp:meta_value><![CDATA[1]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_type</wp:meta_key>
+    <wp:meta_value><![CDATA[taxonomy]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key>
+    <wp:meta_value><![CDATA[1101]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_object_id</wp:meta_key>
+    <wp:meta_value><![CDATA[4675]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_object</wp:meta_key>
+    <wp:meta_value><![CDATA[category]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_target</wp:meta_key>
+    <wp:meta_value><![CDATA[]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_classes</wp:meta_key>
+    <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_xfn</wp:meta_key>
+    <wp:meta_value><![CDATA[]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_url</wp:meta_key>
+    <wp:meta_value><![CDATA[]]></wp:meta_value>
+  </wp:postmeta>
+</item>
+<item>
+  <title/>
+  <link>http://wpthemetestdata.wordpress.com/2013/04/09/1115/</link>
+  <pubDate>Tue, 09 Apr 2013 13:37:46 +0000</pubDate>
+  <dc:creator>chipbennett</dc:creator>
+  <guid isPermaLink="false">http://wpthemetestdata.wordpress.com/2013/04/09/1115</guid>
+  <description/>
+  <content:encoded><![CDATA[Posts in this category test post formats.]]></content:encoded>
+  <excerpt:encoded><![CDATA[]]></excerpt:encoded>
+  <wp:post_id>1115</wp:post_id>
+  <wp:post_date>2013-04-09 06:37:46</wp:post_date>
+  <wp:post_date_gmt>2013-04-09 13:37:46</wp:post_date_gmt>
+  <wp:comment_status>open</wp:comment_status>
+  <wp:ping_status>closed</wp:ping_status>
+  <wp:post_name>1115</wp:post_name>
+  <wp:status>publish</wp:status>
+  <wp:post_parent>0</wp:post_parent>
+  <wp:menu_order>24</wp:menu_order>
+  <wp:post_type>nav_menu_item</wp:post_type>
+  <wp:post_password/>
+  <wp:is_sticky>0</wp:is_sticky>
+  <category domain="nav_menu" nicename="testing-menu"><![CDATA[Testing Menu]]></category>
+  <wp:postmeta>
+    <wp:meta_key>_publicize_pending</wp:meta_key>
+    <wp:meta_value><![CDATA[1]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_type</wp:meta_key>
+    <wp:meta_value><![CDATA[taxonomy]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key>
+    <wp:meta_value><![CDATA[1101]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_object_id</wp:meta_key>
+    <wp:meta_value><![CDATA[44090582]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_object</wp:meta_key>
+    <wp:meta_value><![CDATA[category]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_target</wp:meta_key>
+    <wp:meta_value><![CDATA[]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_classes</wp:meta_key>
+    <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_xfn</wp:meta_key>
+    <wp:meta_value><![CDATA[]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_url</wp:meta_key>
+    <wp:meta_value><![CDATA[]]></wp:meta_value>
+  </wp:postmeta>
+</item>
+<item>
+  <title/>
+  <link>http://wpthemetestdata.wordpress.com/2013/04/09/1118/</link>
+  <pubDate>Tue, 09 Apr 2013 13:37:46 +0000</pubDate>
+  <dc:creator>chipbennett</dc:creator>
+  <guid isPermaLink="false">http://wpthemetestdata.wordpress.com/2013/04/09/1118</guid>
+  <description/>
+  <content:encoded><![CDATA[Posts in this category test unpublished posts.]]></content:encoded>
+  <excerpt:encoded><![CDATA[]]></excerpt:encoded>
+  <wp:post_id>1118</wp:post_id>
+  <wp:post_date>2013-04-09 06:37:46</wp:post_date>
+  <wp:post_date_gmt>2013-04-09 13:37:46</wp:post_date_gmt>
+  <wp:comment_status>open</wp:comment_status>
+  <wp:ping_status>closed</wp:ping_status>
+  <wp:post_name>1118</wp:post_name>
+  <wp:status>publish</wp:status>
+  <wp:post_parent>0</wp:post_parent>
+  <wp:menu_order>28</wp:menu_order>
+  <wp:post_type>nav_menu_item</wp:post_type>
+  <wp:post_password/>
+  <wp:is_sticky>0</wp:is_sticky>
+  <category domain="nav_menu" nicename="testing-menu"><![CDATA[Testing Menu]]></category>
+  <wp:postmeta>
+    <wp:meta_key>_publicize_pending</wp:meta_key>
+    <wp:meta_value><![CDATA[1]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_type</wp:meta_key>
+    <wp:meta_value><![CDATA[taxonomy]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key>
+    <wp:meta_value><![CDATA[1101]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_object_id</wp:meta_key>
+    <wp:meta_value><![CDATA[54090]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_object</wp:meta_key>
+    <wp:meta_value><![CDATA[category]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_target</wp:meta_key>
+    <wp:meta_value><![CDATA[]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_classes</wp:meta_key>
+    <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_xfn</wp:meta_key>
+    <wp:meta_value><![CDATA[]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_url</wp:meta_key>
+    <wp:meta_value><![CDATA[]]></wp:meta_value>
+  </wp:postmeta>
+</item>
+<item>
+  <title>Depth</title>
+  <link>http://wpthemetestdata.wordpress.com/2013/04/09/depth/</link>
+  <pubDate>Tue, 09 Apr 2013 13:37:46 +0000</pubDate>
+  <dc:creator>chipbennett</dc:creator>
+  <guid isPermaLink="false">http://wpthemetestdata.wordpress.com/2013/04/09/depth</guid>
+  <description/>
+  <content:encoded><![CDATA[]]></content:encoded>
+  <excerpt:encoded><![CDATA[]]></excerpt:encoded>
+  <wp:post_id>1119</wp:post_id>
+  <wp:post_date>2013-04-09 06:37:46</wp:post_date>
+  <wp:post_date_gmt>2013-04-09 13:37:46</wp:post_date_gmt>
+  <wp:comment_status>open</wp:comment_status>
+  <wp:ping_status>closed</wp:ping_status>
+  <wp:post_name>depth</wp:post_name>
+  <wp:status>publish</wp:status>
+  <wp:post_parent>0</wp:post_parent>
+  <wp:menu_order>29</wp:menu_order>
+  <wp:post_type>nav_menu_item</wp:post_type>
+  <wp:post_password/>
+  <wp:is_sticky>0</wp:is_sticky>
+  <category domain="nav_menu" nicename="testing-menu"><![CDATA[Testing Menu]]></category>
+  <wp:postmeta>
+    <wp:meta_key>_publicize_pending</wp:meta_key>
+    <wp:meta_value><![CDATA[1]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_type</wp:meta_key>
+    <wp:meta_value><![CDATA[custom]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key>
+    <wp:meta_value><![CDATA[0]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_object_id</wp:meta_key>
+    <wp:meta_value><![CDATA[1119]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_object</wp:meta_key>
+    <wp:meta_value><![CDATA[custom]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_target</wp:meta_key>
+    <wp:meta_value><![CDATA[]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_classes</wp:meta_key>
+    <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_xfn</wp:meta_key>
+    <wp:meta_value><![CDATA[]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_url</wp:meta_key>
+    <wp:meta_value><![CDATA[#]]></wp:meta_value>
+  </wp:postmeta>
+</item>
+<item>
+  <title>Level 01</title>
+  <link>http://wpthemetestdata.wordpress.com/2013/04/09/level-01/</link>
+  <pubDate>Tue, 09 Apr 2013 13:37:47 +0000</pubDate>
+  <dc:creator>chipbennett</dc:creator>
+  <guid isPermaLink="false">http://wpthemetestdata.wordpress.com/2013/04/09/level-01</guid>
+  <description/>
+  <content:encoded><![CDATA[]]></content:encoded>
+  <excerpt:encoded><![CDATA[]]></excerpt:encoded>
+  <wp:post_id>1120</wp:post_id>
+  <wp:post_date>2013-04-09 06:37:47</wp:post_date>
+  <wp:post_date_gmt>2013-04-09 13:37:47</wp:post_date_gmt>
+  <wp:comment_status>open</wp:comment_status>
+  <wp:ping_status>closed</wp:ping_status>
+  <wp:post_name>level-01</wp:post_name>
+  <wp:status>publish</wp:status>
+  <wp:post_parent>0</wp:post_parent>
+  <wp:menu_order>30</wp:menu_order>
+  <wp:post_type>nav_menu_item</wp:post_type>
+  <wp:post_password/>
+  <wp:is_sticky>0</wp:is_sticky>
+  <category domain="nav_menu" nicename="testing-menu"><![CDATA[Testing Menu]]></category>
+  <wp:postmeta>
+    <wp:meta_key>_publicize_pending</wp:meta_key>
+    <wp:meta_value><![CDATA[1]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_type</wp:meta_key>
+    <wp:meta_value><![CDATA[custom]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key>
+    <wp:meta_value><![CDATA[1119]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_object_id</wp:meta_key>
+    <wp:meta_value><![CDATA[1120]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_object</wp:meta_key>
+    <wp:meta_value><![CDATA[custom]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_target</wp:meta_key>
+    <wp:meta_value><![CDATA[]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_classes</wp:meta_key>
+    <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_xfn</wp:meta_key>
+    <wp:meta_value><![CDATA[]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_url</wp:meta_key>
+    <wp:meta_value><![CDATA[#]]></wp:meta_value>
+  </wp:postmeta>
+</item>
+<item>
+  <title>Level 02</title>
+  <link>http://wpthemetestdata.wordpress.com/2013/04/09/level-02/</link>
+  <pubDate>Tue, 09 Apr 2013 13:37:47 +0000</pubDate>
+  <dc:creator>chipbennett</dc:creator>
+  <guid isPermaLink="false">http://wpthemetestdata.wordpress.com/2013/04/09/level-02</guid>
+  <description/>
+  <content:encoded><![CDATA[]]></content:encoded>
+  <excerpt:encoded><![CDATA[]]></excerpt:encoded>
+  <wp:post_id>1121</wp:post_id>
+  <wp:post_date>2013-04-09 06:37:47</wp:post_date>
+  <wp:post_date_gmt>2013-04-09 13:37:47</wp:post_date_gmt>
+  <wp:comment_status>open</wp:comment_status>
+  <wp:ping_status>closed</wp:ping_status>
+  <wp:post_name>level-02</wp:post_name>
+  <wp:status>publish</wp:status>
+  <wp:post_parent>0</wp:post_parent>
+  <wp:menu_order>31</wp:menu_order>
+  <wp:post_type>nav_menu_item</wp:post_type>
+  <wp:post_password/>
+  <wp:is_sticky>0</wp:is_sticky>
+  <category domain="nav_menu" nicename="testing-menu"><![CDATA[Testing Menu]]></category>
+  <wp:postmeta>
+    <wp:meta_key>_publicize_pending</wp:meta_key>
+    <wp:meta_value><![CDATA[1]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_type</wp:meta_key>
+    <wp:meta_value><![CDATA[custom]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key>
+    <wp:meta_value><![CDATA[1120]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_object_id</wp:meta_key>
+    <wp:meta_value><![CDATA[1121]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_object</wp:meta_key>
+    <wp:meta_value><![CDATA[custom]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_target</wp:meta_key>
+    <wp:meta_value><![CDATA[]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_classes</wp:meta_key>
+    <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_xfn</wp:meta_key>
+    <wp:meta_value><![CDATA[]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_url</wp:meta_key>
+    <wp:meta_value><![CDATA[#]]></wp:meta_value>
+  </wp:postmeta>
+</item>
+<item>
+  <title>Level 03</title>
+  <link>http://wpthemetestdata.wordpress.com/2013/04/09/level-03/</link>
+  <pubDate>Tue, 09 Apr 2013 13:37:47 +0000</pubDate>
+  <dc:creator>chipbennett</dc:creator>
+  <guid isPermaLink="false">http://wpthemetestdata.wordpress.com/2013/04/09/level-03</guid>
+  <description/>
+  <content:encoded><![CDATA[]]></content:encoded>
+  <excerpt:encoded><![CDATA[]]></excerpt:encoded>
+  <wp:post_id>1122</wp:post_id>
+  <wp:post_date>2013-04-09 06:37:47</wp:post_date>
+  <wp:post_date_gmt>2013-04-09 13:37:47</wp:post_date_gmt>
+  <wp:comment_status>open</wp:comment_status>
+  <wp:ping_status>closed</wp:ping_status>
+  <wp:post_name>level-03</wp:post_name>
+  <wp:status>publish</wp:status>
+  <wp:post_parent>0</wp:post_parent>
+  <wp:menu_order>32</wp:menu_order>
+  <wp:post_type>nav_menu_item</wp:post_type>
+  <wp:post_password/>
+  <wp:is_sticky>0</wp:is_sticky>
+  <category domain="nav_menu" nicename="testing-menu"><![CDATA[Testing Menu]]></category>
+  <wp:postmeta>
+    <wp:meta_key>_publicize_pending</wp:meta_key>
+    <wp:meta_value><![CDATA[1]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_type</wp:meta_key>
+    <wp:meta_value><![CDATA[custom]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key>
+    <wp:meta_value><![CDATA[1121]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_object_id</wp:meta_key>
+    <wp:meta_value><![CDATA[1122]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_object</wp:meta_key>
+    <wp:meta_value><![CDATA[custom]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_target</wp:meta_key>
+    <wp:meta_value><![CDATA[]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_classes</wp:meta_key>
+    <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_xfn</wp:meta_key>
+    <wp:meta_value><![CDATA[]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_url</wp:meta_key>
+    <wp:meta_value><![CDATA[#]]></wp:meta_value>
+  </wp:postmeta>
+</item>
+<item>
+  <title>Level 04</title>
+  <link>http://wpthemetestdata.wordpress.com/2013/04/09/level-04/</link>
+  <pubDate>Tue, 09 Apr 2013 13:37:47 +0000</pubDate>
+  <dc:creator>chipbennett</dc:creator>
+  <guid isPermaLink="false">http://wpthemetestdata.wordpress.com/2013/04/09/level-04</guid>
+  <description/>
+  <content:encoded><![CDATA[]]></content:encoded>
+  <excerpt:encoded><![CDATA[]]></excerpt:encoded>
+  <wp:post_id>1123</wp:post_id>
+  <wp:post_date>2013-04-09 06:37:47</wp:post_date>
+  <wp:post_date_gmt>2013-04-09 13:37:47</wp:post_date_gmt>
+  <wp:comment_status>open</wp:comment_status>
+  <wp:ping_status>closed</wp:ping_status>
+  <wp:post_name>level-04</wp:post_name>
+  <wp:status>publish</wp:status>
+  <wp:post_parent>0</wp:post_parent>
+  <wp:menu_order>33</wp:menu_order>
+  <wp:post_type>nav_menu_item</wp:post_type>
+  <wp:post_password/>
+  <wp:is_sticky>0</wp:is_sticky>
+  <category domain="nav_menu" nicename="testing-menu"><![CDATA[Testing Menu]]></category>
+  <wp:postmeta>
+    <wp:meta_key>_publicize_pending</wp:meta_key>
+    <wp:meta_value><![CDATA[1]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_type</wp:meta_key>
+    <wp:meta_value><![CDATA[custom]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key>
+    <wp:meta_value><![CDATA[1122]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_object_id</wp:meta_key>
+    <wp:meta_value><![CDATA[1123]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_object</wp:meta_key>
+    <wp:meta_value><![CDATA[custom]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_target</wp:meta_key>
+    <wp:meta_value><![CDATA[]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_classes</wp:meta_key>
+    <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_xfn</wp:meta_key>
+    <wp:meta_value><![CDATA[]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_url</wp:meta_key>
+    <wp:meta_value><![CDATA[#]]></wp:meta_value>
+  </wp:postmeta>
+</item>
+<item>
+  <title>Level 05</title>
+  <link>http://wpthemetestdata.wordpress.com/2013/04/09/level-05/</link>
+  <pubDate>Tue, 09 Apr 2013 13:37:47 +0000</pubDate>
+  <dc:creator>chipbennett</dc:creator>
+  <guid isPermaLink="false">http://wpthemetestdata.wordpress.com/2013/04/09/level-05</guid>
+  <description/>
+  <content:encoded><![CDATA[]]></content:encoded>
+  <excerpt:encoded><![CDATA[]]></excerpt:encoded>
+  <wp:post_id>1124</wp:post_id>
+  <wp:post_date>2013-04-09 06:37:47</wp:post_date>
+  <wp:post_date_gmt>2013-04-09 13:37:47</wp:post_date_gmt>
+  <wp:comment_status>open</wp:comment_status>
+  <wp:ping_status>closed</wp:ping_status>
+  <wp:post_name>level-05</wp:post_name>
+  <wp:status>publish</wp:status>
+  <wp:post_parent>0</wp:post_parent>
+  <wp:menu_order>34</wp:menu_order>
+  <wp:post_type>nav_menu_item</wp:post_type>
+  <wp:post_password/>
+  <wp:is_sticky>0</wp:is_sticky>
+  <category domain="nav_menu" nicename="testing-menu"><![CDATA[Testing Menu]]></category>
+  <wp:postmeta>
+    <wp:meta_key>_publicize_pending</wp:meta_key>
+    <wp:meta_value><![CDATA[1]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_type</wp:meta_key>
+    <wp:meta_value><![CDATA[custom]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key>
+    <wp:meta_value><![CDATA[1123]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_object_id</wp:meta_key>
+    <wp:meta_value><![CDATA[1124]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_object</wp:meta_key>
+    <wp:meta_value><![CDATA[custom]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_target</wp:meta_key>
+    <wp:meta_value><![CDATA[]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_classes</wp:meta_key>
+    <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_xfn</wp:meta_key>
+    <wp:meta_value><![CDATA[]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_url</wp:meta_key>
+    <wp:meta_value><![CDATA[#]]></wp:meta_value>
+  </wp:postmeta>
+</item>
+<item>
+  <title>Level 06</title>
+  <link>http://wpthemetestdata.wordpress.com/2013/04/09/level-06/</link>
+  <pubDate>Tue, 09 Apr 2013 13:37:49 +0000</pubDate>
+  <dc:creator>chipbennett</dc:creator>
+  <guid isPermaLink="false">http://wpthemetestdata.wordpress.com/2013/04/09/level-06</guid>
+  <description/>
+  <content:encoded><![CDATA[]]></content:encoded>
+  <excerpt:encoded><![CDATA[]]></excerpt:encoded>
+  <wp:post_id>1125</wp:post_id>
+  <wp:post_date>2013-04-09 06:37:49</wp:post_date>
+  <wp:post_date_gmt>2013-04-09 13:37:49</wp:post_date_gmt>
+  <wp:comment_status>open</wp:comment_status>
+  <wp:ping_status>closed</wp:ping_status>
+  <wp:post_name>level-06</wp:post_name>
+  <wp:status>publish</wp:status>
+  <wp:post_parent>0</wp:post_parent>
+  <wp:menu_order>35</wp:menu_order>
+  <wp:post_type>nav_menu_item</wp:post_type>
+  <wp:post_password/>
+  <wp:is_sticky>0</wp:is_sticky>
+  <category domain="nav_menu" nicename="testing-menu"><![CDATA[Testing Menu]]></category>
+  <wp:postmeta>
+    <wp:meta_key>_publicize_pending</wp:meta_key>
+    <wp:meta_value><![CDATA[1]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_type</wp:meta_key>
+    <wp:meta_value><![CDATA[custom]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key>
+    <wp:meta_value><![CDATA[1124]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_object_id</wp:meta_key>
+    <wp:meta_value><![CDATA[1125]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_object</wp:meta_key>
+    <wp:meta_value><![CDATA[custom]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_target</wp:meta_key>
+    <wp:meta_value><![CDATA[]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_classes</wp:meta_key>
+    <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_xfn</wp:meta_key>
+    <wp:meta_value><![CDATA[]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_url</wp:meta_key>
+    <wp:meta_value><![CDATA[#]]></wp:meta_value>
+  </wp:postmeta>
+</item>
+<item>
+  <title>Level 07</title>
+  <link>http://wpthemetestdata.wordpress.com/2013/04/09/level-07/</link>
+  <pubDate>Tue, 09 Apr 2013 13:37:49 +0000</pubDate>
+  <dc:creator>chipbennett</dc:creator>
+  <guid isPermaLink="false">http://wpthemetestdata.wordpress.com/2013/04/09/level-07</guid>
+  <description/>
+  <content:encoded><![CDATA[]]></content:encoded>
+  <excerpt:encoded><![CDATA[]]></excerpt:encoded>
+  <wp:post_id>1126</wp:post_id>
+  <wp:post_date>2013-04-09 06:37:49</wp:post_date>
+  <wp:post_date_gmt>2013-04-09 13:37:49</wp:post_date_gmt>
+  <wp:comment_status>open</wp:comment_status>
+  <wp:ping_status>closed</wp:ping_status>
+  <wp:post_name>level-07</wp:post_name>
+  <wp:status>publish</wp:status>
+  <wp:post_parent>0</wp:post_parent>
+  <wp:menu_order>36</wp:menu_order>
+  <wp:post_type>nav_menu_item</wp:post_type>
+  <wp:post_password/>
+  <wp:is_sticky>0</wp:is_sticky>
+  <category domain="nav_menu" nicename="testing-menu"><![CDATA[Testing Menu]]></category>
+  <wp:postmeta>
+    <wp:meta_key>_publicize_pending</wp:meta_key>
+    <wp:meta_value><![CDATA[1]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_type</wp:meta_key>
+    <wp:meta_value><![CDATA[custom]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key>
+    <wp:meta_value><![CDATA[1125]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_object_id</wp:meta_key>
+    <wp:meta_value><![CDATA[1126]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_object</wp:meta_key>
+    <wp:meta_value><![CDATA[custom]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_target</wp:meta_key>
+    <wp:meta_value><![CDATA[]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_classes</wp:meta_key>
+    <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_xfn</wp:meta_key>
+    <wp:meta_value><![CDATA[]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_url</wp:meta_key>
+    <wp:meta_value><![CDATA[#]]></wp:meta_value>
+  </wp:postmeta>
+</item>
+<item>
+  <title>Level 08</title>
+  <link>http://wpthemetestdata.wordpress.com/2013/04/09/level-08/</link>
+  <pubDate>Tue, 09 Apr 2013 13:37:49 +0000</pubDate>
+  <dc:creator>chipbennett</dc:creator>
+  <guid isPermaLink="false">http://wpthemetestdata.wordpress.com/2013/04/09/level-08</guid>
+  <description/>
+  <content:encoded><![CDATA[]]></content:encoded>
+  <excerpt:encoded><![CDATA[]]></excerpt:encoded>
+  <wp:post_id>1127</wp:post_id>
+  <wp:post_date>2013-04-09 06:37:49</wp:post_date>
+  <wp:post_date_gmt>2013-04-09 13:37:49</wp:post_date_gmt>
+  <wp:comment_status>open</wp:comment_status>
+  <wp:ping_status>closed</wp:ping_status>
+  <wp:post_name>level-08</wp:post_name>
+  <wp:status>publish</wp:status>
+  <wp:post_parent>0</wp:post_parent>
+  <wp:menu_order>37</wp:menu_order>
+  <wp:post_type>nav_menu_item</wp:post_type>
+  <wp:post_password/>
+  <wp:is_sticky>0</wp:is_sticky>
+  <category domain="nav_menu" nicename="testing-menu"><![CDATA[Testing Menu]]></category>
+  <wp:postmeta>
+    <wp:meta_key>_publicize_pending</wp:meta_key>
+    <wp:meta_value><![CDATA[1]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_type</wp:meta_key>
+    <wp:meta_value><![CDATA[custom]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key>
+    <wp:meta_value><![CDATA[1126]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_object_id</wp:meta_key>
+    <wp:meta_value><![CDATA[1127]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_object</wp:meta_key>
+    <wp:meta_value><![CDATA[custom]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_target</wp:meta_key>
+    <wp:meta_value><![CDATA[]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_classes</wp:meta_key>
+    <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_xfn</wp:meta_key>
+    <wp:meta_value><![CDATA[]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_url</wp:meta_key>
+    <wp:meta_value><![CDATA[#]]></wp:meta_value>
+  </wp:postmeta>
+</item>
+<item>
+  <title>Level 09</title>
+  <link>http://wpthemetestdata.wordpress.com/2013/04/09/level-09/</link>
+  <pubDate>Tue, 09 Apr 2013 13:37:49 +0000</pubDate>
+  <dc:creator>chipbennett</dc:creator>
+  <guid isPermaLink="false">http://wpthemetestdata.wordpress.com/2013/04/09/level-09</guid>
+  <description/>
+  <content:encoded><![CDATA[]]></content:encoded>
+  <excerpt:encoded><![CDATA[]]></excerpt:encoded>
+  <wp:post_id>1128</wp:post_id>
+  <wp:post_date>2013-04-09 06:37:49</wp:post_date>
+  <wp:post_date_gmt>2013-04-09 13:37:49</wp:post_date_gmt>
+  <wp:comment_status>open</wp:comment_status>
+  <wp:ping_status>closed</wp:ping_status>
+  <wp:post_name>level-09</wp:post_name>
+  <wp:status>publish</wp:status>
+  <wp:post_parent>0</wp:post_parent>
+  <wp:menu_order>38</wp:menu_order>
+  <wp:post_type>nav_menu_item</wp:post_type>
+  <wp:post_password/>
+  <wp:is_sticky>0</wp:is_sticky>
+  <category domain="nav_menu" nicename="testing-menu"><![CDATA[Testing Menu]]></category>
+  <wp:postmeta>
+    <wp:meta_key>_publicize_pending</wp:meta_key>
+    <wp:meta_value><![CDATA[1]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_type</wp:meta_key>
+    <wp:meta_value><![CDATA[custom]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key>
+    <wp:meta_value><![CDATA[1127]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_object_id</wp:meta_key>
+    <wp:meta_value><![CDATA[1128]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_object</wp:meta_key>
+    <wp:meta_value><![CDATA[custom]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_target</wp:meta_key>
+    <wp:meta_value><![CDATA[]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_classes</wp:meta_key>
+    <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_xfn</wp:meta_key>
+    <wp:meta_value><![CDATA[]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_url</wp:meta_key>
+    <wp:meta_value><![CDATA[#]]></wp:meta_value>
+  </wp:postmeta>
+</item>
+<item>
+  <title>Level 10</title>
+  <link>http://wpthemetestdata.wordpress.com/2013/04/09/level-10/</link>
+  <pubDate>Tue, 09 Apr 2013 13:37:49 +0000</pubDate>
+  <dc:creator>chipbennett</dc:creator>
+  <guid isPermaLink="false">http://wpthemetestdata.wordpress.com/2013/04/09/level-10</guid>
+  <description/>
+  <content:encoded><![CDATA[]]></content:encoded>
+  <excerpt:encoded><![CDATA[]]></excerpt:encoded>
+  <wp:post_id>1129</wp:post_id>
+  <wp:post_date>2013-04-09 06:37:49</wp:post_date>
+  <wp:post_date_gmt>2013-04-09 13:37:49</wp:post_date_gmt>
+  <wp:comment_status>open</wp:comment_status>
+  <wp:ping_status>closed</wp:ping_status>
+  <wp:post_name>level-10</wp:post_name>
+  <wp:status>publish</wp:status>
+  <wp:post_parent>0</wp:post_parent>
+  <wp:menu_order>39</wp:menu_order>
+  <wp:post_type>nav_menu_item</wp:post_type>
+  <wp:post_password/>
+  <wp:is_sticky>0</wp:is_sticky>
+  <category domain="nav_menu" nicename="testing-menu"><![CDATA[Testing Menu]]></category>
+  <wp:postmeta>
+    <wp:meta_key>_publicize_pending</wp:meta_key>
+    <wp:meta_value><![CDATA[1]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_type</wp:meta_key>
+    <wp:meta_value><![CDATA[custom]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key>
+    <wp:meta_value><![CDATA[1128]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_object_id</wp:meta_key>
+    <wp:meta_value><![CDATA[1129]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_object</wp:meta_key>
+    <wp:meta_value><![CDATA[custom]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_target</wp:meta_key>
+    <wp:meta_value><![CDATA[]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_classes</wp:meta_key>
+    <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_xfn</wp:meta_key>
+    <wp:meta_value><![CDATA[]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_url</wp:meta_key>
+    <wp:meta_value><![CDATA[#]]></wp:meta_value>
+  </wp:postmeta>
+</item>
+<item>
+  <title>Advanced</title>
+  <link>http://wpthemetestdata.wordpress.com/2013/04/09/advanced/</link>
+  <pubDate>Tue, 09 Apr 2013 13:37:49 +0000</pubDate>
+  <dc:creator>chipbennett</dc:creator>
+  <guid isPermaLink="false">http://wpthemetestdata.wordpress.com/2013/04/09/advanced</guid>
+  <description/>
+  <content:encoded><![CDATA[]]></content:encoded>
+  <excerpt:encoded><![CDATA[]]></excerpt:encoded>
+  <wp:post_id>1130</wp:post_id>
+  <wp:post_date>2013-04-09 06:37:49</wp:post_date>
+  <wp:post_date_gmt>2013-04-09 13:37:49</wp:post_date_gmt>
+  <wp:comment_status>open</wp:comment_status>
+  <wp:ping_status>closed</wp:ping_status>
+  <wp:post_name>advanced</wp:post_name>
+  <wp:status>publish</wp:status>
+  <wp:post_parent>0</wp:post_parent>
+  <wp:menu_order>40</wp:menu_order>
+  <wp:post_type>nav_menu_item</wp:post_type>
+  <wp:post_password/>
+  <wp:is_sticky>0</wp:is_sticky>
+  <category domain="nav_menu" nicename="testing-menu"><![CDATA[Testing Menu]]></category>
+  <wp:postmeta>
+    <wp:meta_key>_publicize_pending</wp:meta_key>
+    <wp:meta_value><![CDATA[1]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_type</wp:meta_key>
+    <wp:meta_value><![CDATA[custom]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key>
+    <wp:meta_value><![CDATA[0]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_object_id</wp:meta_key>
+    <wp:meta_value><![CDATA[1130]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_object</wp:meta_key>
+    <wp:meta_value><![CDATA[custom]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_target</wp:meta_key>
+    <wp:meta_value><![CDATA[]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_classes</wp:meta_key>
+    <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_xfn</wp:meta_key>
+    <wp:meta_value><![CDATA[]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_url</wp:meta_key>
+    <wp:meta_value><![CDATA[#]]></wp:meta_value>
+  </wp:postmeta>
+</item>
+<item>
+  <title>Menu Description</title>
+  <link>http://wpthemetestdata.wordpress.com/2013/04/09/menu-description/</link>
+  <pubDate>Tue, 09 Apr 2013 13:37:50 +0000</pubDate>
+  <dc:creator>chipbennett</dc:creator>
+  <guid isPermaLink="false">http://wpthemetestdata.wordpress.com/2013/04/09/menu-description</guid>
+  <description/>
+  <content:encoded><![CDATA[Custom Menu Description]]></content:encoded>
+  <excerpt:encoded><![CDATA[]]></excerpt:encoded>
+  <wp:post_id>1142</wp:post_id>
+  <wp:post_date>2013-04-09 06:37:50</wp:post_date>
+  <wp:post_date_gmt>2013-04-09 13:37:50</wp:post_date_gmt>
+  <wp:comment_status>open</wp:comment_status>
+  <wp:ping_status>closed</wp:ping_status>
+  <wp:post_name>menu-description</wp:post_name>
+  <wp:status>publish</wp:status>
+  <wp:post_parent>0</wp:post_parent>
+  <wp:menu_order>44</wp:menu_order>
+  <wp:post_type>nav_menu_item</wp:post_type>
+  <wp:post_password/>
+  <wp:is_sticky>0</wp:is_sticky>
+  <category domain="nav_menu" nicename="testing-menu"><![CDATA[Testing Menu]]></category>
+  <wp:postmeta>
+    <wp:meta_key>_publicize_pending</wp:meta_key>
+    <wp:meta_value><![CDATA[1]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_type</wp:meta_key>
+    <wp:meta_value><![CDATA[custom]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key>
+    <wp:meta_value><![CDATA[0]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_object_id</wp:meta_key>
+    <wp:meta_value><![CDATA[1142]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_object</wp:meta_key>
+    <wp:meta_value><![CDATA[custom]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_target</wp:meta_key>
+    <wp:meta_value><![CDATA[]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_classes</wp:meta_key>
+    <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_xfn</wp:meta_key>
+    <wp:meta_value><![CDATA[]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_url</wp:meta_key>
+    <wp:meta_value><![CDATA[#]]></wp:meta_value>
+  </wp:postmeta>
+</item>
+<item>
+  <title>Menu Title Attribute</title>
+  <link>http://wpthemetestdata.wordpress.com/2013/04/09/menu-title-attribute/</link>
+  <pubDate>Tue, 09 Apr 2013 13:37:50 +0000</pubDate>
+  <dc:creator>chipbennett</dc:creator>
+  <guid isPermaLink="false">http://wpthemetestdata.wordpress.com/2013/04/09/menu-title-attribute</guid>
+  <description/>
+  <content:encoded><![CDATA[]]></content:encoded>
+  <excerpt:encoded><![CDATA[Custom Title Attribute]]></excerpt:encoded>
+  <wp:post_id>1143</wp:post_id>
+  <wp:post_date>2013-04-09 06:37:50</wp:post_date>
+  <wp:post_date_gmt>2013-04-09 13:37:50</wp:post_date_gmt>
+  <wp:comment_status>open</wp:comment_status>
+  <wp:ping_status>closed</wp:ping_status>
+  <wp:post_name>menu-title-attribute</wp:post_name>
+  <wp:status>publish</wp:status>
+  <wp:post_parent>0</wp:post_parent>
+  <wp:menu_order>41</wp:menu_order>
+  <wp:post_type>nav_menu_item</wp:post_type>
+  <wp:post_password/>
+  <wp:is_sticky>0</wp:is_sticky>
+  <category domain="nav_menu" nicename="testing-menu"><![CDATA[Testing Menu]]></category>
+  <wp:postmeta>
+    <wp:meta_key>_publicize_pending</wp:meta_key>
+    <wp:meta_value><![CDATA[1]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_type</wp:meta_key>
+    <wp:meta_value><![CDATA[custom]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key>
+    <wp:meta_value><![CDATA[1130]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_object_id</wp:meta_key>
+    <wp:meta_value><![CDATA[1143]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_object</wp:meta_key>
+    <wp:meta_value><![CDATA[custom]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_target</wp:meta_key>
+    <wp:meta_value><![CDATA[]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_classes</wp:meta_key>
+    <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_xfn</wp:meta_key>
+    <wp:meta_value><![CDATA[]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_url</wp:meta_key>
+    <wp:meta_value><![CDATA[#]]></wp:meta_value>
+  </wp:postmeta>
+</item>
+<item>
+  <title>Menu CSS Class</title>
+  <link>http://wpthemetestdata.wordpress.com/2013/04/09/menu-css-class/</link>
+  <pubDate>Tue, 09 Apr 2013 13:37:51 +0000</pubDate>
+  <dc:creator>chipbennett</dc:creator>
+  <guid isPermaLink="false">http://wpthemetestdata.wordpress.com/2013/04/09/menu-css-class</guid>
+  <description/>
+  <content:encoded><![CDATA[]]></content:encoded>
+  <excerpt:encoded><![CDATA[]]></excerpt:encoded>
+  <wp:post_id>1144</wp:post_id>
+  <wp:post_date>2013-04-09 06:37:51</wp:post_date>
+  <wp:post_date_gmt>2013-04-09 13:37:51</wp:post_date_gmt>
+  <wp:comment_status>open</wp:comment_status>
+  <wp:ping_status>closed</wp:ping_status>
+  <wp:post_name>menu-css-class</wp:post_name>
+  <wp:status>publish</wp:status>
+  <wp:post_parent>0</wp:post_parent>
+  <wp:menu_order>42</wp:menu_order>
+  <wp:post_type>nav_menu_item</wp:post_type>
+  <wp:post_password/>
+  <wp:is_sticky>0</wp:is_sticky>
+  <category domain="nav_menu" nicename="testing-menu"><![CDATA[Testing Menu]]></category>
+  <wp:postmeta>
+    <wp:meta_key>_publicize_pending</wp:meta_key>
+    <wp:meta_value><![CDATA[1]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_type</wp:meta_key>
+    <wp:meta_value><![CDATA[custom]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key>
+    <wp:meta_value><![CDATA[1130]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_object_id</wp:meta_key>
+    <wp:meta_value><![CDATA[1144]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_object</wp:meta_key>
+    <wp:meta_value><![CDATA[custom]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_target</wp:meta_key>
+    <wp:meta_value><![CDATA[]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_classes</wp:meta_key>
+    <wp:meta_value><![CDATA[a:1:{i:0;s:21:"custom-menu-css-class";}]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_xfn</wp:meta_key>
+    <wp:meta_value><![CDATA[]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_url</wp:meta_key>
+    <wp:meta_value><![CDATA[#]]></wp:meta_value>
+  </wp:postmeta>
+</item>
+<item>
+  <title>New Window / Tab</title>
+  <link>http://wpthemetestdata.wordpress.com/2013/04/09/new-window-tab/</link>
+  <pubDate>Tue, 09 Apr 2013 13:37:51 +0000</pubDate>
+  <dc:creator>chipbennett</dc:creator>
+  <guid isPermaLink="false">http://wpthemetestdata.wordpress.com/2013/04/09/new-window-tab</guid>
+  <description/>
+  <content:encoded><![CDATA[]]></content:encoded>
+  <excerpt:encoded><![CDATA[]]></excerpt:encoded>
+  <wp:post_id>1145</wp:post_id>
+  <wp:post_date>2013-04-09 06:37:51</wp:post_date>
+  <wp:post_date_gmt>2013-04-09 13:37:51</wp:post_date_gmt>
+  <wp:comment_status>open</wp:comment_status>
+  <wp:ping_status>closed</wp:ping_status>
+  <wp:post_name>new-window-tab</wp:post_name>
+  <wp:status>publish</wp:status>
+  <wp:post_parent>0</wp:post_parent>
+  <wp:menu_order>43</wp:menu_order>
+  <wp:post_type>nav_menu_item</wp:post_type>
+  <wp:post_password/>
+  <wp:is_sticky>0</wp:is_sticky>
+  <category domain="nav_menu" nicename="testing-menu"><![CDATA[Testing Menu]]></category>
+  <wp:postmeta>
+    <wp:meta_key>_publicize_pending</wp:meta_key>
+    <wp:meta_value><![CDATA[1]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_type</wp:meta_key>
+    <wp:meta_value><![CDATA[custom]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key>
+    <wp:meta_value><![CDATA[1130]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_object_id</wp:meta_key>
+    <wp:meta_value><![CDATA[1145]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_object</wp:meta_key>
+    <wp:meta_value><![CDATA[custom]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_target</wp:meta_key>
+    <wp:meta_value><![CDATA[_blank]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_classes</wp:meta_key>
+    <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_xfn</wp:meta_key>
+    <wp:meta_value><![CDATA[]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_url</wp:meta_key>
+    <wp:meta_value><![CDATA[http://apple.com]]></wp:meta_value>
+  </wp:postmeta>
+</item>
+<item>
+  <title/>
+  <link>http://wpthemetestdata.wordpress.com/2013/04/09/1263/</link>
+  <pubDate>Tue, 09 Apr 2013 13:38:00 +0000</pubDate>
+  <dc:creator>chipbennett</dc:creator>
+  <guid isPermaLink="false">http://wpthemetestdata.wordpress.com/2013/04/09/1263</guid>
+  <description/>
+  <content:encoded><![CDATA[ ]]></content:encoded>
+  <excerpt:encoded><![CDATA[]]></excerpt:encoded>
+  <wp:post_id>1263</wp:post_id>
+  <wp:post_date>2013-04-09 06:38:00</wp:post_date>
+  <wp:post_date_gmt>2013-04-09 13:38:00</wp:post_date_gmt>
+  <wp:comment_status>open</wp:comment_status>
+  <wp:ping_status>closed</wp:ping_status>
+  <wp:post_name>1263</wp:post_name>
+  <wp:status>publish</wp:status>
+  <wp:post_parent>0</wp:post_parent>
+  <wp:menu_order>8</wp:menu_order>
+  <wp:post_type>nav_menu_item</wp:post_type>
+  <wp:post_password/>
+  <wp:is_sticky>0</wp:is_sticky>
+  <category domain="nav_menu" nicename="testing-menu"><![CDATA[Testing Menu]]></category>
+  <wp:postmeta>
+    <wp:meta_key>_publicize_pending</wp:meta_key>
+    <wp:meta_value><![CDATA[1]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_type</wp:meta_key>
+    <wp:meta_value><![CDATA[post_type]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key>
+    <wp:meta_value><![CDATA[1100]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_object_id</wp:meta_key>
+    <wp:meta_value><![CDATA[1133]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_object</wp:meta_key>
+    <wp:meta_value><![CDATA[page]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_target</wp:meta_key>
+    <wp:meta_value><![CDATA[]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_classes</wp:meta_key>
+    <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_xfn</wp:meta_key>
+    <wp:meta_value><![CDATA[]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_url</wp:meta_key>
+    <wp:meta_value><![CDATA[]]></wp:meta_value>
+  </wp:postmeta>
+</item>
+<item>
+  <title/>
+  <link>http://wpthemetestdata.wordpress.com/2013/04/09/1264/</link>
+  <pubDate>Tue, 09 Apr 2013 13:38:01 +0000</pubDate>
+  <dc:creator>chipbennett</dc:creator>
+  <guid isPermaLink="false">http://wpthemetestdata.wordpress.com/2013/04/09/1264</guid>
+  <description/>
+  <content:encoded><![CDATA[ ]]></content:encoded>
+  <excerpt:encoded><![CDATA[]]></excerpt:encoded>
+  <wp:post_id>1264</wp:post_id>
+  <wp:post_date>2013-04-09 06:38:01</wp:post_date>
+  <wp:post_date_gmt>2013-04-09 13:38:01</wp:post_date_gmt>
+  <wp:comment_status>open</wp:comment_status>
+  <wp:ping_status>closed</wp:ping_status>
+  <wp:post_name>1264</wp:post_name>
+  <wp:status>publish</wp:status>
+  <wp:post_parent>0</wp:post_parent>
+  <wp:menu_order>9</wp:menu_order>
+  <wp:post_type>nav_menu_item</wp:post_type>
+  <wp:post_password/>
+  <wp:is_sticky>0</wp:is_sticky>
+  <category domain="nav_menu" nicename="testing-menu"><![CDATA[Testing Menu]]></category>
+  <wp:postmeta>
+    <wp:meta_key>_publicize_pending</wp:meta_key>
+    <wp:meta_value><![CDATA[1]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_type</wp:meta_key>
+    <wp:meta_value><![CDATA[post_type]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key>
+    <wp:meta_value><![CDATA[1100]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_object_id</wp:meta_key>
+    <wp:meta_value><![CDATA[1134]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_object</wp:meta_key>
+    <wp:meta_value><![CDATA[page]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_target</wp:meta_key>
+    <wp:meta_value><![CDATA[]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_classes</wp:meta_key>
+    <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_xfn</wp:meta_key>
+    <wp:meta_value><![CDATA[]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_url</wp:meta_key>
+    <wp:meta_value><![CDATA[]]></wp:meta_value>
+  </wp:postmeta>
+</item>
+<item>
+  <title/>
+  <link>http://wpthemetestdata.wordpress.com/2013/04/09/1287/</link>
+  <pubDate>Tue, 09 Apr 2013 13:53:04 +0000</pubDate>
+  <dc:creator>chipbennett</dc:creator>
+  <guid isPermaLink="false">http://wpthemetestdata.wordpress.com/2013/04/09/1287</guid>
+  <description/>
+  <content:encoded><![CDATA[ ]]></content:encoded>
+  <excerpt:encoded><![CDATA[]]></excerpt:encoded>
+  <wp:post_id>1287</wp:post_id>
+  <wp:post_date>2013-04-09 06:53:04</wp:post_date>
+  <wp:post_date_gmt>2013-04-09 13:53:04</wp:post_date_gmt>
+  <wp:comment_status>open</wp:comment_status>
+  <wp:ping_status>closed</wp:ping_status>
+  <wp:post_name>1287</wp:post_name>
+  <wp:status>publish</wp:status>
+  <wp:post_parent>0</wp:post_parent>
+  <wp:menu_order>8</wp:menu_order>
+  <wp:post_type>nav_menu_item</wp:post_type>
+  <wp:post_password/>
+  <wp:is_sticky>0</wp:is_sticky>
+  <category domain="nav_menu" nicename="testing-menu"><![CDATA[Testing Menu]]></category>
+  <wp:postmeta>
+    <wp:meta_key>_publicize_pending</wp:meta_key>
+    <wp:meta_value><![CDATA[1]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_type</wp:meta_key>
+    <wp:meta_value><![CDATA[post_type]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key>
+    <wp:meta_value><![CDATA[1100]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_object_id</wp:meta_key>
+    <wp:meta_value><![CDATA[1133]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_object</wp:meta_key>
+    <wp:meta_value><![CDATA[page]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_target</wp:meta_key>
+    <wp:meta_value><![CDATA[]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_classes</wp:meta_key>
+    <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_xfn</wp:meta_key>
+    <wp:meta_value><![CDATA[]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_url</wp:meta_key>
+    <wp:meta_value><![CDATA[]]></wp:meta_value>
+  </wp:postmeta>
+</item>
+<item>
+  <title/>
+  <link>http://wpthemetestdata.wordpress.com/2013/04/09/1288/</link>
+  <pubDate>Tue, 09 Apr 2013 13:53:04 +0000</pubDate>
+  <dc:creator>chipbennett</dc:creator>
+  <guid isPermaLink="false">http://wpthemetestdata.wordpress.com/2013/04/09/1288</guid>
+  <description/>
+  <content:encoded><![CDATA[ ]]></content:encoded>
+  <excerpt:encoded><![CDATA[]]></excerpt:encoded>
+  <wp:post_id>1288</wp:post_id>
+  <wp:post_date>2013-04-09 06:53:04</wp:post_date>
+  <wp:post_date_gmt>2013-04-09 13:53:04</wp:post_date_gmt>
+  <wp:comment_status>open</wp:comment_status>
+  <wp:ping_status>closed</wp:ping_status>
+  <wp:post_name>1288</wp:post_name>
+  <wp:status>publish</wp:status>
+  <wp:post_parent>0</wp:post_parent>
+  <wp:menu_order>9</wp:menu_order>
+  <wp:post_type>nav_menu_item</wp:post_type>
+  <wp:post_password/>
+  <wp:is_sticky>0</wp:is_sticky>
+  <category domain="nav_menu" nicename="testing-menu"><![CDATA[Testing Menu]]></category>
+  <wp:postmeta>
+    <wp:meta_key>_publicize_pending</wp:meta_key>
+    <wp:meta_value><![CDATA[1]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_type</wp:meta_key>
+    <wp:meta_value><![CDATA[post_type]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key>
+    <wp:meta_value><![CDATA[1100]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_object_id</wp:meta_key>
+    <wp:meta_value><![CDATA[1134]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_object</wp:meta_key>
+    <wp:meta_value><![CDATA[page]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_target</wp:meta_key>
+    <wp:meta_value><![CDATA[]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_classes</wp:meta_key>
+    <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_xfn</wp:meta_key>
+    <wp:meta_value><![CDATA[]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_url</wp:meta_key>
+    <wp:meta_value><![CDATA[]]></wp:meta_value>
+  </wp:postmeta>
+</item>
+<item>
+  <title>triforce-wallpaper</title>
+  <link>http://wpthemetestdata.wordpress.com/2010/08/07/post-format-image-caption/triforce-wallpaper/</link>
+  <pubDate>Tue, 09 Apr 2013 20:17:31 +0000</pubDate>
+  <dc:creator>chipbennett</dc:creator>
+  <guid isPermaLink="false">http://wpthemetestdata.files.wordpress.com/2010/08/triforce-wallpaper.jpg</guid>
+  <description/>
+  <content:encoded><![CDATA[]]></content:encoded>
+  <excerpt:encoded><![CDATA[Itโ€™s dangerous to go alone! Take this.]]></excerpt:encoded>
+  <wp:post_id>1628</wp:post_id>
+  <wp:post_date>2013-04-09 13:17:31</wp:post_date>
+  <wp:post_date_gmt>2013-04-09 20:17:31</wp:post_date_gmt>
+  <wp:comment_status>open</wp:comment_status>
+  <wp:ping_status>closed</wp:ping_status>
+  <wp:post_name>triforce-wallpaper</wp:post_name>
+  <wp:status>inherit</wp:status>
+  <wp:post_parent>1163</wp:post_parent>
+  <wp:menu_order>0</wp:menu_order>
+  <wp:post_type>attachment</wp:post_type>
+  <wp:post_password/>
+  <wp:is_sticky>0</wp:is_sticky>
+  <wp:attachment_url>http://wpthemetestdata.files.wordpress.com/2010/08/triforce-wallpaper.jpg</wp:attachment_url>
+</item>
+<item>
+  <title>Home</title>
+  <link>http://wpthemetestdata.wordpress.com/2013/05/07/home/</link>
+  <pubDate>Tue, 07 May 2013 19:54:30 +0000</pubDate>
+  <dc:creator>lance</dc:creator>
+  <guid isPermaLink="false">http://wpthemetestdata.wordpress.com/?p=1635</guid>
+  <description/>
+  <content:encoded><![CDATA[]]></content:encoded>
+  <excerpt:encoded><![CDATA[]]></excerpt:encoded>
+  <wp:post_id>1635</wp:post_id>
+  <wp:post_date>2013-05-07 12:54:30</wp:post_date>
+  <wp:post_date_gmt>2013-05-07 19:54:30</wp:post_date_gmt>
+  <wp:comment_status>open</wp:comment_status>
+  <wp:ping_status>closed</wp:ping_status>
+  <wp:post_name>home</wp:post_name>
+  <wp:status>publish</wp:status>
+  <wp:post_parent>0</wp:post_parent>
+  <wp:menu_order>1</wp:menu_order>
+  <wp:post_type>nav_menu_item</wp:post_type>
+  <wp:post_password/>
+  <wp:is_sticky>0</wp:is_sticky>
+  <category domain="nav_menu" nicename="short"><![CDATA[Short]]></category>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_object_id</wp:meta_key>
+    <wp:meta_value><![CDATA[1635]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key>
+    <wp:meta_value><![CDATA[0]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_type</wp:meta_key>
+    <wp:meta_value><![CDATA[custom]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_publicize_pending</wp:meta_key>
+    <wp:meta_value><![CDATA[1]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_url</wp:meta_key>
+    <wp:meta_value><![CDATA[http://wpthemetestdata.wordpress.com/]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_xfn</wp:meta_key>
+    <wp:meta_value><![CDATA[]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_classes</wp:meta_key>
+    <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_target</wp:meta_key>
+    <wp:meta_value><![CDATA[]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_object</wp:meta_key>
+    <wp:meta_value><![CDATA[custom]]></wp:meta_value>
+  </wp:postmeta>
+</item>
+<item>
+  <title/>
+  <link>http://wpthemetestdata.wordpress.com/2013/05/07/1636/</link>
+  <pubDate>Tue, 07 May 2013 19:54:30 +0000</pubDate>
+  <dc:creator>lance</dc:creator>
+  <guid isPermaLink="false">http://wpthemetestdata.wordpress.com/?p=1636</guid>
+  <description/>
+  <content:encoded><![CDATA[ ]]></content:encoded>
+  <excerpt:encoded><![CDATA[]]></excerpt:encoded>
+  <wp:post_id>1636</wp:post_id>
+  <wp:post_date>2013-05-07 12:54:30</wp:post_date>
+  <wp:post_date_gmt>2013-05-07 19:54:30</wp:post_date_gmt>
+  <wp:comment_status>open</wp:comment_status>
+  <wp:ping_status>closed</wp:ping_status>
+  <wp:post_name>1636</wp:post_name>
+  <wp:status>publish</wp:status>
+  <wp:post_parent>0</wp:post_parent>
+  <wp:menu_order>2</wp:menu_order>
+  <wp:post_type>nav_menu_item</wp:post_type>
+  <wp:post_password/>
+  <wp:is_sticky>0</wp:is_sticky>
+  <category domain="nav_menu" nicename="short"><![CDATA[Short]]></category>
+  <wp:postmeta>
+    <wp:meta_key>_publicize_pending</wp:meta_key>
+    <wp:meta_value><![CDATA[1]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_url</wp:meta_key>
+    <wp:meta_value><![CDATA[]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_xfn</wp:meta_key>
+    <wp:meta_value><![CDATA[]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_classes</wp:meta_key>
+    <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_target</wp:meta_key>
+    <wp:meta_value><![CDATA[]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_object</wp:meta_key>
+    <wp:meta_value><![CDATA[page]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_object_id</wp:meta_key>
+    <wp:meta_value><![CDATA[703]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key>
+    <wp:meta_value><![CDATA[0]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_type</wp:meta_key>
+    <wp:meta_value><![CDATA[post_type]]></wp:meta_value>
+  </wp:postmeta>
+</item>
+<item>
+  <title/>
+  <link>http://wpthemetestdata.wordpress.com/2013/05/07/1637/</link>
+  <pubDate>Tue, 07 May 2013 19:54:31 +0000</pubDate>
+  <dc:creator>lance</dc:creator>
+  <guid isPermaLink="false">http://wpthemetestdata.wordpress.com/?p=1637</guid>
+  <description/>
+  <content:encoded><![CDATA[ ]]></content:encoded>
+  <excerpt:encoded><![CDATA[]]></excerpt:encoded>
+  <wp:post_id>1637</wp:post_id>
+  <wp:post_date>2013-05-07 12:54:31</wp:post_date>
+  <wp:post_date_gmt>2013-05-07 19:54:31</wp:post_date_gmt>
+  <wp:comment_status>open</wp:comment_status>
+  <wp:ping_status>closed</wp:ping_status>
+  <wp:post_name>1637</wp:post_name>
+  <wp:status>publish</wp:status>
+  <wp:post_parent>0</wp:post_parent>
+  <wp:menu_order>3</wp:menu_order>
+  <wp:post_type>nav_menu_item</wp:post_type>
+  <wp:post_password/>
+  <wp:is_sticky>0</wp:is_sticky>
+  <category domain="nav_menu" nicename="short"><![CDATA[Short]]></category>
+  <wp:postmeta>
+    <wp:meta_key>_publicize_pending</wp:meta_key>
+    <wp:meta_value><![CDATA[1]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_url</wp:meta_key>
+    <wp:meta_value><![CDATA[]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_xfn</wp:meta_key>
+    <wp:meta_value><![CDATA[]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_classes</wp:meta_key>
+    <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_target</wp:meta_key>
+    <wp:meta_value><![CDATA[]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_object</wp:meta_key>
+    <wp:meta_value><![CDATA[page]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_object_id</wp:meta_key>
+    <wp:meta_value><![CDATA[2]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key>
+    <wp:meta_value><![CDATA[0]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_type</wp:meta_key>
+    <wp:meta_value><![CDATA[post_type]]></wp:meta_value>
+  </wp:postmeta>
+</item>
+<item>
+  <title/>
+  <link>http://wpthemetestdata.wordpress.com/2013/05/07/1638/</link>
+  <pubDate>Tue, 07 May 2013 19:54:31 +0000</pubDate>
+  <dc:creator>lance</dc:creator>
+  <guid isPermaLink="false">http://wpthemetestdata.wordpress.com/?p=1638</guid>
+  <description/>
+  <content:encoded><![CDATA[ ]]></content:encoded>
+  <excerpt:encoded><![CDATA[]]></excerpt:encoded>
+  <wp:post_id>1638</wp:post_id>
+  <wp:post_date>2013-05-07 12:54:31</wp:post_date>
+  <wp:post_date_gmt>2013-05-07 19:54:31</wp:post_date_gmt>
+  <wp:comment_status>open</wp:comment_status>
+  <wp:ping_status>closed</wp:ping_status>
+  <wp:post_name>1638</wp:post_name>
+  <wp:status>publish</wp:status>
+  <wp:post_parent>2</wp:post_parent>
+  <wp:menu_order>4</wp:menu_order>
+  <wp:post_type>nav_menu_item</wp:post_type>
+  <wp:post_password/>
+  <wp:is_sticky>0</wp:is_sticky>
+  <category domain="nav_menu" nicename="short"><![CDATA[Short]]></category>
+  <wp:postmeta>
+    <wp:meta_key>_publicize_pending</wp:meta_key>
+    <wp:meta_value><![CDATA[1]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_url</wp:meta_key>
+    <wp:meta_value><![CDATA[]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_xfn</wp:meta_key>
+    <wp:meta_value><![CDATA[]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_classes</wp:meta_key>
+    <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_target</wp:meta_key>
+    <wp:meta_value><![CDATA[]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_object</wp:meta_key>
+    <wp:meta_value><![CDATA[page]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_object_id</wp:meta_key>
+    <wp:meta_value><![CDATA[501]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key>
+    <wp:meta_value><![CDATA[1637]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_type</wp:meta_key>
+    <wp:meta_value><![CDATA[post_type]]></wp:meta_value>
+  </wp:postmeta>
+</item>
+<item>
+  <title/>
+  <link>http://wpthemetestdata.wordpress.com/2013/05/07/1639/</link>
+  <pubDate>Tue, 07 May 2013 19:54:31 +0000</pubDate>
+  <dc:creator>lance</dc:creator>
+  <guid isPermaLink="false">http://wpthemetestdata.wordpress.com/?p=1639</guid>
+  <description/>
+  <content:encoded><![CDATA[ ]]></content:encoded>
+  <excerpt:encoded><![CDATA[]]></excerpt:encoded>
+  <wp:post_id>1639</wp:post_id>
+  <wp:post_date>2013-05-07 12:54:31</wp:post_date>
+  <wp:post_date_gmt>2013-05-07 19:54:31</wp:post_date_gmt>
+  <wp:comment_status>open</wp:comment_status>
+  <wp:ping_status>closed</wp:ping_status>
+  <wp:post_name>1639</wp:post_name>
+  <wp:status>publish</wp:status>
+  <wp:post_parent>2</wp:post_parent>
+  <wp:menu_order>5</wp:menu_order>
+  <wp:post_type>nav_menu_item</wp:post_type>
+  <wp:post_password/>
+  <wp:is_sticky>0</wp:is_sticky>
+  <category domain="nav_menu" nicename="short"><![CDATA[Short]]></category>
+  <wp:postmeta>
+    <wp:meta_key>_publicize_pending</wp:meta_key>
+    <wp:meta_value><![CDATA[1]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_url</wp:meta_key>
+    <wp:meta_value><![CDATA[]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_xfn</wp:meta_key>
+    <wp:meta_value><![CDATA[]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_classes</wp:meta_key>
+    <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_target</wp:meta_key>
+    <wp:meta_value><![CDATA[]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_object</wp:meta_key>
+    <wp:meta_value><![CDATA[page]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_object_id</wp:meta_key>
+    <wp:meta_value><![CDATA[155]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key>
+    <wp:meta_value><![CDATA[1637]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_type</wp:meta_key>
+    <wp:meta_value><![CDATA[post_type]]></wp:meta_value>
+  </wp:postmeta>
+</item>
+<item>
+  <title/>
+  <link>http://wpthemetestdata.wordpress.com/2013/05/07/1640/</link>
+  <pubDate>Tue, 07 May 2013 19:54:31 +0000</pubDate>
+  <dc:creator>lance</dc:creator>
+  <guid isPermaLink="false">http://wpthemetestdata.wordpress.com/?p=1640</guid>
+  <description/>
+  <content:encoded><![CDATA[ ]]></content:encoded>
+  <excerpt:encoded><![CDATA[]]></excerpt:encoded>
+  <wp:post_id>1640</wp:post_id>
+  <wp:post_date>2013-05-07 12:54:31</wp:post_date>
+  <wp:post_date_gmt>2013-05-07 19:54:31</wp:post_date_gmt>
+  <wp:comment_status>open</wp:comment_status>
+  <wp:ping_status>closed</wp:ping_status>
+  <wp:post_name>1640</wp:post_name>
+  <wp:status>publish</wp:status>
+  <wp:post_parent>2</wp:post_parent>
+  <wp:menu_order>6</wp:menu_order>
+  <wp:post_type>nav_menu_item</wp:post_type>
+  <wp:post_password/>
+  <wp:is_sticky>0</wp:is_sticky>
+  <category domain="nav_menu" nicename="short"><![CDATA[Short]]></category>
+  <wp:postmeta>
+    <wp:meta_key>_publicize_pending</wp:meta_key>
+    <wp:meta_value><![CDATA[1]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_url</wp:meta_key>
+    <wp:meta_value><![CDATA[]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_xfn</wp:meta_key>
+    <wp:meta_value><![CDATA[]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_classes</wp:meta_key>
+    <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_target</wp:meta_key>
+    <wp:meta_value><![CDATA[]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_object</wp:meta_key>
+    <wp:meta_value><![CDATA[page]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_object_id</wp:meta_key>
+    <wp:meta_value><![CDATA[156]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key>
+    <wp:meta_value><![CDATA[1637]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_type</wp:meta_key>
+    <wp:meta_value><![CDATA[post_type]]></wp:meta_value>
+  </wp:postmeta>
+</item>
+<item>
+  <title/>
+  <link>http://wpthemetestdata.wordpress.com/2013/05/07/1641/</link>
+  <pubDate>Tue, 07 May 2013 19:54:31 +0000</pubDate>
+  <dc:creator>lance</dc:creator>
+  <guid isPermaLink="false">http://wpthemetestdata.wordpress.com/?p=1641</guid>
+  <description/>
+  <content:encoded><![CDATA[ ]]></content:encoded>
+  <excerpt:encoded><![CDATA[]]></excerpt:encoded>
+  <wp:post_id>1641</wp:post_id>
+  <wp:post_date>2013-05-07 12:54:31</wp:post_date>
+  <wp:post_date_gmt>2013-05-07 19:54:31</wp:post_date_gmt>
+  <wp:comment_status>open</wp:comment_status>
+  <wp:ping_status>closed</wp:ping_status>
+  <wp:post_name>1641</wp:post_name>
+  <wp:status>publish</wp:status>
+  <wp:post_parent>0</wp:post_parent>
+  <wp:menu_order>7</wp:menu_order>
+  <wp:post_type>nav_menu_item</wp:post_type>
+  <wp:post_password/>
+  <wp:is_sticky>0</wp:is_sticky>
+  <category domain="nav_menu" nicename="short"><![CDATA[Short]]></category>
+  <wp:postmeta>
+    <wp:meta_key>_publicize_pending</wp:meta_key>
+    <wp:meta_value><![CDATA[1]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_url</wp:meta_key>
+    <wp:meta_value><![CDATA[]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_xfn</wp:meta_key>
+    <wp:meta_value><![CDATA[]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_classes</wp:meta_key>
+    <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_target</wp:meta_key>
+    <wp:meta_value><![CDATA[]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_object</wp:meta_key>
+    <wp:meta_value><![CDATA[page]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_object_id</wp:meta_key>
+    <wp:meta_value><![CDATA[146]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key>
+    <wp:meta_value><![CDATA[0]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_type</wp:meta_key>
+    <wp:meta_value><![CDATA[post_type]]></wp:meta_value>
+  </wp:postmeta>
+</item>
+<item>
+  <title>Home</title>
+  <link>http://wpthemetestdata.wordpress.com/2013/05/07/home-2/</link>
+  <pubDate>Tue, 07 May 2013 19:55:38 +0000</pubDate>
+  <dc:creator>lance</dc:creator>
+  <guid isPermaLink="false">http://wpthemetestdata.wordpress.com/?p=1642</guid>
+  <description/>
+  <content:encoded><![CDATA[]]></content:encoded>
+  <excerpt:encoded><![CDATA[]]></excerpt:encoded>
+  <wp:post_id>1642</wp:post_id>
+  <wp:post_date>2013-05-07 12:55:38</wp:post_date>
+  <wp:post_date_gmt>2013-05-07 19:55:38</wp:post_date_gmt>
+  <wp:comment_status>open</wp:comment_status>
+  <wp:ping_status>closed</wp:ping_status>
+  <wp:post_name>home-2</wp:post_name>
+  <wp:status>publish</wp:status>
+  <wp:post_parent>0</wp:post_parent>
+  <wp:menu_order>1</wp:menu_order>
+  <wp:post_type>nav_menu_item</wp:post_type>
+  <wp:post_password/>
+  <wp:is_sticky>0</wp:is_sticky>
+  <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category>
+  <wp:postmeta>
+    <wp:meta_key>_publicize_pending</wp:meta_key>
+    <wp:meta_value><![CDATA[1]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_url</wp:meta_key>
+    <wp:meta_value><![CDATA[http://wpthemetestdata.wordpress.com/]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_xfn</wp:meta_key>
+    <wp:meta_value><![CDATA[]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_classes</wp:meta_key>
+    <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_target</wp:meta_key>
+    <wp:meta_value><![CDATA[]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_object</wp:meta_key>
+    <wp:meta_value><![CDATA[custom]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_object_id</wp:meta_key>
+    <wp:meta_value><![CDATA[1642]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key>
+    <wp:meta_value><![CDATA[0]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_type</wp:meta_key>
+    <wp:meta_value><![CDATA[custom]]></wp:meta_value>
+  </wp:postmeta>
+</item>
+<item>
+  <title/>
+  <link>http://wpthemetestdata.wordpress.com/2013/05/07/1643/</link>
+  <pubDate>Tue, 07 May 2013 19:55:38 +0000</pubDate>
+  <dc:creator>lance</dc:creator>
+  <guid isPermaLink="false">http://wpthemetestdata.wordpress.com/?p=1643</guid>
+  <description/>
+  <content:encoded><![CDATA[ ]]></content:encoded>
+  <excerpt:encoded><![CDATA[]]></excerpt:encoded>
+  <wp:post_id>1643</wp:post_id>
+  <wp:post_date>2013-05-07 12:55:38</wp:post_date>
+  <wp:post_date_gmt>2013-05-07 19:55:38</wp:post_date_gmt>
+  <wp:comment_status>open</wp:comment_status>
+  <wp:ping_status>closed</wp:ping_status>
+  <wp:post_name>1643</wp:post_name>
+  <wp:status>publish</wp:status>
+  <wp:post_parent>0</wp:post_parent>
+  <wp:menu_order>2</wp:menu_order>
+  <wp:post_type>nav_menu_item</wp:post_type>
+  <wp:post_password/>
+  <wp:is_sticky>0</wp:is_sticky>
+  <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category>
+  <wp:postmeta>
+    <wp:meta_key>_publicize_pending</wp:meta_key>
+    <wp:meta_value><![CDATA[1]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_url</wp:meta_key>
+    <wp:meta_value><![CDATA[]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_xfn</wp:meta_key>
+    <wp:meta_value><![CDATA[]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_classes</wp:meta_key>
+    <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_target</wp:meta_key>
+    <wp:meta_value><![CDATA[]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_object</wp:meta_key>
+    <wp:meta_value><![CDATA[page]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_object_id</wp:meta_key>
+    <wp:meta_value><![CDATA[703]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key>
+    <wp:meta_value><![CDATA[0]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_type</wp:meta_key>
+    <wp:meta_value><![CDATA[post_type]]></wp:meta_value>
+  </wp:postmeta>
+</item>
+<item>
+  <title/>
+  <link>http://wpthemetestdata.wordpress.com/2013/05/07/1644/</link>
+  <pubDate>Tue, 07 May 2013 19:55:38 +0000</pubDate>
+  <dc:creator>lance</dc:creator>
+  <guid isPermaLink="false">http://wpthemetestdata.wordpress.com/?p=1644</guid>
+  <description/>
+  <content:encoded><![CDATA[ ]]></content:encoded>
+  <excerpt:encoded><![CDATA[]]></excerpt:encoded>
+  <wp:post_id>1644</wp:post_id>
+  <wp:post_date>2013-05-07 12:55:38</wp:post_date>
+  <wp:post_date_gmt>2013-05-07 19:55:38</wp:post_date_gmt>
+  <wp:comment_status>open</wp:comment_status>
+  <wp:ping_status>closed</wp:ping_status>
+  <wp:post_name>1644</wp:post_name>
+  <wp:status>publish</wp:status>
+  <wp:post_parent>0</wp:post_parent>
+  <wp:menu_order>3</wp:menu_order>
+  <wp:post_type>nav_menu_item</wp:post_type>
+  <wp:post_password/>
+  <wp:is_sticky>0</wp:is_sticky>
+  <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category>
+  <wp:postmeta>
+    <wp:meta_key>_publicize_pending</wp:meta_key>
+    <wp:meta_value><![CDATA[1]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_url</wp:meta_key>
+    <wp:meta_value><![CDATA[]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_xfn</wp:meta_key>
+    <wp:meta_value><![CDATA[]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_classes</wp:meta_key>
+    <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_target</wp:meta_key>
+    <wp:meta_value><![CDATA[]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_object</wp:meta_key>
+    <wp:meta_value><![CDATA[page]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_object_id</wp:meta_key>
+    <wp:meta_value><![CDATA[701]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key>
+    <wp:meta_value><![CDATA[0]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_type</wp:meta_key>
+    <wp:meta_value><![CDATA[post_type]]></wp:meta_value>
+  </wp:postmeta>
+</item>
+<item>
+  <title/>
+  <link>http://wpthemetestdata.wordpress.com/2013/05/07/1645/</link>
+  <pubDate>Tue, 07 May 2013 19:55:39 +0000</pubDate>
+  <dc:creator>lance</dc:creator>
+  <guid isPermaLink="false">http://wpthemetestdata.wordpress.com/?p=1645</guid>
+  <description/>
+  <content:encoded><![CDATA[ ]]></content:encoded>
+  <excerpt:encoded><![CDATA[]]></excerpt:encoded>
+  <wp:post_id>1645</wp:post_id>
+  <wp:post_date>2013-05-07 12:55:39</wp:post_date>
+  <wp:post_date_gmt>2013-05-07 19:55:39</wp:post_date_gmt>
+  <wp:comment_status>open</wp:comment_status>
+  <wp:ping_status>closed</wp:ping_status>
+  <wp:post_name>1645</wp:post_name>
+  <wp:status>publish</wp:status>
+  <wp:post_parent>0</wp:post_parent>
+  <wp:menu_order>4</wp:menu_order>
+  <wp:post_type>nav_menu_item</wp:post_type>
+  <wp:post_password/>
+  <wp:is_sticky>0</wp:is_sticky>
+  <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_classes</wp:meta_key>
+    <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_xfn</wp:meta_key>
+    <wp:meta_value><![CDATA[]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_url</wp:meta_key>
+    <wp:meta_value><![CDATA[]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_publicize_pending</wp:meta_key>
+    <wp:meta_value><![CDATA[1]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_target</wp:meta_key>
+    <wp:meta_value><![CDATA[]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_object</wp:meta_key>
+    <wp:meta_value><![CDATA[page]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_object_id</wp:meta_key>
+    <wp:meta_value><![CDATA[2]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key>
+    <wp:meta_value><![CDATA[0]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_type</wp:meta_key>
+    <wp:meta_value><![CDATA[post_type]]></wp:meta_value>
+  </wp:postmeta>
+</item>
+<item>
+  <title/>
+  <link>http://wpthemetestdata.wordpress.com/2013/05/07/1646/</link>
+  <pubDate>Tue, 07 May 2013 19:55:39 +0000</pubDate>
+  <dc:creator>lance</dc:creator>
+  <guid isPermaLink="false">http://wpthemetestdata.wordpress.com/?p=1646</guid>
+  <description/>
+  <content:encoded><![CDATA[ ]]></content:encoded>
+  <excerpt:encoded><![CDATA[]]></excerpt:encoded>
+  <wp:post_id>1646</wp:post_id>
+  <wp:post_date>2013-05-07 12:55:39</wp:post_date>
+  <wp:post_date_gmt>2013-05-07 19:55:39</wp:post_date_gmt>
+  <wp:comment_status>open</wp:comment_status>
+  <wp:ping_status>closed</wp:ping_status>
+  <wp:post_name>1646</wp:post_name>
+  <wp:status>publish</wp:status>
+  <wp:post_parent>2</wp:post_parent>
+  <wp:menu_order>5</wp:menu_order>
+  <wp:post_type>nav_menu_item</wp:post_type>
+  <wp:post_password/>
+  <wp:is_sticky>0</wp:is_sticky>
+  <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_xfn</wp:meta_key>
+    <wp:meta_value><![CDATA[]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_url</wp:meta_key>
+    <wp:meta_value><![CDATA[]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_publicize_pending</wp:meta_key>
+    <wp:meta_value><![CDATA[1]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_classes</wp:meta_key>
+    <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_object_id</wp:meta_key>
+    <wp:meta_value><![CDATA[1133]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_object</wp:meta_key>
+    <wp:meta_value><![CDATA[page]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_target</wp:meta_key>
+    <wp:meta_value><![CDATA[]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_type</wp:meta_key>
+    <wp:meta_value><![CDATA[post_type]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key>
+    <wp:meta_value><![CDATA[1645]]></wp:meta_value>
+  </wp:postmeta>
+</item>
+<item>
+  <title/>
+  <link>http://wpthemetestdata.wordpress.com/2013/05/07/1647/</link>
+  <pubDate>Tue, 07 May 2013 19:55:39 +0000</pubDate>
+  <dc:creator>lance</dc:creator>
+  <guid isPermaLink="false">http://wpthemetestdata.wordpress.com/?p=1647</guid>
+  <description/>
+  <content:encoded><![CDATA[ ]]></content:encoded>
+  <excerpt:encoded><![CDATA[]]></excerpt:encoded>
+  <wp:post_id>1647</wp:post_id>
+  <wp:post_date>2013-05-07 12:55:39</wp:post_date>
+  <wp:post_date_gmt>2013-05-07 19:55:39</wp:post_date_gmt>
+  <wp:comment_status>open</wp:comment_status>
+  <wp:ping_status>closed</wp:ping_status>
+  <wp:post_name>1647</wp:post_name>
+  <wp:status>publish</wp:status>
+  <wp:post_parent>2</wp:post_parent>
+  <wp:menu_order>6</wp:menu_order>
+  <wp:post_type>nav_menu_item</wp:post_type>
+  <wp:post_password/>
+  <wp:is_sticky>0</wp:is_sticky>
+  <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_type</wp:meta_key>
+    <wp:meta_value><![CDATA[post_type]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key>
+    <wp:meta_value><![CDATA[1645]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_publicize_pending</wp:meta_key>
+    <wp:meta_value><![CDATA[1]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_url</wp:meta_key>
+    <wp:meta_value><![CDATA[]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_xfn</wp:meta_key>
+    <wp:meta_value><![CDATA[]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_classes</wp:meta_key>
+    <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_target</wp:meta_key>
+    <wp:meta_value><![CDATA[]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_object</wp:meta_key>
+    <wp:meta_value><![CDATA[page]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_object_id</wp:meta_key>
+    <wp:meta_value><![CDATA[1134]]></wp:meta_value>
+  </wp:postmeta>
+</item>
+<item>
+  <title/>
+  <link>http://wpthemetestdata.wordpress.com/2013/05/07/1648/</link>
+  <pubDate>Tue, 07 May 2013 19:55:39 +0000</pubDate>
+  <dc:creator>lance</dc:creator>
+  <guid isPermaLink="false">http://wpthemetestdata.wordpress.com/?p=1648</guid>
+  <description/>
+  <content:encoded><![CDATA[ ]]></content:encoded>
+  <excerpt:encoded><![CDATA[]]></excerpt:encoded>
+  <wp:post_id>1648</wp:post_id>
+  <wp:post_date>2013-05-07 12:55:39</wp:post_date>
+  <wp:post_date_gmt>2013-05-07 19:55:39</wp:post_date_gmt>
+  <wp:comment_status>open</wp:comment_status>
+  <wp:ping_status>closed</wp:ping_status>
+  <wp:post_name>1648</wp:post_name>
+  <wp:status>publish</wp:status>
+  <wp:post_parent>2</wp:post_parent>
+  <wp:menu_order>7</wp:menu_order>
+  <wp:post_type>nav_menu_item</wp:post_type>
+  <wp:post_password/>
+  <wp:is_sticky>0</wp:is_sticky>
+  <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category>
+  <wp:postmeta>
+    <wp:meta_key>_publicize_pending</wp:meta_key>
+    <wp:meta_value><![CDATA[1]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_url</wp:meta_key>
+    <wp:meta_value><![CDATA[]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_xfn</wp:meta_key>
+    <wp:meta_value><![CDATA[]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_classes</wp:meta_key>
+    <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_target</wp:meta_key>
+    <wp:meta_value><![CDATA[]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_object</wp:meta_key>
+    <wp:meta_value><![CDATA[page]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_object_id</wp:meta_key>
+    <wp:meta_value><![CDATA[501]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key>
+    <wp:meta_value><![CDATA[1645]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_type</wp:meta_key>
+    <wp:meta_value><![CDATA[post_type]]></wp:meta_value>
+  </wp:postmeta>
+</item>
+<item>
+  <title/>
+  <link>http://wpthemetestdata.wordpress.com/2013/05/07/1649/</link>
+  <pubDate>Tue, 07 May 2013 19:55:39 +0000</pubDate>
+  <dc:creator>lance</dc:creator>
+  <guid isPermaLink="false">http://wpthemetestdata.wordpress.com/?p=1649</guid>
+  <description/>
+  <content:encoded><![CDATA[ ]]></content:encoded>
+  <excerpt:encoded><![CDATA[]]></excerpt:encoded>
+  <wp:post_id>1649</wp:post_id>
+  <wp:post_date>2013-05-07 12:55:39</wp:post_date>
+  <wp:post_date_gmt>2013-05-07 19:55:39</wp:post_date_gmt>
+  <wp:comment_status>open</wp:comment_status>
+  <wp:ping_status>closed</wp:ping_status>
+  <wp:post_name>1649</wp:post_name>
+  <wp:status>publish</wp:status>
+  <wp:post_parent>2</wp:post_parent>
+  <wp:menu_order>8</wp:menu_order>
+  <wp:post_type>nav_menu_item</wp:post_type>
+  <wp:post_password/>
+  <wp:is_sticky>0</wp:is_sticky>
+  <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_target</wp:meta_key>
+    <wp:meta_value><![CDATA[]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_object</wp:meta_key>
+    <wp:meta_value><![CDATA[page]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_object_id</wp:meta_key>
+    <wp:meta_value><![CDATA[155]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key>
+    <wp:meta_value><![CDATA[1645]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_type</wp:meta_key>
+    <wp:meta_value><![CDATA[post_type]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_publicize_pending</wp:meta_key>
+    <wp:meta_value><![CDATA[1]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_url</wp:meta_key>
+    <wp:meta_value><![CDATA[]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_classes</wp:meta_key>
+    <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_xfn</wp:meta_key>
+    <wp:meta_value><![CDATA[]]></wp:meta_value>
+  </wp:postmeta>
+</item>
+<item>
+  <title/>
+  <link>http://wpthemetestdata.wordpress.com/2013/05/07/1650/</link>
+  <pubDate>Tue, 07 May 2013 19:55:40 +0000</pubDate>
+  <dc:creator>lance</dc:creator>
+  <guid isPermaLink="false">http://wpthemetestdata.wordpress.com/?p=1650</guid>
+  <description/>
+  <content:encoded><![CDATA[ ]]></content:encoded>
+  <excerpt:encoded><![CDATA[]]></excerpt:encoded>
+  <wp:post_id>1650</wp:post_id>
+  <wp:post_date>2013-05-07 12:55:40</wp:post_date>
+  <wp:post_date_gmt>2013-05-07 19:55:40</wp:post_date_gmt>
+  <wp:comment_status>open</wp:comment_status>
+  <wp:ping_status>closed</wp:ping_status>
+  <wp:post_name>1650</wp:post_name>
+  <wp:status>publish</wp:status>
+  <wp:post_parent>2</wp:post_parent>
+  <wp:menu_order>9</wp:menu_order>
+  <wp:post_type>nav_menu_item</wp:post_type>
+  <wp:post_password/>
+  <wp:is_sticky>0</wp:is_sticky>
+  <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_type</wp:meta_key>
+    <wp:meta_value><![CDATA[post_type]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key>
+    <wp:meta_value><![CDATA[1645]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_object_id</wp:meta_key>
+    <wp:meta_value><![CDATA[156]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_object</wp:meta_key>
+    <wp:meta_value><![CDATA[page]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_target</wp:meta_key>
+    <wp:meta_value><![CDATA[]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_publicize_pending</wp:meta_key>
+    <wp:meta_value><![CDATA[1]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_url</wp:meta_key>
+    <wp:meta_value><![CDATA[]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_xfn</wp:meta_key>
+    <wp:meta_value><![CDATA[]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_classes</wp:meta_key>
+    <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value>
+  </wp:postmeta>
+</item>
+<item>
+  <title/>
+  <link>http://wpthemetestdata.wordpress.com/2013/05/07/1651/</link>
+  <pubDate>Tue, 07 May 2013 19:55:40 +0000</pubDate>
+  <dc:creator>lance</dc:creator>
+  <guid isPermaLink="false">http://wpthemetestdata.wordpress.com/?p=1651</guid>
+  <description/>
+  <content:encoded><![CDATA[ ]]></content:encoded>
+  <excerpt:encoded><![CDATA[]]></excerpt:encoded>
+  <wp:post_id>1651</wp:post_id>
+  <wp:post_date>2013-05-07 12:55:40</wp:post_date>
+  <wp:post_date_gmt>2013-05-07 19:55:40</wp:post_date_gmt>
+  <wp:comment_status>open</wp:comment_status>
+  <wp:ping_status>closed</wp:ping_status>
+  <wp:post_name>1651</wp:post_name>
+  <wp:status>publish</wp:status>
+  <wp:post_parent>0</wp:post_parent>
+  <wp:menu_order>10</wp:menu_order>
+  <wp:post_type>nav_menu_item</wp:post_type>
+  <wp:post_password/>
+  <wp:is_sticky>0</wp:is_sticky>
+  <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category>
+  <wp:postmeta>
+    <wp:meta_key>_publicize_pending</wp:meta_key>
+    <wp:meta_value><![CDATA[1]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_url</wp:meta_key>
+    <wp:meta_value><![CDATA[]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_classes</wp:meta_key>
+    <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_xfn</wp:meta_key>
+    <wp:meta_value><![CDATA[]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key>
+    <wp:meta_value><![CDATA[0]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_target</wp:meta_key>
+    <wp:meta_value><![CDATA[]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_object</wp:meta_key>
+    <wp:meta_value><![CDATA[page]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_object_id</wp:meta_key>
+    <wp:meta_value><![CDATA[174]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_type</wp:meta_key>
+    <wp:meta_value><![CDATA[post_type]]></wp:meta_value>
+  </wp:postmeta>
+</item>
+<item>
+  <title/>
+  <link>http://wpthemetestdata.wordpress.com/2013/05/07/1652/</link>
+  <pubDate>Tue, 07 May 2013 19:55:40 +0000</pubDate>
+  <dc:creator>lance</dc:creator>
+  <guid isPermaLink="false">http://wpthemetestdata.wordpress.com/?p=1652</guid>
+  <description/>
+  <content:encoded><![CDATA[ ]]></content:encoded>
+  <excerpt:encoded><![CDATA[]]></excerpt:encoded>
+  <wp:post_id>1652</wp:post_id>
+  <wp:post_date>2013-05-07 12:55:40</wp:post_date>
+  <wp:post_date_gmt>2013-05-07 19:55:40</wp:post_date_gmt>
+  <wp:comment_status>open</wp:comment_status>
+  <wp:ping_status>closed</wp:ping_status>
+  <wp:post_name>1652</wp:post_name>
+  <wp:status>publish</wp:status>
+  <wp:post_parent>174</wp:post_parent>
+  <wp:menu_order>11</wp:menu_order>
+  <wp:post_type>nav_menu_item</wp:post_type>
+  <wp:post_password/>
+  <wp:is_sticky>0</wp:is_sticky>
+  <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category>
+  <wp:postmeta>
+    <wp:meta_key>_publicize_pending</wp:meta_key>
+    <wp:meta_value><![CDATA[1]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_url</wp:meta_key>
+    <wp:meta_value><![CDATA[]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_xfn</wp:meta_key>
+    <wp:meta_value><![CDATA[]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_classes</wp:meta_key>
+    <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_target</wp:meta_key>
+    <wp:meta_value><![CDATA[]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_object</wp:meta_key>
+    <wp:meta_value><![CDATA[page]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_object_id</wp:meta_key>
+    <wp:meta_value><![CDATA[173]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key>
+    <wp:meta_value><![CDATA[1651]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_type</wp:meta_key>
+    <wp:meta_value><![CDATA[post_type]]></wp:meta_value>
+  </wp:postmeta>
+</item>
+<item>
+  <title/>
+  <link>http://wpthemetestdata.wordpress.com/2013/05/07/1653/</link>
+  <pubDate>Tue, 07 May 2013 19:55:40 +0000</pubDate>
+  <dc:creator>lance</dc:creator>
+  <guid isPermaLink="false">http://wpthemetestdata.wordpress.com/?p=1653</guid>
+  <description/>
+  <content:encoded><![CDATA[ ]]></content:encoded>
+  <excerpt:encoded><![CDATA[]]></excerpt:encoded>
+  <wp:post_id>1653</wp:post_id>
+  <wp:post_date>2013-05-07 12:55:40</wp:post_date>
+  <wp:post_date_gmt>2013-05-07 19:55:40</wp:post_date_gmt>
+  <wp:comment_status>open</wp:comment_status>
+  <wp:ping_status>closed</wp:ping_status>
+  <wp:post_name>1653</wp:post_name>
+  <wp:status>publish</wp:status>
+  <wp:post_parent>173</wp:post_parent>
+  <wp:menu_order>12</wp:menu_order>
+  <wp:post_type>nav_menu_item</wp:post_type>
+  <wp:post_password/>
+  <wp:is_sticky>0</wp:is_sticky>
+  <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category>
+  <wp:postmeta>
+    <wp:meta_key>_publicize_pending</wp:meta_key>
+    <wp:meta_value><![CDATA[1]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_url</wp:meta_key>
+    <wp:meta_value><![CDATA[]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_xfn</wp:meta_key>
+    <wp:meta_value><![CDATA[]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_classes</wp:meta_key>
+    <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_target</wp:meta_key>
+    <wp:meta_value><![CDATA[]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_object</wp:meta_key>
+    <wp:meta_value><![CDATA[page]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_object_id</wp:meta_key>
+    <wp:meta_value><![CDATA[172]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key>
+    <wp:meta_value><![CDATA[1652]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_type</wp:meta_key>
+    <wp:meta_value><![CDATA[post_type]]></wp:meta_value>
+  </wp:postmeta>
+</item>
+<item>
+  <title/>
+  <link>http://wpthemetestdata.wordpress.com/2013/05/07/1654/</link>
+  <pubDate>Tue, 07 May 2013 19:55:40 +0000</pubDate>
+  <dc:creator>lance</dc:creator>
+  <guid isPermaLink="false">http://wpthemetestdata.wordpress.com/?p=1654</guid>
+  <description/>
+  <content:encoded><![CDATA[ ]]></content:encoded>
+  <excerpt:encoded><![CDATA[]]></excerpt:encoded>
+  <wp:post_id>1654</wp:post_id>
+  <wp:post_date>2013-05-07 12:55:40</wp:post_date>
+  <wp:post_date_gmt>2013-05-07 19:55:40</wp:post_date_gmt>
+  <wp:comment_status>open</wp:comment_status>
+  <wp:ping_status>closed</wp:ping_status>
+  <wp:post_name>1654</wp:post_name>
+  <wp:status>publish</wp:status>
+  <wp:post_parent>173</wp:post_parent>
+  <wp:menu_order>13</wp:menu_order>
+  <wp:post_type>nav_menu_item</wp:post_type>
+  <wp:post_password/>
+  <wp:is_sticky>0</wp:is_sticky>
+  <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category>
+  <wp:postmeta>
+    <wp:meta_key>_publicize_pending</wp:meta_key>
+    <wp:meta_value><![CDATA[1]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_url</wp:meta_key>
+    <wp:meta_value><![CDATA[]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_xfn</wp:meta_key>
+    <wp:meta_value><![CDATA[]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_classes</wp:meta_key>
+    <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_target</wp:meta_key>
+    <wp:meta_value><![CDATA[]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_object</wp:meta_key>
+    <wp:meta_value><![CDATA[page]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_object_id</wp:meta_key>
+    <wp:meta_value><![CDATA[746]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key>
+    <wp:meta_value><![CDATA[1652]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_type</wp:meta_key>
+    <wp:meta_value><![CDATA[post_type]]></wp:meta_value>
+  </wp:postmeta>
+</item>
+<item>
+  <title/>
+  <link>http://wpthemetestdata.wordpress.com/2013/05/07/1655/</link>
+  <pubDate>Tue, 07 May 2013 19:55:41 +0000</pubDate>
+  <dc:creator>lance</dc:creator>
+  <guid isPermaLink="false">http://wpthemetestdata.wordpress.com/?p=1655</guid>
+  <description/>
+  <content:encoded><![CDATA[ ]]></content:encoded>
+  <excerpt:encoded><![CDATA[]]></excerpt:encoded>
+  <wp:post_id>1655</wp:post_id>
+  <wp:post_date>2013-05-07 12:55:41</wp:post_date>
+  <wp:post_date_gmt>2013-05-07 19:55:41</wp:post_date_gmt>
+  <wp:comment_status>open</wp:comment_status>
+  <wp:ping_status>closed</wp:ping_status>
+  <wp:post_name>1655</wp:post_name>
+  <wp:status>publish</wp:status>
+  <wp:post_parent>173</wp:post_parent>
+  <wp:menu_order>14</wp:menu_order>
+  <wp:post_type>nav_menu_item</wp:post_type>
+  <wp:post_password/>
+  <wp:is_sticky>0</wp:is_sticky>
+  <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category>
+  <wp:postmeta>
+    <wp:meta_key>_publicize_pending</wp:meta_key>
+    <wp:meta_value><![CDATA[1]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_url</wp:meta_key>
+    <wp:meta_value><![CDATA[]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_xfn</wp:meta_key>
+    <wp:meta_value><![CDATA[]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_classes</wp:meta_key>
+    <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_target</wp:meta_key>
+    <wp:meta_value><![CDATA[]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_object</wp:meta_key>
+    <wp:meta_value><![CDATA[page]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_object_id</wp:meta_key>
+    <wp:meta_value><![CDATA[748]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key>
+    <wp:meta_value><![CDATA[1652]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_type</wp:meta_key>
+    <wp:meta_value><![CDATA[post_type]]></wp:meta_value>
+  </wp:postmeta>
+</item>
+<item>
+  <title/>
+  <link>http://wpthemetestdata.wordpress.com/2013/05/07/1656/</link>
+  <pubDate>Tue, 07 May 2013 19:55:41 +0000</pubDate>
+  <dc:creator>lance</dc:creator>
+  <guid isPermaLink="false">http://wpthemetestdata.wordpress.com/?p=1656</guid>
+  <description/>
+  <content:encoded><![CDATA[ ]]></content:encoded>
+  <excerpt:encoded><![CDATA[]]></excerpt:encoded>
+  <wp:post_id>1656</wp:post_id>
+  <wp:post_date>2013-05-07 12:55:41</wp:post_date>
+  <wp:post_date_gmt>2013-05-07 19:55:41</wp:post_date_gmt>
+  <wp:comment_status>open</wp:comment_status>
+  <wp:ping_status>closed</wp:ping_status>
+  <wp:post_name>1656</wp:post_name>
+  <wp:status>publish</wp:status>
+  <wp:post_parent>174</wp:post_parent>
+  <wp:menu_order>15</wp:menu_order>
+  <wp:post_type>nav_menu_item</wp:post_type>
+  <wp:post_password/>
+  <wp:is_sticky>0</wp:is_sticky>
+  <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category>
+  <wp:postmeta>
+    <wp:meta_key>_publicize_pending</wp:meta_key>
+    <wp:meta_value><![CDATA[1]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_url</wp:meta_key>
+    <wp:meta_value><![CDATA[]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_xfn</wp:meta_key>
+    <wp:meta_value><![CDATA[]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_classes</wp:meta_key>
+    <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_target</wp:meta_key>
+    <wp:meta_value><![CDATA[]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_object</wp:meta_key>
+    <wp:meta_value><![CDATA[page]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_object_id</wp:meta_key>
+    <wp:meta_value><![CDATA[742]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key>
+    <wp:meta_value><![CDATA[1651]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_type</wp:meta_key>
+    <wp:meta_value><![CDATA[post_type]]></wp:meta_value>
+  </wp:postmeta>
+</item>
+<item>
+  <title/>
+  <link>http://wpthemetestdata.wordpress.com/2013/05/07/1657/</link>
+  <pubDate>Tue, 07 May 2013 19:55:41 +0000</pubDate>
+  <dc:creator>lance</dc:creator>
+  <guid isPermaLink="false">http://wpthemetestdata.wordpress.com/?p=1657</guid>
+  <description/>
+  <content:encoded><![CDATA[ ]]></content:encoded>
+  <excerpt:encoded><![CDATA[]]></excerpt:encoded>
+  <wp:post_id>1657</wp:post_id>
+  <wp:post_date>2013-05-07 12:55:41</wp:post_date>
+  <wp:post_date_gmt>2013-05-07 19:55:41</wp:post_date_gmt>
+  <wp:comment_status>open</wp:comment_status>
+  <wp:ping_status>closed</wp:ping_status>
+  <wp:post_name>1657</wp:post_name>
+  <wp:status>publish</wp:status>
+  <wp:post_parent>174</wp:post_parent>
+  <wp:menu_order>16</wp:menu_order>
+  <wp:post_type>nav_menu_item</wp:post_type>
+  <wp:post_password/>
+  <wp:is_sticky>0</wp:is_sticky>
+  <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category>
+  <wp:postmeta>
+    <wp:meta_key>_publicize_pending</wp:meta_key>
+    <wp:meta_value><![CDATA[1]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_url</wp:meta_key>
+    <wp:meta_value><![CDATA[]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_xfn</wp:meta_key>
+    <wp:meta_value><![CDATA[]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_classes</wp:meta_key>
+    <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_target</wp:meta_key>
+    <wp:meta_value><![CDATA[]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_object</wp:meta_key>
+    <wp:meta_value><![CDATA[page]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_object_id</wp:meta_key>
+    <wp:meta_value><![CDATA[744]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key>
+    <wp:meta_value><![CDATA[1651]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_type</wp:meta_key>
+    <wp:meta_value><![CDATA[post_type]]></wp:meta_value>
+  </wp:postmeta>
+</item>
+<item>
+  <title/>
+  <link>http://wpthemetestdata.wordpress.com/2013/05/07/1658/</link>
+  <pubDate>Tue, 07 May 2013 19:55:41 +0000</pubDate>
+  <dc:creator>lance</dc:creator>
+  <guid isPermaLink="false">http://wpthemetestdata.wordpress.com/?p=1658</guid>
+  <description/>
+  <content:encoded><![CDATA[ ]]></content:encoded>
+  <excerpt:encoded><![CDATA[]]></excerpt:encoded>
+  <wp:post_id>1658</wp:post_id>
+  <wp:post_date>2013-05-07 12:55:41</wp:post_date>
+  <wp:post_date_gmt>2013-05-07 19:55:41</wp:post_date_gmt>
+  <wp:comment_status>open</wp:comment_status>
+  <wp:ping_status>closed</wp:ping_status>
+  <wp:post_name>1658</wp:post_name>
+  <wp:status>publish</wp:status>
+  <wp:post_parent>0</wp:post_parent>
+  <wp:menu_order>17</wp:menu_order>
+  <wp:post_type>nav_menu_item</wp:post_type>
+  <wp:post_password/>
+  <wp:is_sticky>0</wp:is_sticky>
+  <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category>
+  <wp:postmeta>
+    <wp:meta_key>_publicize_pending</wp:meta_key>
+    <wp:meta_value><![CDATA[1]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_object</wp:meta_key>
+    <wp:meta_value><![CDATA[page]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_object_id</wp:meta_key>
+    <wp:meta_value><![CDATA[146]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_url</wp:meta_key>
+    <wp:meta_value><![CDATA[]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_xfn</wp:meta_key>
+    <wp:meta_value><![CDATA[]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_classes</wp:meta_key>
+    <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_target</wp:meta_key>
+    <wp:meta_value><![CDATA[]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key>
+    <wp:meta_value><![CDATA[0]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_type</wp:meta_key>
+    <wp:meta_value><![CDATA[post_type]]></wp:meta_value>
+  </wp:postmeta>
+</item>
+<item>
+  <title/>
+  <link>http://wpthemetestdata.wordpress.com/2013/05/07/1659/</link>
+  <pubDate>Tue, 07 May 2013 19:55:41 +0000</pubDate>
+  <dc:creator>lance</dc:creator>
+  <guid isPermaLink="false">http://wpthemetestdata.wordpress.com/?p=1659</guid>
+  <description/>
+  <content:encoded><![CDATA[ ]]></content:encoded>
+  <excerpt:encoded><![CDATA[]]></excerpt:encoded>
+  <wp:post_id>1659</wp:post_id>
+  <wp:post_date>2013-05-07 12:55:41</wp:post_date>
+  <wp:post_date_gmt>2013-05-07 19:55:41</wp:post_date_gmt>
+  <wp:comment_status>open</wp:comment_status>
+  <wp:ping_status>closed</wp:ping_status>
+  <wp:post_name>1659</wp:post_name>
+  <wp:status>publish</wp:status>
+  <wp:post_parent>0</wp:post_parent>
+  <wp:menu_order>18</wp:menu_order>
+  <wp:post_type>nav_menu_item</wp:post_type>
+  <wp:post_password/>
+  <wp:is_sticky>0</wp:is_sticky>
+  <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_type</wp:meta_key>
+    <wp:meta_value><![CDATA[post_type]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key>
+    <wp:meta_value><![CDATA[0]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_object_id</wp:meta_key>
+    <wp:meta_value><![CDATA[733]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_object</wp:meta_key>
+    <wp:meta_value><![CDATA[page]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_target</wp:meta_key>
+    <wp:meta_value><![CDATA[]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_classes</wp:meta_key>
+    <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_xfn</wp:meta_key>
+    <wp:meta_value><![CDATA[]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_url</wp:meta_key>
+    <wp:meta_value><![CDATA[]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_publicize_pending</wp:meta_key>
+    <wp:meta_value><![CDATA[1]]></wp:meta_value>
+  </wp:postmeta>
+</item>
+<item>
+  <title/>
+  <link>http://wpthemetestdata.wordpress.com/2013/05/07/1660/</link>
+  <pubDate>Tue, 07 May 2013 19:55:41 +0000</pubDate>
+  <dc:creator>lance</dc:creator>
+  <guid isPermaLink="false">http://wpthemetestdata.wordpress.com/?p=1660</guid>
+  <description/>
+  <content:encoded><![CDATA[ ]]></content:encoded>
+  <excerpt:encoded><![CDATA[]]></excerpt:encoded>
+  <wp:post_id>1660</wp:post_id>
+  <wp:post_date>2013-05-07 12:55:41</wp:post_date>
+  <wp:post_date_gmt>2013-05-07 19:55:41</wp:post_date_gmt>
+  <wp:comment_status>open</wp:comment_status>
+  <wp:ping_status>closed</wp:ping_status>
+  <wp:post_name>1660</wp:post_name>
+  <wp:status>publish</wp:status>
+  <wp:post_parent>0</wp:post_parent>
+  <wp:menu_order>19</wp:menu_order>
+  <wp:post_type>nav_menu_item</wp:post_type>
+  <wp:post_password/>
+  <wp:is_sticky>0</wp:is_sticky>
+  <category domain="nav_menu" nicename="all-pages"><![CDATA[All Pages]]></category>
+  <wp:postmeta>
+    <wp:meta_key>_publicize_pending</wp:meta_key>
+    <wp:meta_value><![CDATA[1]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_url</wp:meta_key>
+    <wp:meta_value><![CDATA[]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_xfn</wp:meta_key>
+    <wp:meta_value><![CDATA[]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_classes</wp:meta_key>
+    <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_target</wp:meta_key>
+    <wp:meta_value><![CDATA[]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_type</wp:meta_key>
+    <wp:meta_value><![CDATA[post_type]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_menu_item_parent</wp:meta_key>
+    <wp:meta_value><![CDATA[0]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_object_id</wp:meta_key>
+    <wp:meta_value><![CDATA[735]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_menu_item_object</wp:meta_key>
+    <wp:meta_value><![CDATA[page]]></wp:meta_value>
+  </wp:postmeta>
+</item>
+<item>
+  <title>dsc20040724_152504_532</title>
+  <link>http://wpthemetestdata.wordpress.com/?attachment_id=1686</link>
+  <pubDate>Wed, 18 Sep 2013 21:37:05 +0000</pubDate>
+  <dc:creator>emiluzelac</dc:creator>
+  <guid isPermaLink="false">http://wpthemetestdata.files.wordpress.com/2013/09/dsc20040724_152504_532.jpg</guid>
+  <description/>
+  <content:encoded><![CDATA[]]></content:encoded>
+  <excerpt:encoded><![CDATA[]]></excerpt:encoded>
+  <wp:post_id>1686</wp:post_id>
+  <wp:post_date>2013-09-18 14:37:05</wp:post_date>
+  <wp:post_date_gmt>2013-09-18 21:37:05</wp:post_date_gmt>
+  <wp:comment_status>open</wp:comment_status>
+  <wp:ping_status>closed</wp:ping_status>
+  <wp:post_name>dsc20040724_152504_532</wp:post_name>
+  <wp:status>inherit</wp:status>
+  <wp:post_parent>0</wp:post_parent>
+  <wp:menu_order>0</wp:menu_order>
+  <wp:post_type>attachment</wp:post_type>
+  <wp:post_password/>
+  <wp:is_sticky>0</wp:is_sticky>
+  <wp:attachment_url>http://wpthemetestdata.files.wordpress.com/2013/09/dsc20040724_152504_532.jpg</wp:attachment_url>
+</item>
+<item>
+  <title>dsc20050604_133440_34211</title>
+  <link>http://wpthemetestdata.wordpress.com/?attachment_id=1687</link>
+  <pubDate>Wed, 18 Sep 2013 21:37:07 +0000</pubDate>
+  <dc:creator>emiluzelac</dc:creator>
+  <guid isPermaLink="false">http://wpthemetestdata.files.wordpress.com/2013/09/dsc20050604_133440_34211.jpg</guid>
+  <description/>
+  <content:encoded><![CDATA[]]></content:encoded>
+  <excerpt:encoded><![CDATA[]]></excerpt:encoded>
+  <wp:post_id>1687</wp:post_id>
+  <wp:post_date>2013-09-18 14:37:07</wp:post_date>
+  <wp:post_date_gmt>2013-09-18 21:37:07</wp:post_date_gmt>
+  <wp:comment_status>open</wp:comment_status>
+  <wp:ping_status>closed</wp:ping_status>
+  <wp:post_name>dsc20050604_133440_34211</wp:post_name>
+  <wp:status>inherit</wp:status>
+  <wp:post_parent>0</wp:post_parent>
+  <wp:menu_order>0</wp:menu_order>
+  <wp:post_type>attachment</wp:post_type>
+  <wp:post_password/>
+  <wp:is_sticky>0</wp:is_sticky>
+  <wp:attachment_url>http://wpthemetestdata.files.wordpress.com/2013/09/dsc20050604_133440_34211.jpg</wp:attachment_url>
+</item>
+<item>
+  <title>Post Format: Standard</title>
+  <link>http://wpthemetestdata.wordpress.com/2010/10/05/post-format-standard/</link>
+  <pubDate>Tue, 05 Oct 2010 07:27:25 +0000</pubDate>
+  <dc:creator>themedemos</dc:creator>
+  <guid isPermaLink="false">http://wpthemetestdata.wordpress.com/?p=358</guid>
+  <description/>
+  <content:encoded><![CDATA[All children, except one, grow up. They soon know that they will grow up, and the way Wendy knew was this. One day when she was two years old she was playing in a garden, and she plucked another flower and ran with it to her mother. I suppose she must have looked rather delightful, for Mrs. Darling put her hand to her heart and cried, "Oh, why can't you remain like this for ever!" This was all that passed between them on the subject, but henceforth Wendy knew that she must grow up. You always know after you are two. Two is the beginning of the end.
+
+<!--more-->
+
+Mrs. Darling first heard of Peter when she was tidying up her children's minds. It is the nightly custom of every good mother after her children are asleep to rummage in their minds and put things straight for next morning, repacking into their proper places the many articles that have wandered during the day.
+
+If you could keep awake (but of course you can't) you would see your own mother doing this, and you would find it very interesting to watch her. It is quite like tidying up drawers. You would see her on her knees, I expect, lingering humorously over some of your contents, wondering where on earth you had picked this thing up, making discoveries sweet and not so sweet, pressing this to her cheek as if it were as nice as a kitten, and hurriedly stowing that out of sight. When you wake in the morning, the naughtiness and evil passions with which you went to bed have been folded up small and placed at the bottom of your mind and on the top, beautifully aired, are spread out your prettier thoughts, ready for you to put on.
+
+I don't know whether you have ever seen a map of a person's mind. Doctors sometimes draw maps of other parts of you, and your own map can become intensely interesting, but catch them trying to draw a map of a child's mind, which is not only confused, but keeps going round all the time. There are zigzag lines on it, just like your temperature on a card, and these are probably roads in the island, for the Neverland is always more or less an island, with astonishing splashes of colour here and there, and coral reefs and rakish-looking craft in the offing, and savages and lonely lairs, and gnomes who are mostly tailors, and caves through which a river runs, and princes with six elder brothers, and a hut fast going to decay, and one very small old lady with a hooked nose. It would be an easy map if that were all, but there is also first day at school, religion, fathers, the round pond, needle-work, murders, hangings, verbs that take the dative, chocolate pudding day, getting into braces, say ninety-nine, three-pence for pulling out your tooth yourself, and so on, and either these are part of the island or they are another map showing through, and it is all rather confusing, especially as nothing will stand still.
+
+Of course the Neverlands vary a good deal. John's, for instance, had a lagoon with flamingoes flying over it at which John was shooting, while Michael, who was very small, had a flamingo with lagoons flying over it. John lived in a boat turned upside down on the sands, Michael in a wigwam, Wendy in a house of leaves deftly sewn together. John had no friends, Michael had friends at night, Wendy had a pet wolf forsaken by its parents, but on the whole the Neverlands have a family resemblance, and if they stood still in a row you could say of them that they have each other's nose, and so forth. On these magic shores children at play are for ever beaching their coracles [simple boat]. We too have been there; we can still hear the sound of the surf, though we shall land no more.
+
+Of all delectable islands the Neverland is the snuggest and most compact, not large and sprawly, you know, with tedious distances between one adventure and another, but nicely crammed. When you play at it by day with the chairs and table-cloth, it is not in the least alarming, but in the two minutes before you go to sleep it becomes very real. That is why there are night-lights.
+
+Occasionally in her travels through her children's minds Mrs. Darling found things she could not understand, and of these quite the most perplexing was the word Peter. She knew of no Peter, and yet he was here and there in John and Michael's minds, while Wendy's began to be scrawled all over with him. The name stood out in bolder letters than any of the other words, and as Mrs. Darling gazed she felt that it had an oddly cocky appearance.]]></content:encoded>
+  <excerpt:encoded><![CDATA[]]></excerpt:encoded>
+  <wp:post_id>358</wp:post_id>
+  <wp:post_date>2010-10-05 00:27:25</wp:post_date>
+  <wp:post_date_gmt>2010-10-05 07:27:25</wp:post_date_gmt>
+  <wp:comment_status>closed</wp:comment_status>
+  <wp:ping_status>closed</wp:ping_status>
+  <wp:post_name>post-format-standard</wp:post_name>
+  <wp:status>publish</wp:status>
+  <wp:post_parent>0</wp:post_parent>
+  <wp:menu_order>0</wp:menu_order>
+  <wp:post_type>post</wp:post_type>
+  <wp:post_password/>
+  <wp:is_sticky>0</wp:is_sticky>
+  <category domain="post_tag" nicename="post-formats"><![CDATA[Post Formats]]></category>
+  <category domain="category" nicename="post-formats"><![CDATA[Post Formats]]></category>
+  <category domain="post_tag" nicename="readability"><![CDATA[readability]]></category>
+  <category domain="post_tag" nicename="standard-2"><![CDATA[standard]]></category>
+  <wp:postmeta>
+    <wp:meta_key>_wp_old_slug</wp:meta_key>
+    <wp:meta_value><![CDATA[]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_wp_old_slug</wp:meta_key>
+    <wp:meta_value><![CDATA[post-format-standard-2]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_wp_old_slug</wp:meta_key>
+    <wp:meta_value><![CDATA[readability-test]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_wp_old_slug</wp:meta_key>
+    <wp:meta_value><![CDATA[markup-readability-test]]></wp:meta_value>
+  </wp:postmeta>
+</item>
+<item>
+  <title>Post Format: Gallery</title>
+  <link>http://wpthemetestdata.wordpress.com/2010/09/10/post-format-gallery/</link>
+  <pubDate>Fri, 10 Sep 2010 14:24:14 +0000</pubDate>
+  <dc:creator>themedemos</dc:creator>
+  <guid isPermaLink="false">http://wpthemetestdata.wordpress.com/?p=555</guid>
+  <description/>
+  <content:encoded><![CDATA[[gallery]
+
+<!--nextpage-->
+
+You can use this page to test the Theme's handling of the[gallery]
+
+shortcode, including the <code>columns</code> parameter, from 1 to 9 columns. Themes are only required to support the default setting (3 columns), so this page is entirely optional.
+<h2>One Column</h2>
+[gallery columns="1"]
+<h2>Two Columns</h2>
+[gallery columns="2"]
+<h2>Three Columns</h2>
+[gallery columns="3"]
+<h2>Four Columns</h2>
+[gallery columns="4"]
+<h2>Five Columns</h2>
+[gallery columns="5"]
+<h2>Six Columns</h2>
+[gallery columns="6"]
+<h2>Seven Columns</h2>
+[gallery columns="7"]
+<h2>Eight Columns</h2>
+[gallery columns="8"]
+<h2>Nine Columns</h2>
+[gallery columns="9"]]]></content:encoded>
+  <excerpt:encoded><![CDATA[]]></excerpt:encoded>
+  <wp:post_id>555</wp:post_id>
+  <wp:post_date>2010-09-10 07:24:14</wp:post_date>
+  <wp:post_date_gmt>2010-09-10 14:24:14</wp:post_date_gmt>
+  <wp:comment_status>closed</wp:comment_status>
+  <wp:ping_status>closed</wp:ping_status>
+  <wp:post_name>post-format-gallery</wp:post_name>
+  <wp:status>publish</wp:status>
+  <wp:post_parent>0</wp:post_parent>
+  <wp:menu_order>0</wp:menu_order>
+  <wp:post_type>post</wp:post_type>
+  <wp:post_password/>
+  <wp:is_sticky>0</wp:is_sticky>
+  <category domain="post_tag" nicename="gallery"><![CDATA[gallery]]></category>
+  <category domain="post_tag" nicename="post-formats"><![CDATA[Post Formats]]></category>
+  <category domain="category" nicename="post-formats"><![CDATA[Post Formats]]></category>
+  <category domain="post_format" nicename="post-format-gallery"><![CDATA[Gallery]]></category>
+  <category domain="post_tag" nicename="shortcode"><![CDATA[shortcode]]></category>
+  <wp:postmeta>
+    <wp:meta_key>_wp_old_slug</wp:meta_key>
+    <wp:meta_value><![CDATA[post-format-gallery-2]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_thumbnail_id</wp:meta_key>
+    <wp:meta_value><![CDATA[771]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_wp_old_slug</wp:meta_key>
+    <wp:meta_value><![CDATA[post-format-test-gallery]]></wp:meta_value>
+  </wp:postmeta>
+</item>
+<item>
+  <title>Post Format: Aside</title>
+  <link>http://wpthemetestdata.wordpress.com/2010/05/09/post-format-aside/</link>
+  <pubDate>Sun, 09 May 2010 14:51:54 +0000</pubDate>
+  <dc:creator>themedemos</dc:creator>
+  <guid isPermaLink="false">http://wpthemetestdata.wordpress.com/?p=559</guid>
+  <description/>
+  <content:encoded><![CDATA[โ€œI never tried to prove nothing, just wanted to give a good show. My life has always been my music, it's always come first, but the music ain't worth nothing if you can't lay it on the public. The main thing is to live for that audience, 'cause what you're there for is to please the people.โ€]]></content:encoded>
+  <excerpt:encoded><![CDATA[]]></excerpt:encoded>
+  <wp:post_id>559</wp:post_id>
+  <wp:post_date>2010-05-09 07:51:54</wp:post_date>
+  <wp:post_date_gmt>2010-05-09 14:51:54</wp:post_date_gmt>
+  <wp:comment_status>closed</wp:comment_status>
+  <wp:ping_status>closed</wp:ping_status>
+  <wp:post_name>post-format-aside</wp:post_name>
+  <wp:status>publish</wp:status>
+  <wp:post_parent>0</wp:post_parent>
+  <wp:menu_order>0</wp:menu_order>
+  <wp:post_type>post</wp:post_type>
+  <wp:post_password/>
+  <wp:is_sticky>0</wp:is_sticky>
+  <category domain="post_tag" nicename="aside"><![CDATA[aside]]></category>
+  <category domain="post_tag" nicename="post-formats"><![CDATA[Post Formats]]></category>
+  <category domain="category" nicename="post-formats"><![CDATA[Post Formats]]></category>
+  <category domain="post_format" nicename="post-format-aside"><![CDATA[Aside]]></category>
+  <wp:postmeta>
+    <wp:meta_key>_wp_old_slug</wp:meta_key>
+    <wp:meta_value><![CDATA[post-format-aside-2]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_wp_old_slug</wp:meta_key>
+    <wp:meta_value><![CDATA[post-format-test-aside]]></wp:meta_value>
+  </wp:postmeta>
+</item>
+<item>
+  <title>Post Format: Chat</title>
+  <link>http://wpthemetestdata.wordpress.com/2010/01/08/post-format-chat/</link>
+  <pubDate>Fri, 08 Jan 2010 14:59:31 +0000</pubDate>
+  <dc:creator>themedemos</dc:creator>
+  <guid isPermaLink="false">http://wpthemetestdata.wordpress.com/?p=562</guid>
+  <description/>
+  <content:encoded><![CDATA[Abbott: Strange as it may seem, they give ball players nowadays very peculiar names.
+
+Costello: Funny names?
+
+Abbott: Nicknames, nicknames. Now, on the St. Louis team we have Who's on first, What's on second, I Don't Know is on third--
+
+Costello: That's what I want to find out. I want you to tell me the names of the fellows on the St. Louis team.
+
+Abbott: I'm telling you. Who's on first, What's on second, I Don't Know is on third--
+
+Costello: You know the fellows' names?
+
+Abbott: Yes.
+
+Costello: Well, then who's playing first?
+
+Abbott: Yes.
+
+Costello: I mean the fellow's name on first base.
+
+Abbott: Who.
+
+Costello: The fellow playin' first base.
+
+Abbott: Who.
+
+Costello: The guy on first base.
+
+Abbott: Who is on first.
+
+Costello: Well, what are you askin' me for?
+
+Abbott: I'm not asking you--I'm telling you. Who is on first.
+
+Costello: I'm asking you--who's on first?
+
+Abbott: That's the man's name.
+
+Costello: That's who's name?
+
+Abbott: Yes.
+
+Costello: When you pay off the first baseman every month, who gets the money?
+
+Abbott: Every dollar of it. And why not, the man's entitled to it.
+
+Costello: Who is?
+
+Abbott: Yes.
+
+Costello: So who gets it?
+
+Abbott: Why shouldn't he? Sometimes his wife comes down and collects it.
+
+Costello: Who's wife?
+
+Abbott: Yes. After all, the man earns it.
+
+Costello: Who does?
+
+Abbott: Absolutely.
+
+Costello: Well, all I'm trying to find out is what's the guy's name on first base?
+
+Abbott: Oh, no, no. What is on second base.
+
+Costello: I'm not asking you who's on second.
+
+Abbott: Who's on first!
+
+Costello: St. Louis has a good outfield?
+
+Abbott: Oh, absolutely.
+
+Costello: The left fielder's name?
+
+Abbott: Why.
+
+Costello: I don't know, I just thought I'd ask.
+
+Abbott: Well, I just thought I'd tell you.
+
+Costello: Then tell me who's playing left field?
+
+Abbott: Who's playing first.
+
+Costello: Stay out of the infield! The left fielder's name?
+
+Abbott: Why.
+
+Costello: Because.
+
+Abbott: Oh, he's center field.
+
+Costello: Wait a minute. You got a pitcher on this team?
+
+Abbott: Wouldn't this be a fine team without a pitcher?
+
+Costello: Tell me the pitcher's name.
+
+Abbott: Tomorrow.
+
+Costello: Now, when the guy at bat bunts the ball--me being a good catcher--I want to throw the guy out at first base, so I pick up the ball and throw it to who?
+
+Abbott: Now, that's he first thing you've said right.
+
+Costello: I DON'T EVEN KNOW WHAT I'M TALKING ABOUT!
+
+Abbott: Don't get excited. Take it easy.
+
+Costello: I throw the ball to first base, whoever it is grabs the ball, so the guy runs to second. Who picks up the ball and throws it to what. What throws it to I don't know. I don't know throws it back to tomorrow--a triple play.
+
+Abbott: Yeah, it could be.
+
+Costello: Another guy gets up and it's a long ball to center.
+
+Abbott: Because.
+
+Costello: Why? I don't know. And I don't care.
+
+Abbott: What was that?
+
+Costello: I said, I DON'T CARE!
+
+Abbott: Oh, that's our shortstop!]]></content:encoded>
+  <excerpt:encoded><![CDATA[]]></excerpt:encoded>
+  <wp:post_id>562</wp:post_id>
+  <wp:post_date>2010-01-08 07:59:31</wp:post_date>
+  <wp:post_date_gmt>2010-01-08 14:59:31</wp:post_date_gmt>
+  <wp:comment_status>closed</wp:comment_status>
+  <wp:ping_status>closed</wp:ping_status>
+  <wp:post_name>post-format-chat</wp:post_name>
+  <wp:status>publish</wp:status>
+  <wp:post_parent>0</wp:post_parent>
+  <wp:menu_order>0</wp:menu_order>
+  <wp:post_type>post</wp:post_type>
+  <wp:post_password/>
+  <wp:is_sticky>0</wp:is_sticky>
+  <category domain="post_tag" nicename="chat"><![CDATA[chat]]></category>
+  <category domain="post_tag" nicename="post-formats"><![CDATA[Post Formats]]></category>
+  <category domain="category" nicename="post-formats"><![CDATA[Post Formats]]></category>
+  <category domain="post_format" nicename="post-format-chat"><![CDATA[Chat]]></category>
+  <wp:postmeta>
+    <wp:meta_key>_wp_old_slug</wp:meta_key>
+    <wp:meta_value><![CDATA[post-format-test-chat]]></wp:meta_value>
+  </wp:postmeta>
+</item>
+<item>
+  <title>Post Format: Link</title>
+  <link>http://wpthemetestdata.wordpress.com/2010/03/07/post-format-link/</link>
+  <pubDate>Sun, 07 Mar 2010 15:06:53 +0000</pubDate>
+  <dc:creator>themedemos</dc:creator>
+  <guid isPermaLink="false">http://wpthemetestdata.wordpress.com/?p=565</guid>
+  <description/>
+  <content:encoded><![CDATA[<a href="http://make.wordpress.org/themes" title="The WordPress Theme Review Team Website">The WordPress Theme Review Team Website</a>]]></content:encoded>
+  <excerpt:encoded><![CDATA[]]></excerpt:encoded>
+  <wp:post_id>565</wp:post_id>
+  <wp:post_date>2010-03-07 08:06:53</wp:post_date>
+  <wp:post_date_gmt>2010-03-07 15:06:53</wp:post_date_gmt>
+  <wp:comment_status>closed</wp:comment_status>
+  <wp:ping_status>closed</wp:ping_status>
+  <wp:post_name>post-format-link</wp:post_name>
+  <wp:status>publish</wp:status>
+  <wp:post_parent>0</wp:post_parent>
+  <wp:menu_order>0</wp:menu_order>
+  <wp:post_type>post</wp:post_type>
+  <wp:post_password/>
+  <wp:is_sticky>0</wp:is_sticky>
+  <category domain="post_tag" nicename="link"><![CDATA[link]]></category>
+  <category domain="post_tag" nicename="post-formats"><![CDATA[Post Formats]]></category>
+  <category domain="category" nicename="post-formats"><![CDATA[Post Formats]]></category>
+  <category domain="post_format" nicename="post-format-link"><![CDATA[Link]]></category>
+  <wp:postmeta>
+    <wp:meta_key>_wp_old_slug</wp:meta_key>
+    <wp:meta_value><![CDATA[post-format-test-link]]></wp:meta_value>
+  </wp:postmeta>
+</item>
+<item>
+  <title>Post Format: Image (Linked)</title>
+  <link>http://wpthemetestdata.wordpress.com/2010/08/06/post-format-image-linked/</link>
+  <pubDate>Fri, 06 Aug 2010 15:09:39 +0000</pubDate>
+  <dc:creator>themedemos</dc:creator>
+  <guid isPermaLink="false">http://wpthemetestdata.wordpress.com/?p=568</guid>
+  <description/>
+  <content:encoded><![CDATA[[caption id="attachment_612" align="aligncenter" width="640" caption="Chunk of resinous blackboy husk, Clarkson, Western Australia. This burns like a spinifex log."]<a href="http://wpthemetestdata.files.wordpress.com/2012/06/dsc20040724_152504_532.jpg"><img src="http://wpthemetestdata.files.wordpress.com/2012/06/dsc20040724_152504_532.jpg" alt="chunk of resinous blackboy husk" title="dsc20040724_152504_532" width="640" height="480" class="size-full wp-image-612" /></a>[/caption]
+]]></content:encoded>
+  <excerpt:encoded><![CDATA[]]></excerpt:encoded>
+  <wp:post_id>568</wp:post_id>
+  <wp:post_date>2010-08-06 08:09:39</wp:post_date>
+  <wp:post_date_gmt>2010-08-06 15:09:39</wp:post_date_gmt>
+  <wp:comment_status>closed</wp:comment_status>
+  <wp:ping_status>closed</wp:ping_status>
+  <wp:post_name>post-format-image-linked</wp:post_name>
+  <wp:status>publish</wp:status>
+  <wp:post_parent>0</wp:post_parent>
+  <wp:menu_order>0</wp:menu_order>
+  <wp:post_type>post</wp:post_type>
+  <wp:post_password/>
+  <wp:is_sticky>0</wp:is_sticky>
+  <category domain="post_tag" nicename="image"><![CDATA[image]]></category>
+  <category domain="post_tag" nicename="post-formats"><![CDATA[Post Formats]]></category>
+  <category domain="category" nicename="post-formats"><![CDATA[Post Formats]]></category>
+  <category domain="post_format" nicename="post-format-image"><![CDATA[Image]]></category>
+  <wp:postmeta>
+    <wp:meta_key>_wp_old_slug</wp:meta_key>
+    <wp:meta_value><![CDATA[post-format-test-image]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_wp_old_slug</wp:meta_key>
+    <wp:meta_value><![CDATA[post-format-test-image-linked]]></wp:meta_value>
+  </wp:postmeta>
+</item>
+<item>
+  <title>Post Format: Quote</title>
+  <link>http://wpthemetestdata.wordpress.com/2010/02/05/post-format-quote/</link>
+  <pubDate>Fri, 05 Feb 2010 15:13:15 +0000</pubDate>
+  <dc:creator>themedemos</dc:creator>
+  <guid isPermaLink="false">http://wpthemetestdata.wordpress.com/?p=575</guid>
+  <description/>
+  <content:encoded><![CDATA[<blockquote>Only one thing is impossible for God: To find any sense in any copyright law on the planet.
+<cite><a href="http://www.brainyquote.com/quotes/quotes/m/marktwain163473.html">Mark Twain</a></cite></blockquote>]]></content:encoded>
+  <excerpt:encoded><![CDATA[]]></excerpt:encoded>
+  <wp:post_id>575</wp:post_id>
+  <wp:post_date>2010-02-05 08:13:15</wp:post_date>
+  <wp:post_date_gmt>2010-02-05 15:13:15</wp:post_date_gmt>
+  <wp:comment_status>closed</wp:comment_status>
+  <wp:ping_status>closed</wp:ping_status>
+  <wp:post_name>post-format-quote</wp:post_name>
+  <wp:status>publish</wp:status>
+  <wp:post_parent>0</wp:post_parent>
+  <wp:menu_order>0</wp:menu_order>
+  <wp:post_type>post</wp:post_type>
+  <wp:post_password/>
+  <wp:is_sticky>0</wp:is_sticky>
+  <category domain="post_tag" nicename="post-formats"><![CDATA[Post Formats]]></category>
+  <category domain="category" nicename="post-formats"><![CDATA[Post Formats]]></category>
+  <category domain="post_format" nicename="post-format-quote"><![CDATA[Quote]]></category>
+  <category domain="post_tag" nicename="quote"><![CDATA[quote]]></category>
+  <wp:postmeta>
+    <wp:meta_key>_wp_old_slug</wp:meta_key>
+    <wp:meta_value><![CDATA[post-format-test-quote]]></wp:meta_value>
+  </wp:postmeta>
+</item>
+<item>
+  <title>Post Format: Status</title>
+  <link>http://wpthemetestdata.wordpress.com/2010/04/04/post-format-status/</link>
+  <pubDate>Sun, 04 Apr 2010 15:21:24 +0000</pubDate>
+  <dc:creator>themedemos</dc:creator>
+  <guid isPermaLink="false">http://wpthemetestdata.wordpress.com/?p=579</guid>
+  <description/>
+  <content:encoded><![CDATA[WordPress, how do I love thee? Let me count the ways (in 140 characters or less).]]></content:encoded>
+  <excerpt:encoded><![CDATA[]]></excerpt:encoded>
+  <wp:post_id>579</wp:post_id>
+  <wp:post_date>2010-04-04 08:21:24</wp:post_date>
+  <wp:post_date_gmt>2010-04-04 15:21:24</wp:post_date_gmt>
+  <wp:comment_status>closed</wp:comment_status>
+  <wp:ping_status>closed</wp:ping_status>
+  <wp:post_name>post-format-status</wp:post_name>
+  <wp:status>publish</wp:status>
+  <wp:post_parent>0</wp:post_parent>
+  <wp:menu_order>0</wp:menu_order>
+  <wp:post_type>post</wp:post_type>
+  <wp:post_password/>
+  <wp:is_sticky>0</wp:is_sticky>
+  <category domain="post_tag" nicename="post-formats"><![CDATA[Post Formats]]></category>
+  <category domain="category" nicename="post-formats"><![CDATA[Post Formats]]></category>
+  <category domain="post_format" nicename="post-format-status"><![CDATA[Status]]></category>
+  <category domain="post_tag" nicename="status"><![CDATA[status]]></category>
+  <wp:postmeta>
+    <wp:meta_key>_wp_old_slug</wp:meta_key>
+    <wp:meta_value><![CDATA[post-format-test-status]]></wp:meta_value>
+  </wp:postmeta>
+</item>
+<item>
+  <title>Post Format: Video (WordPress.tv)</title>
+  <link>http://wpthemetestdata.wordpress.com/2010/06/03/post-format-video-wordpresstv/</link>
+  <pubDate>Thu, 03 Jun 2010 15:25:58 +0000</pubDate>
+  <dc:creator>themedemos</dc:creator>
+  <guid isPermaLink="false">http://wpthemetestdata.wordpress.com/?p=582</guid>
+  <description/>
+  <content:encoded><![CDATA[http://wordpress.tv/2009/03/16/anatomy-of-a-wordpress-theme-exploring-the-files-behind-your-theme/
+
+Posted as per the <a href="http://codex.wordpress.org/Embeds" target="_blank">instructions in the Codex</a>.]]></content:encoded>
+  <excerpt:encoded><![CDATA[]]></excerpt:encoded>
+  <wp:post_id>582</wp:post_id>
+  <wp:post_date>2010-06-03 08:25:58</wp:post_date>
+  <wp:post_date_gmt>2010-06-03 15:25:58</wp:post_date_gmt>
+  <wp:comment_status>closed</wp:comment_status>
+  <wp:ping_status>closed</wp:ping_status>
+  <wp:post_name>post-format-video-wordpresstv</wp:post_name>
+  <wp:status>publish</wp:status>
+  <wp:post_parent>0</wp:post_parent>
+  <wp:menu_order>0</wp:menu_order>
+  <wp:post_type>post</wp:post_type>
+  <wp:post_password/>
+  <wp:is_sticky>0</wp:is_sticky>
+  <category domain="post_tag" nicename="embeds-2"><![CDATA[embeds]]></category>
+  <category domain="post_tag" nicename="post-formats"><![CDATA[Post Formats]]></category>
+  <category domain="category" nicename="post-formats"><![CDATA[Post Formats]]></category>
+  <category domain="post_format" nicename="post-format-video"><![CDATA[Video]]></category>
+  <category domain="post_tag" nicename="video"><![CDATA[video]]></category>
+  <category domain="post_tag" nicename="wordpress-tv"><![CDATA[wordpress.tv]]></category>
+  <wp:postmeta>
+    <wp:meta_key>_wp_old_slug</wp:meta_key>
+    <wp:meta_value><![CDATA[post-format-test-video]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_oembed_29351fff85c1be1d1e9a965a0332a861</wp:meta_key>
+    <wp:meta_value><![CDATA[<div class="embed-"><embed src="http://v.wordpress.com/hrPKeL5t" type="application/x-shockwave-flash" width="604" height="339" allowscriptaccess="always" allowfullscreen="true" wmode="transparent"></embed></div>]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_oembed_9fcc86d7d9398ff736577f922307f64d</wp:meta_key>
+    <wp:meta_value><![CDATA[<div class="embed-"><embed src="http://v.wordpress.com/hrPKeL5t" type="application/x-shockwave-flash" width="808" height="454" allowscriptaccess="always" allowfullscreen="true" wmode="transparent"></embed></div>]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_oembed_366237792d32461d0052efb2edec37f5</wp:meta_key>
+    <wp:meta_value><![CDATA[<div class="embed-"><embed src="http://v.wordpress.com/hrPKeL5t" type="application/x-shockwave-flash" width="584" height="328" allowscriptaccess="always" allowfullscreen="true" wmode="transparent"></embed></div>]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_oembed_37fdfe862c13c46a93be2921279bf675</wp:meta_key>
+    <wp:meta_value><![CDATA[<div class="embed-"><embed src="http://v.wordpress.com/hrPKeL5t" type="application/x-shockwave-flash" width="599" height="336" allowscriptaccess="always" allowfullscreen="true" wmode="transparent"></embed></div>]]></wp:meta_value>
+  </wp:postmeta>
+</item>
+<item>
+  <title>Post Format: Audio</title>
+  <link>http://wpthemetestdata.wordpress.com/2010/07/02/post-format-audio/</link>
+  <pubDate>Fri, 02 Jul 2010 15:36:44 +0000</pubDate>
+  <dc:creator>themedemos</dc:creator>
+  <guid isPermaLink="false">http://wpthemetestdata.wordpress.com/?p=587</guid>
+  <description/>
+  <content:encoded><![CDATA[Link:
+
+<a href="http://wpthemetestdata.files.wordpress.com/2008/06/originaldixielandjazzbandwithalbernard-stlouisblues.mp3">St. Louis Blues</a>
+
+Audio shortcode:
+
+[audio http://wpthemetestdata.files.wordpress.com/2008/06/originaldixielandjazzbandwithalbernard-stlouisblues.mp3]]]></content:encoded>
+  <excerpt:encoded><![CDATA[]]></excerpt:encoded>
+  <wp:post_id>587</wp:post_id>
+  <wp:post_date>2010-07-02 08:36:44</wp:post_date>
+  <wp:post_date_gmt>2010-07-02 15:36:44</wp:post_date_gmt>
+  <wp:comment_status>closed</wp:comment_status>
+  <wp:ping_status>closed</wp:ping_status>
+  <wp:post_name>post-format-audio</wp:post_name>
+  <wp:status>publish</wp:status>
+  <wp:post_parent>0</wp:post_parent>
+  <wp:menu_order>0</wp:menu_order>
+  <wp:post_type>post</wp:post_type>
+  <wp:post_password/>
+  <wp:is_sticky>0</wp:is_sticky>
+  <category domain="post_tag" nicename="audio"><![CDATA[audio]]></category>
+  <category domain="post_tag" nicename="post-formats"><![CDATA[Post Formats]]></category>
+  <category domain="category" nicename="post-formats"><![CDATA[Post Formats]]></category>
+  <category domain="post_format" nicename="post-format-audio"><![CDATA[Audio]]></category>
+  <category domain="post_tag" nicename="shortcode"><![CDATA[shortcode]]></category>
+  <wp:postmeta>
+    <wp:meta_key>enclosure</wp:meta_key>
+    <wp:meta_value><![CDATA[http://wpthemetestdata.files.wordpress.com/2008/06/originaldixielandjazzbandwithalbernard-stlouisblues.mp3
+3043247
+audio/mpeg
+]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_wp_old_slug</wp:meta_key>
+    <wp:meta_value><![CDATA[post-format-test-audio]]></wp:meta_value>
+  </wp:postmeta>
+</item>
+<item>
+  <title>Page B</title>
+  <link>http://wpthemetestdata.wordpress.com/page-b/</link>
+  <pubDate>Fri, 24 Jun 2011 01:39:14 +0000</pubDate>
+  <dc:creator>themedemos</dc:creator>
+  <guid isPermaLink="false">http://wpthemetestdata.wordpress.com/?page_id=735</guid>
+  <description/>
+  <content:encoded><![CDATA[(lorem ipsum)]]></content:encoded>
+  <excerpt:encoded><![CDATA[]]></excerpt:encoded>
+  <wp:post_id>735</wp:post_id>
+  <wp:post_date>2011-06-23 18:39:14</wp:post_date>
+  <wp:post_date_gmt>2011-06-24 01:39:14</wp:post_date_gmt>
+  <wp:comment_status>open</wp:comment_status>
+  <wp:ping_status>closed</wp:ping_status>
+  <wp:post_name>page-b</wp:post_name>
+  <wp:status>publish</wp:status>
+  <wp:post_parent>0</wp:post_parent>
+  <wp:menu_order>11</wp:menu_order>
+  <wp:post_type>page</wp:post_type>
+  <wp:post_password/>
+  <wp:is_sticky>0</wp:is_sticky>
+  <wp:postmeta>
+    <wp:meta_key>_wp_page_template</wp:meta_key>
+    <wp:meta_value><![CDATA[default]]></wp:meta_value>
+  </wp:postmeta>
+</item>
+<item>
+  <title>Level 2a</title>
+  <link>http://wpthemetestdata.wordpress.com/level-1/level-2a/</link>
+  <pubDate>Fri, 24 Jun 2011 02:03:33 +0000</pubDate>
+  <dc:creator>themedemos</dc:creator>
+  <guid isPermaLink="false">http://wpthemetestdata.wordpress.com/?page_id=742</guid>
+  <description/>
+  <content:encoded><![CDATA[(lorem ipsum)]]></content:encoded>
+  <excerpt:encoded><![CDATA[]]></excerpt:encoded>
+  <wp:post_id>742</wp:post_id>
+  <wp:post_date>2011-06-23 19:03:33</wp:post_date>
+  <wp:post_date_gmt>2011-06-24 02:03:33</wp:post_date_gmt>
+  <wp:comment_status>open</wp:comment_status>
+  <wp:ping_status>closed</wp:ping_status>
+  <wp:post_name>level-2a</wp:post_name>
+  <wp:status>publish</wp:status>
+  <wp:post_parent>174</wp:post_parent>
+  <wp:menu_order>0</wp:menu_order>
+  <wp:post_type>page</wp:post_type>
+  <wp:post_password/>
+  <wp:is_sticky>0</wp:is_sticky>
+  <wp:postmeta>
+    <wp:meta_key>_wp_page_template</wp:meta_key>
+    <wp:meta_value><![CDATA[default]]></wp:meta_value>
+  </wp:postmeta>
+</item>
+<item>
+  <title>Level 2b</title>
+  <link>http://wpthemetestdata.wordpress.com/level-1/level-2b/</link>
+  <pubDate>Fri, 24 Jun 2011 02:04:03 +0000</pubDate>
+  <dc:creator>themedemos</dc:creator>
+  <guid isPermaLink="false">http://wpthemetestdata.wordpress.com/?page_id=744</guid>
+  <description/>
+  <content:encoded><![CDATA[(lorem ipsum)]]></content:encoded>
+  <excerpt:encoded><![CDATA[]]></excerpt:encoded>
+  <wp:post_id>744</wp:post_id>
+  <wp:post_date>2011-06-23 19:04:03</wp:post_date>
+  <wp:post_date_gmt>2011-06-24 02:04:03</wp:post_date_gmt>
+  <wp:comment_status>open</wp:comment_status>
+  <wp:ping_status>closed</wp:ping_status>
+  <wp:post_name>level-2b</wp:post_name>
+  <wp:status>publish</wp:status>
+  <wp:post_parent>174</wp:post_parent>
+  <wp:menu_order>0</wp:menu_order>
+  <wp:post_type>page</wp:post_type>
+  <wp:post_password/>
+  <wp:is_sticky>0</wp:is_sticky>
+  <wp:postmeta>
+    <wp:meta_key>_wp_page_template</wp:meta_key>
+    <wp:meta_value><![CDATA[default]]></wp:meta_value>
+  </wp:postmeta>
+</item>
+<item>
+  <title>Level 3a</title>
+  <link>http://wpthemetestdata.wordpress.com/level-1/level-2/level-3a/</link>
+  <pubDate>Fri, 24 Jun 2011 02:04:24 +0000</pubDate>
+  <dc:creator>themedemos</dc:creator>
+  <guid isPermaLink="false">http://wpthemetestdata.wordpress.com/?page_id=746</guid>
+  <description/>
+  <content:encoded><![CDATA[(lorem ipsum)]]></content:encoded>
+  <excerpt:encoded><![CDATA[]]></excerpt:encoded>
+  <wp:post_id>746</wp:post_id>
+  <wp:post_date>2011-06-23 19:04:24</wp:post_date>
+  <wp:post_date_gmt>2011-06-24 02:04:24</wp:post_date_gmt>
+  <wp:comment_status>open</wp:comment_status>
+  <wp:ping_status>closed</wp:ping_status>
+  <wp:post_name>level-3a</wp:post_name>
+  <wp:status>publish</wp:status>
+  <wp:post_parent>173</wp:post_parent>
+  <wp:menu_order>0</wp:menu_order>
+  <wp:post_type>page</wp:post_type>
+  <wp:post_password/>
+  <wp:is_sticky>0</wp:is_sticky>
+  <wp:postmeta>
+    <wp:meta_key>_wp_page_template</wp:meta_key>
+    <wp:meta_value><![CDATA[default]]></wp:meta_value>
+  </wp:postmeta>
+</item>
+<item>
+  <title>Level 3b</title>
+  <link>http://wpthemetestdata.wordpress.com/level-1/level-2/level-3b/</link>
+  <pubDate>Fri, 24 Jun 2011 02:04:46 +0000</pubDate>
+  <dc:creator>themedemos</dc:creator>
+  <guid isPermaLink="false">http://wpthemetestdata.wordpress.com/?page_id=748</guid>
+  <description/>
+  <content:encoded><![CDATA[(lorem ipsum)]]></content:encoded>
+  <excerpt:encoded><![CDATA[]]></excerpt:encoded>
+  <wp:post_id>748</wp:post_id>
+  <wp:post_date>2011-06-23 19:04:46</wp:post_date>
+  <wp:post_date_gmt>2011-06-24 02:04:46</wp:post_date_gmt>
+  <wp:comment_status>open</wp:comment_status>
+  <wp:ping_status>closed</wp:ping_status>
+  <wp:post_name>level-3b</wp:post_name>
+  <wp:status>publish</wp:status>
+  <wp:post_parent>173</wp:post_parent>
+  <wp:menu_order>0</wp:menu_order>
+  <wp:post_type>page</wp:post_type>
+  <wp:post_password/>
+  <wp:is_sticky>0</wp:is_sticky>
+  <wp:postmeta>
+    <wp:meta_key>_wp_page_template</wp:meta_key>
+    <wp:meta_value><![CDATA[default]]></wp:meta_value>
+  </wp:postmeta>
+</item>
+<item>
+  <title>Template: Excerpt (Defined)</title>
+  <link>http://wpthemetestdata.wordpress.com/2012/03/15/template-excerpt-defined/</link>
+  <pubDate>Thu, 15 Mar 2012 21:38:08 +0000</pubDate>
+  <dc:creator>themedemos</dc:creator>
+  <guid isPermaLink="false">http://wptest.io/demo/?p=993</guid>
+  <description/>
+  <content:encoded><![CDATA[This is the post content. It should be displayed in place of the user-defined excerpt in single-page views.]]></content:encoded>
+  <excerpt:encoded><![CDATA[This is a user-defined post excerpt. It should be displayed in place of the post content in archive-index pages.]]></excerpt:encoded>
+  <wp:post_id>993</wp:post_id>
+  <wp:post_date>2012-03-15 14:38:08</wp:post_date>
+  <wp:post_date_gmt>2012-03-15 21:38:08</wp:post_date_gmt>
+  <wp:comment_status>closed</wp:comment_status>
+  <wp:ping_status>closed</wp:ping_status>
+  <wp:post_name>template-excerpt-defined</wp:post_name>
+  <wp:status>publish</wp:status>
+  <wp:post_parent>0</wp:post_parent>
+  <wp:menu_order>0</wp:menu_order>
+  <wp:post_type>post</wp:post_type>
+  <wp:post_password/>
+  <wp:is_sticky>0</wp:is_sticky>
+  <category domain="post_tag" nicename="content-2"><![CDATA[content]]></category>
+  <category domain="post_tag" nicename="excerpt-2"><![CDATA[excerpt]]></category>
+  <category domain="post_tag" nicename="template"><![CDATA[template]]></category>
+  <category domain="category" nicename="template-2"><![CDATA[Template]]></category>
+  <category domain="category" nicename="uncategorized"><![CDATA[Uncategorized]]></category>
+  <wp:postmeta>
+    <wp:meta_key>_wp_old_slug</wp:meta_key>
+    <wp:meta_value><![CDATA[excerpt]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_wp_old_slug</wp:meta_key>
+    <wp:meta_value><![CDATA[template-excerpt]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_publicize_pending</wp:meta_key>
+    <wp:meta_value><![CDATA[1]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>original_post_id</wp:meta_key>
+    <wp:meta_value><![CDATA[993]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_wp_old_slug</wp:meta_key>
+    <wp:meta_value><![CDATA[993]]></wp:meta_value>
+  </wp:postmeta>
+</item>
+<item>
+  <title>Template: More Tag</title>
+  <link>http://wpthemetestdata.wordpress.com/2012/03/15/template-more-tag/</link>
+  <pubDate>Thu, 15 Mar 2012 21:41:11 +0000</pubDate>
+  <dc:creator>themedemos</dc:creator>
+  <guid isPermaLink="false">http://wptest.io/demo/?p=996</guid>
+  <description/>
+  <content:encoded><![CDATA[This content is before the <a title="The More Tag" href="http://en.support.wordpress.com/splitting-content/more-tag/" target="_blank">more tag</a>.
+
+Right after this sentence should be a "continue reading" button of some sort.
+
+<!--more-->
+
+And this content is after the more tag.]]></content:encoded>
+  <excerpt:encoded><![CDATA[]]></excerpt:encoded>
+  <wp:post_id>996</wp:post_id>
+  <wp:post_date>2012-03-15 14:41:11</wp:post_date>
+  <wp:post_date_gmt>2012-03-15 21:41:11</wp:post_date_gmt>
+  <wp:comment_status>closed</wp:comment_status>
+  <wp:ping_status>closed</wp:ping_status>
+  <wp:post_name>template-more-tag</wp:post_name>
+  <wp:status>publish</wp:status>
+  <wp:post_parent>0</wp:post_parent>
+  <wp:menu_order>0</wp:menu_order>
+  <wp:post_type>post</wp:post_type>
+  <wp:post_password/>
+  <wp:is_sticky>0</wp:is_sticky>
+  <category domain="post_tag" nicename="content-2"><![CDATA[content]]></category>
+  <category domain="post_tag" nicename="read-more"><![CDATA[read more]]></category>
+  <category domain="post_tag" nicename="template"><![CDATA[template]]></category>
+  <category domain="category" nicename="template-2"><![CDATA[Template]]></category>
+  <category domain="category" nicename="uncategorized"><![CDATA[Uncategorized]]></category>
+  <wp:postmeta>
+    <wp:meta_key>_wp_old_slug</wp:meta_key>
+    <wp:meta_value><![CDATA[more-tag]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_publicize_pending</wp:meta_key>
+    <wp:meta_value><![CDATA[1]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>original_post_id</wp:meta_key>
+    <wp:meta_value><![CDATA[996]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_wp_old_slug</wp:meta_key>
+    <wp:meta_value><![CDATA[996]]></wp:meta_value>
+  </wp:postmeta>
+</item>
+<item>
+  <title>Edge Case: Nested And Mixed Lists</title>
+  <link>http://wpthemetestdata.wordpress.com/2009/05/15/edge-case-nested-and-mixed-lists/</link>
+  <pubDate>Fri, 15 May 2009 21:48:32 +0000</pubDate>
+  <dc:creator>themedemos</dc:creator>
+  <guid isPermaLink="false">http://wptest.io/demo/?p=1000</guid>
+  <description/>
+  <content:encoded><![CDATA[Nested and mixed lists are an interesting beast. It's a corner case to make sure that
+<ul>
+	<li><span style="line-height:1.714285714;font-size:1rem;">Lists within lists do not break the ordered list numbering order</span></li>
+	<li><span style="line-height:1.714285714;font-size:1rem;">Your list styles go deep enough.</span></li>
+</ul>
+<h3>Ordered - Unordered - Ordered</h3>
+<ol>
+	<li>ordered item</li>
+	<li>ordered item
+<ul>
+	<li><strong>unordered</strong></li>
+	<li><strong>unordered</strong>
+<ol>
+	<li>ordered item</li>
+	<li>ordered item</li>
+</ol>
+</li>
+</ul>
+</li>
+	<li>ordered item</li>
+	<li>ordered item</li>
+</ol>
+<h3>Ordered - Unordered - Unordered</h3>
+<ol>
+	<li>ordered item</li>
+	<li>ordered item
+<ul>
+	<li><strong>unordered</strong></li>
+	<li><strong>unordered</strong>
+<ul>
+	<li>unordered item</li>
+	<li>unordered item</li>
+</ul>
+</li>
+</ul>
+</li>
+	<li>ordered item</li>
+	<li>ordered item</li>
+</ol>
+<h3>Unordered - Ordered - Unordered</h3>
+<ul>
+	<li>unordered item</li>
+	<li>unordered item
+<ol>
+	<li>ordered</li>
+	<li>ordered
+<ul>
+	<li>unordered item</li>
+	<li>unordered item</li>
+</ul>
+</li>
+</ol>
+</li>
+	<li>unordered item</li>
+	<li>unordered item</li>
+</ul>
+<h3>Unordered - Unordered - Ordered</h3>
+<ul>
+	<li>unordered item</li>
+	<li>unordered item
+<ul>
+	<li>unordered</li>
+	<li>unordered
+<ol>
+	<li><strong>ordered item</strong></li>
+	<li><strong>ordered item</strong></li>
+</ol>
+</li>
+</ul>
+</li>
+	<li>unordered item</li>
+	<li>unordered item</li>
+</ul>]]></content:encoded>
+  <excerpt:encoded><![CDATA[]]></excerpt:encoded>
+  <wp:post_id>1000</wp:post_id>
+  <wp:post_date>2009-05-15 14:48:32</wp:post_date>
+  <wp:post_date_gmt>2009-05-15 21:48:32</wp:post_date_gmt>
+  <wp:comment_status>closed</wp:comment_status>
+  <wp:ping_status>closed</wp:ping_status>
+  <wp:post_name>edge-case-nested-and-mixed-lists</wp:post_name>
+  <wp:status>publish</wp:status>
+  <wp:post_parent>0</wp:post_parent>
+  <wp:menu_order>0</wp:menu_order>
+  <wp:post_type>post</wp:post_type>
+  <wp:post_password/>
+  <wp:is_sticky>0</wp:is_sticky>
+  <category domain="post_tag" nicename="content-2"><![CDATA[content]]></category>
+  <category domain="post_tag" nicename="css"><![CDATA[css]]></category>
+  <category domain="post_tag" nicename="edge-case"><![CDATA[edge case]]></category>
+  <category domain="category" nicename="edge-case-2"><![CDATA[Edge Case]]></category>
+  <category domain="post_tag" nicename="lists-2"><![CDATA[lists]]></category>
+  <category domain="post_tag" nicename="markup-2"><![CDATA[markup]]></category>
+  <wp:postmeta>
+    <wp:meta_key>_wp_old_slug</wp:meta_key>
+    <wp:meta_value><![CDATA[nested-and-mixed-lists]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_wp_old_slug</wp:meta_key>
+    <wp:meta_value><![CDATA[html-nested-and-mixed-lists]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_wp_old_slug</wp:meta_key>
+    <wp:meta_value><![CDATA[markup-nested-and-mixed-lists]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_publicize_pending</wp:meta_key>
+    <wp:meta_value><![CDATA[1]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>original_post_id</wp:meta_key>
+    <wp:meta_value><![CDATA[1000]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_wp_old_slug</wp:meta_key>
+    <wp:meta_value><![CDATA[1000]]></wp:meta_value>
+  </wp:postmeta>
+</item>
+<item>
+  <title>Post Format: Video (VideoPress)</title>
+  <link>http://wpthemetestdata.wordpress.com/2010/06/02/post-format-video-videopress/</link>
+  <pubDate>Wed, 02 Jun 2010 10:00:34 +0000</pubDate>
+  <dc:creator>themedemos</dc:creator>
+  <guid isPermaLink="false">http://wptest.io/demo/?p=1005</guid>
+  <description/>
+  <content:encoded><![CDATA[[wpvideo tFnqC9XQ w=680]
+
+<a title="VideoPress Plugin for WordPress" href="http://videopress.com/" target="_blank">VideoPress</a>, especially as a video post format, usually provides some unique styling issues.
+
+You will need to install <a title="Jetpack for WordPress" href="http://jetpack.me/" target="_blank">Jetpack</a> or <a title="Slim Jetpack" href="http://wordpress.org/extend/plugins/slimjetpack/" target="_blank">Slim Jetpack</a> plugin to turn the shortcode into a viewable video.]]></content:encoded>
+  <excerpt:encoded><![CDATA[]]></excerpt:encoded>
+  <wp:post_id>1005</wp:post_id>
+  <wp:post_date>2010-06-02 03:00:34</wp:post_date>
+  <wp:post_date_gmt>2010-06-02 10:00:34</wp:post_date_gmt>
+  <wp:comment_status>closed</wp:comment_status>
+  <wp:ping_status>closed</wp:ping_status>
+  <wp:post_name>post-format-video-videopress</wp:post_name>
+  <wp:status>publish</wp:status>
+  <wp:post_parent>0</wp:post_parent>
+  <wp:menu_order>0</wp:menu_order>
+  <wp:post_type>post</wp:post_type>
+  <wp:post_password/>
+  <wp:is_sticky>0</wp:is_sticky>
+  <category domain="post_tag" nicename="embeds-2"><![CDATA[embeds]]></category>
+  <category domain="post_tag" nicename="jetpack-2"><![CDATA[jetpack]]></category>
+  <category domain="post_tag" nicename="post-formats"><![CDATA[Post Formats]]></category>
+  <category domain="category" nicename="post-formats"><![CDATA[Post Formats]]></category>
+  <category domain="post_format" nicename="post-format-video"><![CDATA[Video]]></category>
+  <category domain="post_tag" nicename="shortcode"><![CDATA[shortcode]]></category>
+  <category domain="post_tag" nicename="video"><![CDATA[video]]></category>
+  <category domain="post_tag" nicename="videopress"><![CDATA[videopress]]></category>
+  <wp:postmeta>
+    <wp:meta_key>_publicize_pending</wp:meta_key>
+    <wp:meta_value><![CDATA[1]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>standard_seo_post_level_layout</wp:meta_key>
+    <wp:meta_value><![CDATA[]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>standard_link_url_field</wp:meta_key>
+    <wp:meta_value><![CDATA[]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>standard_seo_post_meta_description</wp:meta_key>
+    <wp:meta_value><![CDATA[]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>original_post_id</wp:meta_key>
+    <wp:meta_value><![CDATA[1005]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_wp_old_slug</wp:meta_key>
+    <wp:meta_value><![CDATA[1005]]></wp:meta_value>
+  </wp:postmeta>
+</item>
+<item>
+  <title>Template: Featured Image (Horizontal)</title>
+  <link>http://wpthemetestdata.wordpress.com/2012/03/15/template-featured-image-horizontal/</link>
+  <pubDate>Thu, 15 Mar 2012 22:15:12 +0000</pubDate>
+  <dc:creator>themedemos</dc:creator>
+  <guid isPermaLink="false">http://wptest.io/demo/?p=1011</guid>
+  <description/>
+  <content:encoded><![CDATA[This post should display a <a title="Featured Images" href="http://en.support.wordpress.com/featured-images/#setting-a-featured-image" target="_blank">featured image</a>, if the theme <a title="Post Thumbnails" href="http://codex.wordpress.org/Post_Thumbnails" target="_blank">supports it</a>.
+
+Non-square images can provide some unique styling issues.
+
+This post tests a horizontal featured image.]]></content:encoded>
+  <excerpt:encoded><![CDATA[]]></excerpt:encoded>
+  <wp:post_id>1011</wp:post_id>
+  <wp:post_date>2012-03-15 15:15:12</wp:post_date>
+  <wp:post_date_gmt>2012-03-15 22:15:12</wp:post_date_gmt>
+  <wp:comment_status>closed</wp:comment_status>
+  <wp:ping_status>closed</wp:ping_status>
+  <wp:post_name>template-featured-image-horizontal</wp:post_name>
+  <wp:status>publish</wp:status>
+  <wp:post_parent>0</wp:post_parent>
+  <wp:menu_order>0</wp:menu_order>
+  <wp:post_type>post</wp:post_type>
+  <wp:post_password/>
+  <wp:is_sticky>0</wp:is_sticky>
+  <category domain="post_tag" nicename="codex"><![CDATA[Codex]]></category>
+  <category domain="post_tag" nicename="edge-case"><![CDATA[edge case]]></category>
+  <category domain="post_tag" nicename="featured-image"><![CDATA[featured image]]></category>
+  <category domain="post_tag" nicename="image"><![CDATA[image]]></category>
+  <category domain="post_tag" nicename="template"><![CDATA[template]]></category>
+  <category domain="category" nicename="template-2"><![CDATA[Template]]></category>
+  <category domain="category" nicename="uncategorized"><![CDATA[Uncategorized]]></category>
+  <wp:postmeta>
+    <wp:meta_key>_wp_old_slug</wp:meta_key>
+    <wp:meta_value><![CDATA[media-featured-image-horizontal]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_wp_old_slug</wp:meta_key>
+    <wp:meta_value><![CDATA[featured-image-horizontal]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_publicize_pending</wp:meta_key>
+    <wp:meta_value><![CDATA[1]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_wp_old_slug</wp:meta_key>
+    <wp:meta_value><![CDATA[featured-image]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_thumbnail_id</wp:meta_key>
+    <wp:meta_value><![CDATA[1022]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>standard_seo_post_level_layout</wp:meta_key>
+    <wp:meta_value><![CDATA[]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>standard_link_url_field</wp:meta_key>
+    <wp:meta_value><![CDATA[]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>standard_seo_post_meta_description</wp:meta_key>
+    <wp:meta_value><![CDATA[]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>original_post_id</wp:meta_key>
+    <wp:meta_value><![CDATA[1011]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_wp_old_slug</wp:meta_key>
+    <wp:meta_value><![CDATA[1011]]></wp:meta_value>
+  </wp:postmeta>
+</item>
+<item>
+  <title>Template: Featured Image (Vertical)</title>
+  <link>http://wpthemetestdata.wordpress.com/2012/03/15/template-featured-image-vertical/</link>
+  <pubDate>Thu, 15 Mar 2012 22:36:32 +0000</pubDate>
+  <dc:creator>themedemos</dc:creator>
+  <guid isPermaLink="false">http://wptest.io/demo/?p=1016</guid>
+  <description/>
+  <content:encoded><![CDATA[This post should display a <a title="Featured Images" href="http://en.support.wordpress.com/featured-images/#setting-a-featured-image" target="_blank">featured image</a>, if the theme <a title="Post Thumbnails" href="http://codex.wordpress.org/Post_Thumbnails" target="_blank">supports it</a>.
+
+Non-square images can provide some unique styling issues.
+
+This post tests a vertical featured image.]]></content:encoded>
+  <excerpt:encoded><![CDATA[]]></excerpt:encoded>
+  <wp:post_id>1016</wp:post_id>
+  <wp:post_date>2012-03-15 15:36:32</wp:post_date>
+  <wp:post_date_gmt>2012-03-15 22:36:32</wp:post_date_gmt>
+  <wp:comment_status>closed</wp:comment_status>
+  <wp:ping_status>closed</wp:ping_status>
+  <wp:post_name>template-featured-image-vertical</wp:post_name>
+  <wp:status>publish</wp:status>
+  <wp:post_parent>0</wp:post_parent>
+  <wp:menu_order>0</wp:menu_order>
+  <wp:post_type>post</wp:post_type>
+  <wp:post_password/>
+  <wp:is_sticky>0</wp:is_sticky>
+  <category domain="post_tag" nicename="codex"><![CDATA[Codex]]></category>
+  <category domain="post_tag" nicename="edge-case"><![CDATA[edge case]]></category>
+  <category domain="post_tag" nicename="featured-image"><![CDATA[featured image]]></category>
+  <category domain="post_tag" nicename="image"><![CDATA[image]]></category>
+  <category domain="post_tag" nicename="template"><![CDATA[template]]></category>
+  <category domain="category" nicename="template-2"><![CDATA[Template]]></category>
+  <category domain="category" nicename="uncategorized"><![CDATA[Uncategorized]]></category>
+  <wp:postmeta>
+    <wp:meta_key>_wp_old_slug</wp:meta_key>
+    <wp:meta_value><![CDATA[media-featured-image-vertical]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_wp_old_slug</wp:meta_key>
+    <wp:meta_value><![CDATA[featured-image-vertical]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_publicize_pending</wp:meta_key>
+    <wp:meta_value><![CDATA[1]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_thumbnail_id</wp:meta_key>
+    <wp:meta_value><![CDATA[1027]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>standard_seo_post_level_layout</wp:meta_key>
+    <wp:meta_value><![CDATA[]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>standard_link_url_field</wp:meta_key>
+    <wp:meta_value><![CDATA[]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>standard_seo_post_meta_description</wp:meta_key>
+    <wp:meta_value><![CDATA[]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>original_post_id</wp:meta_key>
+    <wp:meta_value><![CDATA[1016]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_wp_old_slug</wp:meta_key>
+    <wp:meta_value><![CDATA[1016]]></wp:meta_value>
+  </wp:postmeta>
+</item>
+<item>
+  <title>Post Format: Gallery (Tiled)</title>
+  <link>http://wpthemetestdata.wordpress.com/2010/09/09/post-format-gallery-tiled/</link>
+  <pubDate>Fri, 10 Sep 2010 00:23:27 +0000</pubDate>
+  <dc:creator>themedemos</dc:creator>
+  <guid isPermaLink="false">http://wptest.io/demo/?p=1031</guid>
+  <description/>
+  <content:encoded><![CDATA[This is a test for Jetpack's Tiled Gallery.
+
+Install <a title="Jetpack for WordPress" href="http://wordpress.org/plugins/jetpack/" target="_blank">Jetpack</a> to test.
+
+[gallery type="rectangular" columns="4" ids="755,757,758,760,766,763" orderby="rand"]
+
+This is some text after the Tiled Gallery just to make sure that everything spaces nicely.]]></content:encoded>
+  <excerpt:encoded><![CDATA[]]></excerpt:encoded>
+  <wp:post_id>1031</wp:post_id>
+  <wp:post_date>2010-09-09 17:23:27</wp:post_date>
+  <wp:post_date_gmt>2010-09-10 00:23:27</wp:post_date_gmt>
+  <wp:comment_status>closed</wp:comment_status>
+  <wp:ping_status>closed</wp:ping_status>
+  <wp:post_name>post-format-gallery-tiled</wp:post_name>
+  <wp:status>publish</wp:status>
+  <wp:post_parent>0</wp:post_parent>
+  <wp:menu_order>0</wp:menu_order>
+  <wp:post_type>post</wp:post_type>
+  <wp:post_password/>
+  <wp:is_sticky>0</wp:is_sticky>
+  <category domain="post_tag" nicename="gallery"><![CDATA[gallery]]></category>
+  <category domain="post_tag" nicename="jetpack-2"><![CDATA[jetpack]]></category>
+  <category domain="post_tag" nicename="post-formats"><![CDATA[Post Formats]]></category>
+  <category domain="category" nicename="post-formats"><![CDATA[Post Formats]]></category>
+  <category domain="post_format" nicename="post-format-gallery"><![CDATA[Gallery]]></category>
+  <category domain="post_tag" nicename="shortcode"><![CDATA[shortcode]]></category>
+  <category domain="post_tag" nicename="tiled"><![CDATA[tiled]]></category>
+  <wp:postmeta>
+    <wp:meta_key>_wp_old_slug</wp:meta_key>
+    <wp:meta_value><![CDATA[tiled-gallery]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_wp_old_slug</wp:meta_key>
+    <wp:meta_value><![CDATA[media-tiled-gallery]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_publicize_pending</wp:meta_key>
+    <wp:meta_value><![CDATA[1]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>standard_seo_post_level_layout</wp:meta_key>
+    <wp:meta_value><![CDATA[]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>standard_link_url_field</wp:meta_key>
+    <wp:meta_value><![CDATA[]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>standard_seo_post_meta_description</wp:meta_key>
+    <wp:meta_value><![CDATA[]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>original_post_id</wp:meta_key>
+    <wp:meta_value><![CDATA[1031]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_wp_old_slug</wp:meta_key>
+    <wp:meta_value><![CDATA[1031]]></wp:meta_value>
+  </wp:postmeta>
+</item>
+<item>
+  <title>Page Image Alignment</title>
+  <link>http://wpthemetestdata.wordpress.com/about/page-image-alignment/</link>
+  <pubDate>Fri, 15 Mar 2013 23:19:23 +0000</pubDate>
+  <dc:creator>themedemos</dc:creator>
+  <guid isPermaLink="false">http://wptest.io/demo/?page_id=1080</guid>
+  <description/>
+  <content:encoded><![CDATA[Welcome to image alignment! The best way to demonstrate the ebb and flow of the various image positioning options is to nestle them snuggly among an ocean of words. Grab a paddle and let's get started.
+
+On the topic of alignment, it should be noted that users can choose from the options of <em>None</em><em>Left</em><em>Right, </em>and <em>Center</em>. In addition, they also get the options of <em>Thumbnail</em><em>Medium</em><em>Large</em> &amp; <em>Fullsize</em>.
+<p style="text-align:center;"><img class="size-full wp-image-906 aligncenter" title="Image Alignment 580x300" alt="Image Alignment 580x300" src="http://wpthemetestdata.files.wordpress.com/2013/03/image-alignment-580x300.jpg" width="580" height="300" /></p>
+The image above happens to be <em><strong>centered</strong></em>.
+
+<strong><img class="size-full wp-image-904 alignleft" title="Image Alignment 150x150" alt="Image Alignment 150x150" src="http://wpthemetestdata.files.wordpress.com/2013/03/image-alignment-150x150.jpg" width="150" height="150" /></strong>The rest of this paragraph is filler for the sake of seeing the text wrap around the 150x150 image, which is <em><strong>left aligned</strong></em><strong></strong>
+
+As you can see the should be some space above, below, and to the right of the image. The text should not be creeping on the image. Creeping is just not right. Images need breathing room too. Let them speak like you words. Let them do their jobs without any hassle from the text. In about one more sentence here, we'll see that the text moves from the right of the image down below the image in seamless transition. Again, letting the do it's thang. Mission accomplished!
+
+And now for a <em><strong>massively large image</strong></em>. It also has <em><strong>no alignment</strong></em>.
+
+<img class="alignnone  wp-image-907" title="Image Alignment 1200x400" alt="Image Alignment 1200x400" src="http://wpthemetestdata.files.wordpress.com/2013/03/image-alignment-1200x4002.jpg" width="1200" height="400" />
+
+The image above, though 1200px wide, should not overflow the content area. It should remain contained with no visible disruption to the flow of content.
+
+<img class="size-full wp-image-905 alignright" title="Image Alignment 300x200" alt="Image Alignment 300x200" src="http://wpthemetestdata.files.wordpress.com/2013/03/image-alignment-300x200.jpg" width="300" height="200" />
+
+And now we're going to shift things to the <em><strong>right align</strong></em>. Again, there should be plenty of room above, below, and to the left of the image. Just look at him there... Hey guy! Way to rock that right side. I don't care what the left aligned image says, you look great. Don't let anyone else tell you differently.
+
+In just a bit here, you should see the text start to wrap below the right aligned image and settle in nicely. There should still be plenty of room and everything should be sitting pretty. Yeah... Just like that. It never felt so good to be right.
+
+And just when you thought we were done, we're going to do them all over again with captions!
+
+[caption id="attachment_906" align="aligncenter" width="580"]<img class="size-full wp-image-906  " title="Image Alignment 580x300" alt="Image Alignment 580x300" src="http://wpthemetestdata.files.wordpress.com/2013/03/image-alignment-580x300.jpg" width="580" height="300" /> Look at 580x300 getting some <a title="Image Settings" href="http://en.support.wordpress.com/images/image-settings/">caption</a> love.[/caption]
+
+The image above happens to be <em><strong>centered</strong></em>. The caption also has a link in it, just to see if it does anything funky.
+
+[caption id="attachment_904" align="alignleft" width="150"]<img class="size-full wp-image-904  " title="Image Alignment 150x150" alt="Image Alignment 150x150" src="http://wpthemetestdata.files.wordpress.com/2013/03/image-alignment-150x150.jpg" width="150" height="150" /> Itty-bitty caption.[/caption]
+
+<strong></strong>The rest of this paragraph is filler for the sake of seeing the text wrap around the 150x150 image, which is <em><strong>left aligned</strong></em><strong></strong>
+
+As you can see the should be some space above, below, and to the right of the image. The text should not be creeping on the image. Creeping is just not right. Images need breathing room too. Let them speak like you words. Let them do their jobs without any hassle from the text. In about one more sentence here, we'll see that the text moves from the right of the image down below the image in seamless transition. Again, letting the do it's thang. Mission accomplished!
+
+And now for a <em><strong>massively large image</strong></em>. It also has <em><strong>no alignment</strong></em>.
+
+[caption id="attachment_907" align="alignnone" width="1200"]<img class=" wp-image-907" title="Image Alignment 1200x400" alt="Image Alignment 1200x400" src="http://wpthemetestdata.files.wordpress.com/2013/03/image-alignment-1200x4002.jpg" width="1200" height="400" /> Massive image comment for your eyeballs.[/caption]
+
+The image above, though 1200px wide, should not overflow the content area. It should remain contained with no visible disruption to the flow of content.
+
+[caption id="attachment_905" align="alignright" width="300"]<img class="size-full wp-image-905 " title="Image Alignment 300x200" alt="Image Alignment 300x200" src="http://wpthemetestdata.files.wordpress.com/2013/03/image-alignment-300x200.jpg" width="300" height="200" /> Feels good to be right all the time.[/caption]
+
+And now we're going to shift things to the <em><strong>right align</strong></em>. Again, there should be plenty of room above, below, and to the left of the image. Just look at him there... Hey guy! Way to rock that right side. I don't care what the left aligned image says, you look great. Don't let anyone else tell you differently.
+
+In just a bit here, you should see the text start to wrap below the right aligned image and settle in nicely. There should still be plenty of room and everything should be sitting pretty. Yeah... Just like that. It never felt so good to be right.
+
+And that's a wrap, yo! You survived the tumultuous waters of alignment. Image alignment achievement unlocked!]]></content:encoded>
+  <excerpt:encoded><![CDATA[]]></excerpt:encoded>
+  <wp:post_id>1133</wp:post_id>
+  <wp:post_date>2013-03-15 18:19:23</wp:post_date>
+  <wp:post_date_gmt>2013-03-15 23:19:23</wp:post_date_gmt>
+  <wp:comment_status>open</wp:comment_status>
+  <wp:ping_status>open</wp:ping_status>
+  <wp:post_name>page-image-alignment</wp:post_name>
+  <wp:status>publish</wp:status>
+  <wp:post_parent>2</wp:post_parent>
+  <wp:menu_order>0</wp:menu_order>
+  <wp:post_type>page</wp:post_type>
+  <wp:post_password/>
+  <wp:is_sticky>0</wp:is_sticky>
+  <wp:postmeta>
+    <wp:meta_key>_publicize_pending</wp:meta_key>
+    <wp:meta_value><![CDATA[1]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_wp_page_template</wp:meta_key>
+    <wp:meta_value><![CDATA[default]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>original_post_id</wp:meta_key>
+    <wp:meta_value><![CDATA[1080]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_wp_old_slug</wp:meta_key>
+    <wp:meta_value><![CDATA[1080]]></wp:meta_value>
+  </wp:postmeta>
+</item>
+<item>
+  <title>Page Markup And Formatting</title>
+  <link>http://wpthemetestdata.wordpress.com/about/page-markup-and-formatting/</link>
+  <pubDate>Fri, 15 Mar 2013 23:20:05 +0000</pubDate>
+  <dc:creator>themedemos</dc:creator>
+  <guid isPermaLink="false">http://wptest.io/demo/?page_id=1083</guid>
+  <description/>
+  <content:encoded><![CDATA[<strong>Headings</strong>
+<h1>Header one</h1>
+<h2>Header two</h2>
+<h3>Header three</h3>
+<h4>Header four</h4>
+<h5>Header five</h5>
+<h6>Header six</h6>
+<h2>Blockquotes</h2>
+Single line blockquote:
+<blockquote>Stay hungry. Stay foolish.</blockquote>
+Multi line blockquote with a cite reference:
+<blockquote>People think focus means saying yes to the thing you've got to focus on. But that's not what it means at all. It means saying no to the hundred other good ideas that there are. You have to pick carefully. I'm actually as proud of the things we haven't done as the things I have done. Innovation is saying no to 1,000 things. <cite>Steve Jobs - Apple Worldwide Developers' Conference, 1997</cite></blockquote>
+<h2>Tables</h2>
+<table>
+<tbody>
+<tr>
+<th>Employee</th>
+<th class="views">Salary</th>
+<th></th>
+</tr>
+<tr class="odd">
+<td><a href="http://example.com/">Jane</a></td>
+<td>$1</td>
+<td>Because that's all Steve Job' needed for a salary.</td>
+</tr>
+<tr class="even">
+<td><a href="http://example.com">John</a></td>
+<td>$100K</td>
+<td>For all the blogging he does.</td>
+</tr>
+<tr class="odd">
+<td><a href="http://example.com/">Jane</a></td>
+<td>$100M</td>
+<td>Pictures are worth a thousand words, right? So Tom x 1,000.</td>
+</tr>
+<tr class="even">
+<td><a href="http://example.com/">Jane</a></td>
+<td>$100B</td>
+<td>With hair like that?! Enough said...</td>
+</tr>
+</tbody>
+</table>
+<h2>Definition Lists</h2>
+<dl><dt>Definition List Title</dt><dd>Definition list division.</dd><dt>Startup</dt><dd>A startup company or startup is a company or temporary organization designed to search for a repeatable and scalable business model.</dd><dt>#dowork</dt><dd>Coined by Rob Dyrdek and his personal body guard Christopher "Big Black" Boykins, "Do Work" works as a self motivator, to motivating your friends.</dd><dt>Do It Live</dt><dd>I'll let Bill O'Reilly will <a title="We'll Do It Live" href="https://www.youtube.com/watch?v=O_HyZ5aW76c">explain</a> this one.</dd></dl>
+<h2>Unordered Lists (Nested)</h2>
+<ul>
+	<li>List item one
+<ul>
+	<li>List item one
+<ul>
+	<li>List item one</li>
+	<li>List item two</li>
+	<li>List item three</li>
+	<li>List item four</li>
+</ul>
+</li>
+	<li>List item two</li>
+	<li>List item three</li>
+	<li>List item four</li>
+</ul>
+</li>
+	<li>List item two</li>
+	<li>List item three</li>
+	<li>List item four</li>
+</ul>
+<h2>Ordered List (Nested)</h2>
+<ol>
+	<li>List item one
+<ol>
+	<li>List item one
+<ol>
+	<li>List item one</li>
+	<li>List item two</li>
+	<li>List item three</li>
+	<li>List item four</li>
+</ol>
+</li>
+	<li>List item two</li>
+	<li>List item three</li>
+	<li>List item four</li>
+</ol>
+</li>
+	<li>List item two</li>
+	<li>List item three</li>
+	<li>List item four</li>
+</ol>
+<h2>HTML Tags</h2>
+These supported tags come from the WordPress.com code <a title="Code" href="http://en.support.wordpress.com/code/">FAQ</a>.
+
+<strong>Address Tag</strong>
+
+<address>1 Infinite Loop
+Cupertino, CA 95014
+United States</address><strong>Anchor Tag (aka. Link)</strong>
+
+This is an example of a <a title="Apple" href="http://apple.com">link</a>.
+
+<strong>Abbreviation Tag</strong>
+
+The abbreviation <abbr title="Seriously">srsly</abbr> stands for "seriously".
+
+<strong>Acronym Tag</strong>
+
+The acronym <acronym title="For The Win">ftw</acronym> stands for "for the win".
+
+<strong>Big Tag</strong>
+
+These tests are a <big>big</big> deal, but this tag is no longer supported in HTML5.
+
+<strong>Cite Tag</strong>
+
+"Code is poetry." --<cite>Automattic</cite>
+
+<strong>Code Tag</strong>
+
+You will learn later on in these tests that <code>word-wrap: break-word;</code> will be your best friend.
+
+<strong>Delete Tag</strong>
+
+This tag will let you <del>strikeout text</del>, but this tag is no longer supported in HTML5 (use the <code>&lt;strike&gt;</code> instead).
+
+<strong>Emphasize Tag</strong>
+
+The emphasize tag should <em>italicize</em> text.
+
+<strong>Insert Tag</strong>
+
+This tag should denote <ins>inserted</ins> text.
+
+<strong>Keyboard Tag</strong>
+
+This scarcely known tag emulates <kbd>keyboard text</kbd>, which is usually styled like the <code>&lt;code&gt;</code> tag.
+
+<strong>Preformatted Tag</strong>
+
+This tag styles large blocks of code.
+<pre>.post-title {
+	margin: 0 0 5px;
+	font-weight: bold;
+	font-size: 38px;
+	line-height: 1.2;
+}</pre>
+<strong>Quote Tag</strong>
+
+<q>Developers, developers, developers...</q> --Steve Ballmer
+
+<strong>Strong Tag</strong>
+
+This tag shows <strong>bold<strong> text.</strong></strong>
+
+<strong>Subscript Tag</strong>
+
+Getting our science styling on with H<sub>2</sub>O, which should push the "2" down.
+
+<strong>Superscript Tag</strong>
+
+Still sticking with science and Isaac Newton's E = MC<sup>2</sup>, which should lift the 2 up.
+
+<strong>Teletype Tag</strong>
+
+This rarely used tag emulates <tt>teletype text</tt>, which is usually styled like the <code>&lt;code&gt;</code> tag.
+
+<strong>Variable Tag</strong>
+
+This allows you to denote <var>variables</var>.]]></content:encoded>
+  <excerpt:encoded><![CDATA[]]></excerpt:encoded>
+  <wp:post_id>1134</wp:post_id>
+  <wp:post_date>2013-03-15 18:20:05</wp:post_date>
+  <wp:post_date_gmt>2013-03-15 23:20:05</wp:post_date_gmt>
+  <wp:comment_status>open</wp:comment_status>
+  <wp:ping_status>open</wp:ping_status>
+  <wp:post_name>page-markup-and-formatting</wp:post_name>
+  <wp:status>publish</wp:status>
+  <wp:post_parent>2</wp:post_parent>
+  <wp:menu_order>0</wp:menu_order>
+  <wp:post_type>page</wp:post_type>
+  <wp:post_password/>
+  <wp:is_sticky>0</wp:is_sticky>
+  <wp:postmeta>
+    <wp:meta_key>_publicize_pending</wp:meta_key>
+    <wp:meta_value><![CDATA[1]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_wp_page_template</wp:meta_key>
+    <wp:meta_value><![CDATA[default]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>standard_seo_post_meta_description</wp:meta_key>
+    <wp:meta_value><![CDATA[]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>original_post_id</wp:meta_key>
+    <wp:meta_value><![CDATA[1083]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_wp_old_slug</wp:meta_key>
+    <wp:meta_value><![CDATA[1083]]></wp:meta_value>
+  </wp:postmeta>
+</item>
+<item>
+  <title>Template: Comments</title>
+  <link>http://wpthemetestdata.wordpress.com/2012/01/03/template-comments/</link>
+  <pubDate>Tue, 03 Jan 2012 17:11:37 +0000</pubDate>
+  <dc:creator>themedemos</dc:creator>
+  <guid isPermaLink="false">http://wpthemetestdata.wordpress.com/2007/09/04/comment-test/</guid>
+  <description/>
+  <content:encoded><![CDATA[This post tests comments in the following ways.
+<ul>
+	<li>Threaded comments up to 10 levels deep</li>
+	<li>Paginated comments (set <em><strong>Settings &gt; Discussion &gt; Break comments into pages</strong></em> to <em><strong>5</strong></em> top level comments per page)</li>
+	<li>Comment markup / formatting</li>
+	<li>Comment images</li>
+	<li>Comment videos</li>
+	<li>Author comments</li>
+	<li>Gravatars and default fallbacks</li>
+</ul>]]></content:encoded>
+  <excerpt:encoded><![CDATA[]]></excerpt:encoded>
+  <wp:post_id>1148</wp:post_id>
+  <wp:post_date>2012-01-03 10:11:37</wp:post_date>
+  <wp:post_date_gmt>2012-01-03 17:11:37</wp:post_date_gmt>
+  <wp:comment_status>open</wp:comment_status>
+  <wp:ping_status>closed</wp:ping_status>
+  <wp:post_name>template-comments</wp:post_name>
+  <wp:status>publish</wp:status>
+  <wp:post_parent>0</wp:post_parent>
+  <wp:menu_order>0</wp:menu_order>
+  <wp:post_type>post</wp:post_type>
+  <wp:post_password/>
+  <wp:is_sticky>0</wp:is_sticky>
+  <category domain="post_tag" nicename="comments-2"><![CDATA[comments]]></category>
+  <category domain="post_tag" nicename="template"><![CDATA[template]]></category>
+  <category domain="category" nicename="template-2"><![CDATA[Template]]></category>
+  <category domain="category" nicename="uncategorized"><![CDATA[Uncategorized]]></category>
+  <wp:postmeta>
+    <wp:meta_key>_publicize_pending</wp:meta_key>
+    <wp:meta_value><![CDATA[1]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_wp_old_slug</wp:meta_key>
+    <wp:meta_value><![CDATA[comment-test]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>original_post_id</wp:meta_key>
+    <wp:meta_value><![CDATA[149]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_wp_old_slug</wp:meta_key>
+    <wp:meta_value><![CDATA[149]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_wp_old_slug</wp:meta_key>
+    <wp:meta_value><![CDATA[comments]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:comment>
+    <wp:comment_id>881</wp:comment_id>
+    <wp:comment_author><![CDATA[John Doe]]></wp:comment_author>
+    <wp:comment_author_email>example@example.org</wp:comment_author_email>
+    <wp:comment_author_url>http://example.org/</wp:comment_author_url>
+    <wp:comment_author_IP>59.167.157.3</wp:comment_author_IP>
+    <wp:comment_date>2012-09-03 10:18:04</wp:comment_date>
+    <wp:comment_date_gmt>2012-09-03 17:18:04</wp:comment_date_gmt>
+    <wp:comment_content><![CDATA[<h2>Headings</h2>
+<h1>Header one</h1>
+<h2>Header two</h2>
+<h3>Header three</h3>
+<h4>Header four</h4>
+<h5>Header five</h5>
+<h6>Header six</h6>
+<h2>Blockquotes</h2>
+Single line blockquote:
+<blockquote>Stay hungry. Stay foolish.</blockquote>
+Multi line blockquote with a cite reference:
+<blockquote>People think focus means saying yes to the thing you've got to focus on. But that's not what it means at all. It means saying no to the hundred other good ideas that there are. You have to pick carefully. I'm actually as proud of the things we haven't done as the things I have done. Innovation is saying no to 1,000 things. <cite>Steve Jobs - Apple Worldwide Developers' Conference, 1997</cite></blockquote>
+<h2>Tables</h2>
+<table>
+<tbody>
+<tr>
+<th>Employee</th>
+<th class="views">Salary</th>
+<th></th>
+</tr>
+<tr class="odd">
+<td><a href="http://example.org/" rel="nofollow">John Saddington</a></td>
+<td>$1</td>
+<td>Because that's all Steve Job' needed for a salary.</td>
+</tr>
+<tr class="even">
+<td><a href="http://example.org/" rel="nofollow">Tom McFarlin</a></td>
+<td>$100K</td>
+<td>For all the blogging he does.</td>
+</tr>
+<tr class="odd">
+<td><a href="http://example.org/" rel="nofollow">Jared Erickson</a></td>
+<td>$100M</td>
+<td>Pictures are worth a thousand words, right? So Tom x 1,000.</td>
+</tr>
+<tr class="even">
+<td><a href="http://example.org/" rel="nofollow">Chris Ames</a></td>
+<td>$100B</td>
+<td>With hair like that?! Enough said...</td>
+</tr>
+</tbody>
+</table>
+<h2>Definition Lists</h2>
+<dl><dt>Definition List Title</dt><dd>Definition list division.</dd><dt>Startup</dt><dd>A startup company or startup is a company or temporary organization designed to search for a repeatable and scalable business model.</dd><dt>#dowork</dt><dd>Coined by Rob Dyrdek and his personal body guard Christopher "Big Black" Boykins, "Do Work" works as a self motivator, to motivating your friends.</dd><dt>Do It Live</dt><dd>I'll let Bill O'Reilly will <a title="We'll Do It Live" href="https://www.youtube.com/watch?v=O_HyZ5aW76c" rel="nofollow">explain</a> this one.</dd></dl>
+<h2>Unordered Lists (Nested)</h2>
+<ul>
+	<li>List item one
+<ul>
+	<li>List item one
+<ul>
+	<li>List item one</li>
+	<li>List item two</li>
+	<li>List item three</li>
+	<li>List item four</li>
+</ul>
+</li>
+	<li>List item two</li>
+	<li>List item three</li>
+	<li>List item four</li>
+</ul>
+</li>
+	<li>List item two</li>
+	<li>List item three</li>
+	<li>List item four</li>
+</ul>
+<h2>Ordered List (Nested)</h2>
+<ol>
+	<li>List item one
+<ol>
+	<li>List item one
+<ol>
+	<li>List item one</li>
+	<li>List item two</li>
+	<li>List item three</li>
+	<li>List item four</li>
+</ol>
+</li>
+	<li>List item two</li>
+	<li>List item three</li>
+	<li>List item four</li>
+</ol>
+</li>
+	<li>List item two</li>
+	<li>List item three</li>
+	<li>List item four</li>
+</ol>
+<h2>HTML Tags</h2>
+These supported tags come from the WordPress.com code <a title="Code" href="http://en.support.wordpress.com/code/" rel="nofollow">FAQ</a>.
+
+<strong>Address Tag</strong>
+
+<address>1 Infinite Loop
+Cupertino, CA 95014
+United States</address><strong>Anchor Tag (aka. Link)</strong>
+
+This is an example of a <a title="Apple" href="http://apple.com" rel="nofollow">link</a>.
+
+<strong>Abbreviation Tag</strong>
+
+The abbreviation <abbr title="Seriously">srsly</abbr> stands for "seriously".
+
+<strong>Acronym Tag</strong>
+
+The acronym <acronym title="For The Win">ftw</acronym> stands for "for the win".
+
+<strong>Big Tag</strong>
+
+These tests are a <big>big</big> deal, but this tag is no longer supported in HTML5.
+
+<strong>Cite Tag</strong>
+
+"Code is poetry." --<cite>Automattic</cite>
+
+<strong>Code Tag</strong>
+
+You will learn later on in these tests that <code>word-wrap: break-word;</code> will be your best friend.
+
+<strong>Delete Tag</strong>
+
+This tag will let you <del>strikeout text</del>, but this tag is no longer supported in HTML5 (use the <code>&lt;strike&gt;</code> instead).
+
+<strong>Emphasize Tag</strong>
+
+The emphasize tag should <em>italicize</em> text.
+
+<strong>Insert Tag</strong>
+
+This tag should denote <ins>inserted</ins> text.
+
+<strong>Keyboard Tag</strong>
+
+This scarcely known tag emulates <kbd>keyboard text</kbd>, which is usually styled like the <code>&lt;code&gt;</code> tag.
+
+<strong>Preformatted Tag</strong>
+
+This tag styles large blocks of code.
+<pre>.post-title {
+  margin: 0 0 5px;
+  font-weight: bold;
+  font-size: 38px;
+  line-height: 1.2;
+}</pre>
+
+<strong>Quote Tag</strong>
+
+<q>Developers, developers, developers...</q> --Steve Ballmer
+
+<strong>Strong Tag</strong>
+
+This tag shows <strong>bold<strong> text.</strong></strong>
+
+<strong>Subscript Tag</strong>
+
+Getting our science styling on with H<sub>2</sub>O, which should push the "2" down.
+
+<strong>Superscript Tag</strong>
+
+Still sticking with science and Isaac Newton's E = MC<sup>2</sup>, which should lift the 2 up.
+
+<strong>Teletype Tag</strong>
+
+This rarely used tag emulates <tt>teletype text</tt>, which is usually styled like the <code>&lt;code&gt;</code> tag.
+
+<strong>Variable Tag</strong>
+
+This allows you to denote <var>variables</var>.]]></wp:comment_content>
+    <wp:comment_approved>1</wp:comment_approved>
+    <wp:comment_type/>
+    <wp:comment_parent>0</wp:comment_parent>
+    <wp:comment_user_id>0</wp:comment_user_id>
+  </wp:comment>
+  <wp:comment>
+    <wp:comment_id>899</wp:comment_id>
+    <wp:comment_author><![CDATA[Anonymous User]]></wp:comment_author>
+    <wp:comment_author_email>fake@email.com</wp:comment_author_email>
+    <wp:comment_author_url/>
+    <wp:comment_author_IP>67.3.69.40</wp:comment_author_IP>
+    <wp:comment_date>2013-03-11 23:45:54</wp:comment_date>
+    <wp:comment_date_gmt>2013-03-12 04:45:54</wp:comment_date_gmt>
+    <wp:comment_content><![CDATA[This user it trying to be anonymous.
+
+
+    They used a fake email, so there should be no <a href="http://gravatar.com/" title="Gravatar" rel="nofollow">Gravatar</a> associated with it.
+    They did not speify a website, so there should be no link to it in the comment.
+]]></wp:comment_content>
+    <wp:comment_approved>1</wp:comment_approved>
+    <wp:comment_type/>
+    <wp:comment_parent>0</wp:comment_parent>
+    <wp:comment_user_id>0</wp:comment_user_id>
+  </wp:comment>
+  <wp:comment>
+    <wp:comment_id>900</wp:comment_id>
+    <wp:comment_author><![CDATA[Jane Doe]]></wp:comment_author>
+    <wp:comment_author_email>example@example.org</wp:comment_author_email>
+    <wp:comment_author_url>http://example.org/</wp:comment_author_url>
+    <wp:comment_author_IP>204.54.106.1</wp:comment_author_IP>
+    <wp:comment_date>2013-03-12 13:17:35</wp:comment_date>
+    <wp:comment_date_gmt>2013-03-12 20:17:35</wp:comment_date_gmt>
+    <wp:comment_content><![CDATA[Comments? I love comments!]]></wp:comment_content>
+    <wp:comment_approved>1</wp:comment_approved>
+    <wp:comment_type/>
+    <wp:comment_parent>0</wp:comment_parent>
+    <wp:comment_user_id>0</wp:comment_user_id>
+  </wp:comment>
+  <wp:comment>
+    <wp:comment_id>901</wp:comment_id>
+    <wp:comment_author><![CDATA[John Doe]]></wp:comment_author>
+    <wp:comment_author_email>example@example.org</wp:comment_author_email>
+    <wp:comment_author_url>http://example.org</wp:comment_author_url>
+    <wp:comment_author_IP>24.126.245.62</wp:comment_author_IP>
+    <wp:comment_date>2013-03-14 07:53:26</wp:comment_date>
+    <wp:comment_date_gmt>2013-03-14 14:53:26</wp:comment_date_gmt>
+    <wp:comment_content><![CDATA[These tests are amazing!]]></wp:comment_content>
+    <wp:comment_approved>1</wp:comment_approved>
+    <wp:comment_type/>
+    <wp:comment_parent>0</wp:comment_parent>
+    <wp:comment_user_id>0</wp:comment_user_id>
+  </wp:comment>
+  <wp:comment>
+    <wp:comment_id>903</wp:comment_id>
+    <wp:comment_author><![CDATA[John Doe]]></wp:comment_author>
+    <wp:comment_author_email>example@example.org</wp:comment_author_email>
+    <wp:comment_author_url>http://example.org/</wp:comment_author_url>
+    <wp:comment_author_IP>24.126.245.62</wp:comment_author_IP>
+    <wp:comment_date>2013-03-14 07:56:46</wp:comment_date>
+    <wp:comment_date_gmt>2013-03-14 14:56:46</wp:comment_date_gmt>
+    <wp:comment_content><![CDATA[Author Comment.]]></wp:comment_content>
+    <wp:comment_approved>1</wp:comment_approved>
+    <wp:comment_type/>
+    <wp:comment_parent>0</wp:comment_parent>
+    <wp:comment_user_id>24783058</wp:comment_user_id>
+  </wp:comment>
+  <wp:comment>
+    <wp:comment_id>904</wp:comment_id>
+    <wp:comment_author><![CDATA[John Doe]]></wp:comment_author>
+    <wp:comment_author_email>example@example.org</wp:comment_author_email>
+    <wp:comment_author_url>http://example.org/</wp:comment_author_url>
+    <wp:comment_author_IP>24.126.245.62</wp:comment_author_IP>
+    <wp:comment_date>2013-03-14 07:57:01</wp:comment_date>
+    <wp:comment_date_gmt>2013-03-14 14:57:01</wp:comment_date_gmt>
+    <wp:comment_content><![CDATA[Comment Depth 01]]></wp:comment_content>
+    <wp:comment_approved>1</wp:comment_approved>
+    <wp:comment_type/>
+    <wp:comment_parent>0</wp:comment_parent>
+    <wp:comment_user_id>0</wp:comment_user_id>
+  </wp:comment>
+  <wp:comment>
+    <wp:comment_id>905</wp:comment_id>
+    <wp:comment_author><![CDATA[Jane Bloggs]]></wp:comment_author>
+    <wp:comment_author_email>example@example.org</wp:comment_author_email>
+    <wp:comment_author_url>http://example.org/</wp:comment_author_url>
+    <wp:comment_author_IP>24.126.245.62</wp:comment_author_IP>
+    <wp:comment_date>2013-03-14 08:01:21</wp:comment_date>
+    <wp:comment_date_gmt>2013-03-14 15:01:21</wp:comment_date_gmt>
+    <wp:comment_content><![CDATA[Comment Depth 02]]></wp:comment_content>
+    <wp:comment_approved>1</wp:comment_approved>
+    <wp:comment_type/>
+    <wp:comment_parent>904</wp:comment_parent>
+    <wp:comment_user_id>0</wp:comment_user_id>
+  </wp:comment>
+  <wp:comment>
+    <wp:comment_id>906</wp:comment_id>
+    <wp:comment_author><![CDATA[Fred Bloggs]]></wp:comment_author>
+    <wp:comment_author_email>example@example.org</wp:comment_author_email>
+    <wp:comment_author_url>http://example.org/</wp:comment_author_url>
+    <wp:comment_author_IP>24.126.245.62</wp:comment_author_IP>
+    <wp:comment_date>2013-03-14 08:02:06</wp:comment_date>
+    <wp:comment_date_gmt>2013-03-14 15:02:06</wp:comment_date_gmt>
+    <wp:comment_content><![CDATA[Comment Depth 03]]></wp:comment_content>
+    <wp:comment_approved>1</wp:comment_approved>
+    <wp:comment_type/>
+    <wp:comment_parent>905</wp:comment_parent>
+    <wp:comment_user_id>0</wp:comment_user_id>
+  </wp:comment>
+  <wp:comment>
+    <wp:comment_id>907</wp:comment_id>
+    <wp:comment_author><![CDATA[Fred Bloggs]]></wp:comment_author>
+    <wp:comment_author_email>example@example.org</wp:comment_author_email>
+    <wp:comment_author_url>http://example.org/</wp:comment_author_url>
+    <wp:comment_author_IP>24.126.245.62</wp:comment_author_IP>
+    <wp:comment_date>2013-03-14 08:03:22</wp:comment_date>
+    <wp:comment_date_gmt>2013-03-14 15:03:22</wp:comment_date_gmt>
+    <wp:comment_content><![CDATA[Comment Depth 04]]></wp:comment_content>
+    <wp:comment_approved>1</wp:comment_approved>
+    <wp:comment_type/>
+    <wp:comment_parent>906</wp:comment_parent>
+    <wp:comment_user_id>0</wp:comment_user_id>
+  </wp:comment>
+  <wp:comment>
+    <wp:comment_id>910</wp:comment_id>
+    <wp:comment_author><![CDATA[Joe Bloggs]]></wp:comment_author>
+    <wp:comment_author_email>example@example.org</wp:comment_author_email>
+    <wp:comment_author_url>http://example.org/</wp:comment_author_url>
+    <wp:comment_author_IP>24.126.245.62</wp:comment_author_IP>
+    <wp:comment_date>2013-03-14 08:10:29</wp:comment_date>
+    <wp:comment_date_gmt>2013-03-14 15:10:29</wp:comment_date_gmt>
+    <wp:comment_content><![CDATA[Comment Depth 05
+
+Also an author comment.]]></wp:comment_content>
+    <wp:comment_approved>1</wp:comment_approved>
+    <wp:comment_type/>
+    <wp:comment_parent>907</wp:comment_parent>
+    <wp:comment_user_id>24783058</wp:comment_user_id>
+  </wp:comment>
+  <wp:comment>
+    <wp:comment_id>911</wp:comment_id>
+    <wp:comment_author><![CDATA[Jane Bloggs]]></wp:comment_author>
+    <wp:comment_author_email>example@example.org</wp:comment_author_email>
+    <wp:comment_author_url>http://example.org/</wp:comment_author_url>
+    <wp:comment_author_IP>24.126.245.62</wp:comment_author_IP>
+    <wp:comment_date>2013-03-14 08:12:16</wp:comment_date>
+    <wp:comment_date_gmt>2013-03-14 15:12:16</wp:comment_date_gmt>
+    <wp:comment_content><![CDATA[Comment Depth 06]]></wp:comment_content>
+    <wp:comment_approved>1</wp:comment_approved>
+    <wp:comment_type/>
+    <wp:comment_parent>910</wp:comment_parent>
+    <wp:comment_user_id>0</wp:comment_user_id>
+  </wp:comment>
+  <wp:comment>
+    <wp:comment_id>912</wp:comment_id>
+    <wp:comment_author><![CDATA[Joe Bloggs]]></wp:comment_author>
+    <wp:comment_author_email>example@example.org</wp:comment_author_email>
+    <wp:comment_author_url>http://example.org/</wp:comment_author_url>
+    <wp:comment_author_IP>24.126.245.62</wp:comment_author_IP>
+    <wp:comment_date>2013-03-14 08:12:58</wp:comment_date>
+    <wp:comment_date_gmt>2013-03-14 15:12:58</wp:comment_date_gmt>
+    <wp:comment_content><![CDATA[Comment Depth 07]]></wp:comment_content>
+    <wp:comment_approved>1</wp:comment_approved>
+    <wp:comment_type/>
+    <wp:comment_parent>911</wp:comment_parent>
+    <wp:comment_user_id>0</wp:comment_user_id>
+  </wp:comment>
+  <wp:comment>
+    <wp:comment_id>913</wp:comment_id>
+    <wp:comment_author><![CDATA[Jane Bloggs]]></wp:comment_author>
+    <wp:comment_author_email>example@example.org</wp:comment_author_email>
+    <wp:comment_author_url>http://example.org/</wp:comment_author_url>
+    <wp:comment_author_IP>24.126.245.62</wp:comment_author_IP>
+    <wp:comment_date>2013-03-14 08:13:42</wp:comment_date>
+    <wp:comment_date_gmt>2013-03-14 15:13:42</wp:comment_date_gmt>
+    <wp:comment_content><![CDATA[Comment Depth 08]]></wp:comment_content>
+    <wp:comment_approved>1</wp:comment_approved>
+    <wp:comment_type/>
+    <wp:comment_parent>912</wp:comment_parent>
+    <wp:comment_user_id>0</wp:comment_user_id>
+  </wp:comment>
+  <wp:comment>
+    <wp:comment_id>914</wp:comment_id>
+    <wp:comment_author><![CDATA[Joe Bloggs]]></wp:comment_author>
+    <wp:comment_author_email>example@example.org</wp:comment_author_email>
+    <wp:comment_author_url>http://example.org/</wp:comment_author_url>
+    <wp:comment_author_IP>24.126.245.62</wp:comment_author_IP>
+    <wp:comment_date>2013-03-14 08:14:13</wp:comment_date>
+    <wp:comment_date_gmt>2013-03-14 15:14:13</wp:comment_date_gmt>
+    <wp:comment_content><![CDATA[Comment Depth 09]]></wp:comment_content>
+    <wp:comment_approved>1</wp:comment_approved>
+    <wp:comment_type/>
+    <wp:comment_parent>913</wp:comment_parent>
+    <wp:comment_user_id>0</wp:comment_user_id>
+  </wp:comment>
+  <wp:comment>
+    <wp:comment_id>915</wp:comment_id>
+    <wp:comment_author><![CDATA[John Doe]]></wp:comment_author>
+    <wp:comment_author_email>example@example.org</wp:comment_author_email>
+    <wp:comment_author_url>http://example.org/</wp:comment_author_url>
+    <wp:comment_author_IP>24.126.245.62</wp:comment_author_IP>
+    <wp:comment_date>2013-03-14 08:14:47</wp:comment_date>
+    <wp:comment_date_gmt>2013-03-14 15:14:47</wp:comment_date_gmt>
+    <wp:comment_content><![CDATA[Comment Depth 10
+
+Also an author comment.]]></wp:comment_content>
+    <wp:comment_approved>1</wp:comment_approved>
+    <wp:comment_type/>
+    <wp:comment_parent>914</wp:comment_parent>
+    <wp:comment_user_id>24783058</wp:comment_user_id>
+  </wp:comment>
+  <wp:comment>
+    <wp:comment_id>917</wp:comment_id>
+    <wp:comment_author><![CDATA[Jane Doe]]></wp:comment_author>
+    <wp:comment_author_email>example@example.org</wp:comment_author_email>
+    <wp:comment_author_url>http://example.org/</wp:comment_author_url>
+    <wp:comment_author_IP>24.126.245.62</wp:comment_author_IP>
+    <wp:comment_date>2013-03-14 09:56:43</wp:comment_date>
+    <wp:comment_date_gmt>2013-03-14 16:56:43</wp:comment_date_gmt>
+    <wp:comment_content><![CDATA[Image comment.
+
+]]></wp:comment_content>
+    <wp:comment_approved>1</wp:comment_approved>
+    <wp:comment_type/>
+    <wp:comment_parent>0</wp:comment_parent>
+    <wp:comment_user_id>0</wp:comment_user_id>
+  </wp:comment>
+  <wp:comment>
+    <wp:comment_id>918</wp:comment_id>
+    <wp:comment_author><![CDATA[John Doe]]></wp:comment_author>
+    <wp:comment_author_email>example@example.org</wp:comment_author_email>
+    <wp:comment_author_url>http://example.org/</wp:comment_author_url>
+    <wp:comment_author_IP>24.126.245.62</wp:comment_author_IP>
+    <wp:comment_date>2013-03-14 11:23:24</wp:comment_date>
+    <wp:comment_date_gmt>2013-03-14 18:23:24</wp:comment_date_gmt>
+    <wp:comment_content><![CDATA[We are totally going to blog about these tests!]]></wp:comment_content>
+    <wp:comment_approved>1</wp:comment_approved>
+    <wp:comment_type/>
+    <wp:comment_parent>0</wp:comment_parent>
+    <wp:comment_user_id>0</wp:comment_user_id>
+  </wp:comment>
+  <wp:comment>
+    <wp:comment_id>919</wp:comment_id>
+    <wp:comment_author><![CDATA[John Doe]]></wp:comment_author>
+    <wp:comment_author_email>example@example.org</wp:comment_author_email>
+    <wp:comment_author_url>http://example.org/</wp:comment_author_url>
+    <wp:comment_author_IP>24.126.245.62</wp:comment_author_IP>
+    <wp:comment_date>2013-03-14 11:27:54</wp:comment_date>
+    <wp:comment_date_gmt>2013-03-14 18:27:54</wp:comment_date_gmt>
+    <wp:comment_content><![CDATA[We use these tests all the time! Killer stuff!]]></wp:comment_content>
+    <wp:comment_approved>1</wp:comment_approved>
+    <wp:comment_type/>
+    <wp:comment_parent>0</wp:comment_parent>
+    <wp:comment_user_id>0</wp:comment_user_id>
+  </wp:comment>
+  <wp:comment>
+    <wp:comment_id>920</wp:comment_id>
+    <wp:comment_author><![CDATA[Jane Doe]]></wp:comment_author>
+    <wp:comment_author_email>example@example.org</wp:comment_author_email>
+    <wp:comment_author_url>http://example.org/</wp:comment_author_url>
+    <wp:comment_author_IP>24.126.245.62</wp:comment_author_IP>
+    <wp:comment_date>2013-03-14 11:30:33</wp:comment_date>
+    <wp:comment_date_gmt>2013-03-14 18:30:33</wp:comment_date_gmt>
+    <wp:comment_content><![CDATA[Thanks for all the comments, everyone!]]></wp:comment_content>
+    <wp:comment_approved>1</wp:comment_approved>
+    <wp:comment_type/>
+    <wp:comment_parent>0</wp:comment_parent>
+    <wp:comment_user_id>24783058</wp:comment_user_id>
+  </wp:comment>
+</item>
+<item>
+  <title>Template: Pingbacks And Trackbacks</title>
+  <link>http://wpthemetestdata.wordpress.com/2012/01/01/template-pingbacks-an-trackbacks/</link>
+  <pubDate>Sun, 01 Jan 2012 17:17:18 +0000</pubDate>
+  <dc:creator>themedemos</dc:creator>
+  <guid isPermaLink="false">http://wpthemetestdata.wordpress.com/2007/09/04/many-trackbacks/</guid>
+  <description/>
+  <content:encoded><![CDATA[This post has many pingpacks and trackbacks.
+
+There are a few ways to list them.
+<ol>
+	<li>Above the comments</li>
+	<li>Below the comments</li>
+	<li>Included within the normal flow of comments</li>
+</ol>]]></content:encoded>
+  <excerpt:encoded><![CDATA[]]></excerpt:encoded>
+  <wp:post_id>1149</wp:post_id>
+  <wp:post_date>2012-01-01 10:17:18</wp:post_date>
+  <wp:post_date_gmt>2012-01-01 17:17:18</wp:post_date_gmt>
+  <wp:comment_status>closed</wp:comment_status>
+  <wp:ping_status>closed</wp:ping_status>
+  <wp:post_name>template-pingbacks-an-trackbacks</wp:post_name>
+  <wp:status>publish</wp:status>
+  <wp:post_parent>0</wp:post_parent>
+  <wp:menu_order>0</wp:menu_order>
+  <wp:post_type>post</wp:post_type>
+  <wp:post_password/>
+  <wp:is_sticky>0</wp:is_sticky>
+  <category domain="post_tag" nicename="comments-2"><![CDATA[comments]]></category>
+  <category domain="post_tag" nicename="pingbacks-2"><![CDATA[pingbacks]]></category>
+  <category domain="post_tag" nicename="template"><![CDATA[template]]></category>
+  <category domain="category" nicename="template-2"><![CDATA[Template]]></category>
+  <category domain="post_tag" nicename="trackbacks-2"><![CDATA[trackbacks]]></category>
+  <category domain="category" nicename="uncategorized"><![CDATA[Uncategorized]]></category>
+  <wp:postmeta>
+    <wp:meta_key>_wp_old_slug</wp:meta_key>
+    <wp:meta_value><![CDATA[pingbacks-an-trackbacks]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_publicize_pending</wp:meta_key>
+    <wp:meta_value><![CDATA[1]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_wp_old_slug</wp:meta_key>
+    <wp:meta_value><![CDATA[many-trackbacks]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>original_post_id</wp:meta_key>
+    <wp:meta_value><![CDATA[151]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_wp_old_slug</wp:meta_key>
+    <wp:meta_value><![CDATA[151]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:comment>
+    <wp:comment_id>921</wp:comment_id>
+    <wp:comment_author><![CDATA[Ping 1 &laquo; What&#8217;s a tellyworth?]]></wp:comment_author>
+    <wp:comment_author_email/>
+    <wp:comment_author_url>http://tellyworth.wordpress.com/2007/11/21/ping-1/</wp:comment_author_url>
+    <wp:comment_author_IP>72.232.101.12</wp:comment_author_IP>
+    <wp:comment_date>2007-11-21 11:31:12</wp:comment_date>
+    <wp:comment_date_gmt>2007-11-21 01:31:12</wp:comment_date_gmt>
+    <wp:comment_content><![CDATA[[...] Trackback test. [...]]]></wp:comment_content>
+    <wp:comment_approved>1</wp:comment_approved>
+    <wp:comment_type>pingback</wp:comment_type>
+    <wp:comment_parent>0</wp:comment_parent>
+    <wp:comment_user_id>0</wp:comment_user_id>
+  </wp:comment>
+  <wp:comment>
+    <wp:comment_id>922</wp:comment_id>
+    <wp:comment_author><![CDATA[Ping 2 with a much longer title than the previous ping, which was called Ping 1 &laquo; What&#8217;s a tellyworth?]]></wp:comment_author>
+    <wp:comment_author_email/>
+    <wp:comment_author_url>http://tellyworth.wordpress.com/2007/11/21/ping-2-with-a-much-longer-title-than-the-previous-ping-which-was-called-ping-1/</wp:comment_author_url>
+    <wp:comment_author_IP>72.232.101.12</wp:comment_author_IP>
+    <wp:comment_date>2007-11-21 11:35:47</wp:comment_date>
+    <wp:comment_date_gmt>2007-11-21 01:35:47</wp:comment_date_gmt>
+    <wp:comment_content><![CDATA[[...] Another trackback test.  Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec hendrerit gravida nisi. Praesent libero odio, tincidunt nec, fringilla et, mollis ut, ipsum. Proin a lacus quis nisi pulvinar bibendum. Donec massa justo, dapibus at, imperdiet vestibulum, dapibus in, leo. Donec pretium tellus in dui. Phasellus tristique aliquet justo. Donec sodales. Nulla urna mi, molestie ac, malesuada sit amet, sagittis id, lacus. Mauris auctor leo ac justo. Proin convallis. Nulla eleifend dictum mi. Donec at lectus. Integer augue sapien, ornare vitae, rhoncus quis, rhoncus sed, sapien. Nunc mattis diam sodales diam.Etiam porttitor, ante sed varius semper, ante arcu rutrum tortor, at luctus nunc urna id nibh. Fusce sodales. Integer sed ligula. Donec posuere, nibh aliquet auctor congue, augue est porttitor odio, imperdiet facilisis tortor urna vel mauris. Pellentesque pretium, lorem non pellentesque varius, elit diam ultrices mi, sed posuere sapien lectus sed mi. Donec vestibulum urna. Donec gravida elit et enim. Ut dignissim neque ut erat. Morbi tincidunt nunc vitae lorem. Morbi rhoncus mi. Praesent facilisis tincidunt enim. Ut pulvinar. Suspendisse potenti. Vivamus turpis odio, porta at, malesuada in, iaculis eget, odio. Aenean faucibus, urna quis congue dignissim, orci tellus ornare leo, eget viverra ante ipsum sit amet magna. Suspendisse mattis nunc at justo. Nullam malesuada lobortis lorem. Morbi ultricies. Nam risus erat, sagittis ut, tristique rhoncus, luctus id, ante. Maecenas ac dui. [...]]]></wp:comment_content>
+    <wp:comment_approved>1</wp:comment_approved>
+    <wp:comment_type>pingback</wp:comment_type>
+    <wp:comment_parent>0</wp:comment_parent>
+    <wp:comment_user_id>0</wp:comment_user_id>
+  </wp:comment>
+  <wp:comment>
+    <wp:comment_id>923</wp:comment_id>
+    <wp:comment_author><![CDATA[Ping 4 &laquo; What&#8217;s a tellyworth?]]></wp:comment_author>
+    <wp:comment_author_email/>
+    <wp:comment_author_url>http://tellyworth.wordpress.com/2007/11/21/ping-4/</wp:comment_author_url>
+    <wp:comment_author_IP>72.232.101.12</wp:comment_author_IP>
+    <wp:comment_date>2007-11-21 11:39:25</wp:comment_date>
+    <wp:comment_date_gmt>2007-11-21 01:39:25</wp:comment_date_gmt>
+    <wp:comment_content><![CDATA[[...] Another short one. [...]]]></wp:comment_content>
+    <wp:comment_approved>1</wp:comment_approved>
+    <wp:comment_type>pingback</wp:comment_type>
+    <wp:comment_parent>0</wp:comment_parent>
+    <wp:comment_user_id>0</wp:comment_user_id>
+  </wp:comment>
+  <wp:comment>
+    <wp:comment_id>924</wp:comment_id>
+    <wp:comment_author><![CDATA[Ping 3 &laquo; What&#8217;s a tellyworth?]]></wp:comment_author>
+    <wp:comment_author_email/>
+    <wp:comment_author_url>http://tellyworth.wordpress.com/2007/11/21/ping-3/</wp:comment_author_url>
+    <wp:comment_author_IP>72.232.101.12</wp:comment_author_IP>
+    <wp:comment_date>2007-11-21 11:38:22</wp:comment_date>
+    <wp:comment_date_gmt>2007-11-21 01:38:22</wp:comment_date_gmt>
+    <wp:comment_content><![CDATA[[...] Just a short one. [...]]]></wp:comment_content>
+    <wp:comment_approved>1</wp:comment_approved>
+    <wp:comment_type>pingback</wp:comment_type>
+    <wp:comment_parent>0</wp:comment_parent>
+    <wp:comment_user_id>0</wp:comment_user_id>
+  </wp:comment>
+  <wp:comment>
+    <wp:comment_id>925</wp:comment_id>
+    <wp:comment_author><![CDATA[John Doe]]></wp:comment_author>
+    <wp:comment_author_email>example@example.org</wp:comment_author_email>
+    <wp:comment_author_url>http://example.org/</wp:comment_author_url>
+    <wp:comment_author_IP>146.214.103.251</wp:comment_author_IP>
+    <wp:comment_date>2010-06-11 15:27:04</wp:comment_date>
+    <wp:comment_date_gmt>2010-06-11 22:27:04</wp:comment_date_gmt>
+    <wp:comment_content><![CDATA[This is a comment amongst pingbacks and trackbacks.]]></wp:comment_content>
+    <wp:comment_approved>1</wp:comment_approved>
+    <wp:comment_type/>
+    <wp:comment_parent>0</wp:comment_parent>
+    <wp:comment_user_id>0</wp:comment_user_id>
+  </wp:comment>
+</item>
+<item>
+  <title>Template: Comments Disabled</title>
+  <link>http://wpthemetestdata.wordpress.com/2012/01/02/template-comments-disabled/</link>
+  <pubDate>Mon, 02 Jan 2012 17:21:15 +0000</pubDate>
+  <dc:creator>themedemos</dc:creator>
+  <guid isPermaLink="false">http://wpthemetestdata.wordpress.com/2007/09/04/no-comments/</guid>
+  <description/>
+  <content:encoded><![CDATA[This post has its comments, pingbacks, and trackbacks disabled.
+
+There should be no comment reply form, but <em>should</em> display pingbacks and trackbacks.]]></content:encoded>
+  <excerpt:encoded><![CDATA[]]></excerpt:encoded>
+  <wp:post_id>1150</wp:post_id>
+  <wp:post_date>2012-01-02 10:21:15</wp:post_date>
+  <wp:post_date_gmt>2012-01-02 17:21:15</wp:post_date_gmt>
+  <wp:comment_status>closed</wp:comment_status>
+  <wp:ping_status>closed</wp:ping_status>
+  <wp:post_name>template-comments-disabled</wp:post_name>
+  <wp:status>publish</wp:status>
+  <wp:post_parent>0</wp:post_parent>
+  <wp:menu_order>0</wp:menu_order>
+  <wp:post_type>post</wp:post_type>
+  <wp:post_password/>
+  <wp:is_sticky>0</wp:is_sticky>
+  <category domain="post_tag" nicename="comments-2"><![CDATA[comments]]></category>
+  <category domain="post_tag" nicename="template"><![CDATA[template]]></category>
+  <category domain="category" nicename="template-2"><![CDATA[Template]]></category>
+  <category domain="category" nicename="uncategorized"><![CDATA[Uncategorized]]></category>
+  <wp:postmeta>
+    <wp:meta_key>_publicize_pending</wp:meta_key>
+    <wp:meta_value><![CDATA[1]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_wp_old_slug</wp:meta_key>
+    <wp:meta_value><![CDATA[no-comments]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>original_post_id</wp:meta_key>
+    <wp:meta_value><![CDATA[152]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_wp_old_slug</wp:meta_key>
+    <wp:meta_value><![CDATA[152]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_wp_old_slug</wp:meta_key>
+    <wp:meta_value><![CDATA[comments-disabled-2]]></wp:meta_value>
+  </wp:postmeta>
+</item>
+<item>
+  <title>Edge Case: Many Tags</title>
+  <link>http://wpthemetestdata.wordpress.com/2009/06/01/edge-case-many-tags/</link>
+  <pubDate>Mon, 01 Jun 2009 08:00:34 +0000</pubDate>
+  <dc:creator>themedemos</dc:creator>
+  <guid isPermaLink="false">http://wpthemetestdata.wordpress.com/2007/11/24/many-tags/</guid>
+  <description/>
+  <content:encoded><![CDATA[This post has many tags.]]></content:encoded>
+  <excerpt:encoded><![CDATA[]]></excerpt:encoded>
+  <wp:post_id>1151</wp:post_id>
+  <wp:post_date>2009-06-01 01:00:34</wp:post_date>
+  <wp:post_date_gmt>2009-06-01 08:00:34</wp:post_date_gmt>
+  <wp:comment_status>closed</wp:comment_status>
+  <wp:ping_status>closed</wp:ping_status>
+  <wp:post_name>edge-case-many-tags</wp:post_name>
+  <wp:status>publish</wp:status>
+  <wp:post_parent>0</wp:post_parent>
+  <wp:menu_order>0</wp:menu_order>
+  <wp:post_type>post</wp:post_type>
+  <wp:post_password/>
+  <wp:is_sticky>0</wp:is_sticky>
+  <category domain="post_tag" nicename="8bit"><![CDATA[8BIT]]></category>
+  <category domain="post_tag" nicename="alignment-2"><![CDATA[alignment]]></category>
+  <category domain="post_tag" nicename="articles"><![CDATA[Articles]]></category>
+  <category domain="post_tag" nicename="captions-2"><![CDATA[captions]]></category>
+  <category domain="post_tag" nicename="categories"><![CDATA[categories]]></category>
+  <category domain="post_tag" nicename="chat"><![CDATA[chat]]></category>
+  <category domain="post_tag" nicename="codex"><![CDATA[Codex]]></category>
+  <category domain="post_tag" nicename="comments-2"><![CDATA[comments]]></category>
+  <category domain="post_tag" nicename="content-2"><![CDATA[content]]></category>
+  <category domain="post_tag" nicename="css"><![CDATA[css]]></category>
+  <category domain="post_tag" nicename="dowork"><![CDATA[dowork]]></category>
+  <category domain="post_tag" nicename="edge-case"><![CDATA[edge case]]></category>
+  <category domain="category" nicename="edge-case-2"><![CDATA[Edge Case]]></category>
+  <category domain="post_tag" nicename="embeds-2"><![CDATA[embeds]]></category>
+  <category domain="post_tag" nicename="excerpt-2"><![CDATA[excerpt]]></category>
+  <category domain="post_tag" nicename="fail"><![CDATA[Fail]]></category>
+  <category domain="post_tag" nicename="featured-image"><![CDATA[featured image]]></category>
+  <category domain="post_tag" nicename="ftw"><![CDATA[FTW]]></category>
+  <category domain="post_tag" nicename="fun"><![CDATA[Fun]]></category>
+  <category domain="post_tag" nicename="gallery"><![CDATA[gallery]]></category>
+  <category domain="post_tag" nicename="html"><![CDATA[html]]></category>
+  <category domain="post_tag" nicename="image"><![CDATA[image]]></category>
+  <category domain="post_tag" nicename="jetpack-2"><![CDATA[jetpack]]></category>
+  <category domain="post_tag" nicename="layout"><![CDATA[layout]]></category>
+  <category domain="post_tag" nicename="link"><![CDATA[link]]></category>
+  <category domain="post_tag" nicename="love"><![CDATA[Love]]></category>
+  <category domain="post_tag" nicename="markup-2"><![CDATA[markup]]></category>
+  <category domain="post_tag" nicename="mothership"><![CDATA[Mothership]]></category>
+  <category domain="post_tag" nicename="mustread"><![CDATA[Must Read]]></category>
+  <category domain="post_tag" nicename="nailedit"><![CDATA[Nailed It]]></category>
+  <category domain="post_tag" nicename="pictures"><![CDATA[Pictures]]></category>
+  <category domain="post_tag" nicename="post-formats"><![CDATA[Post Formats]]></category>
+  <category domain="post_tag" nicename="quote"><![CDATA[quote]]></category>
+  <category domain="post_tag" nicename="shortcode"><![CDATA[shortcode]]></category>
+  <category domain="post_tag" nicename="standard-2"><![CDATA[standard]]></category>
+  <category domain="post_tag" nicename="success"><![CDATA[Success]]></category>
+  <category domain="post_tag" nicename="swagger"><![CDATA[Swagger]]></category>
+  <category domain="post_tag" nicename="tags"><![CDATA[Tags]]></category>
+  <category domain="post_tag" nicename="template"><![CDATA[template]]></category>
+  <category domain="post_tag" nicename="title"><![CDATA[title]]></category>
+  <category domain="post_tag" nicename="twitter-2"><![CDATA[twitter]]></category>
+  <category domain="post_tag" nicename="unseen"><![CDATA[Unseen]]></category>
+  <category domain="post_tag" nicename="video"><![CDATA[video]]></category>
+  <category domain="post_tag" nicename="videopress"><![CDATA[videopress]]></category>
+  <category domain="post_tag" nicename="wordpress"><![CDATA[WordPress]]></category>
+  <category domain="post_tag" nicename="wordpress-tv"><![CDATA[wordpress.tv]]></category>
+  <wp:postmeta>
+    <wp:meta_key>_publicize_pending</wp:meta_key>
+    <wp:meta_value><![CDATA[1]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>original_post_id</wp:meta_key>
+    <wp:meta_value><![CDATA[167]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_wp_old_slug</wp:meta_key>
+    <wp:meta_value><![CDATA[167]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_wp_old_slug</wp:meta_key>
+    <wp:meta_value><![CDATA[many-tags-2]]></wp:meta_value>
+  </wp:postmeta>
+</item>
+<item>
+  <title>Edge Case: Many Categories</title>
+  <link>http://wpthemetestdata.wordpress.com/2009/07/02/edge-case-many-categories/</link>
+  <pubDate>Thu, 02 Jul 2009 09:00:03 +0000</pubDate>
+  <dc:creator>themedemos</dc:creator>
+  <guid isPermaLink="false">http://wpthemetestdata.wordpress.com/2007/11/24/many-categories/</guid>
+  <description/>
+  <content:encoded><![CDATA[This post has many categories.]]></content:encoded>
+  <excerpt:encoded><![CDATA[]]></excerpt:encoded>
+  <wp:post_id>1152</wp:post_id>
+  <wp:post_date>2009-07-02 02:00:03</wp:post_date>
+  <wp:post_date_gmt>2009-07-02 09:00:03</wp:post_date_gmt>
+  <wp:comment_status>closed</wp:comment_status>
+  <wp:ping_status>closed</wp:ping_status>
+  <wp:post_name>edge-case-many-categories</wp:post_name>
+  <wp:status>publish</wp:status>
+  <wp:post_parent>0</wp:post_parent>
+  <wp:menu_order>0</wp:menu_order>
+  <wp:post_type>post</wp:post_type>
+  <wp:post_password/>
+  <wp:is_sticky>0</wp:is_sticky>
+  <category domain="category" nicename="aciform"><![CDATA[aciform]]></category>
+  <category domain="category" nicename="antiquarianism"><![CDATA[antiquarianism]]></category>
+  <category domain="category" nicename="arrangement"><![CDATA[arrangement]]></category>
+  <category domain="category" nicename="asmodeus"><![CDATA[asmodeus]]></category>
+  <category domain="category" nicename="broder"><![CDATA[broder]]></category>
+  <category domain="category" nicename="buying"><![CDATA[buying]]></category>
+  <category domain="category" nicename="cat-a"><![CDATA[Cat A]]></category>
+  <category domain="category" nicename="cat-b"><![CDATA[Cat B]]></category>
+  <category domain="category" nicename="cat-c"><![CDATA[Cat C]]></category>
+  <category domain="post_tag" nicename="categories"><![CDATA[categories]]></category>
+  <category domain="category" nicename="championship"><![CDATA[championship]]></category>
+  <category domain="category" nicename="chastening"><![CDATA[chastening]]></category>
+  <category domain="category" nicename="child-1"><![CDATA[Child 1]]></category>
+  <category domain="category" nicename="child-2"><![CDATA[Child 2]]></category>
+  <category domain="category" nicename="child-category-01"><![CDATA[Child Category 01]]></category>
+  <category domain="category" nicename="child-category-02"><![CDATA[Child Category 02]]></category>
+  <category domain="category" nicename="child-category-03"><![CDATA[Child Category 03]]></category>
+  <category domain="category" nicename="child-category-04"><![CDATA[Child Category 04]]></category>
+  <category domain="category" nicename="child-category-05"><![CDATA[Child Category 05]]></category>
+  <category domain="category" nicename="clerkship"><![CDATA[clerkship]]></category>
+  <category domain="category" nicename="disinclination"><![CDATA[disinclination]]></category>
+  <category domain="category" nicename="disinfection"><![CDATA[disinfection]]></category>
+  <category domain="category" nicename="dispatch"><![CDATA[dispatch]]></category>
+  <category domain="category" nicename="echappee"><![CDATA[echappee]]></category>
+  <category domain="post_tag" nicename="edge-case"><![CDATA[edge case]]></category>
+  <category domain="category" nicename="edge-case-2"><![CDATA[Edge Case]]></category>
+  <category domain="category" nicename="enphagy"><![CDATA[enphagy]]></category>
+  <category domain="category" nicename="equipollent"><![CDATA[equipollent]]></category>
+  <category domain="category" nicename="fatuity"><![CDATA[fatuity]]></category>
+  <category domain="category" nicename="foo-a"><![CDATA[Foo A]]></category>
+  <category domain="category" nicename="foo-a-foo-parent"><![CDATA[Foo A]]></category>
+  <category domain="category" nicename="foo-parent"><![CDATA[Foo Parent]]></category>
+  <category domain="category" nicename="gaberlunzie"><![CDATA[gaberlunzie]]></category>
+  <category domain="category" nicename="grandchild-category"><![CDATA[Grandchild Category]]></category>
+  <category domain="category" nicename="illtempered"><![CDATA[illtempered]]></category>
+  <category domain="category" nicename="insubordination"><![CDATA[insubordination]]></category>
+  <category domain="category" nicename="lender"><![CDATA[lender]]></category>
+  <category domain="category" nicename="markup"><![CDATA[Markup]]></category>
+  <category domain="category" nicename="media-2"><![CDATA[Media]]></category>
+  <category domain="category" nicename="monosyllable"><![CDATA[monosyllable]]></category>
+  <category domain="category" nicename="packthread"><![CDATA[packthread]]></category>
+  <category domain="category" nicename="palter"><![CDATA[palter]]></category>
+  <category domain="category" nicename="papilionaceous"><![CDATA[papilionaceous]]></category>
+  <category domain="category" nicename="parent"><![CDATA[Parent]]></category>
+  <category domain="category" nicename="parent-category"><![CDATA[Parent Category]]></category>
+  <category domain="category" nicename="personable"><![CDATA[personable]]></category>
+  <category domain="category" nicename="post-formats"><![CDATA[Post Formats]]></category>
+  <category domain="category" nicename="propylaeum"><![CDATA[propylaeum]]></category>
+  <category domain="category" nicename="pustule"><![CDATA[pustule]]></category>
+  <category domain="category" nicename="quartern"><![CDATA[quartern]]></category>
+  <category domain="category" nicename="scholarship"><![CDATA[scholarship]]></category>
+  <category domain="category" nicename="selfconvicted"><![CDATA[selfconvicted]]></category>
+  <category domain="category" nicename="showshoe"><![CDATA[showshoe]]></category>
+  <category domain="category" nicename="sloyd"><![CDATA[sloyd]]></category>
+  <category domain="category" nicename="sub"><![CDATA[sub]]></category>
+  <category domain="category" nicename="sublunary"><![CDATA[sublunary]]></category>
+  <category domain="category" nicename="tamtam"><![CDATA[tamtam]]></category>
+  <category domain="category" nicename="unpublished"><![CDATA[Unpublished]]></category>
+  <category domain="category" nicename="weakhearted"><![CDATA[weakhearted]]></category>
+  <category domain="category" nicename="ween"><![CDATA[ween]]></category>
+  <category domain="category" nicename="wellhead"><![CDATA[wellhead]]></category>
+  <category domain="category" nicename="wellintentioned"><![CDATA[wellintentioned]]></category>
+  <category domain="category" nicename="whetstone"><![CDATA[whetstone]]></category>
+  <category domain="category" nicename="years"><![CDATA[years]]></category>
+  <wp:postmeta>
+    <wp:meta_key>_wp_old_slug</wp:meta_key>
+    <wp:meta_value><![CDATA[many-categories-2]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_publicize_pending</wp:meta_key>
+    <wp:meta_value><![CDATA[1]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>original_post_id</wp:meta_key>
+    <wp:meta_value><![CDATA[168]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_wp_old_slug</wp:meta_key>
+    <wp:meta_value><![CDATA[168]]></wp:meta_value>
+  </wp:postmeta>
+</item>
+<item>
+  <title>Scheduled</title>
+  <link>http://wpthemetestdata.wordpress.com/2020/01/01/scheduled/</link>
+  <pubDate>Wed, 01 Jan 2020 19:00:18 +0000</pubDate>
+  <dc:creator>themedemos</dc:creator>
+  <guid isPermaLink="false">http://wpthemetestdata.wordpress.com/?p=418</guid>
+  <description/>
+  <content:encoded><![CDATA[This post is scheduled to be published in the future.
+
+It should not be displayed by the theme.]]></content:encoded>
+  <excerpt:encoded><![CDATA[]]></excerpt:encoded>
+  <wp:post_id>1153</wp:post_id>
+  <wp:post_date>2020-01-01 12:00:18</wp:post_date>
+  <wp:post_date_gmt>2020-01-01 19:00:18</wp:post_date_gmt>
+  <wp:comment_status>closed</wp:comment_status>
+  <wp:ping_status>closed</wp:ping_status>
+  <wp:post_name>scheduled</wp:post_name>
+  <wp:status>future</wp:status>
+  <wp:post_parent>0</wp:post_parent>
+  <wp:menu_order>0</wp:menu_order>
+  <wp:post_type>post</wp:post_type>
+  <wp:post_password/>
+  <wp:is_sticky>0</wp:is_sticky>
+  <category domain="post_tag" nicename="content-2"><![CDATA[content]]></category>
+  <category domain="category" nicename="unpublished"><![CDATA[Unpublished]]></category>
+  <wp:postmeta>
+    <wp:meta_key>original_post_id</wp:meta_key>
+    <wp:meta_value><![CDATA[418]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_wp_old_slug</wp:meta_key>
+    <wp:meta_value><![CDATA[418]]></wp:meta_value>
+  </wp:postmeta>
+</item>
+<item>
+  <title>Post Format: Image</title>
+  <link>http://wpthemetestdata.wordpress.com/2010/08/08/post-format-image/</link>
+  <pubDate>Sun, 08 Aug 2010 12:00:39 +0000</pubDate>
+  <dc:creator>themedemos</dc:creator>
+  <guid isPermaLink="false">http://wpthemetestdata.wordpress.com/?p=568</guid>
+  <description/>
+  <content:encoded><![CDATA[<dl class="wp-caption aligncenter" id="attachment_612" style="width:650px;"><dt class="wp-caption-dt"></dt></dl><img class="alignnone size-full wp-image-967" alt="Unicorn Wallpaper" src="http://wpthemetestdata.files.wordpress.com/2012/12/unicorn-wallpaper.jpg" width="1600" height="1200" />
+
+I really love this wallpaper. It makes me think fondly of <a title="Jane" href="http://example.com/" target="_blank">Jane</a>.]]></content:encoded>
+  <excerpt:encoded><![CDATA[]]></excerpt:encoded>
+  <wp:post_id>1158</wp:post_id>
+  <wp:post_date>2010-08-08 05:00:39</wp:post_date>
+  <wp:post_date_gmt>2010-08-08 12:00:39</wp:post_date_gmt>
+  <wp:comment_status>closed</wp:comment_status>
+  <wp:ping_status>closed</wp:ping_status>
+  <wp:post_name>post-format-image</wp:post_name>
+  <wp:status>publish</wp:status>
+  <wp:post_parent>0</wp:post_parent>
+  <wp:menu_order>0</wp:menu_order>
+  <wp:post_type>post</wp:post_type>
+  <wp:post_password/>
+  <wp:is_sticky>0</wp:is_sticky>
+  <category domain="post_tag" nicename="image"><![CDATA[image]]></category>
+  <category domain="post_tag" nicename="post-formats"><![CDATA[Post Formats]]></category>
+  <category domain="category" nicename="post-formats"><![CDATA[Post Formats]]></category>
+  <category domain="post_format" nicename="post-format-image"><![CDATA[Image]]></category>
+  <wp:postmeta>
+    <wp:meta_key>_publicize_pending</wp:meta_key>
+    <wp:meta_value><![CDATA[1]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_wp_old_slug</wp:meta_key>
+    <wp:meta_value><![CDATA[post-format-test-image]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_wp_old_slug</wp:meta_key>
+    <wp:meta_value><![CDATA[post-format-test-image-linked]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>original_post_id</wp:meta_key>
+    <wp:meta_value><![CDATA[568]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_wp_old_slug</wp:meta_key>
+    <wp:meta_value><![CDATA[568]]></wp:meta_value>
+  </wp:postmeta>
+</item>
+<item>
+  <title>Post Format: Video (YouTube)</title>
+  <link>http://wpthemetestdata.wordpress.com/2010/06/02/post-format-video-youtube/</link>
+  <pubDate>Wed, 02 Jun 2010 09:00:58 +0000</pubDate>
+  <dc:creator>themedemos</dc:creator>
+  <guid isPermaLink="false">http://wpthemetestdata.wordpress.com/?p=582</guid>
+  <description/>
+  <content:encoded><![CDATA[http://www.youtube.com/watch?v=nwe-H6l4beM
+
+The official music video of "Rise Up" from <a title="Eddy Music" href="http://eddymusic.com/" target="_blank">Eddy's</a> <a title="Eddy - Start An Uproar! EP" href="http://bit.ly/bVmAyI" target="_blank">Start An Uproar!</a> EP.
+
+Learn more about <a title="WordPress Embeds" href="http://codex.wordpress.org/Embeds" target="_blank">WordPress Embeds</a>.]]></content:encoded>
+  <excerpt:encoded><![CDATA[]]></excerpt:encoded>
+  <wp:post_id>1161</wp:post_id>
+  <wp:post_date>2010-06-02 02:00:58</wp:post_date>
+  <wp:post_date_gmt>2010-06-02 09:00:58</wp:post_date_gmt>
+  <wp:comment_status>closed</wp:comment_status>
+  <wp:ping_status>closed</wp:ping_status>
+  <wp:post_name>post-format-video-youtube</wp:post_name>
+  <wp:status>publish</wp:status>
+  <wp:post_parent>0</wp:post_parent>
+  <wp:menu_order>0</wp:menu_order>
+  <wp:post_type>post</wp:post_type>
+  <wp:post_password/>
+  <wp:is_sticky>0</wp:is_sticky>
+  <category domain="post_tag" nicename="post-formats"><![CDATA[Post Formats]]></category>
+  <category domain="category" nicename="post-formats"><![CDATA[Post Formats]]></category>
+  <category domain="post_format" nicename="post-format-video"><![CDATA[Video]]></category>
+  <wp:postmeta>
+    <wp:meta_key>_publicize_pending</wp:meta_key>
+    <wp:meta_value><![CDATA[1]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_wp_old_slug</wp:meta_key>
+    <wp:meta_value><![CDATA[post-format-test-video]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_wp_old_slug</wp:meta_key>
+    <wp:meta_value><![CDATA[post-format-video]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>original_post_id</wp:meta_key>
+    <wp:meta_value><![CDATA[582]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_wp_old_slug</wp:meta_key>
+    <wp:meta_value><![CDATA[582]]></wp:meta_value>
+  </wp:postmeta>
+</item>
+<item>
+  <title>Post Format: Image (Caption)</title>
+  <link>http://wpthemetestdata.wordpress.com/2010/08/07/post-format-image-caption/</link>
+  <pubDate>Sat, 07 Aug 2010 13:00:19 +0000</pubDate>
+  <dc:creator>themedemos</dc:creator>
+  <guid isPermaLink="false">http://wpthemetestdata.wordpress.com/?p=674</guid>
+  <description/>
+  <content:encoded><![CDATA[[caption id="attachment_1628" align="alignnone" width="808"]<img class="size-large wp-image-1628" alt="Itโ€™s dangerous to go alone! Take this." src="http://wpthemetestdata.files.wordpress.com/2010/08/triforce-wallpaper.jpg?w=808" width="808" height="505" /> Itโ€™s dangerous to go alone! Take this.[/caption]]]></content:encoded>
+  <excerpt:encoded><![CDATA[]]></excerpt:encoded>
+  <wp:post_id>1163</wp:post_id>
+  <wp:post_date>2010-08-07 06:00:19</wp:post_date>
+  <wp:post_date_gmt>2010-08-07 13:00:19</wp:post_date_gmt>
+  <wp:comment_status>closed</wp:comment_status>
+  <wp:ping_status>closed</wp:ping_status>
+  <wp:post_name>post-format-image-caption</wp:post_name>
+  <wp:status>publish</wp:status>
+  <wp:post_parent>0</wp:post_parent>
+  <wp:menu_order>0</wp:menu_order>
+  <wp:post_type>post</wp:post_type>
+  <wp:post_password/>
+  <wp:is_sticky>0</wp:is_sticky>
+  <category domain="post_tag" nicename="image"><![CDATA[image]]></category>
+  <category domain="post_tag" nicename="post-formats"><![CDATA[Post Formats]]></category>
+  <category domain="category" nicename="post-formats"><![CDATA[Post Formats]]></category>
+  <category domain="post_format" nicename="post-format-image"><![CDATA[Image]]></category>
+  <category domain="post_tag" nicename="shortcode"><![CDATA[shortcode]]></category>
+  <wp:postmeta>
+    <wp:meta_key>_publicize_pending</wp:meta_key>
+    <wp:meta_value><![CDATA[1]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_wp_old_slug</wp:meta_key>
+    <wp:meta_value><![CDATA[post-format-test-image-attached]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>original_post_id</wp:meta_key>
+    <wp:meta_value><![CDATA[674]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_wp_old_slug</wp:meta_key>
+    <wp:meta_value><![CDATA[674]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_thumbnail_id</wp:meta_key>
+    <wp:meta_value><![CDATA[1628]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_format_url</wp:meta_key>
+    <wp:meta_value><![CDATA[]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_format_link_url</wp:meta_key>
+    <wp:meta_value><![CDATA[]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_format_quote_source_url</wp:meta_key>
+    <wp:meta_value><![CDATA[]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_format_quote_source_name</wp:meta_key>
+    <wp:meta_value><![CDATA[]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_format_image</wp:meta_key>
+    <wp:meta_value><![CDATA[]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_format_audio_embed</wp:meta_key>
+    <wp:meta_value><![CDATA[]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_format_video_embed</wp:meta_key>
+    <wp:meta_value><![CDATA[]]></wp:meta_value>
+  </wp:postmeta>
+</item>
+<item>
+  <title>Draft</title>
+  <link>http://wpthemetestdata.wordpress.com/?p=1164</link>
+  <pubDate>Tue, 09 Apr 2013 18:20:39 +0000</pubDate>
+  <dc:creator>themedemos</dc:creator>
+  <guid isPermaLink="false">http://wptest.io/demo/?p=922</guid>
+  <description/>
+  <content:encoded><![CDATA[This post is drafted and not published yet.
+
+It should not be displayed by the theme.]]></content:encoded>
+  <excerpt:encoded><![CDATA[]]></excerpt:encoded>
+  <wp:post_id>1164</wp:post_id>
+  <wp:post_date>2013-04-09 11:20:39</wp:post_date>
+  <wp:post_date_gmt>2013-04-09 18:20:39</wp:post_date_gmt>
+  <wp:comment_status>closed</wp:comment_status>
+  <wp:ping_status>closed</wp:ping_status>
+  <wp:post_name/>
+  <wp:status>draft</wp:status>
+  <wp:post_parent>0</wp:post_parent>
+  <wp:menu_order>0</wp:menu_order>
+  <wp:post_type>post</wp:post_type>
+  <wp:post_password/>
+  <wp:is_sticky>0</wp:is_sticky>
+  <category domain="post_tag" nicename="content-2"><![CDATA[content]]></category>
+  <category domain="category" nicename="unpublished"><![CDATA[Unpublished]]></category>
+  <wp:postmeta>
+    <wp:meta_key>standard_seo_post_level_layout</wp:meta_key>
+    <wp:meta_value><![CDATA[]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>standard_link_url_field</wp:meta_key>
+    <wp:meta_value><![CDATA[]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>standard_seo_post_meta_description</wp:meta_key>
+    <wp:meta_value><![CDATA[]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>original_post_id</wp:meta_key>
+    <wp:meta_value><![CDATA[922]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_wp_old_slug</wp:meta_key>
+    <wp:meta_value><![CDATA[922]]></wp:meta_value>
+  </wp:postmeta>
+</item>
+<item>
+  <title>Template: Password Protected (the password is "enter")</title>
+  <link>http://wpthemetestdata.wordpress.com/2012/01/04/template-password-protected/</link>
+  <pubDate>Wed, 04 Jan 2012 16:38:05 +0000</pubDate>
+  <dc:creator>themedemos</dc:creator>
+  <guid isPermaLink="false">http://wpthemetestdata.wordpress.com/2007/09/04/test-with-secret-password/</guid>
+  <description/>
+  <content:encoded><![CDATA[<span style="line-height:1.714285714;font-size:1rem;">This content, comments, pingbacks, and trackbacks should not be visible until the password is entered.</span>]]></content:encoded>
+  <excerpt:encoded><![CDATA[]]></excerpt:encoded>
+  <wp:post_id>1168</wp:post_id>
+  <wp:post_date>2012-01-04 09:38:05</wp:post_date>
+  <wp:post_date_gmt>2012-01-04 16:38:05</wp:post_date_gmt>
+  <wp:comment_status>closed</wp:comment_status>
+  <wp:ping_status>closed</wp:ping_status>
+  <wp:post_name>template-password-protected</wp:post_name>
+  <wp:status>publish</wp:status>
+  <wp:post_parent>0</wp:post_parent>
+  <wp:menu_order>0</wp:menu_order>
+  <wp:post_type>post</wp:post_type>
+  <wp:post_password>enter</wp:post_password>
+  <wp:is_sticky>0</wp:is_sticky>
+  <category domain="post_tag" nicename="password-2"><![CDATA[password]]></category>
+  <category domain="post_tag" nicename="template"><![CDATA[template]]></category>
+  <category domain="category" nicename="template-2"><![CDATA[Template]]></category>
+  <category domain="category" nicename="uncategorized"><![CDATA[Uncategorized]]></category>
+  <wp:postmeta>
+    <wp:meta_key>_wp_old_slug</wp:meta_key>
+    <wp:meta_value><![CDATA[password-protected]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_publicize_pending</wp:meta_key>
+    <wp:meta_value><![CDATA[1]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_wp_old_slug</wp:meta_key>
+    <wp:meta_value><![CDATA[test-with-secret-password]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>original_post_id</wp:meta_key>
+    <wp:meta_value><![CDATA[131]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_wp_old_slug</wp:meta_key>
+    <wp:meta_value><![CDATA[131]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:comment>
+    <wp:comment_id>926</wp:comment_id>
+    <wp:comment_author><![CDATA[Jane Doe]]></wp:comment_author>
+    <wp:comment_author_email>example@example.org</wp:comment_author_email>
+    <wp:comment_author_url>http://example.org/</wp:comment_author_url>
+    <wp:comment_author_IP>24.126.245.62</wp:comment_author_IP>
+    <wp:comment_date>2013-03-14 11:56:08</wp:comment_date>
+    <wp:comment_date_gmt>2013-03-14 18:56:08</wp:comment_date_gmt>
+    <wp:comment_content><![CDATA[This comment should not be visible until the password is entered.]]></wp:comment_content>
+    <wp:comment_approved>1</wp:comment_approved>
+    <wp:comment_type/>
+    <wp:comment_parent>0</wp:comment_parent>
+    <wp:comment_user_id>0</wp:comment_user_id>
+  </wp:comment>
+</item>
+<item>
+  <title/>
+  <link>http://wpthemetestdata.wordpress.com/2009/09/05/edge-case-no-title/</link>
+  <pubDate>Sat, 05 Sep 2009 16:00:23 +0000</pubDate>
+  <dc:creator>themedemos</dc:creator>
+  <guid isPermaLink="false">http://wpthemetestdata.wordpress.com/2007/09/04/14/</guid>
+  <description/>
+  <content:encoded><![CDATA[This post has no title, but it still must link to the single post view somehow.
+
+This is typically done by placing the permalink on the post date.]]></content:encoded>
+  <excerpt:encoded><![CDATA[]]></excerpt:encoded>
+  <wp:post_id>1169</wp:post_id>
+  <wp:post_date>2009-09-05 09:00:23</wp:post_date>
+  <wp:post_date_gmt>2009-09-05 16:00:23</wp:post_date_gmt>
+  <wp:comment_status>closed</wp:comment_status>
+  <wp:ping_status>closed</wp:ping_status>
+  <wp:post_name>edge-case-no-title</wp:post_name>
+  <wp:status>publish</wp:status>
+  <wp:post_parent>0</wp:post_parent>
+  <wp:menu_order>0</wp:menu_order>
+  <wp:post_type>post</wp:post_type>
+  <wp:post_password/>
+  <wp:is_sticky>0</wp:is_sticky>
+  <category domain="post_tag" nicename="edge-case"><![CDATA[edge case]]></category>
+  <category domain="category" nicename="edge-case-2"><![CDATA[Edge Case]]></category>
+  <category domain="post_tag" nicename="layout"><![CDATA[layout]]></category>
+  <category domain="post_tag" nicename="title"><![CDATA[title]]></category>
+  <wp:postmeta>
+    <wp:meta_key>_publicize_pending</wp:meta_key>
+    <wp:meta_value><![CDATA[1]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_wp_old_slug</wp:meta_key>
+    <wp:meta_value><![CDATA[14]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>original_post_id</wp:meta_key>
+    <wp:meta_value><![CDATA[133]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_wp_old_slug</wp:meta_key>
+    <wp:meta_value><![CDATA[133]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_wp_old_slug</wp:meta_key>
+    <wp:meta_value><![CDATA[no-title-2]]></wp:meta_value>
+  </wp:postmeta>
+</item>
+<item>
+  <title>Edge Case: No Content</title>
+  <link>http://wpthemetestdata.wordpress.com/2009/08/06/edge-case-no-content/</link>
+  <pubDate>Thu, 06 Aug 2009 16:39:56 +0000</pubDate>
+  <dc:creator>themedemos</dc:creator>
+  <guid isPermaLink="false">http://wpthemetestdata.wordpress.com/2007/09/04/this-post-has-no-body/</guid>
+  <description/>
+  <content:encoded><![CDATA[]]></content:encoded>
+  <excerpt:encoded><![CDATA[]]></excerpt:encoded>
+  <wp:post_id>1170</wp:post_id>
+  <wp:post_date>2009-08-06 09:39:56</wp:post_date>
+  <wp:post_date_gmt>2009-08-06 16:39:56</wp:post_date_gmt>
+  <wp:comment_status>closed</wp:comment_status>
+  <wp:ping_status>closed</wp:ping_status>
+  <wp:post_name>edge-case-no-content</wp:post_name>
+  <wp:status>publish</wp:status>
+  <wp:post_parent>0</wp:post_parent>
+  <wp:menu_order>0</wp:menu_order>
+  <wp:post_type>post</wp:post_type>
+  <wp:post_password/>
+  <wp:is_sticky>0</wp:is_sticky>
+  <category domain="post_tag" nicename="content-2"><![CDATA[content]]></category>
+  <category domain="post_tag" nicename="edge-case"><![CDATA[edge case]]></category>
+  <category domain="category" nicename="edge-case-2"><![CDATA[Edge Case]]></category>
+  <category domain="post_tag" nicename="layout"><![CDATA[layout]]></category>
+  <wp:postmeta>
+    <wp:meta_key>_publicize_pending</wp:meta_key>
+    <wp:meta_value><![CDATA[1]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_wp_old_slug</wp:meta_key>
+    <wp:meta_value><![CDATA[this-post-has-no-body]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>original_post_id</wp:meta_key>
+    <wp:meta_value><![CDATA[134]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_wp_old_slug</wp:meta_key>
+    <wp:meta_value><![CDATA[134]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_wp_old_slug</wp:meta_key>
+    <wp:meta_value><![CDATA[no-content]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:comment>
+    <wp:comment_id>927</wp:comment_id>
+    <wp:comment_author><![CDATA[John Doe]]></wp:comment_author>
+    <wp:comment_author_email>example@example.org</wp:comment_author_email>
+    <wp:comment_author_url>http://example.org/</wp:comment_author_url>
+    <wp:comment_author_IP>24.126.245.62</wp:comment_author_IP>
+    <wp:comment_date>2013-03-14 12:35:07</wp:comment_date>
+    <wp:comment_date_gmt>2013-03-14 19:35:07</wp:comment_date_gmt>
+    <wp:comment_content><![CDATA[Having no content in the post should have no adverse effects on the layout or functionality.]]></wp:comment_content>
+    <wp:comment_approved>1</wp:comment_approved>
+    <wp:comment_type/>
+    <wp:comment_parent>0</wp:comment_parent>
+    <wp:comment_user_id>0</wp:comment_user_id>
+  </wp:comment>
+</item>
+<item>
+  <title>Template: Paginated</title>
+  <link>http://wpthemetestdata.wordpress.com/2012/01/08/template-paginated/</link>
+  <pubDate>Sun, 08 Jan 2012 17:00:20 +0000</pubDate>
+  <dc:creator>themedemos</dc:creator>
+  <guid isPermaLink="false">http://noeltest.wordpress.com/?p=188</guid>
+  <description/>
+  <content:encoded><![CDATA[Post Page 1
+
+<!--nextpage-->
+
+Post Page 2
+
+<!--nextpage-->
+
+Post Page 3]]></content:encoded>
+  <excerpt:encoded><![CDATA[]]></excerpt:encoded>
+  <wp:post_id>1171</wp:post_id>
+  <wp:post_date>2012-01-08 10:00:20</wp:post_date>
+  <wp:post_date_gmt>2012-01-08 17:00:20</wp:post_date_gmt>
+  <wp:comment_status>closed</wp:comment_status>
+  <wp:ping_status>closed</wp:ping_status>
+  <wp:post_name>template-paginated</wp:post_name>
+  <wp:status>publish</wp:status>
+  <wp:post_parent>0</wp:post_parent>
+  <wp:menu_order>0</wp:menu_order>
+  <wp:post_type>post</wp:post_type>
+  <wp:post_password/>
+  <wp:is_sticky>0</wp:is_sticky>
+  <category domain="post_tag" nicename="content-2"><![CDATA[content]]></category>
+  <category domain="post_tag" nicename="pagination"><![CDATA[pagination]]></category>
+  <category domain="post_tag" nicename="template"><![CDATA[template]]></category>
+  <category domain="category" nicename="template-2"><![CDATA[Template]]></category>
+  <category domain="category" nicename="uncategorized"><![CDATA[Uncategorized]]></category>
+  <wp:postmeta>
+    <wp:meta_key>_publicize_pending</wp:meta_key>
+    <wp:meta_value><![CDATA[1]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_wp_old_slug</wp:meta_key>
+    <wp:meta_value><![CDATA[layout-test]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>original_post_id</wp:meta_key>
+    <wp:meta_value><![CDATA[188]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_wp_old_slug</wp:meta_key>
+    <wp:meta_value><![CDATA[188]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_wp_old_slug</wp:meta_key>
+    <wp:meta_value><![CDATA[paginated]]></wp:meta_value>
+  </wp:postmeta>
+</item>
+<item>
+  <title>Markup: Title With Markup</title>
+  <link>http://wpthemetestdata.wordpress.com/2013/01/05/markup-title-with-markup/</link>
+  <pubDate>Sat, 05 Jan 2013 17:00:49 +0000</pubDate>
+  <dc:creator>themedemos</dc:creator>
+  <guid isPermaLink="false">http://wptest.io/demo/?p=861</guid>
+  <description/>
+  <content:encoded><![CDATA[Verify that:
+<ul>
+	<li><span style="line-height:1.714285714;font-size:1rem;">The post title renders the word "with" in </span><em style="line-height:1.714285714;font-size:1rem;">italics</em><span style="line-height:1.714285714;font-size:1rem;"> and the word "markup" in </span><strong style="line-height:1.714285714;font-size:1rem;">bold</strong><span style="line-height:1.714285714;font-size:1rem;">.</span></li>
+	<li><span style="line-height:1.714285714;font-size:1rem;">The post title markup should be removed from the browser window / tab.</span></li>
+</ul>]]></content:encoded>
+  <excerpt:encoded><![CDATA[]]></excerpt:encoded>
+  <wp:post_id>1173</wp:post_id>
+  <wp:post_date>2013-01-05 10:00:49</wp:post_date>
+  <wp:post_date_gmt>2013-01-05 17:00:49</wp:post_date_gmt>
+  <wp:comment_status>closed</wp:comment_status>
+  <wp:ping_status>closed</wp:ping_status>
+  <wp:post_name>markup-title-with-markup</wp:post_name>
+  <wp:status>publish</wp:status>
+  <wp:post_parent>0</wp:post_parent>
+  <wp:menu_order>0</wp:menu_order>
+  <wp:post_type>post</wp:post_type>
+  <wp:post_password/>
+  <wp:is_sticky>0</wp:is_sticky>
+  <category domain="post_tag" nicename="css"><![CDATA[css]]></category>
+  <category domain="post_tag" nicename="html"><![CDATA[html]]></category>
+  <category domain="category" nicename="markup"><![CDATA[Markup]]></category>
+  <category domain="post_tag" nicename="title"><![CDATA[title]]></category>
+  <wp:postmeta>
+    <wp:meta_key>_publicize_pending</wp:meta_key>
+    <wp:meta_value><![CDATA[1]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>original_post_id</wp:meta_key>
+    <wp:meta_value><![CDATA[861]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_wp_old_slug</wp:meta_key>
+    <wp:meta_value><![CDATA[861]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_wp_old_slug</wp:meta_key>
+    <wp:meta_value><![CDATA[title-with-markup]]></wp:meta_value>
+  </wp:postmeta>
+</item>
+<item>
+  <title>Markup: Title With Special Characters ~`!@#$%^&amp;*()-_=+{}[]/;:'"?,.&gt;</title>
+  <link>http://wpthemetestdata.wordpress.com/2013/01/05/title-with-special-characters/</link>
+  <pubDate>Sat, 05 Jan 2013 18:00:20 +0000</pubDate>
+  <dc:creator>themedemos</dc:creator>
+  <guid isPermaLink="false">http://wptest.io/demo/?p=867</guid>
+  <description/>
+  <content:encoded><![CDATA[Putting special characters in the title should have no adverse effect on the layout or functionality.
+
+Special characters in the post title have been known to cause issues with JavaScript when it is minified, especially in the admin when editing the post itself (ie. issues with metaboxes, media upload, etc.).
+<h2>Latin Character Tests</h2>
+This is a test to see if the fonts used in this theme support basic Latin characters.
+<table>
+<tbody>
+<tr>
+<td>!</td>
+<td>"</td>
+<td>#</td>
+<td>$</td>
+<td>%</td>
+<td>&amp;</td>
+<td>'</td>
+<td>(</td>
+<td>)</td>
+<td>*</td>
+</tr>
+<tr>
+<td>+</td>
+<td>,</td>
+<td>-</td>
+<td>.</td>
+<td>/</td>
+<td>0</td>
+<td>1</td>
+<td>2</td>
+<td>3</td>
+<td>4</td>
+</tr>
+<tr>
+<td>5</td>
+<td>6</td>
+<td>7</td>
+<td>8</td>
+<td>9</td>
+<td>:</td>
+<td>;</td>
+<td>&gt;</td>
+<td>=</td>
+<td>&lt;</td>
+</tr>
+<tr>
+<td>?</td>
+<td>@</td>
+<td>A</td>
+<td>B</td>
+<td>C</td>
+<td>D</td>
+<td>E</td>
+<td>F</td>
+<td>G</td>
+<td>H</td>
+</tr>
+<tr>
+<td>I</td>
+<td>J</td>
+<td>K</td>
+<td>L</td>
+<td>M</td>
+<td>N</td>
+<td>O</td>
+<td>P</td>
+<td>Q</td>
+<td>R</td>
+</tr>
+<tr>
+<td>S</td>
+<td>T</td>
+<td>U</td>
+<td>V</td>
+<td>W</td>
+<td>X</td>
+<td>Y</td>
+<td>Z</td>
+<td>[</td>
+<td>\</td>
+</tr>
+<tr>
+<td>]</td>
+<td>^</td>
+<td>_</td>
+<td>`</td>
+<td>a</td>
+<td>b</td>
+<td>c</td>
+<td>d</td>
+<td>e</td>
+<td>f</td>
+</tr>
+<tr>
+<td>g</td>
+<td>h</td>
+<td>i</td>
+<td>j</td>
+<td>k</td>
+<td>l</td>
+<td>m</td>
+<td>n</td>
+<td>o</td>
+<td>p</td>
+</tr>
+<tr>
+<td>q</td>
+<td>r</td>
+<td>s</td>
+<td>t</td>
+<td>u</td>
+<td>v</td>
+<td>w</td>
+<td>x</td>
+<td>y</td>
+<td>z</td>
+</tr>
+<tr>
+<td>{</td>
+<td>|</td>
+<td>}</td>
+<td>~</td>
+</tr>
+</tbody>
+</table>]]></content:encoded>
+  <excerpt:encoded><![CDATA[]]></excerpt:encoded>
+  <wp:post_id>1174</wp:post_id>
+  <wp:post_date>2013-01-05 11:00:20</wp:post_date>
+  <wp:post_date_gmt>2013-01-05 18:00:20</wp:post_date_gmt>
+  <wp:comment_status>closed</wp:comment_status>
+  <wp:ping_status>closed</wp:ping_status>
+  <wp:post_name>title-with-special-characters</wp:post_name>
+  <wp:status>publish</wp:status>
+  <wp:post_parent>0</wp:post_parent>
+  <wp:menu_order>0</wp:menu_order>
+  <wp:post_type>post</wp:post_type>
+  <wp:post_password/>
+  <wp:is_sticky>0</wp:is_sticky>
+  <category domain="post_tag" nicename="html"><![CDATA[html]]></category>
+  <category domain="category" nicename="markup"><![CDATA[Markup]]></category>
+  <category domain="post_tag" nicename="markup-2"><![CDATA[markup]]></category>
+  <category domain="post_tag" nicename="post"><![CDATA[post]]></category>
+  <category domain="post_tag" nicename="title"><![CDATA[title]]></category>
+  <wp:postmeta>
+    <wp:meta_key>_publicize_pending</wp:meta_key>
+    <wp:meta_value><![CDATA[1]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>original_post_id</wp:meta_key>
+    <wp:meta_value><![CDATA[867]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_wp_old_slug</wp:meta_key>
+    <wp:meta_value><![CDATA[867]]></wp:meta_value>
+  </wp:postmeta>
+</item>
+<item>
+  <title>Antidisestablishmentarianism</title>
+  <link>http://wpthemetestdata.wordpress.com/2009/10/05/title-should-not-overflow-the-content-area/</link>
+  <pubDate>Mon, 05 Oct 2009 19:00:59 +0000</pubDate>
+  <dc:creator>themedemos</dc:creator>
+  <guid isPermaLink="false">http://wptest.io/demo/?p=877</guid>
+  <description/>
+  <content:encoded><![CDATA[<h2>Title should not overflow the content area</h2>
+
+A few things to check for:
+<ul>
+	<li>Non-breaking text in the title, content, and comments should have no adverse effects on layout or functionality.</li>
+	<li>Check the browser window / tab title.</li>
+	<li>If you are a plugin or widget developer, check that this text does not break anything.</li>
+</ul>
+
+The following CSS properties will help you support non-breaking text.
+
+<pre>-ms-word-wrap: break-word;
+word-wrap: break-word;</pre>
+&nbsp;]]></content:encoded>
+  <excerpt:encoded><![CDATA[]]></excerpt:encoded>
+  <wp:post_id>1175</wp:post_id>
+  <wp:post_date>2009-10-05 12:00:59</wp:post_date>
+  <wp:post_date_gmt>2009-10-05 19:00:59</wp:post_date_gmt>
+  <wp:comment_status>closed</wp:comment_status>
+  <wp:ping_status>closed</wp:ping_status>
+  <wp:post_name>title-should-not-overflow-the-content-area</wp:post_name>
+  <wp:status>publish</wp:status>
+  <wp:post_parent>0</wp:post_parent>
+  <wp:menu_order>0</wp:menu_order>
+  <wp:post_type>post</wp:post_type>
+  <wp:post_password/>
+  <wp:is_sticky>0</wp:is_sticky>
+  <category domain="post_tag" nicename="content-2"><![CDATA[content]]></category>
+  <category domain="post_tag" nicename="css"><![CDATA[css]]></category>
+  <category domain="post_tag" nicename="edge-case"><![CDATA[edge case]]></category>
+  <category domain="category" nicename="edge-case-2"><![CDATA[Edge Case]]></category>
+  <category domain="post_tag" nicename="html"><![CDATA[html]]></category>
+  <category domain="post_tag" nicename="layout"><![CDATA[layout]]></category>
+  <category domain="post_tag" nicename="title"><![CDATA[title]]></category>
+  <wp:postmeta>
+    <wp:meta_key>_wp_old_slug</wp:meta_key>
+    <wp:meta_value><![CDATA[edge-case-non-breaking-text]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_wp_old_slug</wp:meta_key>
+    <wp:meta_value><![CDATA[non-breaking-text]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_publicize_pending</wp:meta_key>
+    <wp:meta_value><![CDATA[1]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_wp_old_slug</wp:meta_key>
+    <wp:meta_value><![CDATA[non-breaking-tex]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>original_post_id</wp:meta_key>
+    <wp:meta_value><![CDATA[877]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_wp_old_slug</wp:meta_key>
+    <wp:meta_value><![CDATA[877]]></wp:meta_value>
+  </wp:postmeta>
+</item>
+<item>
+  <title>Markup: Text Alignment</title>
+  <link>http://wpthemetestdata.wordpress.com/2013/01/09/markup-text-alignment/</link>
+  <pubDate>Wed, 09 Jan 2013 16:00:39 +0000</pubDate>
+  <dc:creator>themedemos</dc:creator>
+  <guid isPermaLink="false">http://wptest.io/demo/?p=895</guid>
+  <description/>
+  <content:encoded><![CDATA[<h3>Default</h3>
+This is a paragraph. It should not have any alignment of any kind. It should just flow like you would normally expect. Nothing fancy. Just straight up text, free flowing, with love. Completely neutral and not picking a side or sitting on the fence. It just is. It just freaking is. It likes where it is. It does not feel compelled to pick a side. Leave him be. It will just be better that way. Trust me.
+<h3>Left Align</h3>
+<p style="text-align:left;">This is a paragraph. It is left aligned. Because of this, it is a bit more liberal in it's views. It's favorite color is green. Left align tends to be more eco-friendly, but it provides no concrete evidence that it really is. Even though it likes share the wealth evenly, it leaves the equal distribution up to justified alignment.</p>
+
+<h3>Center Align</h3>
+<p style="text-align:center;">This is a paragraph. It is center aligned. Center is, but nature, a fence sitter. A flip flopper. It has a difficult time making up its mind. It wants to pick a side. Really, it does. It has the best intentions, but it tends to complicate matters more than help. The best you can do is try to win it over and hope for the best. I hear center align does take bribes.</p>
+
+<h3>Right Align</h3>
+<p style="text-align:right;">This is a paragraph. It is right aligned. It is a bit more conservative in it's views. It's prefers to not be told what to do or how to do it. Right align totally owns a slew of guns and loves to head to the range for some practice. Which is cool and all. I mean, it's a pretty good shot from at least four or five football fields away. Dead on. So boss.</p>
+
+<h3>Justify Align</h3>
+<p style="text-align:justify;">This is a paragraph. It is justify aligned. It gets really mad when people associate it with Justin Timberlake. Typically, justified is pretty straight laced. It likes everything to be in it's place and not all cattywampus like the rest of the aligns. I am not saying that makes it better than the rest of the aligns, but it does tend to put off more of an elitist attitude.</p>]]></content:encoded>
+  <excerpt:encoded><![CDATA[]]></excerpt:encoded>
+  <wp:post_id>1176</wp:post_id>
+  <wp:post_date>2013-01-09 09:00:39</wp:post_date>
+  <wp:post_date_gmt>2013-01-09 16:00:39</wp:post_date_gmt>
+  <wp:comment_status>closed</wp:comment_status>
+  <wp:ping_status>closed</wp:ping_status>
+  <wp:post_name>markup-text-alignment</wp:post_name>
+  <wp:status>publish</wp:status>
+  <wp:post_parent>0</wp:post_parent>
+  <wp:menu_order>0</wp:menu_order>
+  <wp:post_type>post</wp:post_type>
+  <wp:post_password/>
+  <wp:is_sticky>0</wp:is_sticky>
+  <category domain="post_tag" nicename="alignment-2"><![CDATA[alignment]]></category>
+  <category domain="post_tag" nicename="content-2"><![CDATA[content]]></category>
+  <category domain="post_tag" nicename="css"><![CDATA[css]]></category>
+  <category domain="category" nicename="markup"><![CDATA[Markup]]></category>
+  <category domain="post_tag" nicename="markup-2"><![CDATA[markup]]></category>
+  <wp:postmeta>
+    <wp:meta_key>_wp_old_slug</wp:meta_key>
+    <wp:meta_value><![CDATA[text-alignment]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_publicize_pending</wp:meta_key>
+    <wp:meta_value><![CDATA[1]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>original_post_id</wp:meta_key>
+    <wp:meta_value><![CDATA[895]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_wp_old_slug</wp:meta_key>
+    <wp:meta_value><![CDATA[895]]></wp:meta_value>
+  </wp:postmeta>
+</item>
+<item>
+  <title>Markup: Image Alignment</title>
+  <link>http://wpthemetestdata.wordpress.com/2013/01/10/markup-image-alignment/</link>
+  <pubDate>Fri, 11 Jan 2013 03:15:40 +0000</pubDate>
+  <dc:creator>themedemos</dc:creator>
+  <guid isPermaLink="false">http://wptest.io/demo/?p=903</guid>
+  <description/>
+  <content:encoded><![CDATA[<span style="line-height:1.714285714;font-size:1rem;">Welcome to image alignment! The best way to demonstrate the ebb and flow of the various image positioning options is to nestle them snuggly among an ocean of words. Grab a paddle and let's get started.</span>
+
+On the topic of alignment, it should be noted that users can choose from the options of <em>None</em><em>Left</em><em>Right, </em>and <em>Center</em>. In addition, they also get the options of <em>Thumbnail</em><em>Medium</em><em>Large</em> &amp; <em>Fullsize</em>.
+<p style="text-align:center;"><img class="size-full wp-image-906 aligncenter" title="Image Alignment 580x300" alt="Image Alignment 580x300" src="http://wpthemetestdata.files.wordpress.com/2013/03/image-alignment-580x300.jpg" width="580" height="300" /></p>
+The image above happens to be <em><strong>centered</strong></em>.
+
+<strong><img class="size-full wp-image-904 alignleft" title="Image Alignment 150x150" alt="Image Alignment 150x150" src="http://wpthemetestdata.files.wordpress.com/2013/03/image-alignment-150x150.jpg" width="150" height="150" /></strong>The rest of this paragraph is filler for the sake of seeing the text wrap around the 150x150 image, which is <em><strong>left aligned</strong></em><strong></strong>
+
+As you can see the should be some space above, below, and to the right of the image. The text should not be creeping on the image. Creeping is just not right. Images need breathing room too. Let them speak like you words. Let them do their jobs without any hassle from the text. In about one more sentence here, we'll see that the text moves from the right of the image down below the image in seamless transition. Again, letting the do it's thang. Mission accomplished!
+
+And now for a <em><strong>massively large image</strong></em>. It also has <em><strong>no alignment</strong></em>.
+
+<img class="alignnone  wp-image-907" title="Image Alignment 1200x400" alt="Image Alignment 1200x400" src="http://wpthemetestdata.files.wordpress.com/2013/03/image-alignment-1200x4002.jpg" width="1200" height="400" />
+
+The image above, though 1200px wide, should not overflow the content area. It should remain contained with no visible disruption to the flow of content.
+
+<img class="size-full wp-image-905 alignright" title="Image Alignment 300x200" alt="Image Alignment 300x200" src="http://wpthemetestdata.files.wordpress.com/2013/03/image-alignment-300x200.jpg" width="300" height="200" />
+
+And now we're going to shift things to the <em><strong>right align</strong></em>. Again, there should be plenty of room above, below, and to the left of the image. Just look at him there... Hey guy! Way to rock that right side. I don't care what the left aligned image says, you look great. Don't let anyone else tell you differently.
+
+In just a bit here, you should see the text start to wrap below the right aligned image and settle in nicely. There should still be plenty of room and everything should be sitting pretty. Yeah... Just like that. It never felt so good to be right.
+
+And just when you thought we were done, we're going to do them all over again with captions!
+
+[caption id="attachment_906" align="aligncenter" width="580"]<img class="size-full wp-image-906  " title="Image Alignment 580x300" alt="Image Alignment 580x300" src="http://wpthemetestdata.files.wordpress.com/2013/03/image-alignment-580x300.jpg" width="580" height="300" /> Look at 580x300 getting some <a title="Image Settings" href="http://en.support.wordpress.com/images/image-settings/">caption</a> love.[/caption]
+
+The image above happens to be <em><strong>centered</strong></em>. The caption also has a link in it, just to see if it does anything funky.
+
+[caption id="attachment_904" align="alignleft" width="150"]<img class="size-full wp-image-904  " title="Image Alignment 150x150" alt="Image Alignment 150x150" src="http://wpthemetestdata.files.wordpress.com/2013/03/image-alignment-150x150.jpg" width="150" height="150" /> Itty-bitty caption.[/caption]
+
+<strong></strong>The rest of this paragraph is filler for the sake of seeing the text wrap around the 150x150 image, which is <em><strong>left aligned</strong></em><strong></strong>
+
+As you can see the should be some space above, below, and to the right of the image. The text should not be creeping on the image. Creeping is just not right. Images need breathing room too. Let them speak like you words. Let them do their jobs without any hassle from the text. In about one more sentence here, we'll see that the text moves from the right of the image down below the image in seamless transition. Again, letting the do it's thang. Mission accomplished!
+
+And now for a <em><strong>massively large image</strong></em>. It also has <em><strong>no alignment</strong></em>.
+
+[caption id="attachment_907" align="alignnone" width="1200"]<img class=" wp-image-907" title="Image Alignment 1200x400" alt="Image Alignment 1200x400" src="http://wpthemetestdata.files.wordpress.com/2013/03/image-alignment-1200x4002.jpg" width="1200" height="400" /> Massive image comment for your eyeballs.[/caption]
+
+The image above, though 1200px wide, should not overflow the content area. It should remain contained with no visible disruption to the flow of content.
+
+[caption id="attachment_905" align="alignright" width="300"]<img class="size-full wp-image-905 " title="Image Alignment 300x200" alt="Image Alignment 300x200" src="http://wpthemetestdata.files.wordpress.com/2013/03/image-alignment-300x200.jpg" width="300" height="200" /> Feels good to be right all the time.[/caption]
+
+And now we're going to shift things to the <em><strong>right align</strong></em>. Again, there should be plenty of room above, below, and to the left of the image. Just look at him there... Hey guy! Way to rock that right side. I don't care what the left aligned image says, you look great. Don't let anyone else tell you differently.
+
+In just a bit here, you should see the text start to wrap below the right aligned image and settle in nicely. There should still be plenty of room and everything should be sitting pretty. Yeah... Just like that. It never felt so good to be right.
+
+And that's a wrap, yo! You survived the tumultuous waters of alignment. Image alignment achievement unlocked!]]></content:encoded>
+  <excerpt:encoded><![CDATA[]]></excerpt:encoded>
+  <wp:post_id>1177</wp:post_id>
+  <wp:post_date>2013-01-10 20:15:40</wp:post_date>
+  <wp:post_date_gmt>2013-01-11 03:15:40</wp:post_date_gmt>
+  <wp:comment_status>closed</wp:comment_status>
+  <wp:ping_status>closed</wp:ping_status>
+  <wp:post_name>markup-image-alignment</wp:post_name>
+  <wp:status>publish</wp:status>
+  <wp:post_parent>0</wp:post_parent>
+  <wp:menu_order>0</wp:menu_order>
+  <wp:post_type>post</wp:post_type>
+  <wp:post_password/>
+  <wp:is_sticky>0</wp:is_sticky>
+  <category domain="post_tag" nicename="alignment-2"><![CDATA[alignment]]></category>
+  <category domain="post_tag" nicename="captions-2"><![CDATA[captions]]></category>
+  <category domain="post_tag" nicename="content-2"><![CDATA[content]]></category>
+  <category domain="post_tag" nicename="css"><![CDATA[css]]></category>
+  <category domain="post_tag" nicename="image"><![CDATA[image]]></category>
+  <category domain="category" nicename="markup"><![CDATA[Markup]]></category>
+  <category domain="post_tag" nicename="markup-2"><![CDATA[markup]]></category>
+  <wp:postmeta>
+    <wp:meta_key>_thumbnail_id</wp:meta_key>
+    <wp:meta_value><![CDATA[1023]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_wp_old_slug</wp:meta_key>
+    <wp:meta_value><![CDATA[image-alignment]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_publicize_pending</wp:meta_key>
+    <wp:meta_value><![CDATA[1]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>standard_seo_post_level_layout</wp:meta_key>
+    <wp:meta_value><![CDATA[]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>standard_link_url_field</wp:meta_key>
+    <wp:meta_value><![CDATA[]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>standard_seo_post_meta_description</wp:meta_key>
+    <wp:meta_value><![CDATA[]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>original_post_id</wp:meta_key>
+    <wp:meta_value><![CDATA[903]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_wp_old_slug</wp:meta_key>
+    <wp:meta_value><![CDATA[903]]></wp:meta_value>
+  </wp:postmeta>
+</item>
+<item>
+  <title>Markup: HTML Tags and Formatting</title>
+  <link>http://wpthemetestdata.wordpress.com/2013/01/11/markup-html-tags-and-formatting/</link>
+  <pubDate>Sat, 12 Jan 2013 03:22:19 +0000</pubDate>
+  <dc:creator>themedemos</dc:creator>
+  <guid isPermaLink="false">http://wptest.io/demo/?p=919</guid>
+  <description/>
+  <content:encoded><![CDATA[<h2>Headings</h2>
+<h1>Header one</h1>
+<h2>Header two</h2>
+<h3>Header three</h3>
+<h4>Header four</h4>
+<h5>Header five</h5>
+<h6>Header six</h6>
+<h2>Blockquotes</h2>
+Single line blockquote:
+<blockquote>Stay hungry. Stay foolish.</blockquote>
+Multi line blockquote with a cite reference:
+<blockquote>People think focus means saying yes to the thing you've got to focus on. But that's not what it means at all. It means saying no to the hundred other good ideas that there are. You have to pick carefully. I'm actually as proud of the things we haven't done as the things I have done. Innovation is saying no to 1,000 things. <cite>Steve Jobs - Apple Worldwide Developers' Conference, 1997</cite></blockquote>
+<h2>Tables</h2>
+<table>
+	<thead>
+		<tr>
+			<th>Employee</th>
+			<th>Salary</th>
+			<th></th>
+		</tr>
+	</thead>
+	<tbody>
+		<tr>
+			<th><a href="http://example.org/">John Doe</a></th>
+			<td>$1</td>
+			<td>Because that's all Steve Jobs needed for a salary.</td>
+		</tr>
+		<tr>
+			<th><a href="http://example.org/">Jane Doe</a></th>
+			<td>$100K</td>
+			<td>For all the blogging she does.</td>
+		</tr>
+		<tr>
+			<th><a href="http://example.org/">Fred Bloggs</a></th>
+			<td>$100M</td>
+			<td>Pictures are worth a thousand words, right? So Jane x 1,000.</td>
+		</tr>
+		<tr>
+			<th><a href="http://example.org/">Jane Bloggs</a></th>
+			<td>$100B</td>
+			<td>With hair like that?! Enough said...</td>
+		</tr>
+	</tbody>
+</table>
+<h2>Definition Lists</h2>
+<dl><dt>Definition List Title</dt><dd>Definition list division.</dd><dt>Startup</dt><dd>A startup company or startup is a company or temporary organization designed to search for a repeatable and scalable business model.</dd><dt>#dowork</dt><dd>Coined by Rob Dyrdek and his personal body guard Christopher "Big Black" Boykins, "Do Work" works as a self motivator, to motivating your friends.</dd><dt>Do It Live</dt><dd>I'll let Bill O'Reilly will <a title="We'll Do It Live" href="https://www.youtube.com/watch?v=O_HyZ5aW76c">explain</a> this one.</dd></dl>
+<h2>Unordered Lists (Nested)</h2>
+<ul>
+	<li>List item one
+<ul>
+	<li>List item one
+<ul>
+	<li>List item one</li>
+	<li>List item two</li>
+	<li>List item three</li>
+	<li>List item four</li>
+</ul>
+</li>
+	<li>List item two</li>
+	<li>List item three</li>
+	<li>List item four</li>
+</ul>
+</li>
+	<li>List item two</li>
+	<li>List item three</li>
+	<li>List item four</li>
+</ul>
+<h2>Ordered List (Nested)</h2>
+<ol>
+	<li>List item one
+<ol>
+	<li>List item one
+<ol>
+	<li>List item one</li>
+	<li>List item two</li>
+	<li>List item three</li>
+	<li>List item four</li>
+</ol>
+</li>
+	<li>List item two</li>
+	<li>List item three</li>
+	<li>List item four</li>
+</ol>
+</li>
+	<li>List item two</li>
+	<li>List item three</li>
+	<li>List item four</li>
+</ol>
+<h2>HTML Tags</h2>
+These supported tags come from the WordPress.com code <a title="Code" href="http://en.support.wordpress.com/code/">FAQ</a>.
+
+<strong>Address Tag</strong>
+
+<address>1 Infinite Loop
+Cupertino, CA 95014
+United States</address><strong>Anchor Tag (aka. Link)</strong>
+
+This is an example of a <a title="Apple" href="http://apple.com">link</a>.
+
+<strong>Abbreviation Tag</strong>
+
+The abbreviation <abbr title="Seriously">srsly</abbr> stands for "seriously".
+
+<strong>Acronym Tag (<em>deprecated in HTML5</em>)</strong>
+
+The acronym <acronym title="For The Win">ftw</acronym> stands for "for the win".
+
+<strong>Big Tag <strong>(<em>deprecated in HTML5</em>)</strong></strong>
+
+These tests are a <big>big</big> deal, but this tag is no longer supported in HTML5.
+
+<strong>Cite Tag</strong>
+
+"Code is poetry." --<cite>Automattic</cite>
+
+<strong>Code Tag</strong>
+
+You will learn later on in these tests that <code>word-wrap: break-word;</code> will be your best friend.
+
+<strong>Delete Tag</strong>
+
+This tag will let you <del>strikeout text</del>, but this tag is no longer supported in HTML5 (use the <code>&lt;strike&gt;</code> instead).
+
+<strong>Emphasize Tag</strong>
+
+The emphasize tag should <em>italicize</em> text.
+
+<strong>Insert Tag</strong>
+
+This tag should denote <ins>inserted</ins> text.
+
+<strong>Keyboard Tag</strong>
+
+This scarsly known tag emulates <kbd>keyboard text</kbd>, which is usually styled like the <code>&lt;code&gt;</code> tag.
+
+<strong>Preformatted Tag</strong>
+
+This tag styles large blocks of code.
+<pre>.post-title {
+	margin: 0 0 5px;
+	font-weight: bold;
+	font-size: 38px;
+	line-height: 1.2;
+	and here's a line of some really, really, really, really long text, just to see how the PRE tag handles it and to find out how it overflows;
+}</pre>
+<strong>Quote Tag</strong>
+
+<q>Developers, developers, developers...</q> --Steve Ballmer
+
+<strong>Strike Tag <strong>(<em>deprecated in HTML5</em>)</strong></strong>
+
+This tag shows <span style="text-decoration:line-through;">strike-through text</span>
+
+<strong>Strong Tag</strong>
+
+This tag shows <strong>bold<strong> text.</strong></strong>
+
+<strong>Subscript Tag</strong>
+
+Getting our science styling on with H<sub>2</sub>O, which should push the "2" down.
+
+<strong>Superscript Tag</strong>
+
+Still sticking with science and Isaac Newton's E = MC<sup>2</sup>, which should lift the 2 up.
+
+<strong>Teletype Tag <strong>(<em>deprecated in HTML5</em>)</strong></strong>
+
+This rarely used tag emulates <tt>teletype text</tt>, which is usually styled like the <code>&lt;code&gt;</code> tag.
+
+<strong>Variable Tag</strong>
+
+This allows you to denote <var>variables</var>.]]></content:encoded>
+  <excerpt:encoded><![CDATA[]]></excerpt:encoded>
+  <wp:post_id>1178</wp:post_id>
+  <wp:post_date>2013-01-11 20:22:19</wp:post_date>
+  <wp:post_date_gmt>2013-01-12 03:22:19</wp:post_date_gmt>
+  <wp:comment_status>closed</wp:comment_status>
+  <wp:ping_status>closed</wp:ping_status>
+  <wp:post_name>markup-html-tags-and-formatting</wp:post_name>
+  <wp:status>publish</wp:status>
+  <wp:post_parent>0</wp:post_parent>
+  <wp:menu_order>0</wp:menu_order>
+  <wp:post_type>post</wp:post_type>
+  <wp:post_password/>
+  <wp:is_sticky>0</wp:is_sticky>
+  <category domain="post_tag" nicename="content-2"><![CDATA[content]]></category>
+  <category domain="post_tag" nicename="css"><![CDATA[css]]></category>
+  <category domain="post_tag" nicename="formatting-2"><![CDATA[formatting]]></category>
+  <category domain="post_tag" nicename="html"><![CDATA[html]]></category>
+  <category domain="category" nicename="markup"><![CDATA[Markup]]></category>
+  <category domain="post_tag" nicename="markup-2"><![CDATA[markup]]></category>
+  <wp:postmeta>
+    <wp:meta_key>_wp_old_slug</wp:meta_key>
+    <wp:meta_value><![CDATA[markup-and-formatting]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_publicize_pending</wp:meta_key>
+    <wp:meta_value><![CDATA[1]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>standard_seo_post_level_layout</wp:meta_key>
+    <wp:meta_value><![CDATA[]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>standard_link_url_field</wp:meta_key>
+    <wp:meta_value><![CDATA[]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>standard_seo_post_meta_description</wp:meta_key>
+    <wp:meta_value><![CDATA[]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>original_post_id</wp:meta_key>
+    <wp:meta_value><![CDATA[919]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_wp_old_slug</wp:meta_key>
+    <wp:meta_value><![CDATA[919]]></wp:meta_value>
+  </wp:postmeta>
+</item>
+<item>
+  <title>Media: Twitter Embeds</title>
+  <link>http://wpthemetestdata.wordpress.com/2011/03/15/media-twitter-embeds/</link>
+  <pubDate>Tue, 15 Mar 2011 22:47:16 +0000</pubDate>
+  <dc:creator>themedemos</dc:creator>
+  <guid isPermaLink="false">http://wptest.io/demo/?p=1027</guid>
+  <description/>
+  <content:encoded><![CDATA[https://twitter.com/nacin/status/319508408669708289
+
+This post tests WordPress' <a title="Twitter Embeds" href="http://en.support.wordpress.com/twitter/twitter-embeds/" target="_blank">Twitter Embeds</a> feature.]]></content:encoded>
+  <excerpt:encoded><![CDATA[]]></excerpt:encoded>
+  <wp:post_id>1179</wp:post_id>
+  <wp:post_date>2011-03-15 15:47:16</wp:post_date>
+  <wp:post_date_gmt>2011-03-15 22:47:16</wp:post_date_gmt>
+  <wp:comment_status>closed</wp:comment_status>
+  <wp:ping_status>closed</wp:ping_status>
+  <wp:post_name>media-twitter-embeds</wp:post_name>
+  <wp:status>publish</wp:status>
+  <wp:post_parent>0</wp:post_parent>
+  <wp:menu_order>0</wp:menu_order>
+  <wp:post_type>post</wp:post_type>
+  <wp:post_password/>
+  <wp:is_sticky>0</wp:is_sticky>
+  <category domain="post_tag" nicename="content-2"><![CDATA[content]]></category>
+  <category domain="post_tag" nicename="embeds-2"><![CDATA[embeds]]></category>
+  <category domain="post_tag" nicename="media"><![CDATA[media]]></category>
+  <category domain="category" nicename="media-2"><![CDATA[Media]]></category>
+  <category domain="post_tag" nicename="twitter-2"><![CDATA[twitter]]></category>
+  <wp:postmeta>
+    <wp:meta_key>_publicize_pending</wp:meta_key>
+    <wp:meta_value><![CDATA[1]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>standard_seo_post_level_layout</wp:meta_key>
+    <wp:meta_value><![CDATA[]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>standard_link_url_field</wp:meta_key>
+    <wp:meta_value><![CDATA[]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>standard_seo_post_meta_description</wp:meta_key>
+    <wp:meta_value><![CDATA[]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_wp_old_slug</wp:meta_key>
+    <wp:meta_value><![CDATA[twitter-embeds]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>original_post_id</wp:meta_key>
+    <wp:meta_value><![CDATA[1027]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_wp_old_slug</wp:meta_key>
+    <wp:meta_value><![CDATA[1027]]></wp:meta_value>
+  </wp:postmeta>
+</item>
+<item>
+  <title>Template: Sticky</title>
+  <link>http://wpthemetestdata.wordpress.com/2012/01/07/template-sticky/</link>
+  <pubDate>Sat, 07 Jan 2012 14:07:21 +0000</pubDate>
+  <dc:creator>themedemos</dc:creator>
+  <guid isPermaLink="false">http://wptest.io/demo/?p=1241</guid>
+  <description/>
+  <content:encoded><![CDATA[This is a sticky post.
+
+There are a few things to verify:
+<ul>
+	<li>The sticky post should be distinctly recognizable in some way in comparison to normal posts. You can style the <code>.sticky</code> class if you are using the <a title="WordPress Codex post_class() Function" href="http://codex.wordpress.org/Function_Reference/post_class" target="_blank">post_class()</a> function to generate your post classes, which is a best practice.</li>
+	<li>They should show at the very top of the blog index page, even though they could be several posts back chronologically.</li>
+	<li>They should still show up again in their chronologically correct postion in time, but without the sticky indicator.</li>
+	<li>If you have a plugin or widget that lists popular posts or comments, make sure that this sticky post is not always at the top of those lists unless it really is popular.</li>
+</ul>]]></content:encoded>
+  <excerpt:encoded><![CDATA[]]></excerpt:encoded>
+  <wp:post_id>1241</wp:post_id>
+  <wp:post_date>2012-01-07 07:07:21</wp:post_date>
+  <wp:post_date_gmt>2012-01-07 14:07:21</wp:post_date_gmt>
+  <wp:comment_status>closed</wp:comment_status>
+  <wp:ping_status>closed</wp:ping_status>
+  <wp:post_name>template-sticky</wp:post_name>
+  <wp:status>publish</wp:status>
+  <wp:post_parent>0</wp:post_parent>
+  <wp:menu_order>0</wp:menu_order>
+  <wp:post_type>post</wp:post_type>
+  <wp:post_password/>
+  <wp:is_sticky>1</wp:is_sticky>
+  <category domain="post_tag" nicename="sticky-2"><![CDATA[sticky]]></category>
+  <category domain="post_tag" nicename="template"><![CDATA[template]]></category>
+  <category domain="category" nicename="uncategorized"><![CDATA[Uncategorized]]></category>
+  <wp:postmeta>
+    <wp:meta_key>_publicize_pending</wp:meta_key>
+    <wp:meta_value><![CDATA[1]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>standard_seo_post_level_layout</wp:meta_key>
+    <wp:meta_value><![CDATA[]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>standard_link_url_field</wp:meta_key>
+    <wp:meta_value><![CDATA[]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>standard_seo_post_meta_description</wp:meta_key>
+    <wp:meta_value><![CDATA[]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>original_post_id</wp:meta_key>
+    <wp:meta_value><![CDATA[1241]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_wp_old_slug</wp:meta_key>
+    <wp:meta_value><![CDATA[1241]]></wp:meta_value>
+  </wp:postmeta>
+  <wp:postmeta>
+    <wp:meta_key>_wp_old_slug</wp:meta_key>
+    <wp:meta_value><![CDATA[sticky]]></wp:meta_value>
+  </wp:postmeta>
+</item>
+<item>
+  <title>Template: Excerpt (Generated)</title>
+  <link>http://wpthemetestdata.wordpress.com/2012/03/14/template-excerpt-generated/</link>
+  <pubDate>Wed, 14 Mar 2012 16:49:22 +0000</pubDate>
+  <dc:creator>themedemos</dc:creator>
+  <guid isPermaLink="false">http://wpthemetestdata.wordpress.com/?p=1446</guid>
+  <description/>
+  <content:encoded><![CDATA[This is the post content. It should be displayed in place of the auto-generated excerpt in single-page views. Archive-index pages should display an auto-generated excerpt of this content. Depending on Theme-defined filters, the length of the auto-generated excerpt will vary from Theme-to-Theme. The default length for auto-generated excerpts is 55 words, so to test the excerpt auto-generation, this post must have more than 55 words.
+
+Be sure to test the formatting of the auto-generated excerpt, to ensure that it doesn't create any layout problems. Also, ensure that any filters applied to the excerpt, such as &lt;code&gt;excerpt_length&lt;/code&gt; and &lt;code&gt;excerpt_more&lt;/code&gt;, display properly.]]></content:encoded>
+  <excerpt:encoded><![CDATA[]]></excerpt:encoded>
+  <wp:post_id>1446</wp:post_id>
+  <wp:post_date>2012-03-14 09:49:22</wp:post_date>
+  <wp:post_date_gmt>2012-03-14 16:49:22</wp:post_date_gmt>
+  <wp:comment_status>closed</wp:comment_status>
+  <wp:ping_status>closed</wp:ping_status>
+  <wp:post_name>template-excerpt-generated</wp:post_name>
+  <wp:status>publish</wp:status>
+  <wp:post_parent>0</wp:post_parent>
+  <wp:menu_order>0</wp:menu_order>
+  <wp:post_type>post</wp:post_type>
+  <wp:post_password/>
+  <wp:is_sticky>0</wp:is_sticky>
+  <category domain="post_tag" nicename="content-2"><![CDATA[content]]></category>
+  <category domain="post_tag" nicename="excerpt-2"><![CDATA[excerpt]]></category>
+  <category domain="post_tag" nicename="template"><![CDATA[template]]></category>
+  <category domain="category" nicename="template-2"><![CDATA[Template]]></category>
+  <category domain="category" nicename="uncategorized"><![CDATA[Uncategorized]]></category>
+  <wp:postmeta>
+    <wp:meta_key>_publicize_pending</wp:meta_key>
+    <wp:meta_value><![CDATA[1]]></wp:meta_value>
+  </wp:postmeta>
+</item>
+  </channel>
+</rss>