<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array">
    <added>
      <filename>COPYING</filename>
    </added>
  </added>
  <modified type="array">
    <modified>
      <diff>@@ -0,0 +1 @@
+If you have questions about the license please email medwards@walledcity.ca or visit freelibrary.ca for more current contact info.</diff>
      <filename>README</filename>
    </modified>
    <modified>
      <diff>@@ -1,3 +1,20 @@
+# Copyright 2009 Michael Edwards, Brendan Taylor
+# This file is part of free-library-on-rails.
+# 
+# free-library-on-rails is free software: you can redistribute it
+# and/or modify it under the terms of the GNU Affero General Public
+# License as published by the Free Software Foundation, either
+# version 3 of the License, or (at your option) any later version.
+
+# free-library-on-rails is distributed in the hope that it will be
+# useful, but WITHOUT ANY WARRANTY; without even the implied
+# warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
+# See the GNU Affero General Public License for more details.
+# 
+# You should have received a copy of the GNU Affero General Public
+# License along with free-library-on-rails.
+# If not, see &lt;http://www.gnu.org/licenses/&gt;.
+
 class AccountController &lt; ApplicationController
 	# If you want &quot;remember me&quot; functionality, add this before_filter to Application Controller
 	before_filter :login_from_cookie</diff>
      <filename>app/controllers/account_controller.rb</filename>
    </modified>
    <modified>
      <diff>@@ -1,3 +1,20 @@
+# Copyright 2009 Michael Edwards, Brendan Taylor
+# This file is part of free-library-on-rails.
+# 
+# free-library-on-rails is free software: you can redistribute it
+# and/or modify it under the terms of the GNU Affero General Public
+# License as published by the Free Software Foundation, either
+# version 3 of the License, or (at your option) any later version.
+
+# free-library-on-rails is distributed in the hope that it will be
+# useful, but WITHOUT ANY WARRANTY; without even the implied
+# warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
+# See the GNU Affero General Public License for more details.
+# 
+# You should have received a copy of the GNU Affero General Public
+# License along with free-library-on-rails.
+# If not, see &lt;http://www.gnu.org/licenses/&gt;.
+
 # Filters added to this controller apply to all controllers in the application.
 # Likewise, all the methods added will be available for all controllers.
 </diff>
      <filename>app/controllers/application.rb</filename>
    </modified>
    <modified>
      <diff>@@ -1,3 +1,20 @@
+# Copyright 2009 Michael Edwards, Brendan Taylor
+# This file is part of free-library-on-rails.
+# 
+# free-library-on-rails is free software: you can redistribute it
+# and/or modify it under the terms of the GNU Affero General Public
+# License as published by the Free Software Foundation, either
+# version 3 of the License, or (at your option) any later version.
+
+# free-library-on-rails is distributed in the hope that it will be
+# useful, but WITHOUT ANY WARRANTY; without even the implied
+# warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
+# See the GNU Affero General Public License for more details.
+# 
+# You should have received a copy of the GNU Affero General Public
+# License along with free-library-on-rails.
+# If not, see &lt;http://www.gnu.org/licenses/&gt;.
+
 class BooksController &lt; ItemsController
 	def itemclass; Book end
 </diff>
      <filename>app/controllers/books_controller.rb</filename>
    </modified>
    <modified>
      <diff>@@ -1,3 +1,20 @@
+# Copyright 2009 Michael Edwards, Brendan Taylor
+# This file is part of free-library-on-rails.
+# 
+# free-library-on-rails is free software: you can redistribute it
+# and/or modify it under the terms of the GNU Affero General Public
+# License as published by the Free Software Foundation, either
+# version 3 of the License, or (at your option) any later version.
+
+# free-library-on-rails is distributed in the hope that it will be
+# useful, but WITHOUT ANY WARRANTY; without even the implied
+# warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
+# See the GNU Affero General Public License for more details.
+# 
+# You should have received a copy of the GNU Affero General Public
+# License along with free-library-on-rails.
+# If not, see &lt;http://www.gnu.org/licenses/&gt;.
+
 class ItemsController &lt; ApplicationController
 	before_filter :login_required, :only =&gt; [ :new, :create, :destroy, :edit, :update ]
 </diff>
      <filename>app/controllers/items_controller.rb</filename>
    </modified>
    <modified>
      <diff>@@ -1,3 +1,20 @@
