tog / tog_vault

Tog Platform Lightweight CMS Component

This URL has Read+Write access

name age message
file CHANGELOG.md Loading commit data...
file MIT-LICENSE Tue Aug 26 08:10:29 -0700 2008 license updated [molpe]
file README.markdown
directory app/
directory config/
directory db/ Thu Aug 21 05:01:04 -0700 2008 first commit [aitor]
file init.rb
directory locale/
directory public/
README.markdown

Vault

A small CMS for your website static pages!

== Included functionality

  • Pages
  • Children pages
  • Helper for include pages on views
  • HTML editor
  • Small publication workflow (draft-approved-published)

Resources

Plugin requirements

In case you haven't installed any of them previously you'll need the following plugins:

Follow each link above for a short installation guide incase you have to install them.

Install

  • Install plugin form source:
ruby script/plugin install git://github.com/tog/tog_vault.git
  • Generate installation migration:
ruby script/generate migration install_vault
  with the following content:
class InstallVault < ActiveRecord::Migration
  def self.up
    migrate_plugin "tog_vault", 3
  end

  def self.down
    migrate_plugin "tog_vault", 0
  end
end
  • Add conversatio's routes to your application's config/routes.rb
map.routes_from_plugin 'tog_vault'
  • And finally you can migrate the db to add the tog_vault specific tables and copy its resources to public directory:
 
rake db:migrate
 
rake tog:plugins:copy_resource

More

http://github.com/tog/tog_vault

http://github.com/tog/tog_vault/wikis

Copyright (c) 2008 Keras Software Development, released under the MIT license