<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array">
    <added>
      <filename>public/images/help/github.png</filename>
    </added>
    <added>
      <filename>public/images/help/twitter.png</filename>
    </added>
  </added>
  <modified type="array">
    <modified>
      <diff>@@ -74,8 +74,8 @@ class AssetsController &lt; ApplicationController
         @assets = Asset.latest(@limit)
         @favorites = Track.favorites.find(:all, :limit =&gt; 5)
         @popular = Asset.find(:all, :limit =&gt; @limit, :order =&gt; 'hotness DESC')
-        @comments = Comment.public.find(:all, :limit =&gt; 5, :order =&gt; 'created_at DESC') unless admin?
-        @comments = Comment.include_private.find(:all, :limit =&gt; 5, :order =&gt; 'created_at DESC') if admin?        
+        @comments = Comment.public.find(:all, :limit =&gt; 5, :order =&gt; 'created_at DESC', :include =&gt; :commentable) unless admin?
+        @comments = Comment.include_private.find(:all, :limit =&gt; 5, :order =&gt; 'created_at DESC', :include =&gt; :commentable) if admin?        
         @playlists = Playlist.public.latest(12)
         @tab = 'home'
         @welcome = true unless logged_in?</diff>
      <filename>app/controllers/assets_controller.rb</filename>
    </modified>
    <modified>
      <diff>@@ -2,10 +2,11 @@
     url = formatted_user_track_url(asset.user, asset, :mp3, :referer =&gt; 'itunes')
     xml.title  asset.name 
     xml.link  user_track_url(asset.user, asset)
-    xml.description  &quot;#{asset.name} by #{asset.user.name}&quot;
     xml.guid url
     xml.pubDate  rss_date asset.created_at
     xml.enclosure :url=&gt; url,:type=&gt;'audio/mpeg', :size =&gt; asset.size
+    xml.itunes :summary, asset.description
+    xml.description, asset.description
     xml.itunes :duration, asset.length
     xml.itunes :author, asset.user.name
     xml.itunes :keywords, &quot;#{asset.name} #{asset.user.name} alonetone&quot;</diff>
      <filename>app/views/shared/_asset.rss.builder</filename>
    </modified>
    <modified>
      <diff>@@ -1,39 +1,41 @@
+&lt;% unless @single_track %&gt;
+  &lt;%= render :partial =&gt; 'assets/asset', :locals =&gt; { :asset =&gt; comment.commentable}%&gt;
+&lt;% end %&gt;
+
 &lt;% div_for comment, :class =&gt; (cycle('even', 'odd')) do %&gt;
   
   &lt;div class=&quot;comment_user&quot;&gt;
-	&lt;% if comment.commenter %&gt;
-        &lt;%= user_image_link(comment.commenter, :small)%&gt;
-	&lt;% else %&gt;
-	    &lt;%= image_tag User.dummy_pic(:small)%&gt;
-	&lt;% end %&gt;
+	  &lt;% if comment.commenter %&gt;
+          &lt;%= user_image_link(comment.commenter, :small)%&gt;
+  	&lt;% else %&gt;
+  	    &lt;%= image_tag User.dummy_pic(:small)%&gt;
+  	&lt;% end %&gt;
     &lt;% if comment.private %&gt;
         &lt;div class=&quot;private_comment&quot;&gt;
         &lt;/div&gt;
     &lt;% end %&gt;
-   
-    &lt;% if !@single_track %&gt;
-        &lt;div class=&quot;comment_about&quot;&gt;about &lt;%= link_for_comment(comment) %&gt;&lt;/div&gt;
-    &lt;% end %&gt;
     
-	&lt;span class=&quot;comment_user_text&quot;&gt;
-    	&lt;%= comment.commenter ? (link_to (h comment.commenter.name), user_home_path(comment.commenter)) : 'Guest' %&gt;
-    	said &lt;%= time_ago_in_words(comment.created_at) %&gt; ago
-  	&lt;/span&gt;
 	 
