beast rev 2066
commitd94e94352e81a378ae7ec55330e25e87ba61147b
authorPriit Tamboom <priit.tamboom@eesti.ee>
Wed, 31 Oct 2007 06:08:08 +0000 (31 14:08 +0800)
committerPriit Tamboom <priit.tamboom@eesti.ee>
Wed, 31 Oct 2007 06:08:08 +0000 (31 14:08 +0800)
treebcb34cab7d71207aacf63252dfdbcc6e4c4c6c1a
parent6b5259d651e12298c70015bd495caf36b5e6495c
beast rev 2066
410 files changed:
CHANGELOG [new file with mode: 0644]
LICENSE [new file with mode: 0644]
README [new file with mode: 0644]
Rakefile [new file with mode: 0644]
app/controllers/application.rb [new file with mode: 0644]
app/controllers/forums_controller.rb [new file with mode: 0644]
app/controllers/moderators_controller.rb [new file with mode: 0644]
app/controllers/monitorships_controller.rb [new file with mode: 0644]
app/controllers/posts_controller.rb [new file with mode: 0644]
app/controllers/sessions_controller.rb [new file with mode: 0644]
app/controllers/topics_controller.rb [new file with mode: 0644]
app/controllers/users_controller.rb [new file with mode: 0644]
app/helpers/application_helper.rb [new file with mode: 0644]
app/helpers/forums_helper.rb [new file with mode: 0644]
app/helpers/moderators_helper.rb [new file with mode: 0644]
app/helpers/monitorships_helper.rb [new file with mode: 0644]
app/helpers/posts_helper.rb [new file with mode: 0644]
app/helpers/sessions_helper.rb [new file with mode: 0644]
app/helpers/topics_helper.rb [new file with mode: 0644]
app/helpers/users_helper.rb [new file with mode: 0644]
app/models/forum.rb [new file with mode: 0644]
app/models/moderatorship.rb [new file with mode: 0644]
app/models/monitorship.rb [new file with mode: 0644]
app/models/monitorships_sweeper.rb [new file with mode: 0644]
app/models/post.rb [new file with mode: 0644]
app/models/posts_sweeper.rb [new file with mode: 0644]
app/models/session.rb [new file with mode: 0644]
app/models/topic.rb [new file with mode: 0644]
app/models/user.rb [new file with mode: 0644]
app/models/user_mailer.rb [new file with mode: 0644]
app/views/forums/_form.html.erb [new file with mode: 0644]
app/views/forums/edit.html.erb [new file with mode: 0644]
app/views/forums/index.html.erb [new file with mode: 0644]
app/views/forums/new.html.erb [new file with mode: 0644]
app/views/forums/show.html.erb [new file with mode: 0644]
app/views/layouts/_head.html.erb [new file with mode: 0644]
app/views/layouts/_post.rss.builder [new file with mode: 0644]
app/views/layouts/application.html.erb [new file with mode: 0644]
app/views/monitorships/create.js.rjs [new file with mode: 0644]
app/views/monitorships/destroy.js.rjs [new file with mode: 0644]
app/views/posts/_edit.html.erb [new file with mode: 0644]
app/views/posts/edit.html.erb [new file with mode: 0644]
app/views/posts/edit.js.rjs [new file with mode: 0644]
app/views/posts/index.html.erb [new file with mode: 0644]
app/views/posts/index.rss.builder [new file with mode: 0644]
app/views/posts/monitored.html.erb [new file with mode: 0644]
app/views/posts/monitored.rss.builder [new file with mode: 0644]
app/views/posts/update.js.rjs [new file with mode: 0644]
app/views/sessions/new.html.erb [new file with mode: 0644]
app/views/topics/_form.html.erb [new file with mode: 0644]
app/views/topics/edit.html.erb [new file with mode: 0644]
app/views/topics/index.html.erb [new file with mode: 0644]
app/views/topics/new.html.erb [new file with mode: 0644]
app/views/topics/show.html.erb [new file with mode: 0644]
app/views/topics/show.rss.builder [new file with mode: 0644]
app/views/user_mailer/signup.erb [new file with mode: 0644]
app/views/users/_contact_info.html.erb [new file with mode: 0644]
app/views/users/_form.html.erb [new file with mode: 0644]
app/views/users/_settings.html.erb [new file with mode: 0644]
app/views/users/edit.html.erb [new file with mode: 0644]
app/views/users/index.html.erb [new file with mode: 0644]
app/views/users/new.html.erb [new file with mode: 0644]
app/views/users/show.html.erb [new file with mode: 0644]
config/boot.rb [new file with mode: 0644]
config/database.example.yml [new file with mode: 0644]
config/database.yml [new file with mode: 0644]
config/environment.rb [new file with mode: 0644]
config/environments/development.rb [new file with mode: 0644]
config/environments/production.rb [new file with mode: 0644]
config/environments/test.rb [new file with mode: 0644]
config/initializers/caching_fix.rb [new file with mode: 0644]
config/initializers/xml_simple_doctype_fix.rb [new file with mode: 0644]
config/routes.rb [new file with mode: 0644]
db/migrate/001_create_users.rb [new file with mode: 0644]
db/migrate/002_create_forums.rb [new file with mode: 0644]
db/migrate/003_create_posts.rb [new file with mode: 0644]
db/migrate/004_rename_post_to_topic.rb [new file with mode: 0644]
db/migrate/005_add_forum_desc.rb [new file with mode: 0644]
db/migrate/006_add_hits.rb [new file with mode: 0644]
db/migrate/007_sticky.rb [new file with mode: 0644]
db/migrate/008_add_counter_caches.rb [new file with mode: 0644]
db/migrate/009_last_seen_at.rb [new file with mode: 0644]
db/migrate/010_add_sessions.rb [new file with mode: 0644]
db/migrate/011_reset_counter_cache.rb [new file with mode: 0644]
db/migrate/012_display_name.rb [new file with mode: 0644]
db/migrate/013_user_updated_at.rb [new file with mode: 0644]
db/migrate/014_set_last_seen_at.rb [new file with mode: 0644]
db/migrate/015_add_topic_last_posted_at_date.rb [new file with mode: 0644]
db/migrate/016_empower_sessions.rb [new file with mode: 0644]
db/migrate/017_update_user_post_counts.rb [new file with mode: 0644]
db/migrate/018_add_contact_fields.rb [new file with mode: 0644]
db/migrate/019_position_for_forums.rb [new file with mode: 0644]
db/migrate/020_fix_replied_at.rb [new file with mode: 0644]
db/migrate/021_log_everyone_out.rb [new file with mode: 0644]
db/migrate/022_create_topics.rb [new file with mode: 0644]
db/migrate/023_clean_up_posts_table.rb [new file with mode: 0644]
db/migrate/024_login_by_key_fields.rb [new file with mode: 0644]
db/migrate/025_remove_unnecessary_post_forum_id.rb [new file with mode: 0644]
db/migrate/026_change_sticky_to_integer.rb [new file with mode: 0644]
db/migrate/027_re_add_posts_forum_id.rb [new file with mode: 0644]
db/migrate/028_fix_forum_posts_count.rb [new file with mode: 0644]
db/migrate/029_create_moderatorships.rb [new file with mode: 0644]
db/migrate/030_set_user_display_name.rb [new file with mode: 0644]
db/migrate/031_topic_locked.rb [new file with mode: 0644]
db/migrate/032_add_activated_boolean.rb [new file with mode: 0644]
db/migrate/033_add_password_hash.rb [new file with mode: 0644]
db/migrate/034_create_monitorships.rb [new file with mode: 0644]
db/migrate/035_needed_indexes.rb [new file with mode: 0644]
db/migrate/036_topics_cache_last_replied_user.rb [new file with mode: 0644]
db/migrate/037_delete_empty_topics.rb [new file with mode: 0644]
db/migrate/038_add_exception_table.rb [new file with mode: 0644]
db/migrate/039_remove_unused_user_profile.rb [new file with mode: 0644]
db/migrate/040_fix_last_posts.rb [new file with mode: 0644]
db/migrate/041_add_posts_body_html.rb [new file with mode: 0644]
db/migrate/042_update_white_list.rb [new file with mode: 0644]
db/migrate/043_index_happy.rb [new file with mode: 0644]
db/migrate/044_topic_index.rb [new file with mode: 0644]
db/migrate/045_tweak_forum_index.rb [new file with mode: 0644]
db/migrate/046_add_posts_users_index.rb [new file with mode: 0644]
db/migrate/047_set_sticky_to_zero.rb [new file with mode: 0644]
db/migrate/048_add_user_identity_url.rb [new file with mode: 0644]
db/migrate/049_recent_topics_index.rb [new file with mode: 0644]
db/migrate/050_add_open_id_authentication_tables.rb [new file with mode: 0644]
db/migrate/051_rename_identity_url_to_openid_url.rb [new file with mode: 0644]
db/migrate/052_add_missing_indexes.rb [new file with mode: 0644]
db/schema.rb [new file with mode: 0644]
lang/en.yml [new file with mode: 0644]
lib/authentication_system.rb [new file with mode: 0644]
lib/tasks/capistrano.rake [new file with mode: 0644]
lib/tasks/deploy_edge.rake [new file with mode: 0644]
log/development.log [new file with mode: 0644]
po/beast.pot [new file with mode: 0644]
po/nl/beast.po [new file with mode: 0644]
public/.htaccess [new file with mode: 0644]
public/404.html [new file with mode: 0644]
public/500.html [new file with mode: 0644]
public/dispatch.cgi [new file with mode: 0755]
public/dispatch.fcgi [new file with mode: 0755]
public/dispatch.rb [new file with mode: 0755]
public/favicon.ico [new file with mode: 0644]
public/images/clearbits/_readme.txt [new file with mode: 0755]
public/images/clearbits/add.gif [new file with mode: 0755]
public/images/clearbits/addressbook.gif [new file with mode: 0755]
public/images/clearbits/alert.gif [new file with mode: 0755]
public/images/clearbits/apple.gif [new file with mode: 0755]
public/images/clearbits/arrow1_e.gif [new file with mode: 0755]
public/images/clearbits/arrow1_n.gif [new file with mode: 0755]
public/images/clearbits/arrow1_ne.gif [new file with mode: 0755]
public/images/clearbits/arrow1_nw.gif [new file with mode: 0755]
public/images/clearbits/arrow1_s.gif [new file with mode: 0755]
public/images/clearbits/arrow1_se.gif [new file with mode: 0755]
public/images/clearbits/arrow1_sw.gif [new file with mode: 0755]
public/images/clearbits/arrow1_w.gif [new file with mode: 0755]
public/images/clearbits/arrow2_e.gif [new file with mode: 0755]
public/images/clearbits/arrow2_n.gif [new file with mode: 0755]
public/images/clearbits/arrow2_ne.gif [new file with mode: 0755]
public/images/clearbits/arrow2_nw.gif [new file with mode: 0755]
public/images/clearbits/arrow2_s.gif [new file with mode: 0755]
public/images/clearbits/arrow2_se.gif [new file with mode: 0755]
public/images/clearbits/arrow2_sw.gif [new file with mode: 0755]
public/images/clearbits/arrow2_w.gif [new file with mode: 0755]
public/images/clearbits/arrow3_e.gif [new file with mode: 0755]
public/images/clearbits/arrow3_n.gif [new file with mode: 0755]
public/images/clearbits/arrow3_ne.gif [new file with mode: 0755]
public/images/clearbits/arrow3_nw.gif [new file with mode: 0755]
public/images/clearbits/arrow3_s.gif [new file with mode: 0755]
public/images/clearbits/arrow3_se.gif [new file with mode: 0755]
public/images/clearbits/arrow3_sw.gif [new file with mode: 0755]
public/images/clearbits/arrow3_w.gif [new file with mode: 0755]
public/images/clearbits/ascii.gif [new file with mode: 0755]
public/images/clearbits/back.gif [new file with mode: 0755]
public/images/clearbits/bg_blank.gif [new file with mode: 0755]
public/images/clearbits/bg_circle.gif [new file with mode: 0755]
public/images/clearbits/bg_rounded.gif [new file with mode: 0755]
public/images/clearbits/bg_rounded_ne.gif [new file with mode: 0755]
public/images/clearbits/bg_rounded_nw.gif [new file with mode: 0755]
public/images/clearbits/bg_rounded_se.gif [new file with mode: 0755]
public/images/clearbits/bg_rounded_sw.gif [new file with mode: 0755]
public/images/clearbits/bigsmile.gif [new file with mode: 0755]
public/images/clearbits/binary.gif [new file with mode: 0755]
public/images/clearbits/blah.gif [new file with mode: 0755]
public/images/clearbits/bstop.gif [new file with mode: 0755]
public/images/clearbits/buy.gif [new file with mode: 0755]
public/images/clearbits/calday.gif [new file with mode: 0755]
public/images/clearbits/calendar.gif [new file with mode: 0755]
public/images/clearbits/camera.gif [new file with mode: 0755]
public/images/clearbits/cart.gif [new file with mode: 0755]
public/images/clearbits/cd.gif [new file with mode: 0755]
public/images/clearbits/cellphone.gif [new file with mode: 0755]
public/images/clearbits/chat.gif [new file with mode: 0755]
public/images/clearbits/check.gif [new file with mode: 0755]
public/images/clearbits/close.gif [new file with mode: 0755]
public/images/clearbits/comment.gif [new file with mode: 0755]
public/images/clearbits/cube.gif [new file with mode: 0755]
public/images/clearbits/day.gif [new file with mode: 0755]
public/images/clearbits/denied.gif [new file with mode: 0755]
public/images/clearbits/document.gif [new file with mode: 0755]
public/images/clearbits/download.gif [new file with mode: 0755]
public/images/clearbits/edit.gif [new file with mode: 0755]
public/images/clearbits/eject.gif [new file with mode: 0755]
public/images/clearbits/equalizer.gif [new file with mode: 0755]
public/images/clearbits/first.gif [new file with mode: 0755]
public/images/clearbits/flag.gif [new file with mode: 0755]
public/images/clearbits/flash.gif [new file with mode: 0755]
public/images/clearbits/folder.gif [new file with mode: 0755]
public/images/clearbits/forward.gif [new file with mode: 0755]
public/images/clearbits/frown.gif [new file with mode: 0755]
public/images/clearbits/ftp.gif [new file with mode: 0755]
public/images/clearbits/graph.gif [new file with mode: 0755]
public/images/clearbits/heart.gif [new file with mode: 0755]
public/images/clearbits/home.gif [new file with mode: 0755]
public/images/clearbits/html.gif [new file with mode: 0755]
public/images/clearbits/ipod.gif [new file with mode: 0755]
public/images/clearbits/last.gif [new file with mode: 0755]
public/images/clearbits/lock.gif [new file with mode: 0755]
public/images/clearbits/loop.gif [new file with mode: 0755]
public/images/clearbits/mail.gif [new file with mode: 0755]
public/images/clearbits/man.gif [new file with mode: 0755]
public/images/clearbits/manman.gif [new file with mode: 0755]
public/images/clearbits/music.gif [new file with mode: 0755]
public/images/clearbits/mute.gif [new file with mode: 0755]
public/images/clearbits/mute_centered.gif [new file with mode: 0755]
public/images/clearbits/newwindow.gif [new file with mode: 0755]
public/images/clearbits/next.gif [new file with mode: 0755]
public/images/clearbits/night.gif [new file with mode: 0755]
public/images/clearbits/open.gif [new file with mode: 0755]
public/images/clearbits/pause.gif [new file with mode: 0755]
public/images/clearbits/phone.gif [new file with mode: 0755]
public/images/clearbits/play.gif [new file with mode: 0755]
public/images/clearbits/previous.gif [new file with mode: 0755]
public/images/clearbits/quicktime.gif [new file with mode: 0755]
public/images/clearbits/redo.gif [new file with mode: 0755]
public/images/clearbits/reload.gif [new file with mode: 0755]
public/images/clearbits/sad.gif [new file with mode: 0755]
public/images/clearbits/save.gif [new file with mode: 0755]
public/images/clearbits/scream.gif [new file with mode: 0755]
public/images/clearbits/search.gif [new file with mode: 0755]
public/images/clearbits/seconds.gif [new file with mode: 0755]
public/images/clearbits/smile.gif [new file with mode: 0755]
public/images/clearbits/smirk.gif [new file with mode: 0755]
public/images/clearbits/star.gif [new file with mode: 0755]
public/images/clearbits/stop.gif [new file with mode: 0755]
public/images/clearbits/subtract.gif [new file with mode: 0755]
public/images/clearbits/switch.gif [new file with mode: 0755]
public/images/clearbits/target.gif [new file with mode: 0755]
public/images/clearbits/tcp.gif [new file with mode: 0755]
public/images/clearbits/time.gif [new file with mode: 0755]
public/images/clearbits/toggle.gif [new file with mode: 0755]
public/images/clearbits/tongue.gif [new file with mode: 0755]
public/images/clearbits/tools.gif [new file with mode: 0755]
public/images/clearbits/trackback.gif [new file with mode: 0755]
public/images/clearbits/trash.gif [new file with mode: 0755]
public/images/clearbits/tv.gif [new file with mode: 0755]
public/images/clearbits/type.gif [new file with mode: 0755]
public/images/clearbits/undo.gif [new file with mode: 0755]
public/images/clearbits/unlock.gif [new file with mode: 0755]
public/images/clearbits/upload.gif [new file with mode: 0755]
public/images/clearbits/user.gif [new file with mode: 0755]
public/images/clearbits/video.gif [new file with mode: 0755]
public/images/clearbits/volume_high.gif [new file with mode: 0755]
public/images/clearbits/volume_low.gif [new file with mode: 0755]
public/images/clearbits/wifi.gif [new file with mode: 0755]
public/images/clearbits/window.gif [new file with mode: 0755]
public/images/clearbits/woman.gif [new file with mode: 0755]
public/images/clearbits/womanman.gif [new file with mode: 0755]
public/images/clearbits/work.gif [new file with mode: 0755]
public/images/clearbits/zoomin.gif [new file with mode: 0755]
public/images/clearbits/zoomout.gif [new file with mode: 0755]
public/images/feed-icon.png [new file with mode: 0755]
public/images/rails.png [new file with mode: 0644]
public/images/reply_background.png [new file with mode: 0644]
public/images/small_circle.gif [new file with mode: 0644]
public/images/spinner.gif [new file with mode: 0644]
public/images/spinner_black.gif [new file with mode: 0644]
public/images/spinner_bounce.gif [new file with mode: 0644]
public/javascripts/application.js [new file with mode: 0644]
public/javascripts/controls.js [new file with mode: 0644]
public/javascripts/dragdrop.js [new file with mode: 0644]
public/javascripts/effects.js [new file with mode: 0644]
public/javascripts/lowpro.js [new file with mode: 0644]
public/javascripts/prototype.js [new file with mode: 0644]
public/open_search.xml [new file with mode: 0644]
public/robots.txt [new file with mode: 0644]
public/stylesheets/display.css [new file with mode: 0644]
script/about [new file with mode: 0755]
script/breakpointer [new file with mode: 0755]
script/console [new file with mode: 0755]
script/destroy [new file with mode: 0755]
script/generate [new file with mode: 0755]
script/performance/benchmarker [new file with mode: 0755]
script/performance/profiler [new file with mode: 0755]
script/plugin [new file with mode: 0755]
script/process/inspector [new file with mode: 0755]
script/process/reaper [new file with mode: 0755]
script/process/spawner [new file with mode: 0755]
script/runner [new file with mode: 0755]
script/server [new file with mode: 0755]
test/fixtures/forums.yml [new file with mode: 0644]
test/fixtures/moderatorships.yml [new file with mode: 0644]
test/fixtures/monitorships.yml [new file with mode: 0644]
test/fixtures/posts.yml [new file with mode: 0644]
test/fixtures/topics.yml [new file with mode: 0644]
test/fixtures/users.yml [new file with mode: 0644]
test/functional/forums_controller_test.rb [new file with mode: 0644]
test/functional/moderators_controller_test.rb [new file with mode: 0644]
test/functional/monitorships_controller_test.rb [new file with mode: 0644]
test/functional/posts_controller_test.rb [new file with mode: 0644]
test/functional/sessions_controller_test.rb [new file with mode: 0644]
test/functional/topics_controller_test.rb [new file with mode: 0644]
test/functional/users_controller_test.rb [new file with mode: 0644]
test/integration/new_user_first_post_test.rb [new file with mode: 0644]
test/test_helper.rb [new file with mode: 0644]
test/unit/forum_test.rb [new file with mode: 0644]
test/unit/moderatorship_test.rb [new file with mode: 0644]
test/unit/monitorships_test.rb [new file with mode: 0644]
test/unit/post_test.rb [new file with mode: 0644]
test/unit/topic_test.rb [new file with mode: 0644]
test/unit/user_mailer_test.rb [new file with mode: 0644]
test/unit/user_test.rb [new file with mode: 0644]
vendor/plugins/acts_as_list/README [new file with mode: 0644]
vendor/plugins/acts_as_list/init.rb [new file with mode: 0644]
vendor/plugins/acts_as_list/lib/active_record/acts/list.rb [new file with mode: 0644]
vendor/plugins/acts_as_list/test/list_test.rb [new file with mode: 0644]
vendor/plugins/browser_filters/README [new file with mode: 0644]
vendor/plugins/browser_filters/lib/browser_filters.rb [new file with mode: 0644]
vendor/plugins/browser_filters/lib/link_prefetching_block.rb [new file with mode: 0644]
vendor/plugins/browser_filters/lib/safari_unicode_fix.rb [new file with mode: 0644]
vendor/plugins/browser_filters/lib/unicode_content_type.rb [new file with mode: 0644]
vendor/plugins/exception_logger/README [new file with mode: 0644]
vendor/plugins/exception_logger/Rakefile [new file with mode: 0644]
vendor/plugins/exception_logger/assets/exception_logger.js [new file with mode: 0644]
vendor/plugins/exception_logger/assets/style.css [new file with mode: 0644]
vendor/plugins/exception_logger/generators/exception_migration/USAGE [new file with mode: 0644]
vendor/plugins/exception_logger/generators/exception_migration/exception_migration_generator.rb [new file with mode: 0644]
vendor/plugins/exception_logger/generators/exception_migration/templates/migration.rb [new file with mode: 0644]
vendor/plugins/exception_logger/init.rb [new file with mode: 0644]
vendor/plugins/exception_logger/install.rb [new file with mode: 0644]
vendor/plugins/exception_logger/lib/exception_loggable.rb [new file with mode: 0644]
vendor/plugins/exception_logger/lib/logged_exception.rb [new file with mode: 0644]
vendor/plugins/exception_logger/lib/logged_exceptions_controller.rb [new file with mode: 0644]
vendor/plugins/exception_logger/lib/logged_exceptions_helper.rb [new file with mode: 0644]
vendor/plugins/exception_logger/tasks/exception_logger_tasks.rake [new file with mode: 0644]
vendor/plugins/exception_logger/test/exception_logger_test.rb [new file with mode: 0644]
vendor/plugins/exception_logger/uninstall.rb [new file with mode: 0644]
vendor/plugins/exception_logger/views/logged_exceptions/_exceptions.rhtml [new file with mode: 0644]
vendor/plugins/exception_logger/views/logged_exceptions/_feed.rhtml [new file with mode: 0644]
vendor/plugins/exception_logger/views/logged_exceptions/_show.rhtml [new file with mode: 0644]
vendor/plugins/exception_logger/views/logged_exceptions/destroy.rjs [new file with mode: 0644]
vendor/plugins/exception_logger/views/logged_exceptions/destroy_all.rjs [new file with mode: 0644]
vendor/plugins/exception_logger/views/logged_exceptions/index.rhtml [new file with mode: 0644]
vendor/plugins/exception_logger/views/logged_exceptions/query.rjs [new file with mode: 0644]
vendor/plugins/exception_logger/views/logged_exceptions/query.rxml [new file with mode: 0644]
vendor/plugins/exception_logger/views/logged_exceptions/show.rjs [new file with mode: 0644]
vendor/plugins/gibberish/LICENSE [new file with mode: 0644]
vendor/plugins/gibberish/README [new file with mode: 0644]
vendor/plugins/gibberish/init.rb [new file with mode: 0644]
vendor/plugins/gibberish/lang/es.yml [new file with mode: 0644]
vendor/plugins/gibberish/lang/fr.yml [new file with mode: 0644]
vendor/plugins/gibberish/lib/gibberish.rb [new file with mode: 0644]
vendor/plugins/gibberish/lib/gibberish/localize.rb [new file with mode: 0644]
vendor/plugins/gibberish/lib/gibberish/string_ext.rb [new file with mode: 0644]
vendor/plugins/gibberish/test/gibberish_test.rb [new file with mode: 0644]
vendor/plugins/open_id_authentication/CHANGELOG [new file with mode: 0644]
vendor/plugins/open_id_authentication/README [new file with mode: 0644]
vendor/plugins/open_id_authentication/Rakefile [new file with mode: 0644]
vendor/plugins/open_id_authentication/init.rb [new file with mode: 0644]
vendor/plugins/open_id_authentication/lib/generators/open_id_authentication_tables/open_id_authentication_tables_generator.rb [new file with mode: 0644]
vendor/plugins/open_id_authentication/lib/generators/open_id_authentication_tables/templates/migration.rb [new file with mode: 0644]
vendor/plugins/open_id_authentication/lib/open_id_authentication.rb [new file with mode: 0644]
vendor/plugins/open_id_authentication/lib/open_id_authentication/association.rb [new file with mode: 0644]
vendor/plugins/open_id_authentication/lib/open_id_authentication/db_store.rb [new file with mode: 0644]
vendor/plugins/open_id_authentication/lib/open_id_authentication/nonce.rb [new file with mode: 0644]
vendor/plugins/open_id_authentication/lib/open_id_authentication/setting.rb [new file with mode: 0644]
vendor/plugins/open_id_authentication/tasks/open_id_authentication_tasks.rake [new file with mode: 0644]
vendor/plugins/open_id_authentication/test/normalize_test.rb [new file with mode: 0644]
vendor/plugins/open_id_authentication/test/open_id_authentication_test.rb [new file with mode: 0644]
vendor/plugins/open_id_authentication/test/status_test.rb [new file with mode: 0644]
vendor/plugins/white_list/README [new file with mode: 0644]
vendor/plugins/white_list/Rakefile [new file with mode: 0644]
vendor/plugins/white_list/init.rb [new file with mode: 0644]
vendor/plugins/white_list/lib/white_list_helper.rb [new file with mode: 0644]
vendor/plugins/white_list/test/white_list_test.rb [new file with mode: 0644]
vendor/plugins/white_list_formatted_content/init.rb [new file with mode: 0644]
vendor/plugins/will_paginate/README [new file with mode: 0644]
vendor/plugins/will_paginate/Rakefile [new file with mode: 0644]
vendor/plugins/will_paginate/init.rb [new file with mode: 0644]
vendor/plugins/will_paginate/lib/will_paginate/collection.rb [new file with mode: 0644]
vendor/plugins/will_paginate/lib/will_paginate/finder.rb [new file with mode: 0644]
vendor/plugins/will_paginate/lib/will_paginate/view_helpers.rb [new file with mode: 0644]
vendor/plugins/will_paginate/test/boot.rb [new file with mode: 0644]
vendor/plugins/will_paginate/test/console [new file with mode: 0755]
vendor/plugins/will_paginate/test/finder_test.rb [new file with mode: 0644]
vendor/plugins/will_paginate/test/fixtures/admin.rb [new file with mode: 0644]
vendor/plugins/will_paginate/test/fixtures/companies.yml [new file with mode: 0644]
vendor/plugins/will_paginate/test/fixtures/company.rb [new file with mode: 0644]
vendor/plugins/will_paginate/test/fixtures/developer.rb [new file with mode: 0644]
vendor/plugins/will_paginate/test/fixtures/developers_projects.yml [new file with mode: 0644]
vendor/plugins/will_paginate/test/fixtures/project.rb [new file with mode: 0644]
vendor/plugins/will_paginate/test/fixtures/projects.yml [new file with mode: 0644]
vendor/plugins/will_paginate/test/fixtures/replies.yml [new file with mode: 0644]
vendor/plugins/will_paginate/test/fixtures/reply.rb [new file with mode: 0644]
vendor/plugins/will_paginate/test/fixtures/schema.sql [new file with mode: 0644]
vendor/plugins/will_paginate/test/fixtures/topic.rb [new file with mode: 0644]
vendor/plugins/will_paginate/test/fixtures/topics.yml [new file with mode: 0644]
vendor/plugins/will_paginate/test/fixtures/user.rb [new file with mode: 0644]
vendor/plugins/will_paginate/test/fixtures/users.yml [new file with mode: 0644]
vendor/plugins/will_paginate/test/helper.rb [new file with mode: 0644]
vendor/plugins/will_paginate/test/lib/activerecord_test_connector.rb [new file with mode: 0644]
vendor/plugins/will_paginate/test/lib/load_fixtures.rb [new file with mode: 0644]
vendor/plugins/will_paginate/test/pagination_test.rb [new file with mode: 0644]