<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array">
    <added>
      <filename>app/views/shared/_galleries.html.erb</filename>
    </added>
    <added>
      <filename>app/views/shared/_gallery.html.erb</filename>
    </added>
    <added>
      <filename>public/images/icons/photo.png</filename>
    </added>
  </added>
  <modified type="array">
    <modified>
      <diff>@@ -30,6 +30,7 @@ class PeopleController &lt; ApplicationController
       @some_common_connections = @common_connections[(0...Person::MAX_DEFAULT_CONTACTS)]
       @blog = @person.blog
       @posts = @person.blog.posts.paginate(:page =&gt; params[:page])
+      @galleries = @person.galleries.paginate(:page =&gt; params[:page])
     end
     respond_to do |format|
       format.html</diff>
      <filename>app/controllers/people_controller.rb</filename>
    </modified>
    <modified>
      <diff>@@ -29,7 +29,7 @@ module ApplicationHelper
         blog     = menu_element(&quot;Blog&quot;,     blog_path(current_person.blog))
         galleries   = menu_element(&quot;Galleries&quot;,   person_galleries_path(current_person))
         contacts = menu_element(&quot;Contacts&quot;, person_connections_path(current_person))
-        links = [profile, contacts, galleries, messages, people, forum, about]
+        links = [profile, contacts, messages, people, forum, about]
       else
         home =    menu_element(&quot;Home&quot;, home_path)
         people =  menu_element(&quot;People&quot;, admin_people_path)
@@ -53,10 +53,21 @@ module ApplicationHelper
   
   def menu_li(link, options = {})
     klass = &quot;n-#{link[:content].downcase}&quot;
-    klass += &quot; active&quot; if current_page?(link[:href])
-    content_tag(:li, menu_link_to(link, options), :class =&gt; klass)
+    if current_page?(link[:href])
+      klass += &quot; active&quot;
+      content_tag(:li, link[:content], :class =&gt; klass)
+    else
+      content_tag(:li, menu_link_to(link, options), :class =&gt; klass)
+    end
   end
   
+  def login_block
+    forgot = global_prefs.can_send_mail? ? '&lt;br /&gt;' + link_to('I forgot my password', new_password_reminder_path) : ''
+    content_tag(:span, link_to(&quot;Sign in&quot;, login_path) + ' or ' +
+                       link_to(&quot;Sign up&quot;, signup_path) + 
+                       forgot)
+  end
+
   # Return true if the user is viewing the site in admin view.
   def admin_view?
     params[:controller] =~ /admin/ and admin?</diff>
      <filename>app/helpers/application_helper.rb</filename>
    </modified>
    <modified>
      <diff>@@ -1,9 +1,6 @@
 module PhotosHelper
-  def photo_title(filename)
-    File.basename(filename, File.extname(filename)).titleize
-  end
   
   def photo_id(photo)
-    photo_title(photo.filename).gsub(/ /,'')
+    photo.label_from_filename.gsub(/ /,'')
   end
 end</diff>
      <filename>app/helpers/photos_helper.rb</filename>
    </modified>
    <modified>
      <diff>@@ -1,4 +1,16 @@
 # == Schema Information
+# Schema version: 34
+#
+# Table name: activities
+#
+#  id         :integer         not null, primary key
+#  public     :boolean         
+#  item_id    :integer         
+#  person_id  :integer         
+#  item_type  :string(255)     
+#  created_at :datetime        
+#  updated_at :datetime        
+#
 
 # Schema version: 30
 #</diff>
      <filename>app/models/activity.rb</filename>
    </modified>
    <modified>
      <diff>@@ -1,5 +1,5 @@
 # == Schema Information
-# Schema version: 30
+# Schema version: 34
 #
 # Table name: blogs
 #</diff>
      <filename>app/models/blog.rb</filename>
    </modified>
    <modified>
      <diff>@@ -1,5 +1,5 @@
 # == Schema Information
-# Schema version: 30
+# Schema version: 34
 #
 # Table name: posts
 #</diff>
      <filename>app/models/blog_post.rb</filename>
    </modified>
    <modified>
      <diff>@@ -1,5 +1,5 @@
 # == Schema Information
-# Schema version: 30
+# Schema version: 34
 #
 # Table name: comments
 #</diff>
      <filename>app/models/comment.rb</filename>
    </modified>
    <modified>
      <diff>@@ -1,5 +1,5 @@
 # == Schema Information
-# Schema version: 30
+# Schema version: 34
 #
 # Table name: communications
 #</diff>
      <filename>app/models/communication.rb</filename>
    </modified>
    <modified>
      <diff>@@ -1,5 +1,5 @@
 # == Schema Information
-# Schema version: 30
+# Schema version: 34
 #
 # Table name: connections
 #</diff>
      <filename>app/models/connection.rb</filename>
    </modified>
    <modified>
      <diff>@@ -1,5 +1,5 @@
 # == Schema Information
-# Schema version: 30
+# Schema version: 34
 #
 # Table name: email_verifications
 #</diff>
      <filename>app/models/email_verification.rb</filename>
    </modified>
    <modified>
      <diff>@@ -1,5 +1,5 @@
 # == Schema Information
-# Schema version: 30
+# Schema version: 34
 #
 # Table name: feeds
 #</diff>
      <filename>app/models/feed.rb</filename>
    </modified>
    <modified>
      <diff>@@ -1,5 +1,5 @@
 # == Schema Information
-# Schema version: 30
+# Schema version: 34
 #
 # Table name: forums
 #</diff>
      <filename>app/models/forum.rb</filename>
    </modified>
    <modified>
      <diff>@@ -1,5 +1,5 @@
 # == Schema Information
-# Schema version: 30
+# Schema version: 34
 #
 # Table name: posts
 #</diff>
      <filename>app/models/forum_post.rb</filename>
    </modified>
    <modified>
      <diff>@@ -1,16 +1,15 @@
 # == Schema Information
-# Schema version: 28
+# Schema version: 34
 #
 # Table name: galleries
 #
-#  id               :integer(11)     not null, primary key
-#  person_id        :integer(11)     
-#  title            :string(255)     
-#  description      :string(255)     
-#  photos_count     :integer(11)     default(0), not null
-#  primary_photo_id :integer(11)     
-#  created_at       :datetime        
-#  updated_at       :datetime        
+#  id           :integer         not null, primary key
+#  person_id    :integer         
+#  title        :string(255)     
+#  description  :string(255)     
+#  photos_count :integer         default(0), not null
+#  created_at   :datetime        
+#  updated_at   :datetime        
 #
 
 class Gallery &lt; ActiveRecord::Base
@@ -65,4 +64,7 @@ class Gallery &lt; ActiveRecord::Base
     add_activities(:activity =&gt; activity, :person =&gt; self.person)
   end
   