+# Copyright 2009 Michael Edwards, Brendan Taylor
+# This file is part of free-library-on-rails.
+# 
+# free-library-on-rails is free software: you can redistribute it
+# and/or modify it under the terms of the GNU Affero General Public
+# License as published by the Free Software Foundation, either
+# version 3 of the License, or (at your option) any later version.
+
+# free-library-on-rails is distributed in the hope that it will be
+# useful, but WITHOUT ANY WARRANTY; without even the implied
+# warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
+# See the GNU Affero General Public License for more details.
+# 
+# You should have received a copy of the GNU Affero General Public
+# License along with free-library-on-rails.
+# If not, see &lt;http://www.gnu.org/licenses/&gt;.
+
 class LoansController &lt; ApplicationController
 	before_filter :login_required
 </diff>
      <filename>app/controllers/loans_controller.rb</filename>
    </modified>
    <modified>
      <diff>@@ -1,3 +1,20 @@
+# Copyright 2009 Michael Edwards, Brendan Taylor
+# This file is part of free-library-on-rails.
+# 
+# free-library-on-rails is free software: you can redistribute it
+# and/or modify it under the terms of the GNU Affero General Public
+# License as published by the Free Software Foundation, either
+# version 3 of the License, or (at your option) any later version.
+
+# free-library-on-rails is distributed in the hope that it will be
+# useful, but WITHOUT ANY WARRANTY; without even the implied
+# warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
+# See the GNU Affero General Public License for more details.
+# 
+# You should have received a copy of the GNU Affero General Public
+# License along with free-library-on-rails.
+# If not, see &lt;http://www.gnu.org/licenses/&gt;.
+
 class TagsController &lt; ApplicationController
 	def index
 		@tags = Tag.only_used.paginate(:page =&gt; params[:page])</diff>
      <filename>app/controllers/tags_controller.rb</filename>
    </modified>
    <modified>
      <diff>@@ -1,3 +1,20 @@
+# Copyright 2009 Michael Edwards, Brendan Taylor
+# This file is part of free-library-on-rails.
+# 
+# free-library-on-rails is free software: you can redistribute it
+# and/or modify it under the terms of the GNU Affero General Public
+# License as published by the Free Software Foundation, either
+# version 3 of the License, or (at your option) any later version.
+
+# free-library-on-rails is distributed in the hope that it will be
+# useful, but WITHOUT ANY WARRANTY; without even the implied
+# warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
+# See the GNU Affero General Public License for more details.
+# 
+# You should have received a copy of the GNU Affero General Public
+# License along with free-library-on-rails.
+# If not, see &lt;http://www.gnu.org/licenses/&gt;.
+
 class UsersController &lt; ApplicationController
 	def show
 		@user = User.find_by_login(params[:id])</diff>
      <filename>app/controllers/users_controller.rb</filename>
    </modified>
    <modified>
      <diff>@@ -1,3 +1,20 @@
+# Copyright 2009 Michael Edwards, Brendan Taylor
+# This file is part of free-library-on-rails.
+# 
+# free-library-on-rails is free software: you can redistribute it
+# and/or modify it under the terms of the GNU Affero General Public
+# License as published by the Free Software Foundation, either
+# version 3 of the License, or (at your option) any later version.
+
+# free-library-on-rails is distributed in the hope that it will be
+# useful, but WITHOUT ANY WARRANTY; without even the implied
+# warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
+# See the GNU Affero General Public License for more details.
+# 
+# You should have received a copy of the GNU Affero General Public
+# License along with free-library-on-rails.
+# If not, see &lt;http://www.gnu.org/licenses/&gt;.
+
 class VideosController &lt; ItemsController
 	def itemclass; Video end
 end</diff>
      <filename>app/controllers/videos_controller.rb</filename>
    </modified>
    <modified>
      <diff>@@ -1,3 +1,20 @@
+# Copyright 2009 Michael Edwards, Brendan Taylor
+# This file is part of free-library-on-rails.
+# 
+# free-library-on-rails is free software: you can redistribute it
+# and/or modify it under the terms of the GNU Affero General Public
+# License as published by the Free Software Foundation, either
+# version 3 of the License, or (at your option) any later version.
+
+# free-library-on-rails is distributed in the hope that it will be
+# useful, but WITHOUT ANY WARRANTY; without even the implied
+# warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
+# See the GNU Affero General Public License for more details.
+# 
+# You should have received a copy of the GNU Affero General Public
+# License along with free-library-on-rails.
+# If not, see &lt;http://www.gnu.org/licenses/&gt;.
+
 class WelcomeController &lt; ApplicationController
 	def index; end
     def about; end</diff>
      <filename>app/controllers/welcome_controller.rb</filename>
    </modified>
    <modified>
      <diff>@@ -1,2 +1,19 @@
+# Copyright 2009 Michael Edwards, Brendan Taylor
+# This file is part of free-library-on-rails.
+# 
+# free-library-on-rails is free software: you can redistribute it
+# and/or modify it under the terms of the GNU Affero General Public
+# License as published by the Free Software Foundation, either
+# version 3 of the License, or (at your option) any later version.
+
+# free-library-on-rails is distributed in the hope that it will be
+# useful, but WITHOUT ANY WARRANTY; without even the implied
+# warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
+# See the GNU Affero General Public License for more details.
+# 
+# You should have received a copy of the GNU Affero General Public
+# License along with free-library-on-rails.
+# If not, see &lt;http://www.gnu.org/licenses/&gt;.
+
 module AccountHelper
