<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array">
    <added>
      <filename>app/views/posts/index.atom.builder</filename>
    </added>
    <added>
      <filename>public/images/icons/create_new_forum.png</filename>
    </added>
    <added>
      <filename>public/images/icons/create_new_topic.png</filename>
    </added>
    <added>
      <filename>public/images/icons/follow.png</filename>
    </added>
    <added>
      <filename>public/images/icons/view_all_recent_posts.png</filename>
    </added>
  </added>
  <modified type="array">
    <modified>
      <diff>@@ -13,6 +13,7 @@ class PostsController &lt; ApplicationController
     @show_title_and_link = true
     respond_to do |format|
       format.html # index.html.erb
+      format.atom
       format.xml  { render :xml  =&gt; @posts }
     end
   end</diff>
      <filename>app/controllers/posts_controller.rb</filename>
    </modified>
    <modified>
      <diff>@@ -30,7 +30,7 @@ class UsersController &lt; ApplicationController
       end
       # API 
       format.json do
-        users = User.musicians.find(:all,:include =&gt; :pic, :limit =&gt; 10)
+        users = User.musicians.find(:all,:include =&gt; :pic)
         render :json =&gt; '{ records : ' + users.to_json(:methods =&gt; [:name, :type], :only =&gt; [:id,:name,:comments_count,:bio_html,:website,:login]) + '}'
       end
      # format.fbml do</diff>
      <filename>app/controllers/users_controller.rb</filename>
    </modified>
    <modified>
      <diff>@@ -25,7 +25,7 @@ class Comment &lt; ActiveRecord::Base
   # this helps simplify a user lookup of all comments across tracks/playlists/whatever
   belongs_to :user
   
-  validates_length_of :body, :within =&gt; 1..700
+  validates_length_of :body, :within =&gt; 1..1000
   
   formats_attributes :body
   </diff>
      <filename>app/models/comment.rb</filename>
    </modified>
    <modified>
      <diff>@@ -7,15 +7,13 @@
     
 
     &lt;% content_for :extras do %&gt;
-        &lt;%# feed_icon_tag &quot;Recent Posts&quot;, formatted_posts_path(:format =&gt; 'rss') %&gt;
+        &lt;%= feed_icon_tag &quot;Recent Posts&quot;, formatted_posts_path(:format =&gt; 'atom') %&gt;
     &lt;% end %&gt;
 
     &lt;% if admin? %&gt;
-       &lt;div class=&quot;additional_options_solo&quot; &gt;
-       &lt;div class=&quot;button_wrapper&quot; style=&quot;margin-top:-32px;&quot;&gt;
-            &lt;%= link_to &quot;Create New Forum&quot;, new_forum_path, :class =&gt; 'new button' %&gt;
-       &lt;/div&gt;
-       &lt;/div&gt;
+	    &lt;div class=&quot;button_wrapper&quot; style=&quot;margin-top:-30px;&quot;&gt;
+	       &lt;%= link_to &quot; &quot;, new_forum_path, :id =&gt; 'create_new_forum', :class =&gt; 'button'  %&gt;
+	    &lt;/div&gt;
     &lt;% end %&gt;
         
     &lt;table border=&quot;0&quot; cellspacing=&quot;0&quot; cellpadding=&quot;0&quot; class=&quot;wide forums&quot;&gt;
@@ -57,10 +55,7 @@
     &lt;% end %&gt;
     &lt;/table&gt;
 
-    &lt;p&gt;
-      &lt;%= link_to('View Recent Posts', posts_path) if Post.first %&gt;
-    &lt;/p&gt;
-    &lt;% if @online &amp;&amp; !@online.empty?%&gt;
+    &lt;% if present? @online %&gt;
         &lt;div class=&quot;box&quot;&gt;
         &lt;div class=&quot;static_content&quot; id=&quot;currently_online&quot;&gt;
           alonetoners online: 
@@ -70,4 +65,7 @@
         &lt;/div&gt;
         &lt;/div&gt;
     &lt;% end %&gt;
+    &lt;div class=&quot;footer_box&quot;&gt;
+      &lt;%= link_to('', posts_path, :class=&gt;'view_all_recent_posts', :title =&gt; 'view all recent posts') if Post.first %&gt;
+    &lt;/div&gt;
 &lt;% end %&gt;
\ No newline at end of file</diff>
      <filename>app/views/forums/index.html.erb</filename>
    </modified>
    <modified>
      <diff>@@ -6,13 +6,13 @@
     &lt;% content_for :breadcrumbs do %&gt;
             &lt;%= link_to 'alonetone forums', forums_path %&gt;  &lt;span class=&quot;arrow&quot;&gt;&amp;rarr;&lt;/span&gt; &lt;%= @forum.name %&gt;
     &lt;% end %&gt;