+  def short_description
+    description[0..124]
+  end
 end</diff>
      <filename>app/models/gallery.rb</filename>
    </modified>
    <modified>
      <diff>@@ -1,5 +1,5 @@
 # == Schema Information
-# Schema version: 30
+# Schema version: 34
 #
 # Table name: communications
 #</diff>
      <filename>app/models/message.rb</filename>
    </modified>
    <modified>
      <diff>@@ -1,5 +1,5 @@
 # == Schema Information
-# Schema version: 30
+# Schema version: 34
 #
 # Table name: page_views
 #</diff>
      <filename>app/models/page_view.rb</filename>
    </modified>
    <modified>
      <diff>@@ -1,32 +1,27 @@
 # == Schema Information
-# Schema version: 30
+# Schema version: 34
 #
 # Table name: people
 #
-#  id                         :integer         not null, primary key
-#  email                      :string(255)     
-#  name                       :string(255)     
-#  remember_token             :string(255)     
-#  crypted_password           :string(255)     
-#  description                :text            
-#  remember_token_expires_at  :datetime        
-#  last_contacted_at          :datetime        
-#  last_logged_in_at          :datetime        
-#  forum_posts_count          :integer         default(0), not null
-#  blog_post_comments_count   :integer         default(0), not null
-#  wall_comments_count        :integer         default(0), not null
-#  created_at                 :datetime        
-#  updated_at                 :datetime        
-#  admin                      :boolean         not null
-#  deactivated                :boolean         not null
-#  connection_notifications   :boolean         default(TRUE)
-#  message_notifications      :boolean         default(TRUE)
-#  wall_comment_notifications :boolean         default(TRUE)
-#  blog_comment_notifications :boolean         default(TRUE)
-#  email_verified             :boolean         
-#  demo                       :boolean         
-#  preferences                :boolean         
-#  avatar_id                  :integer(11)     
+#  id                        :integer         not null, primary key
+#  email                     :string(255)     
+#  name                      :string(255)     
+#  remember_token            :string(255)     
+#  crypted_password          :string(255)     
+#  description               :text            
+#  remember_token_expires_at :datetime        
+#  last_contacted_at         :datetime        
+#  last_logged_in_at         :datetime        
+#  forum_posts_count         :integer         default(0), not null
+#  blog_post_comments_count  :integer         default(0), not null
+#  wall_comments_count       :integer         default(0), not null
+#  created_at                :datetime        
+#  updated_at                :datetime        
+#  admin                     :boolean         not null
+#  deactivated               :boolean         not null
+#  email_verified            :boolean         
+#  demo                      :boolean         
+#  preferences               :boolean         
 #
 
 class Person &lt; ActiveRecord::Base</diff>
      <filename>app/models/person.rb</filename>
    </modified>
    <modified>
      <diff>@@ -1,5 +1,5 @@
 # == Schema Information
-# Schema version: 30
+# Schema version: 34
 #
 # Table name: photos
 #
@@ -9,14 +9,16 @@
 #  content_type :string(255)     
 #  filename     :string(255)     
 #  thumbnail    :string(255)     
-#  size         :integer(11)     
-#  width        :integer(11)     
-#  height       :integer(11)     
+#  size         :integer         
+#  width        :integer         
+#  height       :integer         
 #  created_at   :datetime        
 #  updated_at   :datetime        
-#  gallery_id   :integer(11)     
+#  gallery_id   :integer         
 #  title        :string(255)     
-#  position     :integer(11)     
+#  position     :integer         
+#  primary      :boolean         
+#  avatar       :boolean         
 #
 
 class Photo &lt; ActiveRecord::Base
@@ -66,6 +68,18 @@ class Photo &lt; ActiveRecord::Base
     end
   end
   
+  def label
+    if self.title.nil? or (self.title.length == 0)
+      label_from_filename
+    else
+      self.title
+    end
+  end
+
+  def label_from_filename
+    File.basename(self.filename, File.extname(self.filename)).titleize
+  end
+  
   def log_activity
       activity = Activity.create!(:item =&gt; self, :person =&gt; self.person)
       add_activities(:activity =&gt; activity, :person =&gt; self.person)</diff>
      <filename>app/models/photo.rb</filename>
    </modified>
    <modified>
      <diff>@@ -1,5 +1,5 @@
 # == Schema Information
-# Schema version: 30
+# Schema version: 34
 #
 # Table name: posts
 #</diff>
      <filename>app/models/post.rb</filename>
    </modified>
    <modified>
      <diff>@@ -1,5 +1,5 @@
 # == Schema Information
-# Schema version: 30
+# Schema version: 34
 #
 # Table name: preferences
 #</diff>
      <filename>app/models/preference.rb</filename>
    </modified>
    <modified>
      <diff>@@ -1,3 +1,20 @@
+# == Schema Information
+# Schema version: 34
+#
+# Table name: thumbnails
+#
+#  id           :integer         not null, primary key
+#  parent_id    :integer         
+#  content_type :string(255)     
+#  filename     :string(255)     
+#  thumbnail    :string(255)     
+#  size         :integer         
+#  width        :integer         
+#  height       :integer         
+#  created_at   :datetime        
+#  updated_at   :datetime        
+#
+
 class Thumbnail &lt; ActiveRecord::Base
   belongs_to :photo, :foreign_key =&gt; 'parent_id'
 </diff>
      <filename>app/models/thumbnail.rb</filename>
    </modified>
    <modified>
      <diff>@@ -1,5 +1,5 @@
 # == Schema Information
-# Schema version: 30
+# Schema version: 34
 #
 # Table name: topics
 #</diff>
      <filename>app/models/topic.rb</filename>
    </modified>
    <modified>
      <diff>@@ -1,13 +1,3 @@
-&lt;%- column_div :type =&gt; :primary do -%&gt;
-  &lt;h2&gt; Galleries &lt;/h2&gt;
-  &lt;% if current_person?(@person)%&gt;
-    &lt;div class=&quot;button&quot;&gt;
-	  &lt;%=link_to &quot;Add Gallery&quot;, new_gallery_path()%&gt;
-    &lt;/div&gt;
-  &lt;% end %&gt;
-
-  &lt;ul id=&quot;gallery_list&quot; class=&quot;grid&quot;&gt;
-    &lt;%= render :partial =&gt; &quot;gallery&quot;, :collection =&gt; @galleries %&gt;
-  &lt;/div &gt;	
-  &lt;%= will_paginate(@galleries) %&gt;
-&lt;%- end -%&gt;
\ No newline at end of file
+&lt;div id=&quot;tGalleries&quot;&gt;
+  &lt;%= render :partial=&gt;&quot;shared/galleries&quot;, :locals =&gt; {:galleries =&gt; @galleries} %&gt;
+&lt;/div&gt;
\ No newline at end of file</diff>
      <filename>app/views/galleries/index.html.erb</filename>
    </modified>
    <modified>
      <diff>@@ -1,25 +1,25 @@
 &lt;%- column_div :type =&gt; :primary, :id =&gt; 'photos' do -%&gt;
