Depot

File management system for TOG:Community framework.

Included functionality

  • File management
  • Folder management
  • Filesize and disk cuota configuration
  • Tag system
  • File and folder privacity
  • Abuse report
  • And more...

Resources

Plugin requirements

In case you haven't got any of them installed previously, you'll need the following plugins on your application:

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/dms/tog_depot.git
    
  • Add Depot's routes to your application's config/routes.rb

    
    map.routes_from_plugin 'tog_depot'
    
  • Add plugin static resources to public app:

    
    rake tog:plugins:copy_resources
    
  • Generate installation migration:

    
    ruby script/generate migration install_tog_depot
    
  • With the following content:

    
    class InstallTogDepot < ActiveRecord::Migration
    def self.up
      migrate_plugin "tog_depot", 2
    end
    def self.down
      migrate_plugin "tog_depot", 0
    end
    end
    
  • And finally...

    rake db:migrate

More

Released under the MIT license

http://dmsti.es

DMS 2008, Desarrollo de Medios y Sistemas.