-	&lt;% if authorized_for_comment(comment) %&gt;
-	    &lt;% if comment.spam == false %&gt;
-	        &lt;%= link_to ' ', comment_path(comment, :spam =&gt; true), :class =&gt; 'button spam', :confirm =&gt; 'Are you sure you want to mark this as SPAM? This will make it harder for the user who posted this comment to post again', :method =&gt; :delete%&gt;
-	    &lt;% else %&gt;
-	        &lt;%= link_to ' ', unspam_comment_path(comment), :class =&gt; 'unspam button',  :confirm =&gt; 'This will make the comment public. Are you sure?' %&gt;
-        &lt;% end %&gt;
-		&lt;%= link_to ' ', comment_path(comment), :class=&gt; 'delete_comment button', :confirm =&gt; 'Are you sure you want to delete this comment?', :method =&gt; :delete %&gt;
-	&lt;% end %&gt;
-	&lt;/div&gt;
+  	&lt;% if authorized_for_comment(comment) %&gt;
+  	    &lt;% if comment.spam == false %&gt;
+  	        &lt;%= link_to ' ', comment_path(comment, :spam =&gt; true), :class =&gt; 'button spam', :confirm =&gt; 'Are you sure you want to mark this as SPAM? This will make it harder for the user who posted this comment to post again', :method =&gt; :delete%&gt;
+  	    &lt;% else %&gt;
+  	        &lt;%= link_to ' ', unspam_comment_path(comment), :class =&gt; 'unspam button',  :confirm =&gt; 'This will make the comment public. Are you sure?' %&gt;
+          &lt;% end %&gt;
+  		&lt;%= link_to ' ', comment_path(comment), :class=&gt; 'delete_comment button', :confirm =&gt; 'Are you sure you want to delete this comment?', :method =&gt; :delete %&gt;
+  	&lt;% end %&gt;
+  &lt;/div&gt;
+  
+  &lt;div class=&quot;comment_user_text&quot;&gt;
+  	&lt;%= comment.commenter ? (link_to (h comment.commenter.name), user_home_path(comment.commenter)) : 'Guest' %&gt;
+  	said &lt;%= time_ago_in_words(comment.created_at) %&gt; ago
+  &lt;/div&gt;
+  
 	&lt;div class=&quot;comment_body&quot;&gt;
 
 		&lt;%= comment.body %&gt;
 	&lt;/div&gt;
+	
 	&lt;div class=&quot;clear&quot;&gt;
-	 
 	&lt;/div&gt;
 &lt;% end if comment &amp;&amp; (!comment.private? || authorized_for_comment(comment))%&gt;
\ No newline at end of file</diff>
      <filename>app/views/shared/_comment.html.erb</filename>
    </modified>
    <modified>
      <diff>@@ -8,4 +8,8 @@
         &lt;%= link_to image_tag('help/facebook.png'), 'http://apps.facebook.com/alonetone' %&gt;&lt;br/&gt;
         &lt;%= link_to 'alonetone on facebook', 'http://apps.facebook.com/alonetone' %&gt;
     &lt;/div&gt;
+    &lt;div class=&quot;chunk&quot;&gt;
+        &lt;%= link_to image_tag('help/twitter.png'), 'http://twitter.com/alonetone' %&gt;&lt;br/&gt;
+        &lt;%= link_to 'follow alonetone on twitter', 'http://twitter.com/alonetone'%&gt;&lt;br/&gt;
+    &lt;/div&gt;
 &lt;/div&gt;</diff>
      <filename>app/views/shared/_visit_us.html.erb</filename>
    </modified>
    <modified>
      <diff>@@ -19,7 +19,7 @@ xml.rss &quot;xmlns:itunes&quot;=&gt; &quot;http://www.itunes.com/dtds/podcast-1.0.dtd&quot;, &quot;version&quot;
     xml.itunes :author, 	@user.name
 		xml.itunes :subtitle, &quot;#{@user.name} on alonetone.com&quot;
 		xml.itunes :summary, 	@user.bio || &quot;Latest music from #{@user.name} on alonetone.com&quot;
-		xml.itunes :keywords, 'independant free alonetone musician artist latest upcoming'
+		xml.itunes :keywords, &quot;independant free alonetone musician artist latest upcoming do-it-yourself DIY #{@user.name} #{@user.login}&quot;
 		xml.itunes :image, :href=&gt;@user.avatar(:album)
 		
 		xml.itunes :owner do</diff>
      <filename>app/views/users/show.rss.builder</filename>
    </modified>
    <modified>
      <diff>@@ -1,4 +1,4 @@