-	&lt;h2&gt; Photos in &lt;%= h(@gallery.title)%&gt; &lt;/h2&gt;
-	&lt;%if !@gallery.description.nil?%&gt;
+	&lt;h2&gt;Photos in &lt;%= h(@gallery.title) %&gt; Gallery&lt;/h2&gt;
+	&lt;% if !@gallery.description.nil? %&gt;
 	&lt;div class=&quot;gallery-description&quot;&gt;
 		&lt;p&gt;&lt;strong&gt;Description:&lt;/strong&gt; &lt;%=h(@gallery.description)%&gt;&lt;/p&gt;
 	&lt;/div&gt;
-	&lt;%end%&gt;
+	&lt;% end %&gt;
 	&lt;ul&gt;
-	  &lt;%=render :partial=&gt;&quot;shared/photo&quot;, :collection =&gt; @photos%&gt;
+	  &lt;%= render :partial=&gt;&quot;shared/photo&quot;, :collection =&gt; @photos %&gt;
 	&lt;/ul&gt;
 	&lt;%= will_paginate(@photos) %&gt;
 &lt;%-end-%&gt;
 
-&lt;%- column_div :type =&gt; :secondary do -%&gt;
-	&lt;h2&gt; Toolbox &lt;/h2&gt;
-	&lt;div class=&quot;toolbox&quot;&gt;
+&lt;%- column_div :type =&gt; :secondary, :class =&gt; 'toolbox' do -%&gt;
+	&lt;h2&gt;Toolbox&lt;/h2&gt;
+	&lt;div&gt;
 		&lt;ul&gt;
 			&lt;% if current_person?(@gallery.person)%&gt;
-				&lt;li&gt;&lt;%=link_to &quot;Add photo&quot;, new_gallery_photo_path(@gallery)%&gt;&lt;/li&gt;
-				&lt;li&gt;&lt;%=link_to &quot;Edit gallery&quot;, edit_gallery_path()%&gt; &lt;/li&gt;
+				&lt;li class='button'&gt;&lt;%= link_to &quot;Add photo&quot;, new_gallery_photo_path(@gallery) %&gt;&lt;/li&gt;
+				&lt;li class='button'&gt;&lt;%= link_to &quot;Edit gallery&quot;, edit_gallery_path() %&gt;&lt;/li&gt;
 			&lt;% end %&gt;
-			&lt;li&gt;&lt;%=link_to &quot;#{h(@gallery.person.name)}'s gallery list&quot;, person_galleries_path(@gallery.person)%&gt; &lt;/li&gt;
+			&lt;li class='button'&gt;&lt;%= link_to &quot;#{h(@gallery.person.name)}'s gallery list&quot;, person_path(@gallery.person, :anchor =&gt; 'tGalleries') %&gt;&lt;/li&gt;
 		&lt;/ul&gt;
 	&lt;/div&gt;
 &lt;%- end-%&gt;
\ No newline at end of file</diff>
      <filename>app/views/galleries/show.html.erb</filename>
    </modified>
    <modified>
      <diff>@@ -19,17 +19,8 @@
     &lt;%= render :partial =&gt; 'wall' %&gt;
   &lt;% end %&gt;
 
-  &lt;% tabs.create('tPhotos', 'Photos') do %&gt;
-	  &lt;h2&gt;&lt;%= @person.name %&gt;'s Photos&lt;/h2&gt;
-	  &lt;div class=&quot;button_container&quot;&gt;
-		    &lt;div class=&quot;button&quot;&gt;&lt;%= link_to &quot;Add Photo&quot;, new_photo_path() %&gt;&lt;/div&gt;
-		    &lt;div class=&quot;clear&quot;&gt;&lt;/div&gt;
-	  &lt;/div&gt;
-	  &lt;% unless @person.photos.empty? %&gt;
-	  &lt;ul class=&quot;&quot;&gt;
-		  &lt;%=render :partial=&gt;&quot;shared/photo&quot;, :collection =&gt; @person.photos%&gt;
-	  &lt;/ul&gt;
-	  &lt;% end %&gt;
+  &lt;% tabs.create('tGalleries', 'Galleries') do %&gt;
+    &lt;%=render :partial=&gt;&quot;shared/galleries&quot;, :locals =&gt; {:galleries =&gt; @galleries} %&gt;
   &lt;% end %&gt;
 &lt;%= tabs.render %&gt;
 </diff>
      <filename>app/views/people/show.html.erb</filename>
    </modified>
    <modified>
      <diff>@@ -4,34 +4,23 @@
         &lt;div class=&quot;adminMsgLink&quot;&gt;
           &lt;%= email_link @person, :use_image =&gt; false, :to_all =&gt; true %&gt;&lt;br /&gt;
 		  &lt;hr /&gt;
-          &lt;%- if admin_view? -%&gt;
-            &lt;%= link_to(&quot;Standard View&quot;, home_path) %&gt;
-          &lt;%- else -%&gt;
-            &lt;%= link_to(&quot;Admin View&quot;, admin_preferences_path) %&gt;
-          &lt;%- end -%&gt;
+          &lt;%= link_to_if(admin_view?, &quot;Standard View&quot;, home_path) do
+            	link_to(&quot;Admin View&quot;, admin_preferences_path) 
+          	  end -%&gt;
         &lt;/div&gt;
       &lt;%- end -%&gt;
     &lt;%- end -%&gt;
-  &lt;div id=&quot;header&quot;&gt;
     &lt;h1&gt;&lt;a href=&quot;/&quot; title=&quot;Homepage&quot;&gt;&lt;%= image_tag &quot;logo-insoshi-2.png&quot; %&gt;&lt;/a&gt;&lt;/h1&gt;
+    &lt;p class=&quot;welcome&quot;&gt;
+      &lt;%= link_to_if logged_in?, &quot;Sign out&quot;, logout_path do
+			login_block
+		end %&gt;
+    &lt;/p&gt;
+  &lt;div id=&quot;header&quot;&gt;
     &lt;ul id=&quot;nav&quot;&gt;
       &lt;%- menu.each do |link| -%&gt;
         &lt;%= menu_li link %&gt;
       &lt;%- end -%&gt;
     &lt;/ul&gt;
-    
-    &lt;p class=&quot;welcome&quot;&gt;
-      &lt;%- if logged_in? -%&gt;
-        &lt;%= link_to &quot;Sign out&quot;, logout_path %&gt;
-      &lt;%- else -%&gt;
-        &lt;%= link_to &quot;Sign in&quot;, login_path %&gt; or
-        &lt;%= link_to &quot;Sign up&quot;, signup_path %&gt;
-        &lt;%- if global_prefs.can_send_mail? -%&gt;
-          &lt;br /&gt;
-          &lt;%= link_to &quot;I forgot my password&quot;,
-                       new_password_reminder_path %&gt;
-        &lt;%- end -%&gt;             
-      &lt;%- end -%&gt;
-    &lt;/p&gt;
   &lt;/div&gt;
 &lt;/div&gt;