-
+    
     &lt;% @page_title = @forum.name+ ' forum'%&gt;
 
     &lt;% content_for :extras do %&gt;
       &lt;%= pluralize @forum.topics.size, 'topics' %&gt;, 
       &lt;%= pluralize @forum.posts.size, 'posts' %&gt;
-      &lt;%# feed_icon_tag @forum.name, formatted_forum_posts_path(@forum, :atom)%&gt; 
+      &lt;%= feed_icon_tag @forum.name, formatted_forum_posts_path(@forum, :atom)%&gt; 
     &lt;% end %&gt;
 
     &lt;table border=&quot;0&quot; cellspacing=&quot;0&quot; cellpadding=&quot;0&quot; class=&quot;wide topics&quot;&gt;
@@ -59,9 +59,9 @@
     
     &lt;div class=&quot;forum_paginator clearfix&quot;&gt;
         &lt;%= pagination @topics %&gt;
-        &lt;div class=&quot;button_wrapper&quot;&gt;
-        &lt;%= link_to 'New topic', new_forum_topic_path(@forum), :class =&gt; &quot;button new&quot; %&gt;&lt;/p&gt;
-        &lt;/div&gt;
+    &lt;/div&gt;
+    &lt;div class=&quot;footer_box&quot;&gt;
+        &lt;%= link_to ' ', new_forum_topic_path(@forum), :id =&gt; &quot;create_new_topic&quot;, :class =&gt; 'margin1px', :title =&gt; 'Start a new forum topic' %&gt;&lt;/p&gt;
     &lt;/div&gt;
 
 &lt;% end %&gt;
\ No newline at end of file</diff>
      <filename>app/views/forums/show.html.erb</filename>
    </modified>
    <modified>
      <diff>@@ -5,10 +5,10 @@
 		    &lt;div class=&quot;button_wrapper&quot;&gt;
 		    &lt;%= link_to &quot; &quot;, new_user_playlist_path(@user), :id =&gt; 'create_new_playlist', :class =&gt; 'button' %&gt;
 		    &lt;/div&gt;
-            &lt;% if @user.playlists.public.size &gt; 2 %&gt;
-    		    &lt;div class=&quot;button_wrapper&quot;&gt;
-    		    &lt;%= link_to &quot; &quot;, sort_user_playlists_path(@user), :id =&gt; 'change_playlist_order', :class =&gt; 'button'  %&gt;
-    		    &lt;/div&gt;
+        &lt;% if @user.playlists.public.size &gt; 1 %&gt;
+  		    &lt;div class=&quot;button_wrapper&quot;&gt;
+  		    &lt;%= link_to &quot; &quot;, sort_user_playlists_path(@user), :id =&gt; 'change_playlist_order', :class =&gt; 'button'  %&gt;
+  		    &lt;/div&gt;
 		    &lt;% end %&gt;
 		&lt;/div&gt;
 		&lt;% end %&gt;</diff>
      <filename>app/views/playlists/index.html.erb</filename>
    </modified>
    <modified>
      <diff>@@ -1,19 +1,25 @@
 &lt;% render :layout =&gt; 'forums/forums' do %&gt;
   &lt;% content_for :h1 do %&gt;alonetone forums: Starting a new topic &lt;% end %&gt;
   &lt;% content_for :breadcrumbs do %&gt;
-  &lt;%= link_to 'Forums', forums_path %&gt; &lt;span class=&quot;arrow&quot;&gt;&amp;rarr;&lt;/span&gt;
-  &lt;%= link_to h(@forum.name), forum_path(@forum) %&gt; &lt;span class=&quot;arrow&quot;&gt;&amp;rarr;&lt;/span&gt; New Topic
+    &lt;%= link_to 'Forums', forums_path %&gt; &lt;span class=&quot;arrow&quot;&gt;&amp;rarr;&lt;/span&gt;
+    &lt;%= link_to h(@forum.name), forum_path(@forum) %&gt; &lt;span class=&quot;arrow&quot;&gt;&amp;rarr;&lt;/span&gt; New Topic
   &lt;% end %&gt;
+  
+    &lt;h1 id=&quot;new_topic&quot;&gt;&lt;%= &quot;Start a New Topic&quot; %&gt;&lt;/h1&gt;
 
-    &lt;h1 id=&quot;new_topic&quot;&gt;&lt;%= 'New Topic' %&gt;&lt;/h1&gt;
-    &lt;p class=&quot;subtitle&quot;&gt;by &lt;%=  current_user.name %&gt;&lt;/p&gt;
-
-
+  &lt;div class=&quot;container static_content&quot;&gt;
+    &lt;p class=&quot;subtitle&quot;&gt;Post will be by &lt;%=  current_user.name %&gt; in the &quot;&lt;%= @forum.name %&gt;&quot; forum&lt;/p&gt;
     &lt;%= error_messages_for :topic %&gt;
     &lt;% form_for :topic,
          :url  =&gt; forum_topics_path(@forum) do |f| -%&gt;
     &lt;%= render :partial =&gt; &quot;form&quot;, :object =&gt; f %&gt;
