<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array"/>
  <modified type="array">
    <modified>
      <diff>@@ -20,6 +20,7 @@ db/schema.sql
 db/*.sqlite3*
 config/database.yml
 public/photos/*
+public/robots.txt
 public/thumbnails
 uuid.state
 nbproject*
@@ -38,3 +39,4 @@ config/ultrasphinx/*.conf
 configure*.sh
 db/backup
 db/backup/*
+public/robots.txt</diff>
      <filename>.gitignore</filename>
    </modified>
    <modified>
      <diff>@@ -15,7 +15,7 @@ class EventAttendee &lt; ActiveRecord::Base
   belongs_to :event, :counter_cache =&gt; true
   validates_uniqueness_of :person_id, :scope =&gt; :event_id
 
-  after_create :log_activity
+  # after_create :log_activity
 
   def log_activity
     add_activities(:item =&gt; self, :person =&gt; self.person)</diff>
      <filename>app/models/event_attendee.rb</filename>
    </modified>
    <modified>
      <diff>@@ -27,7 +27,7 @@ class ForumPost &lt; Post
   validates_presence_of :body, :person
   validates_length_of :body, :maximum =&gt; 5000
   
-  after_create :log_activity
+  # after_create :log_activity
     
   private
   </diff>
      <filename>app/models/forum_post.rb</filename>
    </modified>
    <modified>
      <diff>@@ -1,12 +1,14 @@
 &lt;li&gt;
-  &lt;a class=&quot;categoryMenuItem&quot; href=&quot;#&lt;%= category_counter + 1  %&gt;&quot; title=&quot;&quot; name=&quot;&lt;%= category_counter + 1 %&gt;&quot;&gt;&lt;%= category.name %&gt; &lt;span class='meta'&gt;&lt;%= &quot;(#{category.num_requests})&quot; unless category.num_requests==0 %&gt;&lt;/span&gt;&lt;/a&gt; 
+  &lt;%= link_to category.name, category, {:class =&gt; &quot;categoryMenuItem&quot; } %&gt;
+  &lt;!-- &lt;a class=&quot;categoryMenuItem&quot; href=&quot;#&lt;%= category_counter + 1  %&gt;&quot; title=&quot;&quot; name=&quot;&lt;%= category_counter + 1 %&gt;&quot;&gt; --&gt;
+    &lt;!-- &lt;%= category.name %&gt; --&gt; &lt;span class='meta'&gt;&lt;%= &quot;(#{category.num_requests})&quot; unless category.num_requests==0 %&gt;&lt;/span&gt;
+  &lt;!-- &lt;/a&gt;  --&gt;
   &lt;div&gt;
     &lt;ul&gt;
     &lt;% if category.children.empty? -%&gt;
-      &lt;li&gt;&lt;%= link_to 'General', category %&gt; &lt;span class=&quot;meta&quot;&gt;&lt;%= &quot;(#{category.num_requests})&quot; unless category.num_requests==0 %&gt;&lt;/span&gt;&lt;/li&gt;
-      &lt;br&gt;
+      &lt;!-- &lt;li&gt;&lt;%= link_to 'General', category %&gt; &lt;span class=&quot;meta&quot;&gt;&lt;%= &quot;(#{category.num_requests})&quot; unless category.num_requests==0 %&gt;&lt;/span&gt;&lt;/li&gt; --&gt;
     &lt;% else -%&gt;
-      &lt;li&gt;&lt;%= link_to 'General', category %&gt; &lt;span class=&quot;meta&quot;&gt;&lt;%= &quot;(#{category.num_requests})&quot; unless category.num_requests==0 %&gt;&lt;/span&gt;&lt;/li&gt;
+      &lt;!-- &lt;li&gt;&lt;%= link_to 'General', category %&gt; &lt;span class=&quot;meta&quot;&gt;&lt;%= &quot;(#{category.num_requests})&quot; unless category.num_requests==0 %&gt;&lt;/span&gt;&lt;/li&gt; --&gt;
       &lt;%= render :partial =&gt; 'subcategory', :collection =&gt; category.children %&gt;
     &lt;% end -%&gt;
     &lt;/ul&gt;</diff>
      <filename>app/views/categories/_category.html.erb</filename>
    </modified>
    <modified>
      <diff>@@ -1,22 +1,18 @@
-&lt;% content_for(:jquery_support) do %&gt;
-&lt;%= javascript_include_tag 'jquery-1.2.6' %&gt;
-&lt;%= javascript_include_tag 'jquery-ui-personalized-1.6rc2.min' %&gt;
-&lt;script type=&quot;text/javascript&quot;&gt;
-  jQuery.noConflict();
-&lt;/script&gt;
-&lt;%= javascript_include_tag 'cat_accordion' %&gt;
-&lt;% end -%&gt;  
-&lt;h2 style=&quot;margin-bottom:0px&quot;&gt;SkillBank Categories&lt;/h2&gt;
+
+
 &lt;%- if logged_in? and current_person.admin? -%&gt;
 	&lt;%= render :partial =&gt; 'shared/add_category_button' %&gt;
 &lt;%- end -%&gt;
-&lt;%- column_div :type =&gt; :primary do -%&gt;
+
+
+&lt;h2 style=&quot;margin-bottom:0px&quot;&gt;SkillBank Categories&lt;/h2&gt;
+
+&lt;div class=&quot;categorycol&quot;&gt;
 
 &lt;%- if @top_level_categories.empty? -%&gt;
     &lt;h3 class=&quot;blankslate&quot;&gt;No categories (yet!)&lt;/h3&gt;
 &lt;%- else -%&gt;
 	&lt;% halfish = ((@top_level_categories.length)/2).floor %&gt;
-   &lt;div style='position:relative;padding-top:5px;height:600px'&gt; 
    &lt;ul id=&quot;categoryMenu&quot; class=&quot;categories&quot;&gt;
       &lt;%= render :partial =&gt; 'category', :collection =&gt; @top_level_categories[0,halfish] %&gt;
   &lt;/ul&gt;
@@ -24,10 +20,10 @@
       &lt;%= render :partial =&gt; 'category', :collection =&gt; @top_level_categories[-halfish,halfish] %&gt;
     &lt;/ul&gt;
     &lt;br /&gt;
-   &lt;/div&gt;
 &lt;%- end -%&gt;
 
 
-&lt;%- end -%&gt;
 
 
+&lt;/div&gt;
+</diff>
      <filename>app/views/categories/index.html.erb</filename>
    </modified>
    <modified>
      <diff>@@ -1,6 +1,7 @@
+&lt;h1&gt;An open web-based network designed to foster community interaction&lt;br /&gt; through the exchange of a community currency&lt;span&gt;&lt;/h1&gt;
+
 
 &lt;%- column_div :type =&gt; :primary do -%&gt;
-&lt;h1&gt;An open web-based network designed to foster community interaction&lt;br /&gt; through the exchange of a community currency&lt;span&gt;&lt;/h1&gt;
 
 &lt;p style=&quot;text-align:center&quot;&gt;
 	&lt;img class=&quot;flow&quot; src=&quot;images/flowcircle.png&quot; /&gt;
@@ -53,6 +54,17 @@
 --&gt;
 
 
+
+
+
+&lt;%- end -%&gt;
+
+
+&lt;%- column_div :type =&gt; :secondary do -%&gt;
+
+ 
+
+
 &lt;h2&gt;login&lt;/h2&gt;
 
 &lt;% form_tag session_path do -%&gt;
@@ -84,17 +96,6 @@
 
 
 
-&lt;%- end -%&gt;
-
-
-&lt;%- column_div :type =&gt; :secondary do -%&gt;
-
- 
-
-
-
-
-
 
 
 &lt;% end %&gt;</diff>
      <filename>app/views/sessions/new.html.erb</filename>
    </modified>
    <modified>
      <diff>@@ -14,13 +14,13 @@ namespace :db do
     sh &quot;mysqldump -u #{db_config['username']} #{pass} #{db_config['database']} -Q --add-drop-table -O add-locks=FALSE -O lock-tables=FALSE  | gzip -c &gt; #{backup_file}&quot;     
     dir = Dir.new(backup_base)
     all_backups = dir.entries[2..-1].sort.reverse
-    puts &quot;Created backup: #{backup_file}&quot;
+    # puts &quot;Created backup: #{backup_file}&quot;
     max_backups = (ENV[&quot;MAX&quot;] || 20).to_i
     unwanted_backups = all_backups[max_backups..-1] || []
     for unwanted_backup in unwanted_backups
       FileUtils.rm_rf(File.join(backup_base, unwanted_backup))
-      puts &quot;deleted #{unwanted_backup}&quot; 
+      # puts &quot;deleted #{unwanted_backup}&quot; 
     end
-    puts &quot;Deleted #{unwanted_backups.length} backups, #{all_backups.length - unwanted_backups.length} backups available&quot; 
+    # puts &quot;Deleted #{unwanted_backups.length} backups, #{all_backups.length - unwanted_backups.length} backups available&quot; 
   end
 end</diff>
      <filename>lib/tasks/backup.rake</filename>
    </modified>
    <modified>
      <diff>@@ -435,9 +435,12 @@ ul.categories li.selected a
 }
 ul.categories a.categoryMenuItem, ul.categories li.selected a.selected
 {
-    text-decoration:none;
     color:#777;
 }
+a.categoryMenuItem:hover
+{
+  text-decoration:underline;
+}
 ul.categories li ul li
 {
     border:0px;
@@ -655,20 +658,19 @@ a.meta, .meta a
 {
 }
 
-
+.categorycol
+{
+  padding-top:20px;
+}
 #categoryMenu
 {
-    position:absolute;
-    top:20px;
-    left:10px;
-    width:390px;
+  float:left;
+  width:410px;
 }
 #categoryMenu2
 {
-    position:absolute;
-    top:20px;
-    width:390px;
-    left:420px;
+  float:left;
+    width:410px;
 }
 
 .blog h3, .blog h3 a, .blog h3 a:visited
@@ -924,11 +926,6 @@ body.home blockquote p
 
 
 
-body.login .col1
-{
-    width:auto;
-    float:none;
-}
 body.login h1
 {
     font-size:23px;</diff>
      <filename>public/stylesheets/skin.css</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>7eb82bfb057aed3f69599aeffb89983a58e17205</id>
    </parent>
  </parents>
  <author>
    <name>BinarySeed</name>
    <email>binaryseed@hardy2.(none)</email>
  </author>
  <url>http://github.com/binaryseed/oscurrency/commit/d093c282f45ad8a30139ee9fa634278f1a253076</url>
  <id>d093c282f45ad8a30139ee9fa634278f1a253076</id>
  <committed-date>2009-04-22T13:51:35-07:00</committed-date>
  <authored-date>2009-04-22T13:51:35-07:00</authored-date>
  <message>front page, categories mods</message>
  <tree>9585f01ac424809fefb955164c8f1ec93c4cfaa5</tree>
  <committer>
    <name>BinarySeed</name>
    <email>binaryseed@hardy2.(none)</email>
  </committer>
</commit>