\ No newline at end of file</diff>
      <filename>app/views/shared/_header.html.erb</filename>
    </modified>
    <modified>
      <diff>@@ -1,11 +1,15 @@
 &lt;li&gt;
-	&lt;p class=&quot;gallPhotoTitle&quot;&gt;
-	  &lt;%= link_to photo_title(photo.filename), '#gpu' + photo_id(photo), :rel =&gt; 'facebox' %&gt;
-	  &lt;div style=&quot;display: none;&quot; id=&quot;gpu&lt;%= photo_id(photo) -%&gt;&quot;&gt;&lt;%= image_tag photo.public_filename -%&gt; &lt;div class=&quot;gpuTitle&quot;&gt;&lt;%= photo_title(photo.filename) -%&gt; &lt;/div&gt;&lt;/div&gt;
+	&lt;p class='gallPhotoTitle'&gt;
+	  &lt;%= link_to photo.label, '#gpu' + photo_id(photo), :rel =&gt; 'facebox' %&gt;
+	  &lt;div style=&quot;display: none;&quot; id=&quot;gpu&lt;%= photo_id(photo) -%&gt;&quot;&gt;&lt;%= image_tag photo.public_filename -%&gt; &lt;div class=&quot;gpuTitle&quot;&gt;&lt;%= photo.label -%&gt; &lt;/div&gt;&lt;/div&gt;
 	&lt;/p&gt;
-	&lt;p class='gallPhoto'&gt;
+	&lt;div class='gallPhoto'&gt;
 	  &lt;%= image_tag(photo.public_filename(:thumbnail)) %&gt;
-  &lt;%= link_to image_tag(&quot;icons/picture_edit.png&quot;, :class =&gt; 'actioner'), edit_photo_path(photo) %&gt;
-  &lt;%= link_to image_tag(&quot;icons/picture_delete.png&quot;, :class =&gt; 'actioner'), photo_path(photo), :method =&gt; :delete %&gt;
-	&lt;/p&gt;
+	&lt;/div&gt;
+	&lt;div class='gallPhotoMeta'&gt;
+      &lt;%= link_to image_tag(&quot;icons/picture_edit.png&quot;, :class =&gt; 'actioner'), edit_photo_path(photo) %&gt;
+      &lt;%= link_to image_tag(&quot;icons/picture_delete.png&quot;, :class =&gt; 'actioner'), photo_path(photo), :method =&gt; :delete %&gt;
+      &lt;%= link_to image_tag(&quot;default_thumbnail.png&quot;, :class =&gt; 'actioner', :style =&gt; 'height: 16px;'), set_avatar_photo_path(photo.id), :method =&gt; :put, :title =&gt; 'Select as your avatar' %&gt;
+      &lt;%= link_to image_tag(&quot;icons/photo.png&quot;, :class =&gt; 'actioner', :style =&gt; 'height: 16px;'), set_primary_photo_path(photo.id), :method =&gt; :put, :title =&gt; 'Select as gallery thumbnail' %&gt;
+	&lt;/div&gt;
 &lt;/li&gt;
\ No newline at end of file</diff>
      <filename>app/views/shared/_photo.html.erb</filename>
    </modified>
    <modified>
      <diff>@@ -18,6 +18,7 @@ body {
 #content {
   width: 744px;
   float: left;
+  padding-bottom: 10px;
 }
 .col1 {
   float: left;
@@ -39,7 +40,7 @@ body {
   padding-bottom: 1px;
 }
 
-#header h1 {
+#header-wrap h1 {
   float: left;
   margin-top: 12px;
   margin-bottom: 12px;
@@ -49,31 +50,32 @@ body {
 
 /* Header-nav */
 #nav {
-  margin: 44px 0 0 0;
+  margin: 10px;
   width: 560px;
   float: right;
 }
-#nav li {
-  background: #6AA2FD url(/images/header-grad-lt.jpg) bottom repeat-x;
+#nav li, p.welcome {
+  background: none;
   float: left;
-  height: 36px;
-  line-height: 36px;
+  height: 24px;
+  line-height: 24px;
   list-style-type: none;
   margin: 0 0 1px 0;
   padding: 0;
   text-align: center;
   width: 70px;
 }
-#nav li a {
+#nav li a, p.welcome a {
   color: #fff;
   display: block;
-  height: 36px;
+  height: 24px;
   font-size: 12px;
 }
-#nav li a:hover {
-  background: url(/images/header-grad-inv-lt.jpg) top repeat-x;
+#nav li a:hover, p.welcome a:hover {
+	background: #4A70B1;
+	font-weight: bold;
 }
-#nav li.active a, #nav li.active a:hover {
+#nav li.active {
   background: #FFF5B5;
   color: #6AA2FD;
   border-bottom: 1px solid #6AA2FD;
@@ -94,13 +96,13 @@ body {
 
 /* Welcome message */
 p.welcome {
-  position: absolute;
-  right: 0;
-  text-align: right;
-  top: 12px;
+  float: right;
+  margin: 10px 10px 0px 0px;
+}
+p.welcome a {
+	text-decoration: none;
+	font-weight: normal;
 }
-
-
 
 /* Site elements */
 
@@ -269,7 +271,7 @@ p.welcome {
   padding: 0;
   width: 78px;
 }
-#message-nav li.active a, #message-nav li a:hover {
+#message-nav li a:hover {
   background: url(/images/silver-grad-inv.jpg) bottom repeat-x;
 }
 #message-nav li.compose {
@@ -298,7 +300,10 @@ p.welcome {
 
 /* Gallery list */
 #gallery_list li {
-	margin-bottom: 5px;
+  background: url(/images/blue-grad.jpg) bottom repeat-x;
+  border: 1px solid #ccc;
+  height: 80px;
+  margin: 10px 0 12px 0px;
 	width: 300px;
 }
 #gallery_list li div, #gallery_list li p {