-end
\ No newline at end of file
+end</diff>
      <filename>app/helpers/account_helper.rb</filename>
    </modified>
    <modified>
      <diff>@@ -1,3 +1,20 @@
+# Copyright 2009 Michael Edwards, Brendan Taylor
+# This file is part of free-library-on-rails.
+# 
+# free-library-on-rails is free software: you can redistribute it
+# and/or modify it under the terms of the GNU Affero General Public
+# License as published by the Free Software Foundation, either
+# version 3 of the License, or (at your option) any later version.
+
+# free-library-on-rails is distributed in the hope that it will be
+# useful, but WITHOUT ANY WARRANTY; without even the implied
+# warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
+# See the GNU Affero General Public License for more details.
+# 
+# You should have received a copy of the GNU Affero General Public
+# License along with free-library-on-rails.
+# If not, see &lt;http://www.gnu.org/licenses/&gt;.
+
 # Methods added to this helper will be available to all templates in the application.
 module ApplicationHelper
 	def clean(input)</diff>
      <filename>app/helpers/application_helper.rb</filename>
    </modified>
    <modified>
      <diff>@@ -1,3 +1,20 @@
+# Copyright 2009 Michael Edwards, Brendan Taylor
+# This file is part of free-library-on-rails.
+# 
+# free-library-on-rails is free software: you can redistribute it
+# and/or modify it under the terms of the GNU Affero General Public
+# License as published by the Free Software Foundation, either
+# version 3 of the License, or (at your option) any later version.
+
+# free-library-on-rails is distributed in the hope that it will be
+# useful, but WITHOUT ANY WARRANTY; without even the implied
+# warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
+# See the GNU Affero General Public License for more details.
+# 
+# You should have received a copy of the GNU Affero General Public
+# License along with free-library-on-rails.
+# If not, see &lt;http://www.gnu.org/licenses/&gt;.
+
 require 'open-uri'
 require 'rexml/document'
 </diff>
      <filename>app/models/book.rb</filename>
    </modified>
    <modified>
      <diff>@@ -1,3 +1,20 @@
+# Copyright 2009 Michael Edwards, Brendan Taylor
+# This file is part of free-library-on-rails.
+# 
+# free-library-on-rails is free software: you can redistribute it
+# and/or modify it under the terms of the GNU Affero General Public
+# License as published by the Free Software Foundation, either
+# version 3 of the License, or (at your option) any later version.
+
+# free-library-on-rails is distributed in the hope that it will be
+# useful, but WITHOUT ANY WARRANTY; without even the implied
+# warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
+# See the GNU Affero General Public License for more details.
+# 
+# You should have received a copy of the GNU Affero General Public
+# License along with free-library-on-rails.
+# If not, see &lt;http://www.gnu.org/licenses/&gt;.
+
 class Item &lt; ActiveRecord::Base
 	belongs_to :owner, :class_name =&gt; 'User'
 	belongs_to :current_loan, :class_name =&gt; 'Loan'</diff>
      <filename>app/models/item.rb</filename>
    </modified>
    <modified>
      <diff>@@ -1,3 +1,20 @@
+# Copyright 2009 Michael Edwards, Brendan Taylor
+# This file is part of free-library-on-rails.
+# 
+# free-library-on-rails is free software: you can redistribute it
+# and/or modify it under the terms of the GNU Affero General Public
+# License as published by the Free Software Foundation, either
+# version 3 of the License, or (at your option) any later version.
+
+# free-library-on-rails is distributed in the hope that it will be
+# useful, but WITHOUT ANY WARRANTY; without even the implied
+# warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
+# See the GNU Affero General Public License for more details.
+# 
+# You should have received a copy of the GNU Affero General Public
+# License along with free-library-on-rails.
+# If not, see &lt;http://www.gnu.org/licenses/&gt;.
+
 class ItemTagging &lt; ActiveRecord::Base
 	belongs_to :thing, :class_name =&gt; 'Item'
 	belongs_to :tag</diff>
      <filename>app/models/item_tagging.rb</filename>
    </modified>
    <modified>
      <diff>@@ -1,3 +1,20 @@
