require 'cms/data_loader' Cms::User.current = cmsadmin = Cms::User.new(login: "cmsadmin", first_name: "CMS", last_name: "Administrator", email: "cmsadmin@example.com") if %w[development test dev local].include?(Rails.env) pwd = cmsadmin.change_password('cmsadmin') else pwd = cmsadmin.new_password end cmsadmin.save create_permission(:administrate, :name => "administrate", :full_name => "Administer CMS", :description => "Allows users to administer the CMS, including adding users and groups.") create_permission(:edit_content, :name => "edit_content", :full_name => "Edit Content", :description => "Allows users to Add, Edit and Delete both Pages and Blocks. Can Save (but not Publish) and Assign them as well.") create_permission(:publish_content, :name => "publish_content", :full_name => "Publish Content", :description => "Allows users to Save and Publish, Hide and Archive both Pages and Blocks.") create_group_type(:guest_group_type, :name => "Guest", :guest => true) create_group_type(:registered_public_user, :name => "Registered Public User") create_group_type(:cms_user, :name => "CMS User", :cms_access => true) group_types(:cms_user).permissions< 'Guest', :code => 'guest', :group_type => group_types(:guest_group_type)) create_group(:content_admin, :name => 'Cms Administrators', :code => 'cms-admin', :group_type => group_types(:cms_user)) create_group(:content_editor, :name => 'Content Editors', :code => 'content-editor', :group_type => group_types(:cms_user)) cmsadmin.groups << groups(:content_admin) cmsadmin.groups << groups(:content_editor) groups(:content_admin).permissions< "Default", :domain => "example.com") create_section(:root, :name => "My Site", :path => "/", :root => true) create_page(:home, :name => "Home", :path => "/", :section => sections(:root), :template_file_name => "default.html.erb", :cacheable => true) create_section(:system, :name => "system", :parent => sections(:root), :path => "/system", :hidden => true) create_page(:not_found, :name => "Page Not Found", :path => "/system/not_found", :section => sections(:system), :template_file_name => "default.html.erb", :publish_on_save => true, :hidden => true, :cacheable => true) create_page(:access_denied, :name => "Access Denied", :path => "/system/access_denied", :section => sections(:system), :template_file_name => "default.html.erb", :publish_on_save => true, :hidden => true, :cacheable => true) create_page(:server_error, :name => "Server Error", :path => "/system/server_error", :section => sections(:system), :template_file_name => "default.html.erb", :publish_on_save => true, :hidden => true, :cacheable => true) create_html_block(:page_not_found, :name => "Page Not Found", :content => "

The page you tried to access does not exist on this server.

", :publish_on_save => true) pages(:not_found).create_connector(html_blocks(:page_not_found), "main") pages(:not_found).publish! create_html_block(:access_denied, :name => "Access Denied", :content => "

You have tried to reach a resource or page which you do not have permission to view.

", :publish_on_save => true) pages(:access_denied).create_connector(html_blocks(:access_denied), "main") pages(:access_denied).publish! create_html_block(:server_error, :name => "Server Error", :content => "

The server encountered an unexpected condition that prevented it from fulfilling the request.

", :publish_on_save => true) pages(:server_error).create_connector(html_blocks(:server_error), "main") pages(:server_error).publish! pages(:home).publish! Cms::Group.all.each { |g| g.sections = Cms::Section.all } unless Cms::DataLoader.silent_mode puts "*************************************************" puts "* YOUR CMS username/password is: cmsadmin/#{pwd}" puts "*************************************************" end