<!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>[16628] branches/3.0/wp-content/themes/twentyten: Merge Twenty Ten 1.
 1 to the 3.0 branch.</title>
</head>
<body>

<div id="msg">
<dl>
<dt>Revision</dt> <dd><a href="http://trac.wordpress.org/changeset/16628">16628</a></dd>
<dt>Author</dt> <dd>nacin</dd>
<dt>Date</dt> <dd>2010-11-30 20:29:25 +0000 (Tue, 30 Nov 2010)</dd>
</dl>

<h3>Log Message</h3>
<pre>Merge Twenty Ten 1.1 to the 3.0 branch.</pre>

<h3>Modified Paths</h3>
<ul>
<li><a href="#branches30wpcontentthemestwentytenattachmentphp">branches/3.0/wp-content/themes/twentyten/attachment.php</a></li>
<li><a href="#branches30wpcontentthemestwentyteneditorstylecss">branches/3.0/wp-content/themes/twentyten/editor-style.css</a></li>
<li><a href="#branches30wpcontentthemestwentytenheaderphp">branches/3.0/wp-content/themes/twentyten/header.php</a></li>
<li><a href="#branches30wpcontentthemestwentytenonecolumnpagephp">branches/3.0/wp-content/themes/twentyten/onecolumn-page.php</a></li>
<li><a href="#branches30wpcontentthemestwentytenpagephp">branches/3.0/wp-content/themes/twentyten/page.php</a></li>
<li><a href="#branches30wpcontentthemestwentytenrtlcss">branches/3.0/wp-content/themes/twentyten/rtl.css</a></li>
<li><a href="#branches30wpcontentthemestwentytensinglephp">branches/3.0/wp-content/themes/twentyten/single.php</a></li>
<li><a href="#branches30wpcontentthemestwentytenstylecss">branches/3.0/wp-content/themes/twentyten/style.css</a></li>
</ul>

