<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head><meta http-equiv="content-type" content="text/html; charset=utf-8" /><style type="text/css"><!--
#msg dl { border: 1px #006 solid; background: #369; padding: 6px; color: #fff; }
#msg dt { float: left; width: 6em; font-weight: bold; }
#msg dt:after { content:':';}
#msg dl, #msg dt, #msg ul, #msg li, #header, #footer { font-family: verdana,arial,helvetica,sans-serif; font-size: 10pt;  }
#msg dl a { font-weight: bold}
#msg dl a:link    { color:#fc3; }
#msg dl a:active  { color:#ff0; }
#msg dl a:visited { color:#cc6; }
h3 { font-family: verdana,arial,helvetica,sans-serif; font-size: 10pt; font-weight: bold; }
#msg pre { overflow: auto; background: #ffc; border: 1px #fc0 solid; padding: 6px; }
#msg ul, pre { overflow: auto; }
#header, #footer { color: #fff; background: #636; border: 1px #300 solid; padding: 6px; }
#patch { width: 100%; }
#patch h4 {font-family: verdana,arial,helvetica,sans-serif;font-size:10pt;padding:8px;background:#369;color:#fff;margin:0;}
#patch .propset h4, #patch .binary h4 {margin:0;}
#patch pre {padding:0;line-height:1.2em;margin:0;}
#patch .diff {width:100%;background:#eee;padding: 0 0 10px 0;overflow:auto;}
#patch .propset .diff, #patch .binary .diff  {padding:10px 0;}
#patch span {display:block;padding:0 10px;}
#patch .modfile, #patch .addfile, #patch .delfile, #patch .propset, #patch .binary, #patch .copfile {border:1px solid #ccc;margin:10px 0;}
#patch ins {background:#dfd;text-decoration:none;display:block;padding:0 10px;}
#patch del {background:#fdd;text-decoration:none;display:block;padding:0 10px;}
#patch .lines, .info {color:#888;background:#fff;}
--></style>
<title>[13384] trunk: more multisite UX rebranding, See #11644</title>
</head>
<body>

<div id="msg">
<dl>
<dt>Revision</dt> <dd><a href="http://trac.wordpress.org/changeset/13384">13384</a></dd>
<dt>Author</dt> <dd>wpmuguru</dd>
<dt>Date</dt> <dd>2010-02-24 20:45:02 +0000 (Wed, 24 Feb 2010)</dd>
</dl>

<h3>Log Message</h3>
<pre>more multisite UX rebranding, See <a href="http://trac.wordpress.org/ticket/11644">#11644</a></pre>

<h3>Modified Paths</h3>
<ul>
<li><a href="#trunkwpactivatephp">trunk/wp-activate.php</a></li>
<li><a href="#trunkwpsignupphp">trunk/wp-signup.php</a></li>
</ul>