+# Copyright 2009 Michael Edwards, Brendan Taylor
+# This file is part of free-library-on-rails.
+# 
+# free-library-on-rails is free software: you can redistribute it
+# and/or modify it under the terms of the GNU Affero General Public
+# License as published by the Free Software Foundation, either
+# version 3 of the License, or (at your option) any later version.
+
+# free-library-on-rails is distributed in the hope that it will be
+# useful, but WITHOUT ANY WARRANTY; without even the implied
+# warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
+# See the GNU Affero General Public License for more details.
+# 
+# You should have received a copy of the GNU Affero General Public
+# License along with free-library-on-rails.
+# If not, see &lt;http://www.gnu.org/licenses/&gt;.
+
 # the 'status' field holds a string that is one of:
 #		- requested
 #		- approved		&lt;- this is not used at the moment, it goes straight to lent</diff>
      <filename>app/models/loan.rb</filename>
    </modified>
    <modified>
      <diff>@@ -1,3 +1,20 @@
+# Copyright 2009 Michael Edwards, Brendan Taylor
+# This file is part of free-library-on-rails.
+# 
+# free-library-on-rails is free software: you can redistribute it
+# and/or modify it under the terms of the GNU Affero General Public
+# License as published by the Free Software Foundation, either
+# version 3 of the License, or (at your option) any later version.
+
+# free-library-on-rails is distributed in the hope that it will be
+# useful, but WITHOUT ANY WARRANTY; without even the implied
+# warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
+# See the GNU Affero General Public License for more details.
+# 
+# You should have received a copy of the GNU Affero General Public
+# License along with free-library-on-rails.
+# If not, see &lt;http://www.gnu.org/licenses/&gt;.
+
 class LoanNotifier &lt; ActionMailer::Base
 	def request_notification(loan)
 		setup_email(loan.item.owner)</diff>
      <filename>app/models/loan_notifier.rb</filename>
    </modified>
    <modified>
      <diff>@@ -1,3 +1,20 @@
+# Copyright 2009 Michael Edwards, Brendan Taylor
+# This file is part of free-library-on-rails.
+# 
+# free-library-on-rails is free software: you can redistribute it
+# and/or modify it under the terms of the GNU Affero General Public
+# License as published by the Free Software Foundation, either
+# version 3 of the License, or (at your option) any later version.
+
+# free-library-on-rails is distributed in the hope that it will be
+# useful, but WITHOUT ANY WARRANTY; without even the implied
+# warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
+# See the GNU Affero General Public License for more details.
+# 
+# You should have received a copy of the GNU Affero General Public
+# License along with free-library-on-rails.
+# If not, see &lt;http://www.gnu.org/licenses/&gt;.
+
 class LoanObserver &lt; ActiveRecord::Observer
 	include SMSFu
 	def after_create(loan)</diff>
      <filename>app/models/loan_observer.rb</filename>
    </modified>
    <modified>
      <diff>@@ -1,3 +1,20 @@
+# Copyright 2009 Michael Edwards, Brendan Taylor
+# This file is part of free-library-on-rails.
+# 
+# free-library-on-rails is free software: you can redistribute it
+# and/or modify it under the terms of the GNU Affero General Public
+# License as published by the Free Software Foundation, either
+# version 3 of the License, or (at your option) any later version.
+
+# free-library-on-rails is distributed in the hope that it will be
+# useful, but WITHOUT ANY WARRANTY; without even the implied
+# warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
+# See the GNU Affero General Public License for more details.
+# 
+# You should have received a copy of the GNU Affero General Public
+# License along with free-library-on-rails.
+# If not, see &lt;http://www.gnu.org/licenses/&gt;.
+
 class Region &lt; ActiveRecord::Base
 	has_many :users
 	has_many :items, :through =&gt; :users, :source =&gt; :owned</diff>
      <filename>app/models/region.rb</filename>
    </modified>
    <modified>
      <diff>@@ -1,3 +1,20 @@
+# Copyright 2009 Michael Edwards, Brendan Taylor
+# This file is part of free-library-on-rails.
+# 
+# free-library-on-rails is free software: you can redistribute it
+# and/or modify it under the terms of the GNU Affero General Public
+# License as published by the Free Software Foundation, either
+# version 3 of the License, or (at your option) any later version.
+
+# free-library-on-rails is distributed in the hope that it will be
+# useful, but WITHOUT ANY WARRANTY; without even the implied
+# warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
+# See the GNU Affero General Public License for more details.
+# 
+# You should have received a copy of the GNU Affero General Public
+# License along with free-library-on-rails.
+# If not, see &lt;http://www.gnu.org/licenses/&gt;.
+
 class Tag &lt; ActiveRecord::Base
 	validates_uniqueness_of :name
 </diff>
      <filename>app/models/tag.rb</filename>
    </modified>
    <modified>
      <diff>@@ -1,3 +1,20 @@