@@ -317,6 +322,7 @@ div.toolbox ul li {
 	font-size: 12px;
 	list-style: disc inside;
 	background: none;
+	padding-left: 0px
 }
 
 div.photo, div.photo-small {
@@ -332,13 +338,6 @@ div.gallery-description {
 div.photo-small:hover {
 	background-color: #ccccff;
 }
-#gallery_list ul li {
-	list-style-type: none;
-	background: none;
-	margin: 0px;
-	padding-left: 10px;
-	padding-right: 10px;
-}
 
 /* Bug fixes */
 form, div, h2, ul, li {zoom: 1;}
@@ -425,21 +424,24 @@ ul.ui-tabs-nav li {
 #tRecentActivity p.meta {font-variant: small-caps;}
 #tRecentActivity ul li, #tWall ul li, #tWall ul li div {display: block; border-bottom: none;}
 #tWall form, form#admin_preferences, form#admin_forums, form.edit_photo, .col2 form {border-bottom: none;}
-#tPhotos ul li, #photos ul li {
+#tGalleries .profile-image {
+	margin-top: 4px;
+}
+#photos ul li {
     background: url(/images/blue-grad.jpg) bottom repeat-x;
-	margin: 10px;
+	margin: 10px 10px 0px 0px;
     float: left;
 	display: inline;
-	width: 125px;
-	height: 120px;
+	width: 140px;
+	height: 110px;
 	border: 1px solid #ccc;
 	padding: 4px;
 	overflow: hidden;
 }
-#tPhotos ul li img, #photos ul li img {
+#photos ul li img {
 	vertical-align: top;
 }
-#tPhotos form, , #photos form {
+#photos form {
 	margin-top: 20px;
 	border-bottom: none;
 }