</div>
<div id="patch">
<h3>Diff</h3>
<a id="trunkwpactivatephp"></a>
<div class="modfile"><h4>Modified: trunk/wp-activate.php (13383 => 13384)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/wp-activate.php        2010-02-24 20:14:12 UTC (rev 13383)
+++ trunk/wp-activate.php        2010-02-24 20:45:02 UTC (rev 13384)
</span><span class="lines">@@ -66,7 +66,7 @@
</span><span class="cx">                             if ( $signup-&gt;domain . $signup-&gt;path == '' ) {
</span><span class="cx">                                     printf(__('&lt;p class=&quot;lead-in&quot;&gt;Your account has been activated. You may now &lt;a href=&quot;%1$s&quot;&gt;login&lt;/a&gt; to the site using your chosen username of &quot;%2$s&quot;.  Please check your email inbox at %3$s for your password and login instructions. If you do not receive an email, please check your junk or spam folder. If you still do not receive an email within an hour, you can &lt;a href=&quot;%4$s&quot;&gt;reset your password&lt;/a&gt;.&lt;/p&gt;'), 'http://' . $current_site-&gt;domain . $current_site-&gt;path . 'wp-login.php', $signup-&gt;user_login, $signup-&gt;user_email, 'http://' . $current_site-&gt;domain . $current_site-&gt;path . 'wp-login.php?action=lostpassword');
</span><span class="cx">                             } else {
</span><del>-                                    printf(__('&lt;p class=&quot;lead-in&quot;&gt;Your blog at &lt;a href=&quot;%1$s&quot;&gt;%2$s&lt;/a&gt; is active. You may now login to your blog using your chosen username of &quot;%3$s&quot;.  Please check your email inbox at %4$s for your password and login instructions.  If you do not receive an email, please check your junk or spam folder.  If you still do not receive an email within an hour, you can &lt;a href=&quot;%5$s&quot;&gt;reset your password&lt;/a&gt;.&lt;/p&gt;'), 'http://' . $signup-&gt;domain, $signup-&gt;domain, $signup-&gt;user_login, $signup-&gt;user_email, 'http://' . $current_site-&gt;domain . $current_site-&gt;path . 'wp-login.php?action=lostpassword');
</del><ins>+                                    printf(__('&lt;p class=&quot;lead-in&quot;&gt;Your site at &lt;a href=&quot;%1$s&quot;&gt;%2$s&lt;/a&gt; is active. You may now login to your site using your chosen username of &quot;%3$s&quot;.  Please check your email inbox at %4$s for your password and login instructions.  If you do not receive an email, please check your junk or spam folder.  If you still do not receive an email within an hour, you can &lt;a href=&quot;%5$s&quot;&gt;reset your password&lt;/a&gt;.&lt;/p&gt;'), 'http://' . $signup-&gt;domain, $signup-&gt;domain, $signup-&gt;user_login, $signup-&gt;user_email, 'http://' . $current_site-&gt;domain . $current_site-&gt;path . 'wp-login.php?action=lostpassword');
</ins><span class="cx">                             }
</span><span class="cx">                         } else {
</span><span class="cx">                                 ?&gt;
</span></span></pre></div>
<a id="trunkwpsignupphp"></a>
<div class="modfile"><h4>Modified: trunk/wp-signup.php (13383 => 13384)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/wp-signup.php        2010-02-24 20:14:12 UTC (rev 13383)
+++ trunk/wp-signup.php        2010-02-24 20:45:02 UTC (rev 13384)
</span><span class="lines">@@ -62,9 +62,9 @@
</span><span class="cx">         global $current_site;
</span><span class="cx">         // Blog name
</span><span class="cx">         if ( !is_subdomain_install() )
</span><del>-                echo '&lt;label for=&quot;blogname&quot;&gt;' . __('Blog Name:') . '&lt;/label&gt;';
</del><ins>+                echo '&lt;label for=&quot;blogname&quot;&gt;' . __('Site Name:') . '&lt;/label&gt;';
</ins><span class="cx">         else
</span><del>-                echo '&lt;label for=&quot;blogname&quot;&gt;' . __('Blog Domain:') . '&lt;/label&gt;';
</del><ins>+                echo '&lt;label for=&quot;blogname&quot;&gt;' . __('Site Domain:') . '&lt;/label&gt;';
</ins><span class="cx"> 
</span><span class="cx">         if ( $errmsg = $errors-&gt;get_error_message('blogname') ) { ?&gt;
</span><span class="cx">                 &lt;p class=&quot;error&quot;&gt;&lt;?php echo $errmsg ?&gt;&lt;/p&gt;
</span><span class="lines">@@ -78,7 +78,7 @@
</span><span class="cx">         if ( !is_user_logged_in() ) {
</span><span class="cx">                 print '(&lt;strong&gt;' . __( 'Your address will be ' );
</span><span class="cx">                 if ( !is_subdomain_install() )
</span><del>-                        print $current_site-&gt;domain . $current_site-&gt;path . __( 'blogname' );
</del><ins>+                        print $current_site-&gt;domain . $current_site-&gt;path . __( 'sitename' );
</ins><span class="cx">                 else
</span><span class="cx">                         print __( 'domain.' ) . $current_site-&gt;domain . $current_site-&gt;path;
</span><span class="cx">                 echo '.&lt;/strong&gt; ' . __( 'Must be at least 4 characters, letters and numbers only. It cannot be changed so choose carefully!)' ) . '&lt;/p&gt;';
</span><span class="lines">@@ -86,7 +86,7 @@
</span><span class="cx"> 
</span><span class="cx">         // Blog Title
</span><span class="cx">         ?&gt;
</span><del>-        &lt;label for=&quot;blog_title&quot;&gt;&lt;?php _e('Blog Title:') ?&gt;&lt;/label&gt;
</del><ins>+        &lt;label for=&quot;blog_title&quot;&gt;&lt;?php _e('Site Title:') ?&gt;&lt;/label&gt;
</ins><span class="cx">         &lt;?php if ( $errmsg = $errors-&gt;get_error_message('blog_title') ) { ?&gt;
</span><span class="cx">                 &lt;p class=&quot;error&quot;&gt;&lt;?php echo $errmsg ?&gt;&lt;/p&gt;
</span><span class="cx">         &lt;?php }
</span><span class="lines">@@ -96,7 +96,7 @@
</span><span class="cx">         &lt;div id=&quot;privacy&quot;&gt;
</span><span class="cx">         &lt;p class=&quot;privacy-intro&quot;&gt;
</span><span class="cx">             &lt;label for=&quot;blog_public_on&quot;&gt;&lt;?php _e('Privacy:') ?&gt;&lt;/label&gt;
</span><del>-            &lt;?php _e('I would like my blog to appear in search engines like Google and Technorati, and in public listings around this site.'); ?&gt;
</del><ins>+            &lt;?php _e('I would like my site to appear in search engines like Google and Technorati, and in public listings around this network.'); ?&gt;
</ins><span class="cx">             &lt;div style=&quot;clear:both;&quot;&gt;&lt;/div&gt;
</span><span class="cx">             &lt;label class=&quot;checkbox&quot; for=&quot;blog_public_on&quot;&gt;
</span><span class="cx">                 &lt;input type=&quot;radio&quot; id=&quot;blog_public_on&quot; name=&quot;blog_public&quot; value=&quot;1&quot; &lt;?php if ( !isset( $_POST['blog_public'] ) || $_POST['blog_public'] == '1' ) { ?&gt;checked=&quot;checked&quot;&lt;?php } ?&gt; /&gt;
</span><span class="lines">@@ -160,19 +160,19 @@
</span><span class="cx">         $blog_title = $filtered_results['blog_title'];
</span><span class="cx">         $errors = $filtered_results['errors'];
</span><span class="cx"> 
</span><del>-        echo '&lt;h2&gt;' . sprintf( __('Get &lt;em&gt;another&lt;/em&gt; %s blog in seconds'), $current_site-&gt;site_name ) . '&lt;/h2&gt;';
</del><ins>+        echo '&lt;h2&gt;' . sprintf( __('Get &lt;em&gt;another&lt;/em&gt; %s site in seconds'), $current_site-&gt;site_name ) . '&lt;/h2&gt;';
</ins><span class="cx"> 
</span><span class="cx">         if ( $errors-&gt;get_error_code() ) {
</span><span class="cx">                 echo &quot;&lt;p&gt;&quot; . __('There was a problem, please correct the form below and try again.') . &quot;&lt;/p&gt;&quot;;
</span><span class="cx">         }
</span><span class="cx">         ?&gt;
</span><del>-        &lt;p&gt;&lt;?php printf(__(&quot;Welcome back, %s. By filling out the form below, you can &lt;strong&gt;add another blog to your account&lt;/strong&gt;. There is no limit to the number of blogs you can have, so create to your heart's content, but blog responsibly.&quot;), $current_user-&gt;display_name) ?&gt;&lt;/p&gt;
</del><ins>+        &lt;p&gt;&lt;?php printf(__(&quot;Welcome back, %s. By filling out the form below, you can &lt;strong&gt;add another site to your account&lt;/strong&gt;. There is no limit to the number of sites you can have, so create to your heart's content, but write responsibly.&quot;), $current_user-&gt;display_name) ?&gt;&lt;/p&gt;
</ins><span class="cx"> 
</span><span class="cx">         &lt;?php
</span><span class="cx">         $blogs = get_blogs_of_user($current_user-&gt;ID);
</span><span class="cx">         if ( !empty($blogs) ) { ?&gt;
</span><span class="cx">                 &lt;p&gt;
</span><del>-                        &lt;?php _e('Blogs you are already a member of:') ?&gt;
</del><ins>+                        &lt;?php _e('Sites you are already a member of:') ?&gt;
</ins><span class="cx">                         &lt;ul&gt;
</span><span class="cx">                                 &lt;?php foreach ( $blogs as $blog ) {
</span><span class="cx">                                         echo &quot;&lt;li&gt;&lt;a href='http://&quot; . $blog-&gt;domain . $blog-&gt;path . &quot;'&gt;&quot; . $blog-&gt;domain . $blog-&gt;path . &quot;&lt;/a&gt;&lt;/li&gt;&quot;;
</span><span class="lines">@@ -181,12 +181,12 @@
</span><span class="cx">                 &lt;/p&gt;
</span><span class="cx">         &lt;?php } ?&gt;
</span><span class="cx"> 
</span><del>-        &lt;p&gt;&lt;?php _e(&quot;If you&amp;#8217;re not going to use a great blog domain, leave it for a new user. Now have at it!&quot;) ?&gt;&lt;/p&gt;
</del><ins>+        &lt;p&gt;&lt;?php _e(&quot;If you&amp;#8217;re not going to use a great site domain, leave it for a new user. Now have at it!&quot;) ?&gt;&lt;/p&gt;
</ins><span class="cx">         &lt;form id=&quot;setupform&quot; method=&quot;post&quot; action=&quot;wp-signup.php&quot;&gt;
</span><span class="cx">                 &lt;input type=&quot;hidden&quot; name=&quot;stage&quot; value=&quot;gimmeanotherblog&quot; /&gt;
</span><span class="cx">                 &lt;?php do_action( &quot;signup_hidden_fields&quot; ); ?&gt;
</span><span class="cx">                 &lt;?php show_blog_form($blogname, $blog_title, $errors); ?&gt;
</span><del>-                &lt;p class=&quot;submit&quot;&gt;&lt;input type=&quot;submit&quot; name=&quot;submit&quot; class=&quot;submit&quot; value=&quot;&lt;?php esc_attr_e('Create Blog') ?&gt;&quot; /&gt;&lt;/p&gt;
</del><ins>+                &lt;p class=&quot;submit&quot;&gt;&lt;input type=&quot;submit&quot; name=&quot;submit&quot; class=&quot;submit&quot; value=&quot;&lt;?php esc_attr_e('Create Site') ?&gt;&quot; /&gt;&lt;/p&gt;
</ins><span class="cx">         &lt;/form&gt;
</span><span class="cx">         &lt;?php
</span><span class="cx"> }
</span><span class="lines">@@ -216,9 +216,9 @@
</span><span class="cx"> 
</span><span class="cx"> function confirm_another_blog_signup($domain, $path, $blog_title, $user_name, $user_email = '', $meta = '') {
</span><span class="cx">         ?&gt;
</span><del>-        &lt;h2&gt;&lt;?php printf(__('The blog %s is yours.'), &quot;&lt;a href='http://{$domain}{$path}'&gt;{$blog_title}&lt;/a&gt;&quot; ) ?&gt;&lt;/h2&gt;
</del><ins>+        &lt;h2&gt;&lt;?php printf(__('The site %s is yours.'), &quot;&lt;a href='http://{$domain}{$path}'&gt;{$blog_title}&lt;/a&gt;&quot; ) ?&gt;&lt;/h2&gt;
</ins><span class="cx">         &lt;p&gt;
</span><del>-                &lt;?php printf(__('&lt;a href=&quot;http://%1$s&quot;&gt;http://%2$s&lt;/a&gt; is your new blog.  &lt;a href=&quot;%3$s&quot;&gt;Login&lt;/a&gt; as &quot;%4$s&quot; using your existing password.'), $domain.$path, $domain.$path, &quot;http://&quot; . $domain.$path . &quot;wp-login.php&quot;, $user_name) ?&gt;
</del><ins>+                &lt;?php printf(__('&lt;a href=&quot;http://%1$s&quot;&gt;http://%2$s&lt;/a&gt; is your new site.  &lt;a href=&quot;%3$s&quot;&gt;Login&lt;/a&gt; as &quot;%4$s&quot; using your existing password.'), $domain.$path, $domain.$path, &quot;http://&quot; . $domain.$path . &quot;wp-login.php&quot;, $user_name) ?&gt;
</ins><span class="cx">         &lt;/p&gt;
</span><span class="cx">         &lt;?php
</span><span class="cx">         do_action('signup_finished');
</span><span class="lines">@@ -255,7 +255,7 @@
</span><span class="cx">                         &lt;input id=&quot;signupblog&quot; type=&quot;hidden&quot; name=&quot;signup_for&quot; value=&quot;user&quot; /&gt;
</span><span class="cx">                 &lt;?php } else { ?&gt;
</span><span class="cx">                         &lt;input id=&quot;signupblog&quot; type=&quot;radio&quot; name=&quot;signup_for&quot; value=&quot;blog&quot; &lt;?php echo $signup['blog'] ?&gt; /&gt;
</span><del>-                        &lt;label class=&quot;checkbox&quot; for=&quot;signupblog&quot;&gt;&lt;?php _e('Gimme a blog!') ?&gt;&lt;/label&gt;
</del><ins>+                        &lt;label class=&quot;checkbox&quot; for=&quot;signupblog&quot;&gt;&lt;?php _e('Gimme a site!') ?&gt;&lt;/label&gt;
</ins><span class="cx">                         &lt;br /&gt;
</span><span class="cx">                         &lt;input id=&quot;signupuser&quot; type=&quot;radio&quot; name=&quot;signup_for&quot; value=&quot;user&quot; &lt;?php echo $signup['user'] ?&gt; /&gt;
</span><span class="cx">                         &lt;label class=&quot;checkbox&quot; for=&quot;signupuser&quot;&gt;&lt;?php _e('Just a username, please.') ?&gt;&lt;/label&gt;
</span><span class="lines">@@ -352,11 +352,11 @@
</span><span class="cx"> 
</span><span class="cx"> function confirm_blog_signup($domain, $path, $blog_title, $user_name = '', $user_email = '', $meta) {
</span><span class="cx">         ?&gt;
</span><del>-        &lt;h2&gt;&lt;?php printf(__('Congratulations! Your new blog, %s, is almost ready.'), &quot;&lt;a href='http://{$domain}{$path}'&gt;{$blog_title}&lt;/a&gt;&quot; ) ?&gt;&lt;/h2&gt;
</del><ins>+        &lt;h2&gt;&lt;?php printf(__('Congratulations! Your new site, %s, is almost ready.'), &quot;&lt;a href='http://{$domain}{$path}'&gt;{$blog_title}&lt;/a&gt;&quot; ) ?&gt;&lt;/h2&gt;
</ins><span class="cx"> 
</span><del>-        &lt;p&gt;&lt;?php _e('But, before you can start using your blog, &lt;strong&gt;you must activate it&lt;/strong&gt;.') ?&gt;&lt;/p&gt;
</del><ins>+        &lt;p&gt;&lt;?php _e('But, before you can start using your site, &lt;strong&gt;you must activate it&lt;/strong&gt;.') ?&gt;&lt;/p&gt;
</ins><span class="cx">         &lt;p&gt;&lt;?php printf(__('Check your inbox at &lt;strong&gt;%s&lt;/strong&gt; and click the link given. It should arrive within 30 minutes.'),  $user_email) ?&gt;&lt;/p&gt;
</span><del>-        &lt;p&gt;&lt;?php _e('If you do not activate your blog within two days, you will have to sign up again.'); ?&gt;&lt;/p&gt;
</del><ins>+        &lt;p&gt;&lt;?php _e('If you do not activate your site within two days, you will have to sign up again.'); ?&gt;&lt;/p&gt;
</ins><span class="cx">         &lt;h2&gt;&lt;?php _e('Still waiting for your email?'); ?&gt;&lt;/h2&gt;
</span><span class="cx">         &lt;p&gt;
</span><span class="cx">                 &lt;?php _e(&quot;If you haven't received your email yet, there are a number of things you can do:&quot;) ?&gt;
</span><span class="lines">@@ -391,7 +391,7 @@
</span><span class="cx">         else
</span><span class="cx">                 $proto = 'http://';
</span><span class="cx">         $login_url = site_url( 'wp-login.php?redirect_to=' . urlencode($proto . $_SERVER['HTTP_HOST'] . '/wp-signup.php' ));
</span><del>-        echo sprintf( __( &quot;You must first &lt;a href=\&quot;%s\&quot;&gt;login&lt;/a&gt;, and then you can create a new blog.&quot;), $login_url );
</del><ins>+        echo sprintf( __( &quot;You must first &lt;a href=\&quot;%s\&quot;&gt;login&lt;/a&gt;, and then you can create a new site.&quot;), $login_url );
</ins><span class="cx"> } else {
</span><span class="cx">         switch ($_POST['stage']) {
</span><span class="cx">                 case 'validate-user-signup' :
</span><span class="lines">@@ -404,7 +404,7 @@
</span><span class="cx">                         if ( $active_signup == 'all' || $active_signup == 'blog' )
</span><span class="cx">                                 validate_blog_signup();
</span><span class="cx">                         else
</span><del>-                                _e( &quot;Blog registration has been disabled.&quot; );
</del><ins>+                                _e( &quot;Site registration has been disabled.&quot; );
</ins><span class="cx">                         break;
</span><span class="cx">                 case 'gimmeanotherblog':
</span><span class="cx">                         validate_another_blog_signup();
</span><span class="lines">@@ -427,9 +427,9 @@
</span><span class="cx">                                 else
</span><span class="cx">                                         $newblog = 'http://' . $newblogname . '.' . $current_site-&gt;domain . $current_site-&gt;path;
</span><span class="cx">                                 if ( $active_signup == 'blog' || $active_signup == 'all' )
</span><del>-                                        printf(__(&quot;&lt;p&gt;&lt;em&gt;The blog you were looking for, &lt;strong&gt;%s&lt;/strong&gt; doesn't exist but you can create it now!&lt;/em&gt;&lt;/p&gt;&quot;), $newblog );
</del><ins>+                                        printf(__(&quot;&lt;p&gt;&lt;em&gt;The site you were looking for, &lt;strong&gt;%s&lt;/strong&gt; doesn't exist but you can create it now!&lt;/em&gt;&lt;/p&gt;&quot;), $newblog );
</ins><span class="cx">                                 else
</span><del>-                                        printf(__(&quot;&lt;p&gt;&lt;em&gt;The blog you were looking for, &lt;strong&gt;%s&lt;/strong&gt; doesn't exist.&lt;/em&gt;&lt;/p&gt;&quot;), $newblog );
</del><ins>+                                        printf(__(&quot;&lt;p&gt;&lt;em&gt;The site you were looking for, &lt;strong&gt;%s&lt;/strong&gt; doesn't exist.&lt;/em&gt;&lt;/p&gt;&quot;), $newblog );
</ins><span class="cx">                         }
</span><span class="cx">                         break;
</span><span class="cx">         }
</span></span></pre>
</div>
</div>

</body>
</html>