+# Copyright 2009 Michael Edwards, Brendan Taylor
+# This file is part of free-library-on-rails.
+# 
+# free-library-on-rails is free software: you can redistribute it
+# and/or modify it under the terms of the GNU Affero General Public
+# License as published by the Free Software Foundation, either
+# version 3 of the License, or (at your option) any later version.
+
+# free-library-on-rails is distributed in the hope that it will be
+# useful, but WITHOUT ANY WARRANTY; without even the implied
+# warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
+# See the GNU Affero General Public License for more details.
+# 
+# You should have received a copy of the GNU Affero General Public
+# License along with free-library-on-rails.
+# If not, see &lt;http://www.gnu.org/licenses/&gt;.
+
 require 'digest/sha1'
 require 'open-uri'
 </diff>
      <filename>app/models/user.rb</filename>
    </modified>
    <modified>
      <diff>@@ -1,3 +1,20 @@
+# Copyright 2009 Michael Edwards, Brendan Taylor
+# This file is part of free-library-on-rails.
+# 
+# free-library-on-rails is free software: you can redistribute it
+# and/or modify it under the terms of the GNU Affero General Public
+# License as published by the Free Software Foundation, either
+# version 3 of the License, or (at your option) any later version.
+
+# free-library-on-rails is distributed in the hope that it will be
+# useful, but WITHOUT ANY WARRANTY; without even the implied
+# warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
+# See the GNU Affero General Public License for more details.
+# 
+# You should have received a copy of the GNU Affero General Public
+# License along with free-library-on-rails.
+# If not, see &lt;http://www.gnu.org/licenses/&gt;.
+
 class UserNotifier &lt; ActionMailer::Base
 	def signup_notification(user)
 		setup_email(user)</diff>
      <filename>app/models/user_notifier.rb</filename>
    </modified>
    <modified>
      <diff>@@ -1,3 +1,20 @@
+# Copyright 2009 Michael Edwards, Brendan Taylor
+# This file is part of free-library-on-rails.
+# 
+# free-library-on-rails is free software: you can redistribute it
+# and/or modify it under the terms of the GNU Affero General Public
+# License as published by the Free Software Foundation, either
+# version 3 of the License, or (at your option) any later version.
+
+# free-library-on-rails is distributed in the hope that it will be
+# useful, but WITHOUT ANY WARRANTY; without even the implied
+# warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
+# See the GNU Affero General Public License for more details.
+# 
+# You should have received a copy of the GNU Affero General Public
+# License along with free-library-on-rails.
+# If not, see &lt;http://www.gnu.org/licenses/&gt;.
+
 class UserObserver &lt; ActiveRecord::Observer
 	def after_create(user)
 		UserNotifier.deliver_signup_notification(user)</diff>
      <filename>app/models/user_observer.rb</filename>
    </modified>
    <modified>
      <diff>@@ -1,3 +1,20 @@
+# Copyright 2009 Michael Edwards, Brendan Taylor
+# This file is part of free-library-on-rails.
+# 
+# free-library-on-rails is free software: you can redistribute it
+# and/or modify it under the terms of the GNU Affero General Public
+# License as published by the Free Software Foundation, either
+# version 3 of the License, or (at your option) any later version.
+
+# free-library-on-rails is distributed in the hope that it will be
+# useful, but WITHOUT ANY WARRANTY; without even the implied
+# warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
+# See the GNU Affero General Public License for more details.
+# 
+# You should have received a copy of the GNU Affero General Public
+# License along with free-library-on-rails.
+# If not, see &lt;http://www.gnu.org/licenses/&gt;.
+
 class UserTagging &lt; ActiveRecord::Base
 	belongs_to :thing, :class_name =&gt; 'User'
 	belongs_to :tag</diff>
      <filename>app/models/user_tagging.rb</filename>
    </modified>
    <modified>
      <diff>@@ -1,2 +1,19 @@
+# Copyright 2009 Michael Edwards, Brendan Taylor
+# This file is part of free-library-on-rails.
+# 
+# free-library-on-rails is free software: you can redistribute it
+# and/or modify it under the terms of the GNU Affero General Public
+# License as published by the Free Software Foundation, either
+# version 3 of the License, or (at your option) any later version.
+
+# free-library-on-rails is distributed in the hope that it will be
+# useful, but WITHOUT ANY WARRANTY; without even the implied
+# warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
+# See the GNU Affero General Public License for more details.
+# 
+# You should have received a copy of the GNU Affero General Public
+# License along with free-library-on-rails.
+# If not, see &lt;http://www.gnu.org/licenses/&gt;.
+
 class Video &lt; Item
 end</diff>
      <filename>app/models/video.rb</filename>
    </modified>
    <modified>
      <diff>@@ -1,3 +1,20 @@