-RAILS_GEM_VERSION = '2.1.1' unless defined? RAILS_GEM_VERSION
+#RAILS_GEM_VERSION = '2.1.1' unless defined? RAILS_GEM_VERSION
 
 # Bootstrap the Rails environment, frameworks, and default configuration
 require File.join(File.dirname(__FILE__), 'boot')</diff>
      <filename>config/environment.rb</filename>
    </modified>
    <modified>
      <diff>@@ -188,14 +188,7 @@
 
 .comment, .user_report, .update, .listen
   :position relative
-  :color = !text_color
-  .comment_user, .update_title_bar
-    :background url(../images/backgrounds/comment_even.png) repeat-x top left
-    :background-color = !box_background
-  &amp;.even
-    .comment_user
-      :background-image url(../images/backgrounds/comment.png)
-      :background-color = !box_background_even
+  :color = !white
   div.private_comment
     :background url(../images/icons/private.png) no-repeat top left
     :position absolute
@@ -205,42 +198,32 @@
     :width 25px
     :height 25px
   .comment_user, .update_title_bar
-    :position relative
-    :height 50px
-    :margin-bottom 1px
     a.alonetoner, img
+      :margin-top 1px
       :float left
       :margin-right 10px
-    .comment_user_text, .about_details
-      :line-height 10px
-      :font-size 11px
-      a
-        :font-size 11px
-    .comment_about, .title
-      :line-height 18px
-      :padding-top 8px      
-    a
+  .comment_user_text 
+    :color = !white
+    :margin-left 73px
+    :padding-top 10px
+    :font-size 12px
+    :text-shadow #000 1px 1px 1px
+    a,a:visited
       :font-weight bold
-    .edit
-      :position absolute
-      :top 15px
-      :right 10px
-      a
-        :font-size 12px
-        :text-decoration underline
-      .edit
-        :right 25px
+      :color = !white
+      :text-decoration underline
+      :font-size 12px
+      :text-shadow #000 1px 1px 1px
   .comment_body, .body
-    :background-color = !box_background
-    :padding 10px 20px 30px 20px
+    :padding 5px 20px 30px 0px
     :margin-bottom 3px
+    :margin-left 73px
     a
-      :color = !text_color
-    .comment_about
-      a
-        :font-weight bold
+      :color = !white
+      :text-shadow #000 1px 1px 1px
     p
-      :color = !text_color
+      :color = !white
+      :text-shadow #000 1px 1px 1px
       :margin 16px 0px 0px 0px
       :line-height 18px
     h1,h2,h3
@@ -249,9 +232,7 @@
       :color = !text_color
       :font-size 16px
       :font-weight bold
-  &amp;.even 
-    .comment_body, .body
-      :background-color = !box_background_even
+
       
 .comment_form
   .comment_as
@@ -493,7 +474,7 @@ a.add_to_favorites, a.favorited
   .chunk
     :padding-top 20px
     :float left
-    :width 300px
+    :width 270px
     :text-align center
     a
       img </diff>
      <filename>public/stylesheets/sass/alonetone.sass</filename>
    </modified>
    <modified>
      <diff>@@ -4,4 +4,5 @@ rescue LoadError
   require 'haml' # From gem
 end
 
+# Load Haml and Sass
 Haml.init_rails(binding)</diff>
      <filename>vendor/plugins/haml/init.rb</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>49f77bfe6ffe4bfa56a8d59304a12975109ff870</id>
    </parent>
  </parents>
  <author>
    <name>Sudara</name>
    <email>sudara@alonetone.com</email>
  </author>
  <url>http://github.com/tiendung/alonetone/commit/d02ebe110d8fb8236d20581a1e23fdd93300ea06</url>
  <id>d02ebe110d8fb8236d20581a1e23fdd93300ea06</id>
  <committed-date>2008-11-09T10:31:27-08:00</committed-date>
  <authored-date>2008-11-09T10:31:27-08:00</authored-date>
  <message>partial commit of some new comment UI changes</message>
  <tree>8b66c6bcbc282a88b67736ffaa4e95beff9da6a5</tree>
  <committer>
    <name>Sudara</name>
    <email>sudara@alonetone.com</email>
  </committer>
</commit>
