Index: src/wp-admin/includes/class-wp-upgrader.php
===================================================================
--- src/wp-admin/includes/class-wp-upgrader.php	(revision 25771)
+++ src/wp-admin/includes/class-wp-upgrader.php	(working copy)
@@ -1872,4 +1872,21 @@
 
 		wp_mail( get_site_option( 'admin_email' ), $subject, implode( "\n", $body ) );
 	}
-}
\ No newline at end of file
+    static function get_status_message(){
+		// If we are vcs checkout, let users know that they are not being autoupdated 
+		if( self::is_vcs_checkout( ABSPATH ) )
+			return __('<div class="error inline"><p><strong>IMPORTANT:</strong> This install uses version control (SVN or Git) and thus will not receive auto updates. You are responsible for keeping this install updated.</p></div>')
+
+		if( ! wp_http_supports( 'ssl' ) )
+			return __( '<div class="error inline"><p><strong>IMPORTANT:</strong> Your server does not support HTTP requests over SSL. This install will not receive auto updates. You are responsible for keeping this install updated.</p></div>')
+
+		if (can_do_updates() && is_latest() ) // @TODO:  not real functions 
+			return __('<div><p>Your install of WordPress is up to date and able to automattically update for all security releases. You are still responsible for keeping your plugins and themes updated.</p></div>');
+
+		if (! can_do_updates() && is_latest() ) // @TODO: not real fuctions 
+			return __('<div class="error inline"><p>Your install of WordPress is up to date, but we are unable to automattically update this site. For help with updates, visit the <a href="http://codex.wordpress.org/Updating_WordPress">Updating WordPress</a> Codex page.</p></div>');     
+
+		if (! can_do_updates() && ! is_latest() ) // @TODO: not real fuctions   
+			return __('<div class="error inline"><p>Your install of WordPress is out of date and we are unable to automattically update your site. For help with updates, visit the <a href="http://codex.wordpress.org/Updating_WordPress">Updating WordPress</a> Codex page.</p></div>');     
+																																		    } 
+}