+# Copyright 2009 Michael Edwards, Brendan Taylor
+# This file is part of free-library-on-rails.
+# 
+# free-library-on-rails is free software: you can redistribute it
+# and/or modify it under the terms of the GNU Affero General Public
+# License as published by the Free Software Foundation, either
+# version 3 of the License, or (at your option) any later version.
+
+# free-library-on-rails is distributed in the hope that it will be
+# useful, but WITHOUT ANY WARRANTY; without even the implied
+# warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
+# See the GNU Affero General Public License for more details.
+# 
+# You should have received a copy of the GNU Affero General Public
+# License along with free-library-on-rails.
+# If not, see &lt;http://www.gnu.org/licenses/&gt;.
+
 class CreateUsers &lt; ActiveRecord::Migration
   def self.up
     create_table &quot;users&quot;, :force =&gt; true do |t|</diff>
      <filename>db/migrate/001_create_users.rb</filename>
    </modified>
    <modified>
      <diff>@@ -1,3 +1,20 @@
+# Copyright 2009 Michael Edwards, Brendan Taylor
+# This file is part of free-library-on-rails.
+# 
+# free-library-on-rails is free software: you can redistribute it
+# and/or modify it under the terms of the GNU Affero General Public
+# License as published by the Free Software Foundation, either
+# version 3 of the License, or (at your option) any later version.
+
+# free-library-on-rails is distributed in the hope that it will be
+# useful, but WITHOUT ANY WARRANTY; without even the implied
+# warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
+# See the GNU Affero General Public License for more details.
+# 
+# You should have received a copy of the GNU Affero General Public
+# License along with free-library-on-rails.
+# If not, see &lt;http://www.gnu.org/licenses/&gt;.
+
 class AddUserActivation &lt; ActiveRecord::Migration
   def self.up
 	add_column :users, :activation_code, :string, :limit =&gt; 40</diff>
      <filename>db/migrate/002_add_user_activation.rb</filename>
    </modified>
    <modified>
      <diff>@@ -1,3 +1,20 @@
+# Copyright 2009 Michael Edwards, Brendan Taylor
+# This file is part of free-library-on-rails.
+# 
+# free-library-on-rails is free software: you can redistribute it
+# and/or modify it under the terms of the GNU Affero General Public
+# License as published by the Free Software Foundation, either
+# version 3 of the License, or (at your option) any later version.
+
+# free-library-on-rails is distributed in the hope that it will be
+# useful, but WITHOUT ANY WARRANTY; without even the implied
+# warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
+# See the GNU Affero General Public License for more details.
+# 
+# You should have received a copy of the GNU Affero General Public
+# License along with free-library-on-rails.
+# If not, see &lt;http://www.gnu.org/licenses/&gt;.
+
 class AddUserLocation &lt; ActiveRecord::Migration
   def self.up
 	add_column :users, :address, :string</diff>
      <filename>db/migrate/003_add_user_location.rb</filename>
    </modified>
    <modified>
      <diff>@@ -1,3 +1,20 @@
+# Copyright 2009 Michael Edwards, Brendan Taylor
+# This file is part of free-library-on-rails.
+# 
+# free-library-on-rails is free software: you can redistribute it
+# and/or modify it under the terms of the GNU Affero General Public
+# License as published by the Free Software Foundation, either
+# version 3 of the License, or (at your option) any later version.
+
+# free-library-on-rails is distributed in the hope that it will be
+# useful, but WITHOUT ANY WARRANTY; without even the implied
+# warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
+# See the GNU Affero General Public License for more details.
+# 
+# You should have received a copy of the GNU Affero General Public
+# License along with free-library-on-rails.
+# If not, see &lt;http://www.gnu.org/licenses/&gt;.
+
 class CreateItems &lt; ActiveRecord::Migration
   def self.up
     create_table &quot;items&quot;, :force =&gt; true do |t|</diff>
      <filename>db/migrate/004_create_items.rb</filename>
    </modified>
    <modified>
      <diff>@@ -1,3 +1,20 @@
+# Copyright 2009 Michael Edwards, Brendan Taylor
+# This file is part of free-library-on-rails.
+# 
+# free-library-on-rails is free software: you can redistribute it
+# and/or modify it under the terms of the GNU Affero General Public
+# License as published by the Free Software Foundation, either
+# version 3 of the License, or (at your option) any later version.
+
+# free-library-on-rails is distributed in the hope that it will be
+# useful, but WITHOUT ANY WARRANTY; without even the implied
+# warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
+# See the GNU Affero General Public License for more details.
+# 
+# You should have received a copy of the GNU Affero General Public
+# License along with free-library-on-rails.
+# If not, see &lt;http://www.gnu.org/licenses/&gt;.
+
 class AddBookColumns &lt; ActiveRecord::Migration
   def self.up
     add_column :items, :isbn, :string</diff>
      <filename>db/migrate/005_add_book_columns.rb</filename>
    </modified>
    <modified>
      <diff>@@ -1,3 +1,20 @@
