<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array">
    <added>
      <filename>Capfile</filename>
    </added>
    <added>
      <filename>app/controllers/admin/attendees_controller.rb</filename>
    </added>
    <added>
      <filename>app/controllers/admin/events_controller.rb</filename>
    </added>
    <added>
      <filename>app/controllers/admin_controller.rb</filename>
    </added>
    <added>
      <filename>app/controllers/events_controller.rb</filename>
    </added>
    <added>
      <filename>app/helpers/admin/attendees_helper.rb</filename>
    </added>
    <added>
      <filename>app/helpers/admin/events_helper.rb</filename>
    </added>
    <added>
      <filename>app/helpers/events_helper.rb</filename>
    </added>
    <added>
      <filename>app/models/attendee.rb</filename>
    </added>
    <added>
      <filename>app/models/event.rb</filename>
    </added>
    <added>
      <filename>app/models/registration.rb</filename>
    </added>
    <added>
      <filename>app/views/admin/attendees/index.html.erb</filename>
    </added>
    <added>
      <filename>app/views/admin/events/edit.html.erb</filename>
    </added>
    <added>
      <filename>app/views/admin/events/index.html.erb</filename>
    </added>
    <added>
      <filename>app/views/admin/events/new.html.erb</filename>
    </added>
    <added>
      <filename>app/views/events/done.html.erb</filename>
    </added>
    <added>
      <filename>app/views/events/index.html.erb</filename>
    </added>
    <added>
      <filename>app/views/events/registration.html.erb</filename>
    </added>
    <added>
      <filename>app/views/events/show.html.erb</filename>
    </added>
    <added>
      <filename>app/views/layouts/admin.html.erb</filename>
    </added>
    <added>
      <filename>app/views/layouts/application.html.erb</filename>
    </added>
    <added>
      <filename>app/views/registration/message.erb</filename>
    </added>
    <added>
      <filename>app/views/shared/_flash.html.erb</filename>
    </added>
    <added>
      <filename>config/deploy.rb</filename>
    </added>
    <added>
      <filename>config/initializers/gettext.rb</filename>
    </added>
    <added>
      <filename>db/migrate/20080806125054_create_events.rb</filename>
    </added>
    <added>
      <filename>db/migrate/20080807104147_create_attendees.rb</filename>
    </added>
    <added>
      <filename>db/migrate/20080807110454_add_remote_ip_to_attendees.rb</filename>
    </added>
    <added>
      <filename>db/migrate/20080808074605_add_scheduled_on_to_events.rb</filename>
    </added>
    <added>
      <filename>db/migrate/20080808092522_add_comment_to_attendees.rb</filename>
    </added>
    <added>
      <filename>db/migrate/20080812042159_add_contact_email_to_events.rb</filename>
    </added>
    <added>
      <filename>db/migrate/20080812042348_add_official_tag_to_events.rb</filename>
    </added>
    <added>
      <filename>db/migrate/20080812103226_create_sessions.rb</filename>
    </added>
    <added>
      <filename>db/migrate/20080812104400_add_notify_email_enabled_to_events.rb</filename>
    </added>
    <added>
      <filename>lib/hiki_doc.rb</filename>
    </added>
    <added>
      <filename>lib/tasks/gettext.rake</filename>
    </added>
    <added>
      <filename>locale/ja/LC_MESSAGES/regional.mo</filename>
    </added>
    <added>
      <filename>po/ja/regional.po</filename>
    </added>
    <added>
      <filename>po/regional.pot</filename>
    </added>
    <added>
      <filename>public/images/tokyo-rubykaigi.eps</filename>
    </added>
    <added>
      <filename>public/images/tokyo-rubykaigi.png</filename>
    </added>
    <added>
      <filename>public/stylesheets/application.css</filename>
    </added>
    <added>
      <filename>public/stylesheets/regional.css</filename>
    </added>
    <added>
      <filename>spec/controllers/events_controller_spec.rb</filename>
    </added>
    <added>
      <filename>spec/fixtures/admin/admin_events.yml</filename>
    </added>
    <added>
      <filename>spec/fixtures/attendees.yml</filename>
    </added>
    <added>
      <filename>spec/fixtures/events.yml</filename>
    </added>
    <added>
      <filename>spec/helpers/admin/attendees_helper_spec.rb</filename>
    </added>
    <added>
      <filename>spec/helpers/admin/events_helper_spec.rb</filename>
    </added>
    <added>
      <filename>spec/helpers/application_helper_spec.rb</filename>
    </added>
    <added>
      <filename>spec/helpers/events_helper_spec.rb</filename>
    </added>
    <added>
      <filename>spec/models/attendee_spec.rb</filename>
    </added>
    <added>
      <filename>spec/models/event_spec.rb</filename>
    </added>
  </added>
  <modified type="array">
    <modified>
      <diff>@@ -7,9 +7,12 @@ class ApplicationController &lt; ActionController::Base
   # See ActionController::RequestForgeryProtection for details
   # Uncomment the :secret if you're not using the cookie session store
   protect_from_forgery # :secret =&gt; '5c5cf01b75fad0da0729dc4deeb0862f'
