tog / tog_vault
- Source
- Commits
- Network (8)
- Issues (2)
- Downloads (12)
- Wiki (4)
- Graphs
-
Tag:
v0.4.0
| name | age | message | |
|---|---|---|---|
| |
CHANGELOG.md | ||
| |
MIT-LICENSE | Tue Aug 26 08:10:29 -0700 2008 | |
| |
README.markdown | ||
| |
app/ | ||
| |
config/ | ||
| |
db/ | Thu Aug 21 05:01:04 -0700 2008 | |
| |
init.rb | ||
| |
locale/ | ||
| |
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