+# Copyright 2009 Michael Edwards, Brendan Taylor
+# This file is part of free-library-on-rails.
+# 
+# free-library-on-rails is free software: you can redistribute it
+# and/or modify it under the terms of the GNU Affero General Public
+# License as published by the Free Software Foundation, either
+# version 3 of the License, or (at your option) any later version.
+
+# free-library-on-rails is distributed in the hope that it will be
+# useful, but WITHOUT ANY WARRANTY; without even the implied
+# warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
+# See the GNU Affero General Public License for more details.
+# 
+# You should have received a copy of the GNU Affero General Public
+# License along with free-library-on-rails.
+# If not, see &lt;http://www.gnu.org/licenses/&gt;.
+
 # integer latitudes and longitudes don't give very good precision
 class GeoPrecision &lt; ActiveRecord::Migration
   def self.up</diff>
      <filename>db/migrate/006_geo_precision.rb</filename>
    </modified>
    <modified>
      <diff>@@ -1,3 +1,20 @@
+# Copyright 2009 Michael Edwards, Brendan Taylor
+# This file is part of free-library-on-rails.
+# 
+# free-library-on-rails is free software: you can redistribute it
+# and/or modify it under the terms of the GNU Affero General Public
+# License as published by the Free Software Foundation, either
+# version 3 of the License, or (at your option) any later version.
+
+# free-library-on-rails is distributed in the hope that it will be
+# useful, but WITHOUT ANY WARRANTY; without even the implied
+# warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
+# See the GNU Affero General Public License for more details.
+# 
+# You should have received a copy of the GNU Affero General Public
+# License along with free-library-on-rails.
+# If not, see &lt;http://www.gnu.org/licenses/&gt;.
+
 class CreateItemTaggings &lt; ActiveRecord::Migration
   def self.up
     create_table 'item_taggings' do |t|</diff>
      <filename>db/migrate/007_create_item_taggings.rb</filename>
    </modified>
    <modified>
      <diff>@@ -1,3 +1,20 @@
+# Copyright 2009 Michael Edwards, Brendan Taylor
+# This file is part of free-library-on-rails.
+# 
+# free-library-on-rails is free software: you can redistribute it
+# and/or modify it under the terms of the GNU Affero General Public
+# License as published by the Free Software Foundation, either
+# version 3 of the License, or (at your option) any later version.
+
+# free-library-on-rails is distributed in the hope that it will be
+# useful, but WITHOUT ANY WARRANTY; without even the implied
+# warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
+# See the GNU Affero General Public License for more details.
+# 
+# You should have received a copy of the GNU Affero General Public
+# License along with free-library-on-rails.
+# If not, see &lt;http://www.gnu.org/licenses/&gt;.
+
 class CreateRegions &lt; ActiveRecord::Migration
   def self.up
     create_table 'regions', :force =&gt; true do |t|</diff>
      <filename>db/migrate/008_create_regions.rb</filename>
    </modified>
    <modified>
      <diff>@@ -1,3 +1,20 @@
+# Copyright 2009 Michael Edwards, Brendan Taylor
+# This file is part of free-library-on-rails.
+# 
+# free-library-on-rails is free software: you can redistribute it
+# and/or modify it under the terms of the GNU Affero General Public
+# License as published by the Free Software Foundation, either
+# version 3 of the License, or (at your option) any later version.
+
+# free-library-on-rails is distributed in the hope that it will be
+# useful, but WITHOUT ANY WARRANTY; without even the implied
+# warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
+# See the GNU Affero General Public License for more details.
+# 
+# You should have received a copy of the GNU Affero General Public
+# License along with free-library-on-rails.
+# If not, see &lt;http://www.gnu.org/licenses/&gt;.
+
 class CreateLoans &lt; ActiveRecord::Migration
   def self.up
     create_table 'loans', :force =&gt; true do |t|</diff>
      <filename>db/migrate/009_create_loans.rb</filename>
    </modified>
    <modified>
      <diff>@@ -1,3 +1,20 @@
+# Copyright 2009 Michael Edwards, Brendan Taylor
+# This file is part of free-library-on-rails.
+# 
+# free-library-on-rails is free software: you can redistribute it
+# and/or modify it under the terms of the GNU Affero General Public
+# License as published by the Free Software Foundation, either
+# version 3 of the License, or (at your option) any later version.
+
+# free-library-on-rails is distributed in the hope that it will be
+# useful, but WITHOUT ANY WARRANTY; without even the implied
+# warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
+# See the GNU Affero General Public License for more details.
+# 
+# You should have received a copy of the GNU Affero General Public
+# License along with free-library-on-rails.
+# If not, see &lt;http://www.gnu.org/licenses/&gt;.
+
 class AddUserInfo &lt; ActiveRecord::Migration
   def self.up
 	add_column :users, :about, :text</diff>
      <filename>db/migrate/010_add_user_info.rb</filename>
    </modified>
    <modified>
      <diff>@@ -1,3 +1,20 @@
