Index: wp-content/plugins/hello/.gitignore
===================================================================
--- wp-content/plugins/hello/.gitignore	(revision 0)
+++ wp-content/plugins/hello/.gitignore	(working copy)
@@ -0,0 +1 @@
+/.idea
Index: wp-content/plugins/hello/.travis.yml
===================================================================
--- wp-content/plugins/hello/.travis.yml	(revision 0)
+++ wp-content/plugins/hello/.travis.yml	(working copy)
@@ -0,0 +1,16 @@
+language: php
+
+php:
+    - 5.3
+    - 5.4
+
+env:
+    - WP_VERSION=latest WP_MULTISITE=0
+    - WP_VERSION=latest WP_MULTISITE=1
+    - WP_VERSION=3.8 WP_MULTISITE=0
+    - WP_VERSION=3.8 WP_MULTISITE=1
+
+before_script:
+    - bash bin/install-wp-tests.sh wordpress_test root '' localhost $WP_VERSION 
+
+script: phpunit
Index: wp-content/plugins/hello/hello.php
===================================================================
--- wp-content/plugins/hello/hello.php	(revision 0)
+++ wp-content/plugins/hello/hello.php	(working copy)
@@ -0,0 +1,100 @@
+<?php
+/**
+ * @package Hello_Dolly
+ * @version 1.7
+ */
+/*
+* Plugin Name: Hello Dolly
+* Plugin URI: http://wordpress.org/plugins/hello-dolly/
+* Description: This is not just a plugin, it symbolizes the hope and enthusiasm of an entire generation summed up in two words sung most famously by Louis Armstrong: Hello, Dolly. When activated you will randomly see a lyric from <cite>Hello, Dolly</cite> in the upper right of your admin screen on every page.
+* Author: Matt Mullenweg
+* Version: 1.7
+* Author URI: http://ma.tt/
+* Text Domain: hello-dolly
+*/
+
+
+// load langauge
+load_plugin_textdomain('hello-dolly', false, basename( dirname( __FILE__ ) ) . '/languages' );
+
+
+/**
+ * @return string
+ */
+function hello_dolly_get_lyric() {
+	/** These are the lyrics to Hello Dolly */
+	$lyrics = _x( "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", 'hello-dolly', 'lyrics: Hello, Dolly by Louis Armstrong' );
+
+	// 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();
+	printf( '<p id="dolly"><span class="screen-reader-text">%s </span>%s</p>',
+		_x( 'A random lyric from Hello, Dolly by Louis Armstrong: ','hello-dolly', 'a11n aria-label' ),
+		esc_html( $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';
+
+	printf('
+	<style type="text/css">
+	#dolly {
+		float: %1$s;
+		padding-%1$s: 15px;
+		padding-top: 5px;
+		margin: 0;
+		font-size: 11px;
+	}
+	</style>
+	', esc_attr( $x ) );
+}
+
+add_action( 'admin_head', 'dolly_css' );
+
+?>
Index: wp-content/plugins/hello/phpunit.xml
===================================================================
--- wp-content/plugins/hello/phpunit.xml	(revision 0)
+++ wp-content/plugins/hello/phpunit.xml	(working copy)
@@ -0,0 +1,14 @@
+<phpunit
+	bootstrap="tests/bootstrap.php"
+	backupGlobals="false"
+	colors="true"
+	convertErrorsToExceptions="true"
+	convertNoticesToExceptions="true"
+	convertWarningsToExceptions="true"
+	>
+	<testsuites>
+		<testsuite>
+			<directory prefix="test-" suffix=".php">./tests/</directory>
+		</testsuite>
+	</testsuites>
+</phpunit>
Index: wp-content/plugins/hello/readme.txt
===================================================================
--- wp-content/plugins/hello/readme.txt	(revision 0)
+++ wp-content/plugins/hello/readme.txt	(working copy)
@@ -0,0 +1,41 @@
+=== Hello Dolly ===
+Contributors: matt
+Requires at least: 3.0
+Stable tag: 1.6
+Tested up to: 4.0
+License: GPLv2 or later
+License URI: http://www.gnu.org/licenses/gpl-2.0.html
+Contributors: matt
+
+This is not just a plugin, it symbolizes the hope and enthusiasm of an entire generation summed up in two words sung most famously by Louis Armstrong.
+
+== Description ==
+This is not just a plugin, it symbolizes the hope and enthusiasm of an entire generation summed up in two words sung most famously by Louis Armstrong: Hello, Dolly. When activated you will randomly see a lyric from Hello, Dolly in the upper right of your admin screen on every page.
+
+
+== Installation ==
+Hello Dolly is installed as part of core. If you have deleted it you can reinstall Hello Dolly using the built in WordPress plugin installer. If you download BuddyPress manually, make sure it is uploaded to \"/wp-content/plugins/buddypress/\".
+
+Activate Hello Dolly in the \"Plugins\" admin panel using the \"Activate\" link. If you\'re using WordPress Multisite, you can choose to activate BuddyPress network wide for full integration with all of your site.
+
+
+== Changelog ==
+== 1.8 ==
+Added late escaping
+Added support on i8n
+Added Unit tests
+update readme
+version bump
+@props WordCamp Toronto 2014
+
+== 1.7 ==
+Version bump
+
+==1.6==
+ Version bump
+
+== 1.5 ==
+New URL
+
+== Upgrade Notice ==
+n/a
\ No newline at end of file
Index: wp-content/plugins/hello/.gitignore
===================================================================
--- wp-content/plugins/hello/.gitignore	(revision 0)
+++ wp-content/plugins/hello/.gitignore	(working copy)
@@ -0,0 +1 @@
+/.idea
Index: wp-content/plugins/hello/.travis.yml
===================================================================
--- wp-content/plugins/hello/.travis.yml	(revision 0)
+++ wp-content/plugins/hello/.travis.yml	(working copy)
@@ -0,0 +1,16 @@
+language: php
+
+php:
+    - 5.3
+    - 5.4
+
+env:
+    - WP_VERSION=latest WP_MULTISITE=0
+    - WP_VERSION=latest WP_MULTISITE=1
+    - WP_VERSION=3.8 WP_MULTISITE=0
+    - WP_VERSION=3.8 WP_MULTISITE=1
+
+before_script:
+    - bash bin/install-wp-tests.sh wordpress_test root '' localhost $WP_VERSION 
+
+script: phpunit
Index: wp-content/plugins/hello/hello.php
===================================================================
--- wp-content/plugins/hello/hello.php	(revision 0)
+++ wp-content/plugins/hello/hello.php	(working copy)
@@ -0,0 +1,100 @@
+<?php
+/**
+ * @package Hello_Dolly
+ * @version 1.7
+ */
+/*
+* Plugin Name: Hello Dolly
+* Plugin URI: http://wordpress.org/plugins/hello-dolly/
+* Description: This is not just a plugin, it symbolizes the hope and enthusiasm of an entire generation summed up in two words sung most famously by Louis Armstrong: Hello, Dolly. When activated you will randomly see a lyric from <cite>Hello, Dolly</cite> in the upper right of your admin screen on every page.
+* Author: Matt Mullenweg
+* Version: 1.7
+* Author URI: http://ma.tt/
+* Text Domain: hello-dolly
+*/
+
+
+// load langauge
+load_plugin_textdomain('hello-dolly', false, basename( dirname( __FILE__ ) ) . '/languages' );
+
+
+/**
+ * @return string
+ */
+function hello_dolly_get_lyric() {
+	/** These are the lyrics to Hello Dolly */
+	$lyrics = _x( "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", 'hello-dolly', 'lyrics: Hello, Dolly by Louis Armstrong' );
+
+	// 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();
+	printf( '<p id="dolly"><span class="screen-reader-text">%s </span>%s</p>',
+		_x( 'A random lyric from Hello, Dolly by Louis Armstrong: ','hello-dolly', 'a11n aria-label' ),
+		esc_html( $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';
+
+	printf('
+	<style type="text/css">
+	#dolly {
+		float: %1$s;
+		padding-%1$s: 15px;
+		padding-top: 5px;
+		margin: 0;
+		font-size: 11px;
+	}
+	</style>
+	', esc_attr( $x ) );
+}
+
+add_action( 'admin_head', 'dolly_css' );
+
+?>
Index: wp-content/plugins/hello/phpunit.xml
===================================================================
--- wp-content/plugins/hello/phpunit.xml	(revision 0)
+++ wp-content/plugins/hello/phpunit.xml	(working copy)
@@ -0,0 +1,14 @@
+<phpunit
+	bootstrap="tests/bootstrap.php"
+	backupGlobals="false"
+	colors="true"
+	convertErrorsToExceptions="true"
+	convertNoticesToExceptions="true"
+	convertWarningsToExceptions="true"
+	>
+	<testsuites>
+		<testsuite>
+			<directory prefix="test-" suffix=".php">./tests/</directory>
+		</testsuite>
+	</testsuites>
+</phpunit>
Index: wp-content/plugins/hello/readme.txt
===================================================================
--- wp-content/plugins/hello/readme.txt	(revision 0)
+++ wp-content/plugins/hello/readme.txt	(working copy)
@@ -0,0 +1,41 @@
+=== Hello Dolly ===
+Contributors: matt
+Requires at least: 3.0
+Stable tag: 1.6
+Tested up to: 4.0
+License: GPLv2 or later
+License URI: http://www.gnu.org/licenses/gpl-2.0.html
+Contributors: matt
+
+This is not just a plugin, it symbolizes the hope and enthusiasm of an entire generation summed up in two words sung most famously by Louis Armstrong.
+
+== Description ==
+This is not just a plugin, it symbolizes the hope and enthusiasm of an entire generation summed up in two words sung most famously by Louis Armstrong: Hello, Dolly. When activated you will randomly see a lyric from Hello, Dolly in the upper right of your admin screen on every page.
+
+
+== Installation ==
+Hello Dolly is installed as part of core. If you have deleted it you can reinstall Hello Dolly using the built in WordPress plugin installer. If you download BuddyPress manually, make sure it is uploaded to \"/wp-content/plugins/buddypress/\".
+
+Activate Hello Dolly in the \"Plugins\" admin panel using the \"Activate\" link. If you\'re using WordPress Multisite, you can choose to activate BuddyPress network wide for full integration with all of your site.
+
+
+== Changelog ==
+== 1.8 ==
+Added late escaping
+Added support on i8n
+Added Unit tests
+update readme
+version bump
+@props WordCamp Toronto 2014
+
+== 1.7 ==
+Version bump
+
+==1.6==
+ Version bump
+
+== 1.5 ==
+New URL
+
+== Upgrade Notice ==
+n/a
\ No newline at end of file
