diff --git a/src/wp-content/plugins/akismet/admin.php b/src/wp-content/plugins/akismet/admin.php
new file mode 100644
index 00000000..91cedb29
--- /dev/null
+++ b/src/wp-content/plugins/akismet/admin.php
@@ -0,0 +1,750 @@
+
".sprintf(__('Akismet %s requires WordPress 3.0 or higher.'), AKISMET_VERSION) ." ".sprintf(__('Please upgrade WordPress to a current version, or downgrade to version 2.4 of the Akismet plugin.'), 'http://codex.wordpress.org/Upgrading_WordPress', 'http://wordpress.org/extend/plugins/akismet/download/'). "
+ ";
+ }
+ add_action('admin_notices', 'akismet_version_warning');
+
+ return;
+ }
+
+ if ( function_exists( 'get_plugin_page_hook' ) )
+ $hook = get_plugin_page_hook( 'akismet-stats-display', 'index.php' );
+ else
+ $hook = 'dashboard_page_akismet-stats-display';
+ add_action('admin_head-'.$hook, 'akismet_stats_script');
+ add_meta_box('akismet-status', __('Comment History'), 'akismet_comment_status_meta_box', 'comment', 'normal');
+ wp_register_style('akismet.css', AKISMET_PLUGIN_URL . 'akismet.css');
+ wp_enqueue_style('akismet.css');
+ wp_register_script('akismet.js', AKISMET_PLUGIN_URL . 'akismet.js', array('jquery'));
+ wp_enqueue_script('akismet.js');
+}
+add_action('admin_init', 'akismet_admin_init');
+
+function akismet_nonce_field($action = -1) { return wp_nonce_field($action); }
+$akismet_nonce = 'akismet-update-key';
+
+function akismet_config_page() {
+ if ( function_exists('add_submenu_page') )
+ add_submenu_page('plugins.php', __('Akismet Configuration'), __('Akismet Configuration'), 'manage_options', 'akismet-key-config', 'akismet_conf');
+}
+
+function akismet_plugin_action_links( $links, $file ) {
+ if ( $file == plugin_basename( dirname(__FILE__).'/akismet.php' ) ) {
+ $links[] = ''.__('Settings').'';
+ }
+
+ return $links;
+}
+
+add_filter( 'plugin_action_links', 'akismet_plugin_action_links', 10, 2 );
+
+function akismet_conf() {
+ global $akismet_nonce, $wpcom_api_key;
+
+ if ( isset($_POST['submit']) ) {
+ if ( function_exists('current_user_can') && !current_user_can('manage_options') )
+ die(__('Cheatin’ uh?'));
+
+ check_admin_referer( $akismet_nonce );
+ $key = preg_replace( '/[^a-h0-9]/i', '', $_POST['key'] );
+ $home_url = parse_url( get_bloginfo('url') );
+
+ if ( empty($key) ) {
+ $key_status = 'empty';
+ $ms[] = 'new_key_empty';
+ delete_option('wordpress_api_key');
+ } elseif ( empty($home_url['host']) ) {
+ $key_status = 'empty';
+ $ms[] = 'bad_home_url';
+ } else {
+ $key_status = akismet_verify_key( $key );
+ }
+
+ if ( $key_status == 'valid' ) {
+ update_option('wordpress_api_key', $key);
+ $ms[] = 'new_key_valid';
+ } else if ( $key_status == 'invalid' ) {
+ $ms[] = 'new_key_invalid';
+ } else if ( $key_status == 'failed' ) {
+ $ms[] = 'new_key_failed';
+ }
+
+ if ( isset( $_POST['akismet_discard_month'] ) )
+ update_option( 'akismet_discard_month', 'true' );
+ else
+ update_option( 'akismet_discard_month', 'false' );
+
+ if ( isset( $_POST['akismet_show_user_comments_approved'] ) )
+ update_option( 'akismet_show_user_comments_approved', 'true' );
+ else
+ update_option( 'akismet_show_user_comments_approved', 'false' );
+
+ } elseif ( isset($_POST['check']) ) {
+ akismet_get_server_connectivity(0);
+ }
+
+ if ( empty( $key_status) || $key_status != 'valid' ) {
+ $key = get_option('wordpress_api_key');
+ if ( empty( $key ) ) {
+ if ( empty( $key_status ) || $key_status != 'failed' ) {
+ if ( akismet_verify_key( '1234567890ab' ) == 'failed' )
+ $ms[] = 'no_connection';
+ else
+ $ms[] = 'key_empty';
+ }
+ $key_status = 'empty';
+ } else {
+ $key_status = akismet_verify_key( $key );
+ }
+ if ( $key_status == 'valid' ) {
+ $ms[] = 'key_valid';
+ } else if ( $key_status == 'invalid' ) {
+ delete_option('wordpress_api_key');
+ $ms[] = 'key_empty';
+ } else if ( !empty($key) && $key_status == 'failed' ) {
+ $ms[] = 'key_failed';
+ }
+ }
+
+ $messages = array(
+ 'new_key_empty' => array('color' => 'aa0', 'text' => __('Your key has been cleared.')),
+ 'new_key_valid' => array('color' => '4AB915', 'text' => __('Your key has been verified. Happy blogging!')),
+ 'new_key_invalid' => array('color' => '888', 'text' => __('The key you entered is invalid. Please double-check it.')),
+ 'new_key_failed' => array('color' => '888', 'text' => __('The key you entered could not be verified because a connection to akismet.com could not be established. Please check your server configuration.')),
+ 'no_connection' => array('color' => '888', 'text' => __('There was a problem connecting to the Akismet server. Please check your server configuration.')),
+ 'key_empty' => array('color' => 'aa0', 'text' => sprintf(__('Please enter an API key. (Get your key.)'), 'http://akismet.com/get/')),
+ 'key_valid' => array('color' => '4AB915', 'text' => __('This key is valid.')),
+ 'key_failed' => array('color' => 'aa0', 'text' => __('The key below was previously validated but a connection to akismet.com can not be established at this time. Please check your server configuration.')),
+ 'bad_home_url' => array('color' => '888', 'text' => sprintf( __('Your WordPress home URL %s is invalid. Please fix the home option.'), esc_html( get_bloginfo('url') ), admin_url('options.php#home') ) ),
+ );
+?>
+
+
+
+
+
+
+
Sign up success! Please check your email for your Akismet API Key and enter it below.' ); ?>
'.sprintf( _n( 'Akismet has protected your site from %3$s spam comments.', 'Akismet has protected your site from %3$s spam comments.', $count ), 'http://akismet.com/', clean_url("$link?page=akismet-admin"), number_format_i18n($count) ).'
';
+}
+add_action('activity_box_end', 'akismet_stats');
+
+function akismet_admin_warnings() {
+ global $wpcom_api_key;
+ if ( !get_option('wordpress_api_key') && !$wpcom_api_key && !isset($_POST['submit']) ) {
+ function akismet_warning() {
+ echo "
+
".__('Akismet is almost ready.')." ".sprintf(__('You must enter your Akismet API key for it to work.'), "plugins.php?page=akismet-key-config")."
".__('Akismet has detected a problem.')." ".sprintf(_n('A server or network problem prevented Akismet from checking %d comment. It has been temporarily held for moderation and will be automatically re-checked in %s.', 'A server or network problem prevented Akismet from checking %d comments. They have been temporarily held for moderation and will be automatically re-checked in %s.', $waiting), number_format_i18n( $waiting ), $next_check)."
+ ";
+ }
+ add_action('admin_notices', 'akismet_warning');
+ return;
+ }
+}
+
+// FIXME placeholder
+
+function akismet_comment_row_action( $a, $comment ) {
+
+ // failsafe for old WP versions
+ if ( !function_exists('add_comment_meta') )
+ return $a;
+
+ $akismet_result = get_comment_meta( $comment->comment_ID, 'akismet_result', true );
+ $user_result = get_comment_meta( $comment->comment_ID, 'akismet_user_result', true);
+ $comment_status = wp_get_comment_status( $comment->comment_ID );
+ $desc = null;
+ if ( !$user_result || $user_result == $akismet_result ) {
+ // Show the original Akismet result if the user hasn't overridden it, or if their decision was the same
+ if ( $akismet_result == 'true' && $comment_status != 'spam' && $comment_status != 'trash' )
+ $desc = __( 'Flagged as spam by Akismet' );
+ elseif ( $akismet_result == 'false' && $comment_status == 'spam' )
+ $desc = __( 'Cleared by Akismet' );
+ } else {
+ $who = get_comment_meta( $comment->comment_ID, 'akismet_user', true );
+ if ( $user_result == 'true' )
+ $desc = sprintf( __('Flagged as spam by %s'), $who );
+ else
+ $desc = sprintf( __('Un-spammed by %s'), $who );
+ }
+
+ // add a History item to the hover links, just after Edit
+ if ( $akismet_result ) {
+ $b = array();
+ foreach ( $a as $k => $item ) {
+ $b[ $k ] = $item;
+ if ( $k == 'edit' )
+ $b['history'] = ' '. __('History') . '';
+ }
+
+ $a = $b;
+ }
+
+ if ( $desc )
+ echo ''.htmlspecialchars($desc).'';
+
+ if ( apply_filters( 'akismet_show_user_comments_approved', get_option('akismet_show_user_comments_approved') ) == 'true' ) {
+ $comment_count = akismet_get_user_comments_approved( $comment->user_id, $comment->comment_author_email, $comment->comment_author, $comment->comment_author_url );
+ $comment_count = intval( $comment_count );
+ echo ' '.sprintf( _n( '%s approved', '%s approved', $comment_count ), number_format_i18n( $comment_count ) ) . '';
+ }
+
+ return $a;
+}
+
+add_filter( 'comment_row_actions', 'akismet_comment_row_action', 10, 2 );
+
+function akismet_comment_status_meta_box($comment) {
+ $history = akismet_get_comment_history( $comment->comment_ID );
+
+ if ( $history ) {
+ echo '
';
+ foreach ( $history as $row ) {
+ $time = date( 'D d M Y @ h:i:m a', $row['time'] ) . ' GMT';
+ echo '
%1$s spam for you since you first installed it.'), number_format_i18n($count) ); ?>
+'.__('You have no spam currently in the queue. Must be your lucky day. :)').'';
+ echo '
';
+} else {
+ echo '
'.__('You can delete all of the spam from your database with a single click. This operation cannot be undone, so you may wish to check to ensure that no legitimate comments got through first. Spam is automatically deleted after 15 days, so don’t sweat it.').'
';
+?>
+
+
+
+
+
+
+
+
+'.__('These are the latest comments identified as spam by Akismet. If you see any mistakes, simply mark the comment as "not spam" and Akismet will learn from the submission. If you wish to recover a comment from spam, simply select the comment, and click Not Spam. After 15 days we clean out the junk for you.').''; ?>
+
+escape($_POST['s']);
+ $comments = $wpdb->get_results("SELECT * FROM $wpdb->comments WHERE
+ (comment_author LIKE '%$s%' OR
+ comment_author_email LIKE '%$s%' OR
+ comment_author_url LIKE ('%$s%') OR
+ comment_author_IP LIKE ('%$s%') OR
+ comment_content LIKE ('%$s%') ) AND
+ comment_approved = 'spam'
+ ORDER BY comment_date DESC");
+} else {
+ if ( isset( $_GET['apage'] ) )
+ $page = (int) $_GET['apage'];
+ else
+ $page = 1;
+
+ if ( $page < 2 )
+ $page = 1;
+
+ $current_type = false;
+ if ( isset( $_GET['ctype'] ) )
+ $current_type = preg_replace( '|[^a-z]|', '', $_GET['ctype'] );
+
+ $comments = akismet_spam_comments( $current_type, $page );
+ $total = akismet_spam_count( $current_type );
+ $totals = akismet_spam_totals();
+?>
+
' . $button, $page );
+ return $page;
+ }
+
+ if ( $wpdb->get_var( "SELECT COUNT(*) FROM $wpdb->comments WHERE comment_approved = '0'" ) )
+ ob_start( 'akismet_recheck_button' );
+}
+
+// This option causes tons of FPs, was removed in 2.1
+function akismet_kill_proxy_check( $option ) { return 0; }
+add_filter('option_open_proxy_check', 'akismet_kill_proxy_check');
diff --git a/src/wp-content/plugins/akismet/readme.txt b/src/wp-content/plugins/akismet/readme.txt
new file mode 100644
index 00000000..fbd3513b
--- /dev/null
+++ b/src/wp-content/plugins/akismet/readme.txt
@@ -0,0 +1,130 @@
+=== Akismet ===
+Contributors: matt, ryan, andy, mdawaffe, tellyworth, josephscott, lessbloat, automattic
+Tags: akismet, comments, spam
+Requires at least: 3.0
+Tested up to: 3.1
+Stable tag: 2.5.3
+License: GPLv2 or later
+
+Akismet checks your comments against the Akismet web service to see if they look like spam or not.
+
+== Description ==
+
+Akismet checks your comments against the Akismet web service to see if they look like spam or not and lets you
+review the spam it catches under your blog's "Comments" admin screen.
+
+Major new features in Akismet 2.5 include:
+
+* A comment status history, so you can easily see which comments were caught or cleared by Akismet, and which were spammed or unspammed by a moderator
+* Links are highlighted in the comment body, to reveal hidden or misleading links
+* If your web host is unable to reach Akismet's servers, the plugin will automatically retry when your connection is back up
+* Moderators can see the number of approved comments for each user
+* Spam and Unspam reports now include more information, to help improve accuracy
+
+PS: You'll need an [Akismet.com API key](http://akismet.com/get/) to use it. Keys are free for personal blogs, with paid subscriptions available for businesses and commercial sites.
+
+== Installation ==
+
+Upload the Akismet plugin to your blog, Activate it, then enter your [Akismet.com API key](http://akismet.com/get/).
+
+1, 2, 3: You're done!
+
+== Changelog ==
+
+= 2.5.3 =
+* Specify the license is GPL v2 or later
+* Fix a bug that could result in orphaned commentmeta entries
+* Include hotfix for WordPress 3.0.5 filter issue
+
+= 2.5.2 =
+
+* Properly format the comment count for author counts
+* Look for super admins on multisite installs when looking up user roles
+* Increase the HTTP request timeout
+* Removed padding for author approved count
+* Fix typo in function name
+* Set Akismet stats iframe height to fixed 2500px. Better to have one tall scroll bar than two side by side.
+
+= 2.5.1 =
+
+* Fix a bug that caused the "Auto delete" option to fail to discard comments correctly
+* Remove the comment nonce form field from the 'Akismet Configuration' page in favor of using a filter, akismet_comment_nonce
+* Fixed padding bug in "author" column of posts screen
+* Added margin-top to "cleared by ..." badges on dashboard
+* Fix possible error when calling akismet_cron_recheck()
+* Fix more PHP warnings
+* Clean up XHTML warnings for comment nonce
+* Fix for possible condition where scheduled comment re-checks could get stuck
+* Clean up the comment meta details after deleting a comment
+* Only show the status badge if the comment status has been changed by someone/something other than Akismet
+* Show a 'History' link in the row-actions
+* Translation fixes
+* Reduced font-size on author name
+* Moved "flagged by..." notification to top right corner of comment container and removed heavy styling
+* Hid "flagged by..." notification while on dashboard
+
+= 2.5.0 =
+
+* Track comment actions under 'Akismet Status' on the edit comment screen
+* Fix a few remaining deprecated function calls ( props Mike Glendinning )
+* Use HTTPS for the stats IFRAME when wp-admin is using HTTPS
+* Use the WordPress HTTP class if available
+* Move the admin UI code to a separate file, only loaded when needed
+* Add cron retry feature, to replace the old connectivity check
+* Display Akismet status badge beside each comment
+* Record history for each comment, and display it on the edit page
+* Record the complete comment as originally submitted in comment_meta, to use when reporting spam and ham
+* Highlight links in comment content
+* New option, "Show the number of comments you've approved beside each comment author."
+* New option, "Use a nonce on the comment form."
+
+= 2.4.0 =
+
+* Spell out that the license is GPLv2
+* Fix PHP warnings
+* Fix WordPress deprecated function calls
+* Fire the delete_comment action when deleting comments
+* Move code specific for older WP versions to legacy.php
+* General code clean up
+
+= 2.3.0 =
+
+* Fix "Are you sure" nonce message on config screen in WPMU
+* Fix XHTML compliance issue in sidebar widget
+* Change author link; remove some old references to WordPress.com accounts
+* Localize the widget title (core ticket #13879)
+
+= 2.2.9 =
+
+* Eliminate a potential conflict with some plugins that may cause spurious reports
+
+= 2.2.8 =
+
+* Fix bug in initial comment check for ipv6 addresses
+* Report comments as ham when they are moved from spam to moderation
+* Report comments as ham when clicking undo after spam
+* Use transition_comment_status action when available instead of older actions for spam/ham submissions
+* Better diagnostic messages when PHP network functions are unavailable
+* Better handling of comments by logged-in users
+
+= 2.2.7 =
+
+* Add a new AKISMET_VERSION constant
+* Reduce the possibility of over-counting spam when another spam filter plugin is in use
+* Disable the connectivity check when the API key is hard-coded for WPMU
+
+= 2.2.6 =
+
+* Fix a global warning introduced in 2.2.5
+* Add changelog and additional readme.txt tags
+* Fix an array conversion warning in some versions of PHP
+* Support a new WPCOM_API_KEY constant for easier use with WordPress MU
+
+= 2.2.5 =
+
+* Include a new Server Connectivity diagnostic check, to detect problems caused by firewalls
+
+= 2.2.4 =
+
+* Fixed a key problem affecting the stats feature in WordPress MU
+* Provide additional blog information in Akismet API calls
diff --git a/src/wp-content/plugins/akismet/widget.php b/src/wp-content/plugins/akismet/widget.php
new file mode 100644
index 00000000..e9a3f626
--- /dev/null
+++ b/src/wp-content/plugins/akismet/widget.php
@@ -0,0 +1,90 @@
+
+
+
+
', $count ), number_format_i18n( $count ) );
+}
diff --git a/src/wp-content/plugins/hello.php b/src/wp-content/plugins/hello.php
new file mode 100644
index 00000000..d2287e24
--- /dev/null
+++ b/src/wp-content/plugins/hello.php
@@ -0,0 +1,82 @@
+Hello, Dolly in the upper right of your admin screen on every page.
+Author: Matt Mullenweg
+Version: 1.6
+Author URI: http://ma.tt/
+*/
+
+function hello_dolly_get_lyric() {
+ /** These are the lyrics to Hello Dolly */
+ $lyrics = "Hello, Dolly
+Well, hello, Dolly
+It's so nice to have you back where you belong
+You're lookin' swell, Dolly
+I can tell, Dolly
+You're still glowin', you're still crowin'
+You're still goin' strong
+We feel the room swayin'
+While the band's playin'
+One of your old favourite songs from way back when
+So, take her wrap, fellas
+Find her an empty lap, fellas
+Dolly'll never go away again
+Hello, Dolly
+Well, hello, Dolly
+It's so nice to have you back where you belong
+You're lookin' swell, Dolly
+I can tell, Dolly
+You're still glowin', you're still crowin'
+You're still goin' strong
+We feel the room swayin'
+While the band's playin'
+One of your old favourite songs from way back when
+Golly, gee, fellas
+Find her a vacant knee, fellas
+Dolly'll never go away
+Dolly'll never go away
+Dolly'll never go away again";
+
+ // Here we split it into lines
+ $lyrics = explode( "\n", $lyrics );
+
+ // And then randomly choose a line
+ return wptexturize( $lyrics[ mt_rand( 0, count( $lyrics ) - 1 ) ] );
+}
+
+// This just echoes the chosen line, we'll position it later
+function hello_dolly() {
+ $chosen = hello_dolly_get_lyric();
+ echo "
$chosen
";
+}
+
+// Now we set that function up to execute when the admin_notices action is called
+add_action( 'admin_notices', 'hello_dolly' );
+
+// We need some CSS to position the paragraph
+function dolly_css() {
+ // This makes sure that the positioning is also good for right-to-left languages
+ $x = is_rtl() ? 'left' : 'right';
+
+ echo "
+
+ ";
+}
+
+add_action( 'admin_head', 'dolly_css' );
+
+?>
diff --git a/src/wp-content/themes/twentyten/404.php b/src/wp-content/themes/twentyten/404.php
new file mode 100644
index 00000000..3baea812
--- /dev/null
+++ b/src/wp-content/themes/twentyten/404.php
@@ -0,0 +1,30 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/wp-content/themes/twentyten/archive.php b/src/wp-content/themes/twentyten/archive.php
new file mode 100644
index 00000000..0707e186
--- /dev/null
+++ b/src/wp-content/themes/twentyten/archive.php
@@ -0,0 +1,61 @@
+
+
+
';
+
+ /* Run the loop for the category page to output the posts.
+ * If you want to overload this in a child theme then include a file
+ * called loop-category.php and that will be used instead.
+ */
+ get_template_part( 'loop', 'category' );
+ ?>
+
+