+# Copyright 2009 Michael Edwards, Brendan Taylor
+# This file is part of free-library-on-rails.
+# 
+# free-library-on-rails is free software: you can redistribute it
+# and/or modify it under the terms of the GNU Affero General Public
+# License as published by the Free Software Foundation, either
+# version 3 of the License, or (at your option) any later version.
+
+# free-library-on-rails is distributed in the hope that it will be
+# useful, but WITHOUT ANY WARRANTY; without even the implied
+# warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
+# See the GNU Affero General Public License for more details.
+# 
+# You should have received a copy of the GNU Affero General Public
+# License along with free-library-on-rails.
+# If not, see &lt;http://www.gnu.org/licenses/&gt;.
+
 class CaseInsensitiveTags &lt; ActiveRecord::Migration
   def self.up
 		execute &lt;&lt;END</diff>
      <filename>db/migrate/011_case_insensitive_tags.rb</filename>
    </modified>
    <modified>
      <diff>@@ -1,3 +1,20 @@
+# Copyright 2009 Michael Edwards, Brendan Taylor
+# This file is part of free-library-on-rails.
+# 
+# free-library-on-rails is free software: you can redistribute it
+# and/or modify it under the terms of the GNU Affero General Public
+# License as published by the Free Software Foundation, either
+# version 3 of the License, or (at your option) any later version.
+
+# free-library-on-rails is distributed in the hope that it will be
+# useful, but WITHOUT ANY WARRANTY; without even the implied
+# warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
+# See the GNU Affero General Public License for more details.
+# 
+# You should have received a copy of the GNU Affero General Public
+# License along with free-library-on-rails.
+# If not, see &lt;http://www.gnu.org/licenses/&gt;.
+
 class AddLoanMemo &lt; ActiveRecord::Migration
   def self.up
 	add_column :loans, :memo, :string</diff>
      <filename>db/migrate/012_add_loan_memo.rb</filename>
    </modified>
    <modified>
      <diff>@@ -1,3 +1,20 @@
+# Copyright 2009 Michael Edwards, Brendan Taylor
+# This file is part of free-library-on-rails.
+# 
+# free-library-on-rails is free software: you can redistribute it
+# and/or modify it under the terms of the GNU Affero General Public
+# License as published by the Free Software Foundation, either
+# version 3 of the License, or (at your option) any later version.
+
+# free-library-on-rails is distributed in the hope that it will be
+# useful, but WITHOUT ANY WARRANTY; without even the implied
+# warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
+# See the GNU Affero General Public License for more details.
+# 
+# You should have received a copy of the GNU Affero General Public
+# License along with free-library-on-rails.
+# If not, see &lt;http://www.gnu.org/licenses/&gt;.
+
 class AddUserTaggings &lt; ActiveRecord::Migration
   def self.up
 	rename_column :item_taggings, :item_id, :thing_id</diff>
      <filename>db/migrate/013_add_user_taggings.rb</filename>
    </modified>
    <modified>
      <diff>@@ -1,3 +1,20 @@
+# Copyright 2009 Michael Edwards, Brendan Taylor
+# This file is part of free-library-on-rails.
+# 
+# free-library-on-rails is free software: you can redistribute it
+# and/or modify it under the terms of the GNU Affero General Public
+# License as published by the Free Software Foundation, either
+# version 3 of the License, or (at your option) any later version.
+
+# free-library-on-rails is distributed in the hope that it will be
+# useful, but WITHOUT ANY WARRANTY; without even the implied
+# warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
+# See the GNU Affero General Public License for more details.
+# 
+# You should have received a copy of the GNU Affero General Public
+# License along with free-library-on-rails.
+# If not, see &lt;http://www.gnu.org/licenses/&gt;.
+
 # adds the Library of Congress Classification Nmuber field and fetches values from ISBNDB
 # only does one query per second to be gentle on our generous benefactor
 class AddLccNumber &lt; ActiveRecord::Migration</diff>
      <filename>db/migrate/014_add_lcc_number.rb</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>799f15875208a791a01199609afa615efadd975e</id>
    </parent>
  </parents>
  <author>
    <name>Michael Edwards</name>
    <email>medwards@pilgrim.walledcity.ca</email>
  </author>
  <url>http://github.com/medwards/free-library-on-rails/commit/9296b42d3da988aa2fcfd42534afd08b6488e0c0</url>
  <id>9296b42d3da988aa2fcfd42534afd08b6488e0c0</id>
  <committed-date>2008-12-26T11:59:27-08:00</committed-date>
  <authored-date>2008-12-26T11:59:27-08:00</authored-date>
  <message>Added GNU Affero GPL to the application</message>
  <tree>2784e48970b13c13a1c1ed8aea9117ec09848038</tree>
  <committer>
    <name>Michael Edwards</name>
    <email>medwards@pilgrim.walledcity.ca</email>
  </committer>
</commit>
