Index: trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-login/footer.php
===================================================================
--- trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-login/footer.php	(revision 2082)
+++ trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-login/footer.php	(working copy)
@@ -1,2 +1,8 @@
 <?php
-require WPORGPATH . 'footer.php';
\ No newline at end of file
+/**
+ * The template for displaying the footer.
+ *
+ * @package wporg-login
+ */
+
+require WPORGPATH . 'footer.php';
Index: trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-login/functions.php
===================================================================
--- trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-login/functions.php	(revision 2082)
+++ trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-login/functions.php	(working copy)
@@ -1,5 +1,32 @@
 <?php
+/**
+ * WP.org login' functions and definitions.
+ *
+ * @package wporg-login
+ */
 
+
+
+/**
+ * Registers support for various WordPress features.
+ */
+function wporg_login_setup() {
+
+	load_theme_textdomain( 'wporg-login' );
+
+	add_theme_support( 'html5', array( 'search-form', 'comment-form', 'comment-list', 'gallery', 'caption' ) );
+
+}
+add_action( 'after_setup_theme', 'wporg_login_setup' );
+
+
+
+/**
+ * Extend the default WordPress body classes.
+ *
+ * @param array $classes A list of existing body class values.
+ * @return array The filtered body class list.
+ */
 function wporg_login_body_class( $classes ) {
 //	$classes[] = 'wporg-responsive';
 	$classes[] = 'wporg-login';
@@ -7,8 +34,12 @@
 }
 add_filter( 'body_class', 'wporg_login_body_class' );
 
+
+
+/**
+ * Remove the toolbar.
+ */
 function wporg_login_init() {
-	// We don't need the toolbar on this site.
 	show_admin_bar( false );
 }
-add_action( 'init', 'wporg_login_init' );
\ No newline at end of file
+add_action( 'init', 'wporg_login_init' );
Index: trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-login/header.php
===================================================================
--- trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-login/header.php	(revision 2082)
+++ trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-login/header.php	(working copy)
@@ -1,4 +1,10 @@
 <?php
+/**
+ * The template for displaying the header.
+ *
+ * @package wporg-login
+ */
+
 global $pagetitle, $wporg_global_header_options;
 $pagetitle = wp_title( '', false );
 wp_enqueue_style( 'blog-wp4', 'https://wordpress.org/style/blog-wp4.css', array(), 12 );
@@ -10,4 +16,3 @@
 );
 
 require WPORGPATH . 'header.php';
-
Index: trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-login/index.php
===================================================================
--- trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-login/index.php	(revision 2082)
+++ trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-login/index.php	(working copy)
@@ -1,14 +1,22 @@
-<?php get_header(); ?>
+<?php
+/**
+ * The main template file.
+ *
+ * @package wporg-login
+ */
 
+get_header();
+?>
+
 <div id="pagebody">
 	<div id="login-welcome" class="wrapper">
-		<h1>Welcome!</h1>
+		<h1><?php _e( 'Welcome!', 'wporg-login' ); ?></h1>
 		<ul>
 			<?php if ( is_user_logged_in() ) : ?>
-				<li class="button"><a href="<?php echo wp_logout_url(); ?>"><?php _e( 'Logout' ) ?></a></li>
+				<li class="button"><a href="<?php echo wp_logout_url(); ?>"><?php _e( 'Logout', 'wporg-login' ); ?></a></li>
 			<?php else : ?>
-				<li class="button"><a href="<?php echo wp_login_url(); ?>">Login</a></li>
-				<li class="button"><a href="https://wordpress.org/support/register.php">Register</a></li>
+				<li class="button"><a href="<?php echo wp_login_url(); ?>"><?php _e( 'Login', 'wporg-login' ); ?></a></li>
+				<li class="button"><a href="https://wordpress.org/support/register.php"><?php _e( 'Register', 'wporg-login' ); ?></a></li>
 			<?php endif; ?>
 		</ul>
 		<?php /* Could display wp_login_form(); */ ?>