-  
-  # See ActionController::Base for details 
+
+  # See ActionController::Base for details
   # Uncomment this to filter the contents of submitted sensitive data parameters
-  # from your application log (in this case, all fields with names like &quot;password&quot;). 
+  # from your application log (in this case, all fields with names like &quot;password&quot;).
   # filter_parameter_logging :password
+
+  GetText.locale = &quot;ja&quot;
+  init_gettext 'regional'
 end</diff>
      <filename>app/controllers/application.rb</filename>
    </modified>
    <modified>
      <diff>@@ -1,3 +1,14 @@
-# Methods added to this helper will be available to all templates in the application.
+require 'hiki_doc'
+
 module ApplicationHelper
+  def page_title
+    global_title  = &quot;Regional RubyKaigi&quot;
+    return global_title unless @title
+    &quot;#{@title} - #{global_title}&quot;
+  end
+
+  def render_hiki(text)
+    hikified = HikiDoc.to_html(text, :level =&gt; 3, :use_wiki_name =&gt; false, :allow_bracket_inline_image =&gt; false)
+    hikified
+  end
 end</diff>
      <filename>app/helpers/application_helper.rb</filename>
    </modified>
    <modified>
      <diff>@@ -20,13 +20,13 @@ Rails::Initializer.run do |config|
   # you must remove the Active Record framework.
   # config.frameworks -= [ :active_record, :active_resource, :action_mailer ]
 
-  # Specify gems that this application depends on. 
+  # Specify gems that this application depends on.
   # They can then be installed with &quot;rake gems:install&quot; on new installations.
   # config.gem &quot;bj&quot;
   # config.gem &quot;hpricot&quot;, :version =&gt; '0.6', :source =&gt; &quot;http://code.whytheluckystiff.net&quot;
   # config.gem &quot;aws-s3&quot;, :lib =&gt; &quot;aws/s3&quot;
 
-  # Only load the plugins named here, in the order given. By default, all plugins 
+  # Only load the plugins named here, in the order given. By default, all plugins
   # in vendor/plugins are loaded in alphabetical order.
   # :all can be used as a placeholder for all plugins not explicitly named
   # config.plugins = [ :exception_notification, :ssl_requirement, :all ]
@@ -45,7 +45,7 @@ Rails::Initializer.run do |config|
 
   # Your secret key for verifying cookie session data integrity.
   # If you change this key, all old sessions will become invalid!
