<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array"/>
  <modified type="array">
    <modified>
      <diff>@@ -20,7 +20,7 @@ class Forum &lt; ActiveRecord::Base
   belongs_to :last_post, :class_name =&gt; &quot;Post&quot;
   belongs_to :last_post_forum, :class_name =&gt; &quot;Forum&quot;
   
-  validates_presence_of :title
+  validates_presence_of :title, :description
     
   def to_s
     title</diff>
      <filename>app/models/forum.rb</filename>
    </modified>
    <modified>
      <diff>@@ -9,7 +9,7 @@
 #
 # It's strongly recommended to check this file into your version control system.
 
-ActiveRecord::Schema.define(:version =&gt; 20090916231649) do
+ActiveRecord::Schema.define(:version =&gt; 1) do
 
   create_table &quot;banned_ips&quot;, :force =&gt; true do |t|
     t.string   &quot;ip&quot;
@@ -65,11 +65,9 @@ ActiveRecord::Schema.define(:version =&gt; 20090916231649) do
     t.integer &quot;category_id&quot;
     t.boolean &quot;active&quot;,               :default =&gt; true
     t.boolean &quot;open&quot;,                 :default =&gt; true
-    t.integer &quot;old_id&quot;
   end
 
   add_index &quot;forums&quot;, [&quot;category_id&quot;], :name =&gt; &quot;index_forums_on_category_id&quot;
-  add_index &quot;forums&quot;, [&quot;old_id&quot;], :name =&gt; &quot;index_forums_on_old_id&quot;
   add_index &quot;forums&quot;, [&quot;open&quot;], :name =&gt; &quot;index_forums_on_open&quot;
   add_index &quot;forums&quot;, [&quot;parent_id&quot;], :name =&gt; &quot;index_forums_on_parent_id&quot;
   add_index &quot;forums&quot;, [&quot;posts_count&quot;], :name =&gt; &quot;index_forums_on_posts_count&quot;
@@ -191,22 +189,17 @@ ActiveRecord::Schema.define(:version =&gt; 20090916231649) do
     t.boolean  &quot;delta&quot;
     t.boolean  &quot;deleted&quot;,      :default =&gt; false
     t.integer  &quot;ip_id&quot;
-    t.integer  &quot;old_id&quot;
   end
 
   add_index &quot;posts&quot;, [&quot;id&quot;, &quot;topic_id&quot;], :name =&gt; &quot;index_posts_on_id_and_topic_id&quot;
   add_index &quot;posts&quot;, [&quot;ip_id&quot;], :name =&gt; &quot;index_posts_on_ip_id&quot;
-  add_index &quot;posts&quot;, [&quot;old_id&quot;], :name =&gt; &quot;index_posts_on_old_id&quot;
 
   create_table &quot;ranks&quot;, :force =&gt; true do |t|
     t.string  &quot;name&quot;
     t.integer &quot;posts_required&quot;
     t.boolean &quot;custom&quot;,         :default =&gt; false
-    t.integer &quot;old_id&quot;
   end
 
-  add_index &quot;ranks&quot;, [&quot;old_id&quot;], :name =&gt; &quot;index_ranks_on_old_id&quot;
-
   create_table &quot;read_topics&quot;, :force =&gt; true do |t|
     t.integer &quot;user_id&quot;
     t.integer &quot;topic_id&quot;
@@ -249,12 +242,10 @@ ActiveRecord::Schema.define(:version =&gt; 20090916231649) do
     t.integer  &quot;ip_id&quot;
     t.boolean  &quot;moved&quot;,        :default =&gt; false
     t.integer  &quot;moved_to_id&quot;
-    t.integer  &quot;old_id&quot;
   end
 
   add_index &quot;topics&quot;, [&quot;id&quot;, &quot;forum_id&quot;], :name =&gt; &quot;index_topics_on_id_and_forum_id&quot;
   add_index &quot;topics&quot;, [&quot;ip_id&quot;], :name =&gt; &quot;index_topics_on_ip_id&quot;
-  add_index &quot;topics&quot;, [&quot;old_id&quot;], :name =&gt; &quot;index_topics_on_old_id&quot;
 
   create_table &quot;user_levels&quot;, :id =&gt; false, :force =&gt; true do |t|
     t.string  &quot;name&quot;
@@ -296,13 +287,10 @@ ActiveRecord::Schema.define(:version =&gt; 20090916231649) do
     t.string   &quot;avatar_content_type&quot;
     t.integer  &quot;avatar_file_size&quot;
     t.string   &quot;identifier&quot;
-    t.integer  &quot;old_id&quot;
-    t.string   &quot;phpbb_crypted_password&quot;
   end
 
   add_index &quot;users&quot;, [&quot;id&quot;, &quot;user_level_id&quot;], :name =&gt; &quot;index_users_on_id_and_user_level_id&quot;
   add_index &quot;users&quot;, [&quot;login&quot;], :name =&gt; &quot;index_users_on_login&quot;
   add_index &quot;users&quot;, [&quot;login_time&quot;], :name =&gt; &quot;index_users_on_login_time&quot;
-  add_index &quot;users&quot;, [&quot;old_id&quot;], :name =&gt; &quot;index_users_on_old_id&quot;
 
 end</diff>
      <filename>db/schema.rb</filename>
    </modified>
    <modified>
      <diff>@@ -2,9 +2,6 @@ Feature: Forums
   In order to restrict people to the right forums
   Administrators
   want to ensure people are shown only the right forums
