public
Description: Tog Platform Forum Component
Homepage: http://www.toghq.com/
Clone URL: git://github.com/jacqui/tog_forum.git
name age message
file CHANGELOG.md Thu Oct 16 22:23:03 -0700 2008 initial untested version of tog_forum plugin (t... [Jacqui Maher]
file MIT-LICENSE Thu Oct 16 22:23:03 -0700 2008 initial untested version of tog_forum plugin (t... [Jacqui Maher]
file README.markdown Loading commit data...
directory app/
directory config/
directory db/ Sat Dec 06 21:38:13 -0800 2008 major rewrite: namespaced models and tables to ... [Jacqui Maher]
file init.rb
directory test/
README.markdown

Tog Forum: a work in progress

Tog forums support: not ready for prime time! I started working on this but it is not yet complete. I realize that the model Post conflicts with a Post model in tog_conversatio. I'll fix it when I can, but in the meantime, if you really need it fixed, you can always fork this project :)

Included functionality

  • Forum, topics and posts
  • Customizable access control (login required)
  • Integration with authentication_system via tog_user
  • Administration interface (utilizing existing admin? rules in tog_user)

Resources

Plugin requirements

  • tog_user
  • will_paginate

Install

  • Install plugin form source:
ruby script/plugin install git@github.com:jacqui/tog_forum.git

  • Generate installation migration:
ruby script/generate migration install_tog_forum
  with the following content:
class InstallTogForum < ActiveRecord::Migration
  def self.up
    migrate_plugin "tog_forum", 1
  end

  def self.down
    migrate_plugin "tog_forum", 0
  end
end
  • Add tog_forums's routes to your application's config/routes.rb
map.routes_from_plugin 'tog_forum'
  • And finally...
 
rake db:migrate

More

http://github.com/jacqui/tog_forum

Copyright (c) 2008 Jacqui Maher, released under the MIT license