-  # Make sure the secret is at least 30 characters and all random, 
+  # Make sure the secret is at least 30 characters and all random,
   # no regular words or you'll be exposed to dictionary attacks.
   config.action_controller.session = {
     :session_key =&gt; '_regional_session',
@@ -55,7 +55,7 @@ Rails::Initializer.run do |config|
   # Use the database for sessions instead of the cookie-based default,
   # which shouldn't be used to store highly confidential information
   # (create the session table with &quot;rake db:sessions:create&quot;)
-  # config.action_controller.session_store = :active_record_store
+  config.action_controller.session_store = :active_record_store
 
   # Use SQL instead of Active Record's schema dumper when creating the test database.
   # This is necessary if your schema can't be completely dumped by the schema dumper,</diff>
      <filename>config/environment.rb</filename>
    </modified>
    <modified>
      <diff>@@ -14,4 +14,7 @@ config.action_view.debug_rjs                         = true
 config.action_controller.perform_caching             = false
 
 # Don't care if the mailer can't send
-config.action_mailer.raise_delivery_errors = false
\ No newline at end of file
+config.action_mailer.raise_delivery_errors = false
+config.action_mailer.delivery_method = :sendmail
+
+::MAIL_CONF = {:bcc =&gt; &quot;shintaro.kakutani@gmail.com&quot;}</diff>
      <filename>config/environments/development.rb</filename>
    </modified>
    <modified>
      <diff>@@ -20,3 +20,4 @@ config.action_view.cache_template_loading            = true
 
 # Disable delivery errors, bad email addresses will be ignored
 # config.action_mailer.raise_delivery_errors = false
+config.action_mailer.delivery_method = :sendmail</diff>
      <filename>config/environments/production.rb</filename>
    </modified>
    <modified>
      <diff>@@ -1,4 +1,10 @@
 ActionController::Routing::Routes.draw do |map|
+  map.namespace(:admin) do |admin|
+	admin.resources :events do |event|
+      event.resources :attendees
+    end
+  end
+
   # The priority is based upon order of creation: first created -&gt; highest priority.
 
   # Sample of regular route:
@@ -17,7 +23,7 @@ ActionController::Routing::Routes.draw do |map|
 
   # Sample resource route with sub-resources:
   #   map.resources :products, :has_many =&gt; [ :comments, :sales ], :has_one =&gt; :seller
-  
+
   # Sample resource route with more complex sub-resources
   #   map.resources :products do |products|
   #     products.resources :comments
@@ -31,7 +37,8 @@ ActionController::Routing::Routes.draw do |map|
   #   end
 
   # You can have the root of your site routed with map.root -- just remember to delete public/index.html.
-  # map.root :controller =&gt; &quot;welcome&quot;
+  map.root :controller =&gt; &quot;events&quot;
+  map.connect ':name/:action', :controller =&gt; 'events', :action =&gt; 'show'
 
   # See how all your routes lay out with &quot;rake routes&quot;
 </diff>
      <filename>config/routes.rb</filename>
    </modified>
    <modified>
      <diff>@@ -1,13 +1,13 @@
 require 'spec/interop/test'
 
-ActionView::Base.cache_template_extensions = false
+#ActionView::Base.cache_template_extensions = false
 
 module Spec
   module Rails
 
     module Example
       class RailsExampleGroup &lt; Test::Unit::TestCase
-        
+
         # Rails &gt;= r8570 uses setup/teardown_fixtures explicitly
         before(:each) do
           setup_fixtures if self.respond_to?(:setup_fixtures)
@@ -15,12 +15,12 @@ module Spec
         after(:each) do
           teardown_fixtures if self.respond_to?(:teardown_fixtures)
         end
-        
+
         include Spec::Rails::Matchers
         include Spec::Rails::Mocks
-        
+
         Spec::Example::ExampleGroupFactory.default(self)
-        
+
       end
     end
   end</diff>
      <filename>vendor/plugins/rspec-rails/lib/spec/rails/example/rails_example_group.rb</filename>
    </modified>
  </modified>
  <removed type="array">
    <removed>
      <filename>log/development.log</filename>
    </removed>
    <removed>
      <filename>log/production.log</filename>
    </removed>
    <removed>
      <filename>log/server.log</filename>
    </removed>
    <removed>
      <filename>log/test.log</filename>
    </removed>
    <removed>
      <filename>public/index.html</filename>
    </removed>
  </removed>
  <parents type="array">
    <parent>
      <id>c67c42c3715ed027b39c9f4c41bf6bd91b17f6a4</id>
    </parent>
  </parents>
  <author>
    <name>KAKUTANI Shintaro</name>
    <email>shintaro@kakutani.com</email>
  </author>
  <url>http://github.com/kakutani/regional_rubykaigi/commit/fdd6534b20e67dd68094f4e5a32f89ccb6100a55</url>
  <id>fdd6534b20e67dd68094f4e5a32f89ccb6100a55</id>
  <committed-date>2008-08-12T03:52:00-07:00</committed-date>
  <authored-date>2008-08-12T03:52:00-07:00</authored-date>
  <message>tokyo01 base.</message>
  <tree>d9e64f51d016a17930c60f3dba93af53a5ca801c</tree>
  <committer>
    <name>KAKUTANI Shintaro</name>
    <email>shintaro@kakutani.com</email>
  </committer>
</commit>