-    &lt;%= submit_tag 'Post Topic', :or =&gt; link_to('Cancel', forum_path(@forum)) %&gt;
+    &lt;div class=&quot;submit_wrapper&quot;&gt;
+      &lt;%= submit_tag 'Post Topic', :or =&gt; link_to('Cancel', forum_path(@forum)) %&gt;
+    &lt;/div&gt;
     &lt;% end -%&gt;
+    
+    &lt;%= render :partial =&gt; 'posts/formatting' %&gt;       
+
+  &lt;/div&gt;  
 
 &lt;% end %&gt;</diff>
      <filename>app/views/topics/new.html.erb</filename>
    </modified>
    <modified>
      <diff>@@ -31,7 +31,7 @@
     &lt;% content_for :extras do %&gt;
       &lt;%= pluralize @topic.posts.size, 'post' %&gt;, 
       &lt;%= pluralize @topic.voices.size, 'person' %&gt; talking
-      &lt;%# feed_icon_tag @topic.title, formatted_forum_topic_path(@forum, @topic, :rss) %&gt;
+      &lt;%= feed_icon_tag @topic.title, formatted_posts_path(:atom,:forum_id =&gt; @forum, :topic_id =&gt; @topic) %&gt;
 
     &lt;% end %&gt;
 </diff>
      <filename>app/views/topics/show.html.erb</filename>
    </modified>
    <modified>
      <diff>@@ -1,7 +1,13 @@
 --- 
-docroot: /home/alonetone.com/web/alonetone/current/
-log_file: /home/alonetone.com/web/alonetone/current/log/mongrel.log
-port: &quot;8000&quot;
-environment: production
-pid_file: /home/alonetone.com/web/alonetone/current/tmp/pids/mongrel.pid
-servers: 4
+port: 5000
+servers: 3
+docroot: public    
+environment: production 
+cwd: /data/alonetone/current
+log_file: /var/log/engineyard/mongrel/alonetone/mongrel.log
+pid_file: /var/run/mongrel/alonetone/mongrel.pid
+user: alonetone
+group: alonetone
+
+
+</diff>
      <filename>config/mongrel_cluster.yml</filename>
    </modified>
    <modified>
      <diff>@@ -265,6 +265,13 @@ div.footer_box
       :background-position -165px 0px
     &amp;:active
       :background-position -330px 0px
+  a.view_all_recent_posts
+    :width 197px
+    :background transparent url(../images/icons/view_all_recent_posts.png) no-repeat 0px 0px
+    &amp;:hover
+      :background-position -197px 0px
+    &amp;:active
+      :background-position -394px 0px
 
 a.edit_green, a.delete_green
   :display block
@@ -383,6 +390,7 @@ a.alonetone_plus_link
   :height 32px
   :margin-left 20px
   
+// CREATE BUTTONS (grey/black)  
 #create_new_playlist
   :width 185px
   :height 32px
@@ -402,6 +410,29 @@ a.alonetone_plus_link
     :background-position -203px
   &amp;:active
     :background-position -406px
+    
+#create_new_topic
+  :width 164px
+  :height 32px
+  :display block
+  :background transparent url(../images/icons/create_new_topic.png) no-repeat 0px 0px
+  &amp;:hover
+    :background-position -164px
+  &amp;:active
+    :background-position -328px
+    
+#create_new_forum
+  :width 174px
+  :height 32px
+  :display block
+  :background transparent url(../images/icons/create_new_forum.png) no-repeat 0px 0px
+  &amp;:hover
+    :background-position -174px
+  &amp;:active
+    :background-position -348px
+
+    
+    
   
 a.button
   &amp;.unspam, &amp;.spam, &amp;.delete_comment</diff>
      <filename>public/stylesheets/sass/typography.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>89d12f03beff6c0d1c36eceb4dd4ea5d1e8ece74</id>
    </parent>
  </parents>
  <author>
    <name>Sudara</name>
    <email>sudara@alonetone.com</email>
  </author>
  <url>http://github.com/sudara/alonetone/commit/6473b41e995e0d682871bd46650e584133007159</url>
  <id>6473b41e995e0d682871bd46650e584133007159</id>
  <committed-date>2009-01-03T15:26:24-08:00</committed-date>
  <authored-date>2009-01-03T15:26:24-08:00</authored-date>
  <message>Add atom posts to latest posts, forums, topics and clean up forum views</message>
  <tree>23b00d6756c611e55c75a2505498ab6be4b76cb8</tree>
  <committer>
    <name>Sudara</name>
    <email>sudara@alonetone.com</email>
  </committer>
</commit>