</div>
<div id="patch">
<h3>Diff</h3>
<a id="branches30wpcontentthemestwentytenattachmentphp"></a>
<div class="modfile"><h4>Modified: branches/3.0/wp-content/themes/twentyten/attachment.php (16627 => 16628)</h4>
<pre class="diff"><span>
<span class="info">--- branches/3.0/wp-content/themes/twentyten/attachment.php        2010-11-30 20:29:02 UTC (rev 16627)
+++ branches/3.0/wp-content/themes/twentyten/attachment.php        2010-11-30 20:29:25 UTC (rev 16628)
</span><span class="lines">@@ -12,14 +12,106 @@
</span><span class="cx">                 &lt;div id=&quot;container&quot; class=&quot;single-attachment&quot;&gt;
</span><span class="cx">                         &lt;div id=&quot;content&quot; role=&quot;main&quot;&gt;
</span><span class="cx"> 
</span><del>-                        &lt;?php
-                        /* Run the loop to output the attachment.
-                         * If you want to overload this in a child theme then include a file
-                         * called loop-attachment.php and that will be used instead.
-                         */
-                        get_template_part( 'loop', 'attachment' );
-                        ?&gt;
</del><ins>+&lt;?php if ( have_posts() ) while ( have_posts() ) : the_post(); ?&gt;
</ins><span class="cx"> 
</span><ins>+                                &lt;?php if ( ! empty( $post-&gt;post_parent ) ) : ?&gt;
+                                        &lt;p class=&quot;page-title&quot;&gt;&lt;a href=&quot;&lt;?php echo get_permalink( $post-&gt;post_parent ); ?&gt;&quot; title=&quot;&lt;?php esc_attr( printf( __( 'Return to %s', 'twentyten' ), get_the_title( $post-&gt;post_parent ) ) ); ?&gt;&quot; rel=&quot;gallery&quot;&gt;&lt;?php
+                                                /* translators: %s - title of parent post */
+                                                printf( __( '&lt;span class=&quot;meta-nav&quot;&gt;&amp;larr;&lt;/span&gt; %s', 'twentyten' ), get_the_title( $post-&gt;post_parent ) );
+                                        ?&gt;&lt;/a&gt;&lt;/p&gt;
+                                &lt;?php endif; ?&gt;
+
+                                &lt;div id=&quot;post-&lt;?php the_ID(); ?&gt;&quot; &lt;?php post_class(); ?&gt;&gt;
+                                        &lt;h2 class=&quot;entry-title&quot;&gt;&lt;?php the_title(); ?&gt;&lt;/h2&gt;
+
+                                        &lt;div class=&quot;entry-meta&quot;&gt;
+                                                &lt;?php
+                                                        printf(__('&lt;span class=&quot;%1$s&quot;&gt;By&lt;/span&gt; %2$s', 'twentyten'),
+                                                                'meta-prep meta-prep-author',
+                                                                sprintf( '&lt;span class=&quot;author vcard&quot;&gt;&lt;a class=&quot;url fn n&quot; href=&quot;%1$s&quot; title=&quot;%2$s&quot;&gt;%3$s&lt;/a&gt;&lt;/span&gt;',
+                                                                        get_author_posts_url( get_the_author_meta( 'ID' ) ),
+                                                                        sprintf( esc_attr__( 'View all posts by %s', 'twentyten' ), get_the_author() ),
+                                                                        get_the_author()
+                                                                )
+                                                        );
+                                                ?&gt;
+                                                &lt;span class=&quot;meta-sep&quot;&gt;|&lt;/span&gt;
+                                                &lt;?php
+                                                        printf( __('&lt;span class=&quot;%1$s&quot;&gt;Published&lt;/span&gt; %2$s', 'twentyten'),
+                                                                'meta-prep meta-prep-entry-date',
+                                                                sprintf( '&lt;span class=&quot;entry-date&quot;&gt;&lt;abbr class=&quot;published&quot; title=&quot;%1$s&quot;&gt;%2$s&lt;/abbr&gt;&lt;/span&gt;',
+                                                                        esc_attr( get_the_time() ),
+                                                                        get_the_date()
+                                                                )
+                                                        );
+                                                        if ( wp_attachment_is_image() ) {
+                                                                echo ' &lt;span class=&quot;meta-sep&quot;&gt;|&lt;/span&gt; ';
+                                                                $metadata = wp_get_attachment_metadata();
+                                                                printf( __( 'Full size is %s pixels', 'twentyten'),
+                                                                        sprintf( '&lt;a href=&quot;%1$s&quot; title=&quot;%2$s&quot;&gt;%3$s &amp;times; %4$s&lt;/a&gt;',
+                                                                                wp_get_attachment_url(),
+                                                                                esc_attr( __('Link to full-size image', 'twentyten') ),
+                                                                                $metadata['width'],
+                                                                                $metadata['height']
+                                                                        )
+                                                                );
+                                                        }
+                                                ?&gt;
+                                                &lt;?php edit_post_link( __( 'Edit', 'twentyten' ), '&lt;span class=&quot;meta-sep&quot;&gt;|&lt;/span&gt; &lt;span class=&quot;edit-link&quot;&gt;', '&lt;/span&gt;' ); ?&gt;
+                                        &lt;/div&gt;&lt;!-- .entry-meta --&gt;
+
+                                        &lt;div class=&quot;entry-content&quot;&gt;
+                                                &lt;div class=&quot;entry-attachment&quot;&gt;
+&lt;?php if ( wp_attachment_is_image() ) :
+        $attachments = array_values( get_children( array( 'post_parent' =&gt; $post-&gt;post_parent, 'post_status' =&gt; 'inherit', 'post_type' =&gt; 'attachment', 'post_mime_type' =&gt; 'image', 'order' =&gt; 'ASC', 'orderby' =&gt; 'menu_order ID' ) ) );
+        foreach ( $attachments as $k =&gt; $attachment ) {
+                if ( $attachment-&gt;ID == $post-&gt;ID )
+                        break;
+        }
+        $k++;
+        // If there is more than 1 image attachment in a gallery
+        if ( count( $attachments ) &gt; 1 ) {
+                if ( isset( $attachments[ $k ] ) )
+                        // get the URL of the next image attachment
+                        $next_attachment_url = get_attachment_link( $attachments[ $k ]-&gt;ID );
+                else
+                        // or get the URL of the first image attachment
+                        $next_attachment_url = get_attachment_link( $attachments[ 0 ]-&gt;ID );
+        } else {
+                // or, if there's only 1 image attachment, get the URL of the image
+                $next_attachment_url = wp_get_attachment_url();
+        }
+?&gt;
+                                                &lt;p class=&quot;attachment&quot;&gt;&lt;a href=&quot;&lt;?php echo $next_attachment_url; ?&gt;&quot; title=&quot;&lt;?php echo esc_attr( get_the_title() ); ?&gt;&quot; rel=&quot;attachment&quot;&gt;&lt;?php
+                                                        $attachment_size = apply_filters( 'twentyten_attachment_size', 900 );
+                                                        echo wp_get_attachment_image( $post-&gt;ID, array( $attachment_size, 9999 ) ); // filterable image width with, essentially, no limit for image height.
+                                                ?&gt;&lt;/a&gt;&lt;/p&gt;
+
+                                                &lt;div id=&quot;nav-below&quot; class=&quot;navigation&quot;&gt;
+                                                        &lt;div class=&quot;nav-previous&quot;&gt;&lt;?php previous_image_link( false ); ?&gt;&lt;/div&gt;
+                                                        &lt;div class=&quot;nav-next&quot;&gt;&lt;?php next_image_link( false ); ?&gt;&lt;/div&gt;
+                                                &lt;/div&gt;&lt;!-- #nav-below --&gt;
+&lt;?php else : ?&gt;
+                                                &lt;a href=&quot;&lt;?php echo wp_get_attachment_url(); ?&gt;&quot; title=&quot;&lt;?php echo esc_attr( get_the_title() ); ?&gt;&quot; rel=&quot;attachment&quot;&gt;&lt;?php echo basename( get_permalink() ); ?&gt;&lt;/a&gt;
+&lt;?php endif; ?&gt;
+                                                &lt;/div&gt;&lt;!-- .entry-attachment --&gt;
+                                                &lt;div class=&quot;entry-caption&quot;&gt;&lt;?php if ( !empty( $post-&gt;post_excerpt ) ) the_excerpt(); ?&gt;&lt;/div&gt;
+
+&lt;?php the_content( __( 'Continue reading &lt;span class=&quot;meta-nav&quot;&gt;&amp;rarr;&lt;/span&gt;', 'twentyten' ) ); ?&gt;
+&lt;?php wp_link_pages( array( 'before' =&gt; '&lt;div class=&quot;page-link&quot;&gt;' . __( 'Pages:', 'twentyten' ), 'after' =&gt; '&lt;/div&gt;' ) ); ?&gt;
+
+                                        &lt;/div&gt;&lt;!-- .entry-content --&gt;
+
+                                        &lt;div class=&quot;entry-utility&quot;&gt;
+                                                &lt;?php twentyten_posted_in(); ?&gt;
+                                                &lt;?php edit_post_link( __( 'Edit', 'twentyten' ), ' &lt;span class=&quot;edit-link&quot;&gt;', '&lt;/span&gt;' ); ?&gt;
+                                        &lt;/div&gt;&lt;!-- .entry-utility --&gt;
+                                &lt;/div&gt;&lt;!-- #post-## --&gt;
+
+&lt;?php comments_template(); ?&gt;
+
+&lt;?php endwhile; ?&gt;
+
</ins><span class="cx">                         &lt;/div&gt;&lt;!-- #content --&gt;
</span><span class="cx">                 &lt;/div&gt;&lt;!-- #container --&gt;
</span><span class="cx"> 
</span></span></pre></div>
<a id="branches30wpcontentthemestwentyteneditorstylecss"></a>
<div class="modfile"><h4>Modified: branches/3.0/wp-content/themes/twentyten/editor-style.css (16627 => 16628)</h4>
<pre class="diff"><span>
<span class="info">--- branches/3.0/wp-content/themes/twentyten/editor-style.css        2010-11-30 20:29:02 UTC (rev 16627)
+++ branches/3.0/wp-content/themes/twentyten/editor-style.css        2010-11-30 20:29:25 UTC (rev 16628)
</span><span class="lines">@@ -1,13 +1,15 @@
</span><span class="cx"> /*
</span><span class="cx"> Theme Name: Twenty Ten
</span><del>-Description: Used to style the TinyMCE editor.
</del><span class="cx"> */
</span><ins>+/*
+Used to style the TinyMCE editor.
+*/
</ins><span class="cx"> html .mceContentBody {
</span><del>-        max-width: 640px;
</del><ins>+        max-width:640px;
</ins><span class="cx"> }
</span><span class="cx"> * {
</span><del>-        color: #444;
</del><span class="cx">         font-family: Georgia, &quot;Bitstream Charter&quot;, serif;
</span><ins>+        color: #444;
</ins><span class="cx">         line-height: 1.5;
</span><span class="cx"> }
</span><span class="cx"> p,
</span><span class="lines">@@ -38,10 +40,10 @@
</span><span class="cx"> }
</span><span class="cx"> hr {
</span><span class="cx">         background-color: #e7e7e7;
</span><del>-        border: 0;
-        clear: both;
</del><ins>+        border:0;
</ins><span class="cx">         height: 1px;
</span><span class="cx">         margin-bottom: 18px;
</span><ins>+        clear:both;
</ins><span class="cx"> }
</span><span class="cx"> /* Text elements */
</span><span class="cx"> p {
</span><span class="lines">@@ -56,22 +58,22 @@
</span><span class="cx">         margin: 0 0 18px 1.5em;
</span><span class="cx"> }
</span><span class="cx"> ol ol {
</span><del>-        list-style: upper-alpha;
</del><ins>+        list-style:upper-alpha;
</ins><span class="cx"> }
</span><span class="cx"> ol ol ol {
</span><del>-        list-style: lower-roman;
</del><ins>+        list-style:lower-roman;
</ins><span class="cx"> }
</span><span class="cx"> ol ol ol ol {
</span><del>-        list-style: lower-alpha;
</del><ins>+        list-style:lower-alpha;
</ins><span class="cx"> }
</span><span class="cx"> ul ul,
</span><span class="cx"> ol ol,
</span><span class="cx"> ul ol,
</span><span class="cx"> ol ul {
</span><del>-        margin-bottom: 0;
</del><ins>+        margin-bottom:0;
</ins><span class="cx"> }
</span><span class="cx"> dl {
</span><del>-        margin: 0 0 24px 0;
</del><ins>+        margin:0 0 24px 0;
</ins><span class="cx"> }
</span><span class="cx"> dt {
</span><span class="cx">         font-weight: bold;
</span><span class="lines">@@ -80,20 +82,20 @@
</span><span class="cx">         margin-bottom: 18px;
</span><span class="cx"> }
</span><span class="cx"> strong {
</span><del>-        color: #000;
</del><span class="cx">         font-weight: bold;
</span><ins>+        color: #000;
</ins><span class="cx"> }
</span><span class="cx"> cite,
</span><span class="cx"> em,
</span><span class="cx"> i {
</span><del>-        border: none;
</del><span class="cx">         font-style: italic;
</span><ins>+        border: none;
</ins><span class="cx"> }
</span><span class="cx"> big {
</span><span class="cx">         font-size: 131.25%;
</span><span class="cx"> }
</span><span class="cx"> ins {
</span><del>-        background: #ffc;
</del><ins>+        background: #ffffcc;
</ins><span class="cx">         border: none;
</span><span class="cx">         color: #333;
</span><span class="cx"> }
</span><span class="lines">@@ -127,11 +129,11 @@
</span><span class="cx"> }
</span><span class="cx"> sup,
</span><span class="cx"> sub {
</span><del>-        font-size: 10px;
</del><span class="cx">         height: 0;
</span><span class="cx">         line-height: 1;
</span><del>-        position: relative;
</del><span class="cx">         vertical-align: baseline;
</span><ins>+        position: relative;
+        font-size: 10px;
</ins><span class="cx"> }
</span><span class="cx"> sup {
</span><span class="cx">         bottom: 1ex;
</span><span class="lines">@@ -140,10 +142,10 @@
</span><span class="cx">         top: .5ex;
</span><span class="cx"> }
</span><span class="cx"> a:link {
</span><del>-        color: #06c;
</del><ins>+        color:#0066cc;
</ins><span class="cx"> }
</span><span class="cx"> a:visited {
</span><del>-        color: #743399;
</del><ins>+        color:#743399;
</ins><span class="cx"> }
</span><span class="cx"> a:active,
</span><span class="cx"> a:hover {
</span><span class="lines">@@ -155,13 +157,13 @@
</span><span class="cx"> dd,
</span><span class="cx"> pre,
</span><span class="cx"> hr {
</span><del>-        margin-bottom: 24px;
</del><ins>+        margin-bottom:24px;
</ins><span class="cx"> }
</span><span class="cx"> ul ul,
</span><span class="cx"> ol ol,
</span><span class="cx"> ul ol,
</span><span class="cx"> ol ul {
</span><del>-        margin-bottom: 0;
</del><ins>+        margin-bottom:0;
</ins><span class="cx"> }
</span><span class="cx"> pre,
</span><span class="cx"> kbd,
</span><span class="lines">@@ -186,9 +188,9 @@
</span><span class="cx"> h5,
</span><span class="cx"> h6 {
</span><span class="cx">         color: #000;
</span><del>-        font-weight: normal;
-        line-height: 1.5em;
</del><span class="cx">         margin: 0 0 20px 0;
</span><ins>+        line-height: 1.5em;
+        font-weight: normal;
</ins><span class="cx"> }
</span><span class="cx"> h1 {
</span><span class="cx">         font-size: 2.4em;
</span><span class="lines">@@ -210,11 +212,11 @@
</span><span class="cx"> }
</span><span class="cx"> table {
</span><span class="cx">         border: 1px solid #e7e7e7 !important;
</span><del>-        border-collapse: collapse;
-        border-spacing: 0;
-        margin: 0 -1px 24px 0;
</del><span class="cx">         text-align: left;
</span><ins>+        margin: 0 -1px 24px 0;
</ins><span class="cx">         width: 100%;
</span><ins>+        border-collapse: collapse;
+        border-spacing: 0;
</ins><span class="cx"> }
</span><span class="cx"> tr th,
</span><span class="cx"> thead th {
</span><span class="lines">@@ -230,16 +232,12 @@
</span><span class="cx">         border-top: 1px solid #e7e7e7 !important;
</span><span class="cx">         padding: 6px 24px;
</span><span class="cx"> }
</span><ins>+
+
</ins><span class="cx"> img {
</span><span class="cx">         margin: 0;
</span><ins>+        max-width: 640px;
</ins><span class="cx"> }
</span><del>-img.size-auto,
-img.size-large,
-img.size-full,
-img.size-medium {
-        max-width: 100%;
-        height: auto;
-}
</del><span class="cx"> .alignleft,
</span><span class="cx"> img.alignleft {
</span><span class="cx">         display: inline;
</span><span class="lines">@@ -267,19 +265,18 @@
</span><span class="cx">         margin-bottom: 12px;
</span><span class="cx"> }
</span><span class="cx"> .wp-caption {
</span><del>-        background: #f1f1f1;
</del><span class="cx">         border: none;
</span><del>-        -khtml-border-radius: 0;
-        -moz-border-radius: 0;
-        -webkit-border-radius: 0;
-        border-radius: 0;
</del><ins>+        background: #f1f1f1;
</ins><span class="cx">         color: #888;
</span><span class="cx">         font-size: 12px;
</span><span class="cx">         line-height: 18px;
</span><ins>+        text-align: center;
</ins><span class="cx">         margin-bottom: 20px;
</span><del>-        max-width: 632px !important; /* prevent too-wide images from breaking layout */
</del><span class="cx">         padding: 4px;
</span><del>-        text-align: center;
</del><ins>+        -moz-border-radius: 0;
+        -khtml-border-radius: 0;
+        -webkit-border-radius: 0;
+        border-radius: 0;
</ins><span class="cx"> }
</span><span class="cx"> .wp-caption img {
</span><span class="cx">         margin: 5px;
</span><span class="lines">@@ -288,5 +285,5 @@
</span><span class="cx">         margin: 0 0 4px;
</span><span class="cx"> }
</span><span class="cx"> .wp-smiley {
</span><del>-        margin: 0;
</del><ins>+        margin:0;
</ins><span class="cx"> }
</span><span class="cx">\ No newline at end of file
</span></span></pre></div>
<a id="branches30wpcontentthemestwentytenheaderphp"></a>
<div class="modfile"><h4>Modified: branches/3.0/wp-content/themes/twentyten/header.php (16627 => 16628)</h4>
<pre class="diff"><span>
<span class="info">--- branches/3.0/wp-content/themes/twentyten/header.php        2010-11-30 20:29:02 UTC (rev 16627)
+++ branches/3.0/wp-content/themes/twentyten/header.php        2010-11-30 20:29:25 UTC (rev 16628)
</span><span class="lines">@@ -73,7 +73,7 @@
</span><span class="cx">                                                         $image[1] &gt;= HEADER_IMAGE_WIDTH ) :
</span><span class="cx">                                                 // Houston, we have a new header image!
</span><span class="cx">                                                 echo get_the_post_thumbnail( $post-&gt;ID, 'post-thumbnail' );
</span><del>-                                        elseif ( get_header_image() ) : ?&gt;
</del><ins>+                                        else : ?&gt;
</ins><span class="cx">                                                 &lt;img src=&quot;&lt;?php header_image(); ?&gt;&quot; width=&quot;&lt;?php echo HEADER_IMAGE_WIDTH; ?&gt;&quot; height=&quot;&lt;?php echo HEADER_IMAGE_HEIGHT; ?&gt;&quot; alt=&quot;&quot; /&gt;
</span><span class="cx">                                         &lt;?php endif; ?&gt;
</span><span class="cx">                         &lt;/div&gt;&lt;!-- #branding --&gt;
</span></span></pre></div>
<a id="branches30wpcontentthemestwentytenonecolumnpagephp"></a>
<div class="modfile"><h4>Modified: branches/3.0/wp-content/themes/twentyten/onecolumn-page.php (16627 => 16628)</h4>
<pre class="diff"><span>
<span class="info">--- branches/3.0/wp-content/themes/twentyten/onecolumn-page.php        2010-11-30 20:29:02 UTC (rev 16627)
+++ branches/3.0/wp-content/themes/twentyten/onecolumn-page.php        2010-11-30 20:29:25 UTC (rev 16628)
</span><span class="lines">@@ -17,14 +17,21 @@
</span><span class="cx">                 &lt;div id=&quot;container&quot; class=&quot;one-column&quot;&gt;
</span><span class="cx">                         &lt;div id=&quot;content&quot; role=&quot;main&quot;&gt;
</span><span class="cx"> 
</span><del>-                        &lt;?php
-                        /* Run the loop to output the page.
-                         * If you want to overload this in a child theme then include a file
-                         * called loop-page.php and that will be used instead.
-                         */
-                         get_template_part( 'loop', 'page' );
-                        ?&gt;
</del><ins>+&lt;?php if ( have_posts() ) while ( have_posts() ) : the_post(); ?&gt;
</ins><span class="cx"> 
</span><ins>+                                &lt;div id=&quot;post-&lt;?php the_ID(); ?&gt;&quot; &lt;?php post_class(); ?&gt;&gt;
+                                        &lt;h1 class=&quot;entry-title&quot;&gt;&lt;?php the_title(); ?&gt;&lt;/h1&gt;
+                                        &lt;div class=&quot;entry-content&quot;&gt;
+                                                &lt;?php the_content(); ?&gt;
+                                                &lt;?php wp_link_pages( array( 'before' =&gt; '&lt;div class=&quot;page-link&quot;&gt;' . __( 'Pages:', 'twentyten' ), 'after' =&gt; '&lt;/div&gt;' ) ); ?&gt;
+                                                &lt;?php edit_post_link( __( 'Edit', 'twentyten' ), '&lt;span class=&quot;edit-link&quot;&gt;', '&lt;/span&gt;' ); ?&gt;
+                                        &lt;/div&gt;&lt;!-- .entry-content --&gt;
+                                &lt;/div&gt;&lt;!-- #post-## --&gt;
+
+                                &lt;?php comments_template( '', true ); ?&gt;
+
+&lt;?php endwhile; ?&gt;
+
</ins><span class="cx">                         &lt;/div&gt;&lt;!-- #content --&gt;
</span><span class="cx">                 &lt;/div&gt;&lt;!-- #container --&gt;
</span><span class="cx"> 
</span></span></pre></div>
<a id="branches30wpcontentthemestwentytenpagephp"></a>
<div class="modfile"><h4>Modified: branches/3.0/wp-content/themes/twentyten/page.php (16627 => 16628)</h4>
<pre class="diff"><span>
<span class="info">--- branches/3.0/wp-content/themes/twentyten/page.php        2010-11-30 20:29:02 UTC (rev 16627)
+++ branches/3.0/wp-content/themes/twentyten/page.php        2010-11-30 20:29:25 UTC (rev 16628)
</span><span class="lines">@@ -17,14 +17,26 @@
</span><span class="cx">                 &lt;div id=&quot;container&quot;&gt;
</span><span class="cx">                         &lt;div id=&quot;content&quot; role=&quot;main&quot;&gt;
</span><span class="cx"> 
</span><del>-                        &lt;?php
-                        /* Run the loop to output the page.
-                         * If you want to overload this in a child theme then include a file
-                         * called loop-page.php and that will be used instead.
-                         */
-                        get_template_part( 'loop', 'page' );
-                        ?&gt;
</del><ins>+&lt;?php if ( have_posts() ) while ( have_posts() ) : the_post(); ?&gt;
</ins><span class="cx"> 
</span><ins>+                                &lt;div id=&quot;post-&lt;?php the_ID(); ?&gt;&quot; &lt;?php post_class(); ?&gt;&gt;
+                                        &lt;?php if ( is_front_page() ) { ?&gt;
+                                                &lt;h2 class=&quot;entry-title&quot;&gt;&lt;?php the_title(); ?&gt;&lt;/h2&gt;
+                                        &lt;?php } else { ?&gt;
+                                                &lt;h1 class=&quot;entry-title&quot;&gt;&lt;?php the_title(); ?&gt;&lt;/h1&gt;
+                                        &lt;?php } ?&gt;
+
+                                        &lt;div class=&quot;entry-content&quot;&gt;
+                                                &lt;?php the_content(); ?&gt;
+                                                &lt;?php wp_link_pages( array( 'before' =&gt; '&lt;div class=&quot;page-link&quot;&gt;' . __( 'Pages:', 'twentyten' ), 'after' =&gt; '&lt;/div&gt;' ) ); ?&gt;
+                                                &lt;?php edit_post_link( __( 'Edit', 'twentyten' ), '&lt;span class=&quot;edit-link&quot;&gt;', '&lt;/span&gt;' ); ?&gt;
+                                        &lt;/div&gt;&lt;!-- .entry-content --&gt;
+                                &lt;/div&gt;&lt;!-- #post-## --&gt;
+
+                                &lt;?php comments_template( '', true ); ?&gt;
+
+&lt;?php endwhile; ?&gt;
+
</ins><span class="cx">                         &lt;/div&gt;&lt;!-- #content --&gt;
</span><span class="cx">                 &lt;/div&gt;&lt;!-- #container --&gt;
</span><span class="cx"> 
</span></span></pre></div>
<a id="branches30wpcontentthemestwentytenrtlcss"></a>
<div class="modfile"><h4>Modified: branches/3.0/wp-content/themes/twentyten/rtl.css (16627 => 16628)</h4>
<pre class="diff"><span>
<span class="info">--- branches/3.0/wp-content/themes/twentyten/rtl.css        2010-11-30 20:29:02 UTC (rev 16627)
+++ branches/3.0/wp-content/themes/twentyten/rtl.css        2010-11-30 20:29:25 UTC (rev 16628)
</span><span class="lines">@@ -120,9 +120,6 @@
</span><span class="cx">         float: left;
</span><span class="cx">         font-style: normal;
</span><span class="cx"> }
</span><del>-#branding img {
-        float: right;
-}
</del><span class="cx"> 
</span><span class="cx"> /* =Menu
</span><span class="cx"> -------------------------------------------------------------- */
</span></span></pre></div>
<a id="branches30wpcontentthemestwentytensinglephp"></a>
<div class="modfile"><h4>Modified: branches/3.0/wp-content/themes/twentyten/single.php (16627 => 16628)</h4>
<pre class="diff"><span>
<span class="info">--- branches/3.0/wp-content/themes/twentyten/single.php        2010-11-30 20:29:02 UTC (rev 16627)
+++ branches/3.0/wp-content/themes/twentyten/single.php        2010-11-30 20:29:25 UTC (rev 16628)
</span><span class="lines">@@ -12,14 +12,57 @@
</span><span class="cx">                 &lt;div id=&quot;container&quot;&gt;
</span><span class="cx">                         &lt;div id=&quot;content&quot; role=&quot;main&quot;&gt;
</span><span class="cx"> 
</span><del>-                        &lt;?php
-                        /* Run the loop to output the post.
-                         * If you want to overload this in a child theme then include a file
-                         * called loop-single.php and that will be used instead.
-                         */
-                        get_template_part( 'loop', 'single' );
-                        ?&gt;
</del><ins>+&lt;?php if ( have_posts() ) while ( have_posts() ) : the_post(); ?&gt;
</ins><span class="cx"> 
</span><ins>+                                &lt;div id=&quot;nav-above&quot; class=&quot;navigation&quot;&gt;
+                                        &lt;div class=&quot;nav-previous&quot;&gt;&lt;?php previous_post_link( '%link', '&lt;span class=&quot;meta-nav&quot;&gt;' . _x( '&amp;larr;', 'Previous post link', 'twentyten' ) . '&lt;/span&gt; %title' ); ?&gt;&lt;/div&gt;
+                                        &lt;div class=&quot;nav-next&quot;&gt;&lt;?php next_post_link( '%link', '%title &lt;span class=&quot;meta-nav&quot;&gt;' . _x( '&amp;rarr;', 'Next post link', 'twentyten' ) . '&lt;/span&gt;' ); ?&gt;&lt;/div&gt;
+                                &lt;/div&gt;&lt;!-- #nav-above --&gt;
+
+                                &lt;div id=&quot;post-&lt;?php the_ID(); ?&gt;&quot; &lt;?php post_class(); ?&gt;&gt;
+                                        &lt;h1 class=&quot;entry-title&quot;&gt;&lt;?php the_title(); ?&gt;&lt;/h1&gt;
+
+                                        &lt;div class=&quot;entry-meta&quot;&gt;
+                                                &lt;?php twentyten_posted_on(); ?&gt;
+                                        &lt;/div&gt;&lt;!-- .entry-meta --&gt;
+
+                                        &lt;div class=&quot;entry-content&quot;&gt;
+                                                &lt;?php the_content(); ?&gt;
+                                                &lt;?php wp_link_pages( array( 'before' =&gt; '&lt;div class=&quot;page-link&quot;&gt;' . __( 'Pages:', 'twentyten' ), 'after' =&gt; '&lt;/div&gt;' ) ); ?&gt;
+                                        &lt;/div&gt;&lt;!-- .entry-content --&gt;
+
+&lt;?php if ( get_the_author_meta( 'description' ) ) : // If a user has filled out their description, show a bio on their entries  ?&gt;
+                                        &lt;div id=&quot;entry-author-info&quot;&gt;
+                                                &lt;div id=&quot;author-avatar&quot;&gt;
+                                                        &lt;?php echo get_avatar( get_the_author_meta( 'user_email' ), apply_filters( 'twentyten_author_bio_avatar_size', 60 ) ); ?&gt;
+                                                &lt;/div&gt;&lt;!-- #author-avatar --&gt;
+                                                &lt;div id=&quot;author-description&quot;&gt;
+                                                        &lt;h2&gt;&lt;?php printf( esc_attr__( 'About %s', 'twentyten' ), get_the_author() ); ?&gt;&lt;/h2&gt;
+                                                        &lt;?php the_author_meta( 'description' ); ?&gt;
+                                                        &lt;div id=&quot;author-link&quot;&gt;
+                                                                &lt;a href=&quot;&lt;?php echo get_author_posts_url( get_the_author_meta( 'ID' ) ); ?&gt;&quot;&gt;
+                                                                        &lt;?php printf( __( 'View all posts by %s &lt;span class=&quot;meta-nav&quot;&gt;&amp;rarr;&lt;/span&gt;', 'twentyten' ), get_the_author() ); ?&gt;
+                                                                &lt;/a&gt;
+                                                        &lt;/div&gt;&lt;!-- #author-link        --&gt;
+                                                &lt;/div&gt;&lt;!-- #author-description --&gt;
+                                        &lt;/div&gt;&lt;!-- #entry-author-info --&gt;
+&lt;?php endif; ?&gt;
+
+                                        &lt;div class=&quot;entry-utility&quot;&gt;
+                                                &lt;?php twentyten_posted_in(); ?&gt;
+                                                &lt;?php edit_post_link( __( 'Edit', 'twentyten' ), '&lt;span class=&quot;edit-link&quot;&gt;', '&lt;/span&gt;' ); ?&gt;
+                                        &lt;/div&gt;&lt;!-- .entry-utility --&gt;
+                                &lt;/div&gt;&lt;!-- #post-## --&gt;
+
+                                &lt;div id=&quot;nav-below&quot; class=&quot;navigation&quot;&gt;
+                                        &lt;div class=&quot;nav-previous&quot;&gt;&lt;?php previous_post_link( '%link', '&lt;span class=&quot;meta-nav&quot;&gt;' . _x( '&amp;larr;', 'Previous post link', 'twentyten' ) . '&lt;/span&gt; %title' ); ?&gt;&lt;/div&gt;
+                                        &lt;div class=&quot;nav-next&quot;&gt;&lt;?php next_post_link( '%link', '%title &lt;span class=&quot;meta-nav&quot;&gt;' . _x( '&amp;rarr;', 'Next post link', 'twentyten' ) . '&lt;/span&gt;' ); ?&gt;&lt;/div&gt;
+                                &lt;/div&gt;&lt;!-- #nav-below --&gt;
+
+                                &lt;?php comments_template( '', true ); ?&gt;
+
+&lt;?php endwhile; // end of the loop. ?&gt;
+
</ins><span class="cx">                         &lt;/div&gt;&lt;!-- #content --&gt;
</span><span class="cx">                 &lt;/div&gt;&lt;!-- #container --&gt;
</span><span class="cx"> 
</span></span></pre></div>
<a id="branches30wpcontentthemestwentytenstylecss"></a>
<div class="modfile"><h4>Modified: branches/3.0/wp-content/themes/twentyten/style.css (16627 => 16628)</h4>
<pre class="diff"><span>
<span class="info">--- branches/3.0/wp-content/themes/twentyten/style.css        2010-11-30 20:29:02 UTC (rev 16627)
+++ branches/3.0/wp-content/themes/twentyten/style.css        2010-11-30 20:29:25 UTC (rev 16628)
</span><span class="lines">@@ -3,8 +3,8 @@
</span><span class="cx"> Theme URI: http://wordpress.org/
</span><span class="cx"> Description: The 2010 theme for WordPress is stylish, customizable, simple, and readable -- make it yours with a custom menu, header image, and background. Twenty Ten supports six widgetized areas (two in the sidebar, four in the footer) and featured images (thumbnails for gallery posts and custom header images for posts and pages). It includes stylesheets for print and the admin Visual Editor, special styles for posts in the &quot;Asides&quot; and &quot;Gallery&quot; categories, and has an optional one-column page template that removes the sidebar.
</span><span class="cx"> Author: the WordPress team
</span><del>-Version: 1.2-RC1
-Tags: black, blue, white, two-columns, fixed-width, custom-header, custom-background, threaded-comments, sticky-post, translation-ready, microformats, rtl-language-support, editor-style, custom-menu
</del><ins>+Version: 1.1
+Tags: black, blue, white, two-columns, fixed-width, custom-header, custom-background, threaded-comments, sticky-post, translation-ready, microformats, rtl-language-support, editor-style
</ins><span class="cx"> */
</span><span class="cx"> 
</span><span class="cx"> 
</span><span class="lines">@@ -139,9 +139,7 @@
</span><span class="cx"> .pingback p,
</span><span class="cx"> .reply,
</span><span class="cx"> .widget-title,
</span><del>-.wp-caption-text {
-        font-family: &quot;Helvetica Neue&quot;, Arial, Helvetica, &quot;Nimbus Sans L&quot;, sans-serif;
-}
</del><ins>+.wp-caption-text,
</ins><span class="cx"> input[type=submit] {
</span><span class="cx">         font-family: &quot;Helvetica Neue&quot;, Arial, Helvetica, &quot;Nimbus Sans L&quot;, sans-serif;
</span><span class="cx"> }
</span><span class="lines">@@ -352,7 +350,7 @@
</span><span class="cx">         clear: right;
</span><span class="cx">         float: right;
</span><span class="cx">         font-style: italic;
</span><del>-        margin: 15px 0 18px 0;
</del><ins>+        margin: 14px 0 18px 0;
</ins><span class="cx">         width: 220px;
</span><span class="cx"> }
</span><span class="cx"> 
</span><span class="lines">@@ -360,8 +358,8 @@
</span><span class="cx"> #branding img {
</span><span class="cx">         border-top: 4px solid #000;
</span><span class="cx">         border-bottom: 1px solid #000;
</span><ins>+        clear: both;
</ins><span class="cx">         display: block;
</span><del>-        float: left;
</del><span class="cx"> }
</span><span class="cx"> 
</span><span class="cx"> 
</span><span class="lines">@@ -761,91 +759,86 @@
</span><span class="cx"> /* =Images
</span><span class="cx"> -------------------------------------------------------------- */
</span><span class="cx"> 
</span><del>-/*
-Resize images to fit the main content area.
-- Applies only to images uploaded via WordPress by targeting size-* classes.
-- Other images will be left alone. Use &quot;size-auto&quot; class to apply to other images.
-*/
-img.size-auto,
-img.size-full,
-img.size-large,
-img.size-medium,
-.attachment img {
-        max-width: 100%; /* When images are too wide for containing element, force them to fit. */
-        height: auto; /* Override height to match resized width for correct aspect ratio. */
</del><ins>+#content img {
+        margin: 0;
+        height: auto;
+        max-width: 640px;
+        width: auto;
</ins><span class="cx"> }
</span><del>-.alignleft,
-img.alignleft {
</del><ins>+#content .attachment img {
+        max-width: 900px;
+}
+#content .alignleft,
+#content img.alignleft {
</ins><span class="cx">         display: inline;
</span><span class="cx">         float: left;
</span><span class="cx">         margin-right: 24px;
</span><span class="cx">         margin-top: 4px;
</span><span class="cx"> }
</span><del>-.alignright,
-img.alignright {
</del><ins>+#content .alignright,
+#content img.alignright {
</ins><span class="cx">         display: inline;
</span><span class="cx">         float: right;
</span><span class="cx">         margin-left: 24px;
</span><span class="cx">         margin-top: 4px;
</span><span class="cx"> }
</span><del>-.aligncenter,
-img.aligncenter {
</del><ins>+#content .aligncenter,
+#content img.aligncenter {
</ins><span class="cx">         clear: both;
</span><span class="cx">         display: block;
</span><span class="cx">         margin-left: auto;
</span><span class="cx">         margin-right: auto;
</span><span class="cx"> }
</span><del>-img.alignleft,
-img.alignright,
-img.aligncenter {
</del><ins>+#content img.alignleft,
+#content img.alignright,
+#content img.aligncenter {
</ins><span class="cx">         margin-bottom: 12px;
</span><span class="cx"> }
</span><del>-.wp-caption {
</del><ins>+#content .wp-caption {
</ins><span class="cx">         background: #f1f1f1;
</span><span class="cx">         line-height: 18px;
</span><span class="cx">         margin-bottom: 20px;
</span><del>-        max-width: 632px !important; /* prevent too-wide images from breaking layout */
</del><span class="cx">         padding: 4px;
</span><span class="cx">         text-align: center;
</span><span class="cx"> }
</span><del>-.wp-caption img {
</del><ins>+#content .wp-caption img {
</ins><span class="cx">         margin: 5px 5px 0;
</span><span class="cx"> }
</span><del>-.wp-caption p.wp-caption-text {
</del><ins>+#content .wp-caption p.wp-caption-text {
</ins><span class="cx">         color: #888;
</span><span class="cx">         font-size: 12px;
</span><span class="cx">         margin: 5px;
</span><span class="cx"> }
</span><del>-.wp-smiley {
</del><ins>+#content .wp-smiley {
</ins><span class="cx">         margin: 0;
</span><span class="cx"> }
</span><del>-.gallery {
</del><ins>+#content .gallery {
</ins><span class="cx">         margin: 0 auto 18px;
</span><span class="cx"> }
</span><del>-.gallery .gallery-item {
</del><ins>+#content .gallery .gallery-item {
</ins><span class="cx">         float: left;
</span><span class="cx">         margin-top: 0;
</span><span class="cx">         text-align: center;
</span><span class="cx">         width: 33%;
</span><span class="cx"> }
</span><del>-.gallery img {
</del><ins>+#content .gallery img {
</ins><span class="cx">         border: 2px solid #cfcfcf;
</span><span class="cx"> }
</span><del>-.gallery .gallery-caption {
</del><ins>+#content .gallery .gallery-caption {
</ins><span class="cx">         color: #888;
</span><span class="cx">         font-size: 12px;
</span><span class="cx">         margin: 0 0 12px;
</span><span class="cx"> }
</span><del>-.gallery dl {
</del><ins>+#content .gallery dl {
</ins><span class="cx">         margin: 0;
</span><span class="cx"> }
</span><del>-.gallery img {
</del><ins>+#content .gallery img {
</ins><span class="cx">         border: 10px solid #f1f1f1;
</span><span class="cx"> }
</span><del>-.gallery br+br {
</del><ins>+#content .gallery br+br {
</ins><span class="cx">         display: none;
</span><span class="cx"> }
</span><del>-#content .attachment img {/* single attachment images should be centered */
</del><ins>+#content .attachment img { /* single attachment images should be centered */
</ins><span class="cx">         display: block;
</span><span class="cx">         margin: 0 auto;
</span><span class="cx"> }
</span><span class="lines">@@ -1094,9 +1087,6 @@
</span><span class="cx">         list-style: square;
</span><span class="cx">         margin-left: 1.3em;
</span><span class="cx"> }
</span><del>-.widget-area select {
-        max-width: 100%;
-}
</del><span class="cx"> .widget_search #s {/* This keeps the search inputs in line */
</span><span class="cx">         width: 60%;
</span><span class="cx"> }
</span></span></pre>
</div>
</div>

</body>
</html>