@@ -447,7 +449,13 @@ ul.ui-tabs-nav li {
 	height: 35px;
 }
 .gallPhoto {
+	float: left;
+	width: 80px;
+}
+.gallPhotoMeta {
 	height: 72px;
+	float: left;
+	width: 60px;
 }
 .gpuTitle {
 	font-weight: bold;</diff>
      <filename>public/stylesheets/skin.css</filename>
    </modified>
    <modified>
      <diff>@@ -254,7 +254,7 @@ div.button {
 	float: left;
 	margin-right: 20px;
 }
-div.button a {
+.button a {
 	background: #4A70B1 url(/images/header-grad-lt.jpg) bottom repeat-x;
 	padding: 3px 12px;
 }
@@ -352,7 +352,7 @@ strong { font-weight: bold; }
 .disabled   {color: #c0c0c0;} /* greyed out to emphasize unavailability */
 
 #new_form_subject form {border-bottom: none;}
-#new_form_subject input, #photos .button, #tPhotos .button {width: 138px; vertical-align: top;}
+#new_form_subject input, #photos .button, #tGalleries .button {width: 138px; vertical-align: top;}
 #new_form_subject .button {width: 72px;}
 .button a, .button {color: #ffffff;}
 .button_container {margin: 10px 0px;}
\ No newline at end of file</diff>
      <filename>public/stylesheets/typography.css</filename>
    </modified>
    <modified>
      <diff>@@ -1,4 +1,7 @@
 (in /Users/williamlazar/Sites/insoshi)
+                                             /fckeditor/check_spelling                                       {:action=&gt;&quot;check_spelling&quot;, :controller=&gt;&quot;fckeditor&quot;}
+                                             /fckeditor/command                                              {:action=&gt;&quot;command&quot;, :controller=&gt;&quot;fckeditor&quot;}
+                                             /fckeditor/upload                                               {:action=&gt;&quot;upload&quot;, :controller=&gt;&quot;fckeditor&quot;}
                            categories GET    /categories                                                     {:action=&gt;&quot;index&quot;, :controller=&gt;&quot;categories&quot;}
                  formatted_categories GET    /categories.:format                                             {:action=&gt;&quot;index&quot;, :controller=&gt;&quot;categories&quot;}
                                       POST   /categories                                                     {:action=&gt;&quot;create&quot;, :controller=&gt;&quot;categories&quot;}
@@ -105,6 +108,10 @@
                   formatted_new_photo GET    /photos/new.:format                                             {:action=&gt;&quot;new&quot;, :controller=&gt;&quot;photos&quot;}
                            edit_photo GET    /photos/:id/edit                                                {:action=&gt;&quot;edit&quot;, :controller=&gt;&quot;photos&quot;}
                  formatted_edit_photo GET    /photos/:id/edit.:format                                        {:action=&gt;&quot;edit&quot;, :controller=&gt;&quot;photos&quot;}
+                    set_primary_photo PUT    /photos/:id/set_primary                                         {:action=&gt;&quot;set_primary&quot;, :controller=&gt;&quot;photos&quot;}
+          formatted_set_primary_photo PUT    /photos/:id/set_primary.:format                                 {:action=&gt;&quot;set_primary&quot;, :controller=&gt;&quot;photos&quot;}
+                     set_avatar_photo PUT    /photos/:id/set_avatar                                          {:action=&gt;&quot;set_avatar&quot;, :controller=&gt;&quot;photos&quot;}
+           formatted_set_avatar_photo PUT    /photos/:id/set_avatar.:format                                  {:action=&gt;&quot;set_avatar&quot;, :controller=&gt;&quot;photos&quot;}
                                 photo GET    /photos/:id                                                     {:action=&gt;&quot;show&quot;, :controller=&gt;&quot;photos&quot;}
                       formatted_photo GET    /photos/:id.:format                                             {:action=&gt;&quot;show&quot;, :controller=&gt;&quot;photos&quot;}
                                       PUT    /photos/:id                                                     {:action=&gt;&quot;update&quot;, :controller=&gt;&quot;photos&quot;}
@@ -123,22 +130,34 @@
                                       PUT    /session.:format                                                {:action=&gt;&quot;update&quot;, :controller=&gt;&quot;sessions&quot;}
                                       DELETE /session                                                        {:action=&gt;&quot;destroy&quot;, :controller=&gt;&quot;sessions&quot;}
                                       DELETE /session.:format                                                {:action=&gt;&quot;destroy&quot;, :controller=&gt;&quot;sessions&quot;}
-                       trash_messages GET    /messages/trash                                                 {:action=&gt;&quot;trash&quot;, :controller=&gt;&quot;messages&quot;}
-             formatted_trash_messages GET    /messages/trash.:format                                         {:action=&gt;&quot;trash&quot;, :controller=&gt;&quot;messages&quot;}
+                                      POST   /galleries                                                      {:action=&gt;&quot;create&quot;, :controller=&gt;&quot;galleries&quot;}
+                                      POST   /galleries.:format                                              {:action=&gt;&quot;create&quot;, :controller=&gt;&quot;galleries&quot;}
+                        new_galleries GET    /galleries/new                                                  {:action=&gt;&quot;new&quot;, :controller=&gt;&quot;galleries&quot;}
+              formatted_new_galleries GET    /galleries/new.:format                                          {:action=&gt;&quot;new&quot;, :controller=&gt;&quot;galleries&quot;}
+                       edit_galleries GET    /galleries/edit                                                 {:action=&gt;&quot;edit&quot;, :controller=&gt;&quot;galleries&quot;}
+             formatted_edit_galleries GET    /galleries/edit.:format                                         {:action=&gt;&quot;edit&quot;, :controller=&gt;&quot;galleries&quot;}
+                                      GET    /galleries                                                      {:action=&gt;&quot;show&quot;, :controller=&gt;&quot;galleries&quot;}
+                                      GET    /galleries.:format                                              {:action=&gt;&quot;show&quot;, :controller=&gt;&quot;galleries&quot;}
+                                      PUT    /galleries                                                      {:action=&gt;&quot;update&quot;, :controller=&gt;&quot;galleries&quot;}
+                                      PUT    /galleries.:format                                              {:action=&gt;&quot;update&quot;, :controller=&gt;&quot;galleries&quot;}
+                                      DELETE /galleries                                                      {:action=&gt;&quot;destroy&quot;, :controller=&gt;&quot;galleries&quot;}
+                                      DELETE /galleries.:format                                              {:action=&gt;&quot;destroy&quot;, :controller=&gt;&quot;galleries&quot;}
                         sent_messages GET    /messages/sent                                                  {:action=&gt;&quot;sent&quot;, :controller=&gt;&quot;messages&quot;}
               formatted_sent_messages GET    /messages/sent.:format                                          {:action=&gt;&quot;sent&quot;, :controller=&gt;&quot;messages&quot;}
+                       trash_messages GET    /messages/trash                                                 {:action=&gt;&quot;trash&quot;, :controller=&gt;&quot;messages&quot;}
+             formatted_trash_messages GET    /messages/trash.:format                                         {:action=&gt;&quot;trash&quot;, :controller=&gt;&quot;messages&quot;}
                              messages GET    /messages                                                       {:action=&gt;&quot;index&quot;, :controller=&gt;&quot;messages&quot;}
                    formatted_messages GET    /messages.:format                                               {:action=&gt;&quot;index&quot;, :controller=&gt;&quot;messages&quot;}
                                       POST   /messages                                                       {:action=&gt;&quot;create&quot;, :controller=&gt;&quot;messages&quot;}
                                       POST   /messages.:format                                               {:action=&gt;&quot;create&quot;, :controller=&gt;&quot;messages&quot;}
                           new_message GET    /messages/new                                                   {:action=&gt;&quot;new&quot;, :controller=&gt;&quot;messages&quot;}
                 formatted_new_message GET    /messages/new.:format                                           {:action=&gt;&quot;new&quot;, :controller=&gt;&quot;messages&quot;}
-                    undestroy_message PUT    /messages/:id/undestroy                                         {:action=&gt;&quot;undestroy&quot;, :controller=&gt;&quot;messages&quot;}
-          formatted_undestroy_message PUT    /messages/:id/undestroy.:format                                 {:action=&gt;&quot;undestroy&quot;, :controller=&gt;&quot;messages&quot;}
                          edit_message GET    /messages/:id/edit                                              {:action=&gt;&quot;edit&quot;, :controller=&gt;&quot;messages&quot;}
                formatted_edit_message GET    /messages/:id/edit.:format                                      {:action=&gt;&quot;edit&quot;, :controller=&gt;&quot;messages&quot;}
                         reply_message GET    /messages/:id/reply                                             {:action=&gt;&quot;reply&quot;, :controller=&gt;&quot;messages&quot;}
               formatted_reply_message GET    /messages/:id/reply.:format                                     {:action=&gt;&quot;reply&quot;, :controller=&gt;&quot;messages&quot;}
+                    undestroy_message PUT    /messages/:id/undestroy                                         {:action=&gt;&quot;undestroy&quot;, :controller=&gt;&quot;messages&quot;}
+          formatted_undestroy_message PUT    /messages/:id/undestroy.:format                                 {:action=&gt;&quot;undestroy&quot;, :controller=&gt;&quot;messages&quot;}
                               message GET    /messages/:id                                                   {:action=&gt;&quot;show&quot;, :controller=&gt;&quot;messages&quot;}
                     formatted_message GET    /messages/:id.:format                                           {:action=&gt;&quot;show&quot;, :controller=&gt;&quot;messages&quot;}
                                       PUT    /messages/:id                                                   {:action=&gt;&quot;update&quot;, :controller=&gt;&quot;messages&quot;}
@@ -191,20 +210,20 @@
                                       PUT    /people/:person_id/messages/:id.:format                         {:action=&gt;&quot;update&quot;, :controller=&gt;&quot;messages&quot;}
                                       DELETE /people/:person_id/messages/:id                                 {:action=&gt;&quot;destroy&quot;, :controller=&gt;&quot;messages&quot;}
                                       DELETE /people/:person_id/messages/:id.:format                         {:action=&gt;&quot;destroy&quot;, :controller=&gt;&quot;messages&quot;}
-                        person_photos GET    /people/:person_id/photos                                       {:action=&gt;&quot;index&quot;, :controller=&gt;&quot;photos&quot;}
-              formatted_person_photos GET    /people/:person_id/photos.:format                               {:action=&gt;&quot;index&quot;, :controller=&gt;&quot;photos&quot;}
-                                      POST   /people/:person_id/photos                                       {:action=&gt;&quot;create&quot;, :controller=&gt;&quot;photos&quot;}
-                                      POST   /people/:person_id/photos.:format                               {:action=&gt;&quot;create&quot;, :controller=&gt;&quot;photos&quot;}
-                     new_person_photo GET    /people/:person_id/photos/new                                   {:action=&gt;&quot;new&quot;, :controller=&gt;&quot;photos&quot;}
-           formatted_new_person_photo GET    /people/:person_id/photos/new.:format                           {:action=&gt;&quot;new&quot;, :controller=&gt;&quot;photos&quot;}
-                    edit_person_photo GET    /people/:person_id/photos/:id/edit                              {:action=&gt;&quot;edit&quot;, :controller=&gt;&quot;photos&quot;}
-          formatted_edit_person_photo GET    /people/:person_id/photos/:id/edit.:format                      {:action=&gt;&quot;edit&quot;, :controller=&gt;&quot;photos&quot;}
-                         person_photo GET    /people/:person_id/photos/:id                                   {:action=&gt;&quot;show&quot;, :controller=&gt;&quot;photos&quot;}
-               formatted_person_photo GET    /people/:person_id/photos/:id.:format                           {:action=&gt;&quot;show&quot;, :controller=&gt;&quot;photos&quot;}
-                                      PUT    /people/:person_id/photos/:id                                   {:action=&gt;&quot;update&quot;, :controller=&gt;&quot;photos&quot;}
-                                      PUT    /people/:person_id/photos/:id.:format                           {:action=&gt;&quot;update&quot;, :controller=&gt;&quot;photos&quot;}
-                                      DELETE /people/:person_id/photos/:id                                   {:action=&gt;&quot;destroy&quot;, :controller=&gt;&quot;photos&quot;}
-                                      DELETE /people/:person_id/photos/:id.:format                           {:action=&gt;&quot;destroy&quot;, :controller=&gt;&quot;photos&quot;}
+                     person_galleries GET    /people/:person_id/galleries                                    {:action=&gt;&quot;index&quot;, :controller=&gt;&quot;galleries&quot;}
+           formatted_person_galleries GET    /people/:person_id/galleries.:format                            {:action=&gt;&quot;index&quot;, :controller=&gt;&quot;galleries&quot;}
+                                      POST   /people/:person_id/galleries                                    {:action=&gt;&quot;create&quot;, :controller=&gt;&quot;galleries&quot;}
+                                      POST   /people/:person_id/galleries.:format                            {:action=&gt;&quot;create&quot;, :controller=&gt;&quot;galleries&quot;}
+                   new_person_gallery GET    /people/:person_id/galleries/new                                {:action=&gt;&quot;new&quot;, :controller=&gt;&quot;galleries&quot;}
+         formatted_new_person_gallery GET    /people/:person_id/galleries/new.:format                        {:action=&gt;&quot;new&quot;, :controller=&gt;&quot;galleries&quot;}
+                  edit_person_gallery GET    /people/:person_id/galleries/:id/edit                           {:action=&gt;&quot;edit&quot;, :controller=&gt;&quot;galleries&quot;}
+        formatted_edit_person_gallery GET    /people/:person_id/galleries/:id/edit.:format                   {:action=&gt;&quot;edit&quot;, :controller=&gt;&quot;galleries&quot;}
+                       person_gallery GET    /people/:person_id/galleries/:id                                {:action=&gt;&quot;show&quot;, :controller=&gt;&quot;galleries&quot;}
+             formatted_person_gallery GET    /people/:person_id/galleries/:id.:format                        {:action=&gt;&quot;show&quot;, :controller=&gt;&quot;galleries&quot;}
+                                      PUT    /people/:person_id/galleries/:id                                {:action=&gt;&quot;update&quot;, :controller=&gt;&quot;galleries&quot;}
+                                      PUT    /people/:person_id/galleries/:id.:format                        {:action=&gt;&quot;update&quot;, :controller=&gt;&quot;galleries&quot;}
+                                      DELETE /people/:person_id/galleries/:id                                {:action=&gt;&quot;destroy&quot;, :controller=&gt;&quot;galleries&quot;}
+                                      DELETE /people/:person_id/galleries/:id.:format                        {:action=&gt;&quot;destroy&quot;, :controller=&gt;&quot;galleries&quot;}
                    person_connections GET    /people/:person_id/connections                                  {:action=&gt;&quot;index&quot;, :controller=&gt;&quot;connections&quot;}
          formatted_person_connections GET    /people/:person_id/connections.:format                          {:action=&gt;&quot;index&quot;, :controller=&gt;&quot;connections&quot;}
                                       POST   /people/:person_id/connections                                  {:action=&gt;&quot;create&quot;, :controller=&gt;&quot;connections&quot;}
@@ -233,6 +252,34 @@
                                       PUT    /people/:person_id/comments/:id.:format                         {:action=&gt;&quot;update&quot;, :controller=&gt;&quot;comments&quot;}
                                       DELETE /people/:person_id/comments/:id                                 {:action=&gt;&quot;destroy&quot;, :controller=&gt;&quot;comments&quot;}
                                       DELETE /people/:person_id/comments/:id.:format                         {:action=&gt;&quot;destroy&quot;, :controller=&gt;&quot;comments&quot;}
+                            galleries GET    /galleries                                                      {:action=&gt;&quot;index&quot;, :controller=&gt;&quot;galleries&quot;}
+                  formatted_galleries GET    /galleries.:format                                              {:action=&gt;&quot;index&quot;, :controller=&gt;&quot;galleries&quot;}
+                                      POST   /galleries                                                      {:action=&gt;&quot;create&quot;, :controller=&gt;&quot;galleries&quot;}
+                                      POST   /galleries.:format                                              {:action=&gt;&quot;create&quot;, :controller=&gt;&quot;galleries&quot;}
+                          new_gallery GET    /galleries/new                                                  {:action=&gt;&quot;new&quot;, :controller=&gt;&quot;galleries&quot;}
+                formatted_new_gallery GET    /galleries/new.:format                                          {:action=&gt;&quot;new&quot;, :controller=&gt;&quot;galleries&quot;}
+                         edit_gallery GET    /galleries/:id/edit                                             {:action=&gt;&quot;edit&quot;, :controller=&gt;&quot;galleries&quot;}
+               formatted_edit_gallery GET    /galleries/:id/edit.:format                                     {:action=&gt;&quot;edit&quot;, :controller=&gt;&quot;galleries&quot;}
+                              gallery GET    /galleries/:id                                                  {:action=&gt;&quot;show&quot;, :controller=&gt;&quot;galleries&quot;}
+                    formatted_gallery GET    /galleries/:id.:format                                          {:action=&gt;&quot;show&quot;, :controller=&gt;&quot;galleries&quot;}
+                                      PUT    /galleries/:id                                                  {:action=&gt;&quot;update&quot;, :controller=&gt;&quot;galleries&quot;}
+                                      PUT    /galleries/:id.:format                                          {:action=&gt;&quot;update&quot;, :controller=&gt;&quot;galleries&quot;}
+                                      DELETE /galleries/:id                                                  {:action=&gt;&quot;destroy&quot;, :controller=&gt;&quot;galleries&quot;}
+                                      DELETE /galleries/:id.:format                                          {:action=&gt;&quot;destroy&quot;, :controller=&gt;&quot;galleries&quot;}
+                       gallery_photos GET    /galleries/:gallery_id/photos                                   {:action=&gt;&quot;index&quot;, :controller=&gt;&quot;photos&quot;}
+             formatted_gallery_photos GET    /galleries/:gallery_id/photos.:format                           {:action=&gt;&quot;index&quot;, :controller=&gt;&quot;photos&quot;}
+                                      POST   /galleries/:gallery_id/photos                                   {:action=&gt;&quot;create&quot;, :controller=&gt;&quot;photos&quot;}
+                                      POST   /galleries/:gallery_id/photos.:format                           {:action=&gt;&quot;create&quot;, :controller=&gt;&quot;photos&quot;}
+                    new_gallery_photo GET    /galleries/:gallery_id/photos/new                               {:action=&gt;&quot;new&quot;, :controller=&gt;&quot;photos&quot;}
+          formatted_new_gallery_photo GET    /galleries/:gallery_id/photos/new.:format                       {:action=&gt;&quot;new&quot;, :controller=&gt;&quot;photos&quot;}
+                   edit_gallery_photo GET    /galleries/:gallery_id/photos/:id/edit                          {:action=&gt;&quot;edit&quot;, :controller=&gt;&quot;photos&quot;}
+         formatted_edit_gallery_photo GET    /galleries/:gallery_id/photos/:id/edit.:format                  {:action=&gt;&quot;edit&quot;, :controller=&gt;&quot;photos&quot;}
+                        gallery_photo GET    /galleries/:gallery_id/photos/:id                               {:action=&gt;&quot;show&quot;, :controller=&gt;&quot;photos&quot;}
+              formatted_gallery_photo GET    /galleries/:gallery_id/photos/:id.:format                       {:action=&gt;&quot;show&quot;, :controller=&gt;&quot;photos&quot;}
+                                      PUT    /galleries/:gallery_id/photos/:id                               {:action=&gt;&quot;update&quot;, :controller=&gt;&quot;photos&quot;}
+                                      PUT    /galleries/:gallery_id/photos/:id.:format                       {:action=&gt;&quot;update&quot;, :controller=&gt;&quot;photos&quot;}
+                                      DELETE /galleries/:gallery_id/photos/:id                               {:action=&gt;&quot;destroy&quot;, :controller=&gt;&quot;photos&quot;}
+                                      DELETE /galleries/:gallery_id/photos/:id.:format                       {:action=&gt;&quot;destroy&quot;, :controller=&gt;&quot;photos&quot;}
                          admin_people GET    /admin/people                                                   {:action=&gt;&quot;index&quot;, :controller=&gt;&quot;admin/people&quot;}
                formatted_admin_people GET    /admin/people.:format                                           {:action=&gt;&quot;index&quot;, :controller=&gt;&quot;admin/people&quot;}
                                       POST   /admin/people                                                   {:action=&gt;&quot;create&quot;, :controller=&gt;&quot;admin/people&quot;}
@@ -373,22 +420,6 @@ formatted_edit_admin_forum_topic_post GET    /admin/forums/:forum_id/topics/:top
                                       PUT    /forums/:forum_id/topics/:id.:format                            {:action=&gt;&quot;update&quot;, :controller=&gt;&quot;topics&quot;}
                                       DELETE /forums/:forum_id/topics/:id                                    {:action=&gt;&quot;destroy&quot;, :controller=&gt;&quot;topics&quot;}
                                       DELETE /forums/:forum_id/topics/:id.:format                            {:action=&gt;&quot;destroy&quot;, :controller=&gt;&quot;topics&quot;}
-                                      GET    /forums/:forum_id/topics/:topic_id/posts                        {:action=&gt;&quot;index&quot;, :controller=&gt;&quot;posts&quot;}
-                                      GET    /forums/:forum_id/topics/:topic_id/posts.:format                {:action=&gt;&quot;index&quot;, :controller=&gt;&quot;posts&quot;}
-                                      POST   /forums/:forum_id/topics/:topic_id/posts                        {:action=&gt;&quot;create&quot;, :controller=&gt;&quot;posts&quot;}
-                                      POST   /forums/:forum_id/topics/:topic_id/posts.:format                {:action=&gt;&quot;create&quot;, :controller=&gt;&quot;posts&quot;}
-                                      GET    /forums/:forum_id/topics/:topic_id/posts/new                    {:action=&gt;&quot;new&quot;, :controller=&gt;&quot;posts&quot;}
-                                      GET    /forums/:forum_id/topics/:topic_id/posts/new.:format            {:action=&gt;&quot;new&quot;, :controller=&gt;&quot;posts&quot;}
-                                      GET    /forums/:forum_id/topics/:topic_id/posts/:id/edit               {:action=&gt;&quot;edit&quot;, :controller=&gt;&quot;posts&quot;}
-                                      GET    /forums/:forum_id/topics/:topic_id/posts/:id/edit.:format       {:action=&gt;&quot;edit&quot;, :controller=&gt;&quot;posts&quot;}
-                                      GET    /forums/:forum_id/topics/:topic_id/posts/:id                    {:action=&gt;&quot;show&quot;, :controller=&gt;&quot;posts&quot;}
-                                      GET    /forums/:forum_id/topics/:topic_id/posts/:id.:format            {:action=&gt;&quot;show&quot;, :controller=&gt;&quot;posts&quot;}
-                                      PUT    /forums/:forum_id/topics/:topic_id/posts/:id                    {:action=&gt;&quot;update&quot;, :controller=&gt;&quot;posts&quot;}
-                                      PUT    /forums/:forum_id/topics/:topic_id/posts/:id.:format            {:action=&gt;&quot;update&quot;, :controller=&gt;&quot;posts&quot;}
-                                      DELETE /forums/:forum_id/topics/:topic_id/posts/:id                    {:action=&gt;&quot;destroy&quot;, :controller=&gt;&quot;posts&quot;}
-                                      DELETE /forums/:forum_id/topics/:topic_id/posts/:id.:format            {:action=&gt;&quot;destroy&quot;, :controller=&gt;&quot;posts&quot;}
-               atom_forum_topic_posts GET    /forums/:forum_id/topics/:topic_id/posts/atom                   {:action=&gt;&quot;atom&quot;, :controller=&gt;&quot;posts&quot;}
-     formatted_atom_forum_topic_posts GET    /forums/:forum_id/topics/:topic_id/posts/atom.:format           {:action=&gt;&quot;atom&quot;, :controller=&gt;&quot;posts&quot;}
                     forum_topic_posts GET    /forums/:forum_id/topics/:topic_id/posts                        {:action=&gt;&quot;index&quot;, :controller=&gt;&quot;posts&quot;}
           formatted_forum_topic_posts GET    /forums/:forum_id/topics/:topic_id/posts.:format                {:action=&gt;&quot;index&quot;, :controller=&gt;&quot;posts&quot;}
                                       POST   /forums/:forum_id/topics/:topic_id/posts                        {:action=&gt;&quot;create&quot;, :controller=&gt;&quot;posts&quot;}</diff>
      <filename>routes.txt</filename>
    </modified>
  </modified>
  <removed type="array">
    <removed>
      <filename>app/views/galleries/_gallery.html.erb</filename>
    </removed>
  </removed>
  <parents type="array">
    <parent>
      <id>7fafac8299d6eda6abb0737dbab8aaed74065541</id>
    </parent>
  </parents>
  <author>
    <name>blazar</name>
    <email>blazar+git@gmail.com</email>
  </author>
  <url>http://github.com/yuki/insoshi/commit/313c98a6d88e1a4be36626574b01dde543aa4209</url>
  <id>313c98a6d88e1a4be36626574b01dde543aa4209</id>
  <committed-date>2008-06-29T21:36:17-07:00</committed-date>
  <authored-date>2008-06-29T21:36:17-07:00</authored-date>
  <message>gallery and photo work</message>
  <tree>1cccdbdd47330e8f04b619d76bffd9580edb48b6</tree>
  <committer>
    <name>blazar</name>
    <email>blazar+git@gmail.com</email>
  </committer>
</commit>