-
-  Background:
-    Given there is the usual setup
   
 Scenario: Administrators should be able to create new forums
   Given I am logged in as &quot;administrator&quot;</diff>
      <filename>features/admin_forums.feature</filename>
    </modified>
    <modified>
      <diff>@@ -2,11 +2,3 @@ Given /^I can see inactive forums$/ do
   @permission = @user.permissions.global
   @permission.update_attribute(:can_see_inactive_forums, true)
 end
-
-
-Given /^&quot;([^\&quot;]*)&quot;'s password is set to nil$/ do |login|
-
-  u = User.find_by_login(login) || User.make(login.to_sym)
-  u.crypted_password = nil
-  u.save(false).should be_true
-end</diff>
      <filename>features/step_definitions/users_steps.rb</filename>
    </modified>
    <modified>
      <diff>@@ -5,5 +5,5 @@ end
 
 Forum.blueprint(:public_forum) do
   title &quot;Public Forum&quot;
-  category { Category.find_by_name(&quot;Public Category&quot;) || Category.make(:public) }
+  category { Category.make(:public) }
 end</diff>
      <filename>features/support/blueprints/forums.rb</filename>
    </modified>
    <modified>
      <diff>@@ -7,11 +7,6 @@ User.blueprint do
   groups { Group.ensure(&quot;Registered Users&quot;) }
 end
 
-User.blueprint(:phpbb_user) do
-  old_id 2
-  login &quot;phpbb_user&quot;
-end
-
 
 User.blueprint(:anonymous) do
   group = Group.ensure(&quot;Anonymous&quot;)</diff>
      <filename>features/support/blueprints/users.rb</filename>
    </modified>
    <modified>
      <diff>@@ -24,10 +24,8 @@ plebian:
   #password is only_human
   salt: 8de4e91a969b7049ab1a53d57afbab578cc78021
   crypted_password: a561a12d86ed27a6c6adf52a327979fcf74c1f3c
-  phpbb_crypted_password: $H$9y6GYdfw18fI9zHpKFbfR3j026K2en.
   login_time: &lt;%= (Time.now - 5.minutes).to_s(:db) %&gt;
   permalink: plebian
-  old_id: 2
 
 banned_noob:
   id: 4</diff>
      <filename>spec/fixtures/users.yml</filename>
    </modified>
    <modified>
      <diff>@@ -56,8 +56,4 @@ describe User, &quot;with users&quot; do
     @plebian.online?.should be_true
   end
   
-  it &quot;should correctly auth using phpbb's method&quot; do
-    @plebian.phpbb_authenticated?(&quot;password&quot;).should be_true
-  end
-  
 end
\ No newline at end of file</diff>
      <filename>spec/models/user_spec.rb</filename>
    </modified>
  </modified>
  <removed type="array">
    <removed>
      <filename>PHPBB_CONVERSION_TODO</filename>
    </removed>
    <removed>
      <filename>app/models/phpbb/config.rb</filename>
    </removed>
    <removed>
      <filename>app/models/phpbb/connection.rb</filename>
    </removed>
    <removed>
      <filename>app/models/phpbb/forum.rb</filename>
    </removed>
    <removed>
      <filename>app/models/phpbb/post.rb</filename>
    </removed>
    <removed>
      <filename>app/models/phpbb/topic.rb</filename>
    </removed>
    <removed>
      <filename>app/models/phpbb/user.rb</filename>
    </removed>
    <removed>
      <filename>db/migrate/20090916070834_old_ids.rb</filename>
    </removed>
    <removed>
      <filename>db/migrate/20090916231649_add_phpbb_crypted_password_to_users.rb</filename>
    </removed>
    <removed>
      <filename>export/forums.yml</filename>
    </removed>
    <removed>
      <filename>export/posts.yml</filename>
    </removed>
    <removed>
      <filename>export/ranks.yml</filename>
    </removed>
    <removed>
      <filename>export/topics.yml</filename>
    </removed>
    <removed>
      <filename>export/users.yml</filename>
    </removed>
    <removed>
      <filename>features/admin_categories.feature</filename>
    </removed>
    <removed>
      <filename>features/phpbb_logging_in.feature</filename>
    </removed>
    <removed>
      <filename>lib/rboard/converter.rb</filename>
    </removed>
    <removed>
      <filename>lib/tasks/converter.rake</filename>
    </removed>
    <removed>
      <filename>rboard</filename>
    </removed>
    <removed>
      <filename>spec/converter_spec.rb</filename>
    </removed>
  </removed>
  <parents type="array">
    <parent>
      <id>c38c4affc49d0a6c83350ef713bc75c8f17167c0</id>
    </parent>
  </parents>
  <author>
    <name>Ryan Bigg</name>
    <email>radarlistener@gmail.com</email>
  </author>
  <url>http://github.com/radar/rboard/commit/f2d2cf997df732caaf7cad28ab75eea5622dc840</url>
  <id>f2d2cf997df732caaf7cad28ab75eea5622dc840</id>
  <committed-date>2009-09-29T13:20:54-07:00</committed-date>
  <authored-date>2009-09-29T13:20:54-07:00</authored-date>
  <message>Revert &quot;PHPBB Conversion work in progress... cucumber features are all failing, concerned.&quot;

This reverts commit c38c4affc49d0a6c83350ef713bc75c8f17167c0.</message>
  <tree>7b7981a39f48f5a439da8c5991a72a6cebd1cc6f</tree>
  <committer>
    <name>Ryan Bigg</name>
    <email>radarlistener@gmail.com</email>
  </committer>
</commit>
