refinerycms 0.9.8.9 → 0.9.9
Sign up to get free protection for your applications and to get access to all the features.
- data/.gitignore +14 -0
- data/.rspec +2 -0
- data/Gemfile +32 -42
- data/Gemfile.lock +201 -0
- data/Rakefile +7 -0
- data/app/views/sitemap/index.xml.builder +22 -0
- data/authentication/app/controllers/admin/users_controller.rb +90 -0
- data/authentication/app/controllers/passwords_controller.rb +43 -0
- data/authentication/app/controllers/registrations_controller.rb +67 -0
- data/authentication/app/controllers/sessions_controller.rb +23 -0
- data/{vendor/refinerycms/authentication → authentication}/app/helpers/sessions_helper.rb +0 -0
- data/{vendor/refinerycms/authentication → authentication}/app/helpers/users_helper.rb +0 -0
- data/authentication/app/mailers/user_mailer.rb +20 -0
- data/{vendor/refinerycms/authentication → authentication}/app/models/role.rb +0 -0
- data/{vendor/refinerycms/authentication → authentication}/app/models/roles_users.rb +0 -0
- data/authentication/app/models/user.rb +58 -0
- data/{vendor/refinerycms/authentication → authentication}/app/models/user_plugin.rb +0 -0
- data/authentication/app/views/admin/users/_form.html.erb +92 -0
- data/authentication/app/views/admin/users/_user.html.erb +19 -0
- data/authentication/app/views/admin/users/_users.html.erb +4 -0
- data/{vendor/refinerycms/authentication → authentication}/app/views/admin/users/edit.html.erb +0 -0
- data/authentication/app/views/admin/users/index.html.erb +12 -0
- data/{vendor/refinerycms/authentication → authentication}/app/views/admin/users/new.html.erb +0 -0
- data/authentication/app/views/layouts/login.html.erb +21 -0
- data/authentication/app/views/passwords/edit.html.erb +31 -0
- data/authentication/app/views/passwords/new.html.erb +18 -0
- data/authentication/app/views/registrations/new.html.erb +41 -0
- data/authentication/app/views/sessions/new.html.erb +29 -0
- data/authentication/app/views/user_mailer/reset_notification.html.erb +12 -0
- data/authentication/app/views/user_mailer/reset_notification.text.plain.erb +7 -0
- data/authentication/config/locales/cs.yml +75 -0
- data/authentication/config/locales/da.yml +72 -0
- data/authentication/config/locales/de.yml +72 -0
- data/authentication/config/locales/el.yml +72 -0
- data/authentication/config/locales/en.yml +72 -0
- data/authentication/config/locales/es.yml +100 -0
- data/authentication/config/locales/fr.yml +72 -0
- data/authentication/config/locales/it.yml +97 -0
- data/authentication/config/locales/lolcat.yml +55 -0
- data/authentication/config/locales/lt.yml +55 -0
- data/authentication/config/locales/lv.yml +72 -0
- data/authentication/config/locales/nb.yml +72 -0
- data/authentication/config/locales/nl.yml +70 -0
- data/authentication/config/locales/pl.yml +100 -0
- data/authentication/config/locales/pt-BR.yml +68 -0
- data/authentication/config/locales/rs.yml +72 -0
- data/authentication/config/locales/ru.yml +97 -0
- data/authentication/config/locales/sl.yml +61 -0
- data/authentication/config/locales/sv.yml +64 -0
- data/authentication/config/locales/zh-CN.yml +72 -0
- data/authentication/config/locales/zh-TW.yml +72 -0
- data/authentication/config/routes.rb +31 -0
- data/authentication/db/migrate/20100913234705_create_refinerycms_authentication_schema.rb +43 -0
- data/{db → authentication/db}/migrate/20100929035252_add_missing_indexes_to_roles_users.rb +0 -0
- data/authentication/db/migrate/20101206013505_change_to_devise_users_table.rb +27 -0
- data/authentication/db/migrate/20110106184757_add_remember_created_at_to_users.rb +9 -0
- data/authentication/features/lost_password.feature +49 -0
- data/authentication/features/manage_users.feature +61 -0
- data/authentication/features/step_definitions/lost_password.rb +8 -0
- data/authentication/features/step_definitions/user_steps.rb +36 -0
- data/authentication/features/support/factories.rb +18 -0
- data/authentication/features/support/paths.rb +24 -0
- data/authentication/lib/authenticated_system.rb +29 -0
- data/authentication/lib/authentication.rb +30 -0
- data/authentication/lib/generators/refinerycms_authentication_generator.rb +8 -0
- data/authentication/license.md +21 -0
- data/authentication/readme.md +17 -0
- data/authentication/refinerycms-authentication.gemspec +20 -0
- data/authentication/spec/models/user_spec.rb +159 -0
- data/autotest/autotest.rb +17 -0
- data/autotest/discover.rb +2 -0
- data/base/db/migrate/20100913234706_create_refinerycms_core_schema.rb +23 -0
- data/base/db/migrate/20101217113424_add_locale_to_slugs.rb +13 -0
- data/base/features/step_definitions/web_steps.rb +219 -0
- data/base/features/support/env.rb +84 -0
- data/base/features/support/factories.rb +1 -0
- data/base/features/support/negative_expectations_helper.rb +57 -0
- data/base/features/support/paths.rb +91 -0
- data/base/lib/base.rb +32 -0
- data/base/lib/generators/refinerycms_base_generator.rb +8 -0
- data/base/lib/refinery.rb +32 -0
- data/base/lib/refinery/version.rb +16 -0
- data/base/license.md +21 -0
- data/base/refinerycms-base.gemspec +18 -0
- data/bin/refinerycms +183 -80
- data/changelog.md +51 -0
- data/config.ru +4 -0
- data/config/cucumber.yml +15 -0
- data/config/database.yml.mysql +1 -5
- data/config/database.yml.sqlite3 +4 -4
- data/config/environments/development.rb +5 -6
- data/config/environments/production.rb +5 -15
- data/config/environments/test.rb +4 -6
- data/core/app/controllers/admin/base_controller.rb +10 -0
- data/core/app/controllers/admin/dialogs_controller.rb +26 -0
- data/core/app/controllers/admin/refinery_core_controller.rb +12 -0
- data/core/app/controllers/application_controller.rb +6 -0
- data/core/app/controllers/refinery/fast_controller.rb +9 -0
- data/core/app/controllers/sitemap_controller.rb +14 -0
- data/core/app/helpers/application_helper.rb +5 -0
- data/core/app/views/admin/_head.html.erb +43 -0
- data/core/app/views/admin/_javascripts.html.erb +32 -0
- data/core/app/views/admin/_menu.html.erb +17 -0
- data/core/app/views/admin/dialogs/show.html.erb +19 -0
- data/core/app/views/layouts/admin.html.erb +24 -0
- data/core/app/views/layouts/admin_dialog.html.erb +14 -0
- data/core/app/views/layouts/application.html.erb +21 -0
- data/core/app/views/shared/_content_page.html.erb +63 -0
- data/core/app/views/shared/_draft_page_message.html.erb +3 -0
- data/core/app/views/shared/_footer.html.erb +4 -0
- data/core/app/views/shared/_google_analytics.html.erb +8 -0
- data/core/app/views/shared/_head.html.erb +42 -0
- data/core/app/views/shared/_header.html.erb +8 -0
- data/core/app/views/shared/_html_tag.html.erb +6 -0
- data/core/app/views/shared/_ie6check.html.erb +63 -0
- data/core/app/views/shared/_javascripts.html.erb +10 -0
- data/core/app/views/shared/_menu.html.erb +30 -0
- data/{vendor/refinerycms/core → core}/app/views/shared/_menu_branch.html.erb +0 -0
- data/core/app/views/shared/_message.html.erb +10 -0
- data/core/app/views/shared/_no_script.html.erb +9 -0
- data/core/app/views/shared/_site_bar.html.erb +25 -0
- data/core/app/views/shared/admin/_continue_editing.html.erb +3 -0
- data/{vendor/refinerycms/core → core}/app/views/shared/admin/_error_messages.html.erb +0 -0
- data/core/app/views/shared/admin/_form_actions.html.erb +77 -0
- data/core/app/views/shared/admin/_image_picker.html.erb +60 -0
- data/core/app/views/shared/admin/_make_sortable.html.erb +13 -0
- data/core/app/views/shared/admin/_resource_picker.html.erb +66 -0
- data/core/app/views/shared/admin/_search.html.erb +6 -0
- data/{vendor/refinerycms/core → core}/app/views/shared/admin/_sortable_list.html.erb +0 -0
- data/core/app/views/shared/admin/_tabbed_fields.html.erb +42 -0
- data/core/app/views/welcome.html.erb +17 -0
- data/core/app/views/wymiframe.html.erb +15 -0
- data/core/config/locales/cs.yml +77 -0
- data/core/config/locales/da.yml +75 -0
- data/core/config/locales/de.yml +75 -0
- data/core/config/locales/el.yml +75 -0
- data/core/config/locales/en.yml +75 -0
- data/core/config/locales/es.yml +68 -0
- data/core/config/locales/fr.yml +72 -0
- data/core/config/locales/it.yml +96 -0
- data/core/config/locales/lolcat.yml +68 -0
- data/core/config/locales/lt.yml +75 -0
- data/core/config/locales/lv.yml +72 -0
- data/core/config/locales/nb.yml +75 -0
- data/core/config/locales/nl.yml +75 -0
- data/core/config/locales/pl.yml +75 -0
- data/core/config/locales/pt-BR.yml +72 -0
- data/core/config/locales/rs.yml +76 -0
- data/core/config/locales/ru.yml +71 -0
- data/core/config/locales/sl.yml +72 -0
- data/core/config/locales/sv.yml +75 -0
- data/core/config/locales/zh-CN.yml +75 -0
- data/core/config/locales/zh-TW.yml +75 -0
- data/core/config/routes.rb +19 -0
- data/core/crud.md +197 -0
- data/core/doc/included-jquery-ui-packages.jpg +0 -0
- data/core/engines.md +179 -0
- data/core/features/search.feature +55 -0
- data/core/features/site_bar.feature +24 -0
- data/core/features/step_definitions/core_steps.rb +61 -0
- data/{vendor/refinerycms/core → core}/features/support/paths.rb +0 -0
- data/{vendor/refinerycms/core → core}/features/uploads/beach.jpeg +0 -0
- data/{vendor/refinerycms/core → core}/features/uploads/refinery_is_awesome.txt +0 -0
- data/core/lib/core.rb +143 -0
- data/core/lib/generators/refinerycms_generator.rb +107 -0
- data/core/lib/generators/templates/.gitignore +83 -0
- data/core/lib/generators/templates/.rspec +2 -0
- data/core/lib/generators/templates/app/views/sitemap/index.xml.builder +22 -0
- data/core/lib/generators/templates/autotest/autotest.rb +17 -0
- data/core/lib/generators/templates/autotest/discover.rb +2 -0
- data/core/lib/generators/templates/config/cucumber.yml +15 -0
- data/core/lib/generators/templates/config/database.yml.mysql +20 -0
- data/core/lib/generators/templates/config/database.yml.postgresql +57 -0
- data/core/lib/generators/templates/config/database.yml.sqlite3 +26 -0
- data/core/lib/generators/templates/config/i18n-js.yml +6 -0
- data/core/lib/generators/templates/config/initializers/devise.rb +142 -0
- data/core/lib/generators/templates/config/settings.rb +3 -0
- data/core/lib/generators/templates/db/seeds.rb +5 -0
- data/core/lib/generators/templates/spec/rcov.opts +2 -0
- data/core/lib/generators/templates/spec/spec_helper.rb +76 -0
- data/{vendor/refinerycms/core → core}/lib/refinery/activity.rb +0 -0
- data/core/lib/refinery/admin/base_controller.rb +111 -0
- data/core/lib/refinery/admin_base_controller.rb +5 -0
- data/core/lib/refinery/application.rb +76 -0
- data/core/lib/refinery/application_controller.rb +116 -0
- data/core/lib/refinery/application_helper.rb +19 -0
- data/core/lib/refinery/base_presenter.rb +27 -0
- data/core/lib/refinery/catch_all_routes.rb +11 -0
- data/core/lib/refinery/crud.rb +295 -0
- data/core/lib/refinery/helpers/form_helper.rb +66 -0
- data/core/lib/refinery/helpers/head_helper.rb +17 -0
- data/core/lib/refinery/helpers/html_truncation_helper.rb +25 -0
- data/core/lib/refinery/helpers/image_helper.rb +49 -0
- data/core/lib/refinery/helpers/menu_helper.rb +68 -0
- data/core/lib/refinery/helpers/meta_helper.rb +67 -0
- data/core/lib/refinery/helpers/pagination_helper.rb +16 -0
- data/core/lib/refinery/helpers/script_helper.rb +36 -0
- data/core/lib/refinery/helpers/site_bar_helper.rb +24 -0
- data/core/lib/refinery/helpers/tag_helper.rb +21 -0
- data/{vendor/refinerycms/core → core}/lib/refinery/helpers/translation_helper.rb +0 -0
- data/{vendor/refinerycms/core → core}/lib/refinery/link_renderer.rb +0 -0
- data/core/lib/refinery/plugin.rb +134 -0
- data/core/lib/refinery/plugins.rb +75 -0
- data/core/lib/tasks/cucumber.rake +53 -0
- data/{vendor/refinerycms/core → core}/lib/tasks/doc.rake +0 -0
- data/core/lib/tasks/refinery.rake +231 -0
- data/{vendor/refinerycms/core → core}/lib/tasks/yard.rake +0 -0
- data/core/license.md +21 -0
- data/{vendor/refinerycms/core → core}/public/404.html +0 -0
- data/{vendor/refinerycms/core → core}/public/422.html +0 -0
- data/{vendor/refinerycms/core → core}/public/500.html +0 -0
- data/{vendor/refinerycms/core → core}/public/favicon.ico +0 -0
- data/{vendor/refinerycms/core → core}/public/images/refinery/add.png +0 -0
- data/{vendor/refinerycms/core → core}/public/images/refinery/admin_bg.png +0 -0
- data/{vendor/refinerycms/core → core}/public/images/refinery/ajax-loader.gif +0 -0
- data/{vendor/refinerycms/core → core}/public/images/refinery/branch-end.gif +0 -0
- data/{vendor/refinerycms/core → core}/public/images/refinery/branch-start.gif +0 -0
- data/{vendor/refinerycms/core → core}/public/images/refinery/branch.gif +0 -0
- data/{vendor/refinerycms/core → core}/public/images/refinery/carousel-left.png +0 -0
- data/{vendor/refinerycms/core → core}/public/images/refinery/carousel-right.png +0 -0
- data/{vendor/refinerycms/core → core}/public/images/refinery/cross.png +0 -0
- data/{vendor/refinerycms/core → core}/public/images/refinery/dialogLoadingAnimation.gif +0 -0
- data/{vendor/refinerycms/core → core}/public/images/refinery/header_background.png +0 -0
- data/{vendor/refinerycms/core → core}/public/images/refinery/hover-gradient.jpg +0 -0
- data/{vendor/refinerycms/core → core}/public/images/refinery/icons/accept.png +0 -0
- data/{vendor/refinerycms/core → core}/public/images/refinery/icons/add.png +0 -0
- data/{vendor/refinerycms/core → core}/public/images/refinery/icons/ajax-loader.gif +0 -0
- data/{vendor/refinerycms/core → core}/public/images/refinery/icons/application_edit.png +0 -0
- data/{vendor/refinerycms/core → core}/public/images/refinery/icons/application_go.png +0 -0
- data/{vendor/refinerycms/core → core}/public/images/refinery/icons/arrow_left.png +0 -0
- data/{vendor/refinerycms/core → core}/public/images/refinery/icons/arrow_switch.png +0 -0
- data/{vendor/refinerycms/core → core}/public/images/refinery/icons/arrow_up.png +0 -0
- data/{vendor/refinerycms/core → core}/public/images/refinery/icons/bin.png +0 -0
- data/{vendor/refinerycms/core → core}/public/images/refinery/icons/bin_closed.png +0 -0
- data/{vendor/refinerycms/core → core}/public/images/refinery/icons/cancel.png +0 -0
- data/{vendor/refinerycms/core → core}/public/images/refinery/icons/cog_add.png +0 -0
- data/{vendor/refinerycms/core → core}/public/images/refinery/icons/cog_edit.png +0 -0
- data/{vendor/refinerycms/core → core}/public/images/refinery/icons/cross.png +0 -0
- data/{vendor/refinerycms/core → core}/public/images/refinery/icons/delete.png +0 -0
- data/{vendor/refinerycms/core → core}/public/images/refinery/icons/doc.png +0 -0
- data/core/public/images/refinery/icons/down.gif +0 -0
- data/{vendor/refinerycms/core → core}/public/images/refinery/icons/edit.png +0 -0
- data/{vendor/refinerycms/core → core}/public/images/refinery/icons/email.png +0 -0
- data/{vendor/refinerycms/core → core}/public/images/refinery/icons/email_edit.png +0 -0
- data/{vendor/refinerycms/core → core}/public/images/refinery/icons/email_go.png +0 -0
- data/{vendor/refinerycms/core → core}/public/images/refinery/icons/email_open.png +0 -0
- data/{vendor/refinerycms/core → core}/public/images/refinery/icons/eye.png +0 -0
- data/{vendor/refinerycms/core → core}/public/images/refinery/icons/folder_page_white.png +0 -0
- data/{vendor/refinerycms/core → core}/public/images/refinery/icons/image_add.png +0 -0
- data/{vendor/refinerycms/core → core}/public/images/refinery/icons/image_edit.png +0 -0
- data/{vendor/refinerycms/core → core}/public/images/refinery/icons/img.png +0 -0
- data/core/public/images/refinery/icons/information.png +0 -0
- data/{vendor/refinerycms/core → core}/public/images/refinery/icons/layout_add.png +0 -0
- data/{vendor/refinerycms/core → core}/public/images/refinery/icons/layout_edit.png +0 -0
- data/{vendor/refinerycms/core → core}/public/images/refinery/icons/music.png +0 -0
- data/{vendor/refinerycms/core → core}/public/images/refinery/icons/page_add.png +0 -0
- data/{vendor/refinerycms/core → core}/public/images/refinery/icons/page_edit.png +0 -0
- data/{vendor/refinerycms/core → core}/public/images/refinery/icons/page_white_edit.png +0 -0
- data/{vendor/refinerycms/core → core}/public/images/refinery/icons/page_white_gear.png +0 -0
- data/{vendor/refinerycms/core → core}/public/images/refinery/icons/page_white_put.png +0 -0
- data/{vendor/refinerycms/core → core}/public/images/refinery/icons/pdf.png +0 -0
- data/{vendor/refinerycms/core → core}/public/images/refinery/icons/ppt.png +0 -0
- data/{vendor/refinerycms/core → core}/public/images/refinery/icons/star.png +0 -0
- data/{vendor/refinerycms/core → core}/public/images/refinery/icons/tick.png +0 -0
- data/core/public/images/refinery/icons/up.gif +0 -0
- data/{vendor/refinerycms/core → core}/public/images/refinery/icons/user_add.png +0 -0
- data/{vendor/refinerycms/core → core}/public/images/refinery/icons/user_comment.png +0 -0
- data/{vendor/refinerycms/core → core}/public/images/refinery/icons/user_edit.png +0 -0
- data/{vendor/refinerycms/core → core}/public/images/refinery/icons/xls.png +0 -0
- data/{vendor/refinerycms/core → core}/public/images/refinery/icons/zip.png +0 -0
- data/{vendor/refinerycms/core → core}/public/images/refinery/icons/zoom.png +0 -0
- data/{vendor/refinerycms/core → core}/public/images/refinery/logo-large.png +0 -0
- data/{vendor/refinerycms/core → core}/public/images/refinery/logo-medium.png +0 -0
- data/{vendor/refinerycms/core → core}/public/images/refinery/logo-site-bar.png +0 -0
- data/{vendor/refinerycms/core → core}/public/images/refinery/logo-small-medium.png +0 -0
- data/{vendor/refinerycms/core → core}/public/images/refinery/logo-small.png +0 -0
- data/{vendor/refinerycms/core → core}/public/images/refinery/logo-tiny.png +0 -0
- data/{vendor/refinerycms/core → core}/public/images/refinery/logo.png +0 -0
- data/{vendor/refinerycms/core → core}/public/images/refinery/nav-3-background.gif +0 -0
- data/{vendor/refinerycms/core → core}/public/images/refinery/nav_inactive_background.png +0 -0
- data/{vendor/refinerycms/core → core}/public/images/refinery/orange_button.png +0 -0
- data/{vendor/refinerycms/core → core}/public/images/refinery/page_bg.png +0 -0
- data/{vendor/refinerycms/core → core}/public/images/refinery/resolve_digital_footer_logo.png +0 -0
- data/{vendor/refinerycms/core → core}/public/images/refinery/text_field_background.png +0 -0
- data/core/public/images/refinery/tooltip-nib.gif +0 -0
- data/{vendor/refinerycms/core → core}/public/images/refinery/tooltip-nib.png +0 -0
- data/{vendor/refinerycms/core → core}/public/images/wymeditor/skins/refinery/arrow_redo.png +0 -0
- data/{vendor/refinerycms/core → core}/public/images/wymeditor/skins/refinery/arrow_undo.png +0 -0
- data/{vendor/refinerycms/core → core}/public/images/wymeditor/skins/refinery/eye.png +0 -0
- data/{vendor/refinerycms/core → core}/public/images/wymeditor/skins/refinery/iframe/lbl-blockquote.png +0 -0
- data/{vendor/refinerycms/core → core}/public/images/wymeditor/skins/refinery/iframe/lbl-h1.png +0 -0
- data/{vendor/refinerycms/core → core}/public/images/wymeditor/skins/refinery/iframe/lbl-h2.png +0 -0
- data/{vendor/refinerycms/core → core}/public/images/wymeditor/skins/refinery/iframe/lbl-h3.png +0 -0
- data/{vendor/refinerycms/core → core}/public/images/wymeditor/skins/refinery/iframe/lbl-h4.png +0 -0
- data/{vendor/refinerycms/core → core}/public/images/wymeditor/skins/refinery/iframe/lbl-h5.png +0 -0
- data/{vendor/refinerycms/core → core}/public/images/wymeditor/skins/refinery/iframe/lbl-h6.png +0 -0
- data/{vendor/refinerycms/core → core}/public/images/wymeditor/skins/refinery/iframe/lbl-p.png +0 -0
- data/{vendor/refinerycms/core → core}/public/images/wymeditor/skins/refinery/iframe/lbl-pre.png +0 -0
- data/{vendor/refinerycms/core → core}/public/images/wymeditor/skins/refinery/link_add.png +0 -0
- data/{vendor/refinerycms/core → core}/public/images/wymeditor/skins/refinery/link_break.png +0 -0
- data/{vendor/refinerycms/core → core}/public/images/wymeditor/skins/refinery/page_code.png +0 -0
- data/{vendor/refinerycms/core → core}/public/images/wymeditor/skins/refinery/page_paste.png +0 -0
- data/{vendor/refinerycms/core → core}/public/images/wymeditor/skins/refinery/photo_add.png +0 -0
- data/{vendor/refinerycms/core → core}/public/images/wymeditor/skins/refinery/right.png +0 -0
- data/{vendor/refinerycms/core → core}/public/images/wymeditor/skins/refinery/style.png +0 -0
- data/{vendor/refinerycms/core → core}/public/images/wymeditor/skins/refinery/table_add.png +0 -0
- data/{vendor/refinerycms/core → core}/public/images/wymeditor/skins/refinery/text_align_center.png +0 -0
- data/{vendor/refinerycms/core → core}/public/images/wymeditor/skins/refinery/text_align_justify.png +0 -0
- data/{vendor/refinerycms/core → core}/public/images/wymeditor/skins/refinery/text_align_left.png +0 -0
- data/{vendor/refinerycms/core → core}/public/images/wymeditor/skins/refinery/text_align_right.png +0 -0
- data/{vendor/refinerycms/core → core}/public/images/wymeditor/skins/refinery/text_bold.png +0 -0
- data/{vendor/refinerycms/core → core}/public/images/wymeditor/skins/refinery/text_heading_1.png +0 -0
- data/{vendor/refinerycms/core → core}/public/images/wymeditor/skins/refinery/text_heading_2.png +0 -0
- data/{vendor/refinerycms/core → core}/public/images/wymeditor/skins/refinery/text_heading_3.png +0 -0
- data/{vendor/refinerycms/core → core}/public/images/wymeditor/skins/refinery/text_heading_4.png +0 -0
- data/{vendor/refinerycms/core → core}/public/images/wymeditor/skins/refinery/text_heading_5.png +0 -0
- data/{vendor/refinerycms/core → core}/public/images/wymeditor/skins/refinery/text_heading_6.png +0 -0
- data/{vendor/refinerycms/core → core}/public/images/wymeditor/skins/refinery/text_indent.png +0 -0
- data/{vendor/refinerycms/core → core}/public/images/wymeditor/skins/refinery/text_indent_remove.png +0 -0
- data/{vendor/refinerycms/core → core}/public/images/wymeditor/skins/refinery/text_italic.png +0 -0
- data/{vendor/refinerycms/core → core}/public/images/wymeditor/skins/refinery/text_list_bullets.png +0 -0
- data/{vendor/refinerycms/core → core}/public/images/wymeditor/skins/refinery/text_list_numbers.png +0 -0
- data/{vendor/refinerycms/core → core}/public/images/wymeditor/skins/refinery/text_paragraph.png +0 -0
- data/{vendor/refinerycms/core → core}/public/images/wymeditor/skins/refinery/text_strikethrough.png +0 -0
- data/{vendor/refinerycms/core → core}/public/images/wymeditor/skins/refinery/text_subscript.png +0 -0
- data/{vendor/refinerycms/core → core}/public/images/wymeditor/skins/refinery/text_superscript.png +0 -0
- data/{vendor/refinerycms/core → core}/public/images/wymeditor/skins/refinery/text_underline.png +0 -0
- data/{vendor/refinerycms/core → core}/public/images/wymeditor/skins/wymeditor_icon.png +0 -0
- data/{vendor/refinerycms/core → core}/public/javascripts/admin.js +0 -0
- data/{vendor/refinerycms/core → core}/public/javascripts/application.js +0 -0
- data/core/public/javascripts/dd_belatedpng.js +13 -0
- data/{vendor/refinerycms/core → core}/public/javascripts/i18n-messages.js +0 -0
- data/{vendor/refinerycms/core → core}/public/javascripts/jquery-min.js +0 -0
- data/core/public/javascripts/jquery-ui-custom-min.js +249 -0
- data/core/public/javascripts/jquery.js +6240 -0
- data/{vendor/refinerycms/core → core}/public/javascripts/jquery/GPL-LICENSE.txt +0 -0
- data/{vendor/refinerycms/core → core}/public/javascripts/jquery/MIT-LICENSE.txt +0 -0
- data/{vendor/refinerycms/core → core}/public/javascripts/jquery/jquery.corner.js +0 -0
- data/{vendor/refinerycms/core → core}/public/javascripts/jquery/jquery.html5-placeholder-shim.js +0 -0
- data/{vendor/refinerycms/core → core}/public/javascripts/jquery/jquery.jcarousel.js +0 -0
- data/{vendor/refinerycms/core → core}/public/javascripts/jquery/jquery.textTruncate.js +0 -0
- data/{vendor/refinerycms/core → core}/public/javascripts/jquery/jquery.timers.js +0 -0
- data/core/public/javascripts/modernizr-min.js +30 -0
- data/{vendor/refinerycms/core → core}/public/javascripts/rails.js +0 -0
- data/core/public/javascripts/refinery/admin.js +1114 -0
- data/core/public/javascripts/refinery/boot_wym.js +285 -0
- data/core/public/javascripts/refinery/core.js +18 -0
- data/core/public/javascripts/refinery/i18n.js +340 -0
- data/{vendor/refinerycms/core → core}/public/javascripts/refinery/nestedsortables.js +0 -0
- data/{vendor/refinerycms/core → core}/public/javascripts/refinery/serializelist.js +0 -0
- data/core/public/javascripts/refinery/site_bar.js +16 -0
- data/core/public/javascripts/refinery/submenu.js +49 -0
- data/core/public/javascripts/wymeditor/jquery.refinery.wymeditor.js +5142 -0
- data/{vendor/refinerycms/core → core}/public/javascripts/wymeditor/lang/ca.js +0 -0
- data/{vendor/refinerycms/core → core}/public/javascripts/wymeditor/lang/cs.js +0 -0
- data/core/public/javascripts/wymeditor/lang/da.js +48 -0
- data/{vendor/refinerycms/core → core}/public/javascripts/wymeditor/lang/de.js +0 -0
- data/core/public/javascripts/wymeditor/lang/en.js +47 -0
- data/{vendor/refinerycms/core → core}/public/javascripts/wymeditor/lang/es.js +0 -0
- data/{vendor/refinerycms/core → core}/public/javascripts/wymeditor/lang/fa.js +0 -0
- data/{vendor/refinerycms/core → core}/public/javascripts/wymeditor/lang/fr.js +0 -0
- data/{vendor/refinerycms/core → core}/public/javascripts/wymeditor/lang/he.js +0 -0
- data/{vendor/refinerycms/core → core}/public/javascripts/wymeditor/lang/hu.js +0 -0
- data/{vendor/refinerycms/core → core}/public/javascripts/wymeditor/lang/it.js +0 -0
- data/core/public/javascripts/wymeditor/lang/lv.js +47 -0
- data/core/public/javascripts/wymeditor/lang/nb.js +48 -0
- data/{vendor/refinerycms/core → core}/public/javascripts/wymeditor/lang/nl.js +0 -0
- data/{vendor/refinerycms/core → core}/public/javascripts/wymeditor/lang/nn.js +0 -0
- data/{vendor/refinerycms/core → core}/public/javascripts/wymeditor/lang/pl.js +0 -0
- data/core/public/javascripts/wymeditor/lang/pt-BR.js +47 -0
- data/{vendor/refinerycms/core → core}/public/javascripts/wymeditor/lang/pt.js +0 -0
- data/core/public/javascripts/wymeditor/lang/rs.js +47 -0
- data/core/public/javascripts/wymeditor/lang/ru.js +45 -0
- data/{vendor/refinerycms/core → core}/public/javascripts/wymeditor/lang/sl.js +0 -0
- data/{vendor/refinerycms/core → core}/public/javascripts/wymeditor/lang/sv.js +0 -0
- data/{vendor/refinerycms/core → core}/public/javascripts/wymeditor/lang/tr.js +0 -0
- data/{vendor/refinerycms/core → core}/public/javascripts/wymeditor/lang/zh_cn.js +0 -0
- data/core/public/javascripts/wymeditor/skins/refinery/skin.js +48 -0
- data/{vendor/refinerycms/core → core}/public/robots.txt +0 -0
- data/core/public/stylesheets/application.css +4 -0
- data/core/public/stylesheets/formatting.css +4 -0
- data/core/public/stylesheets/home.css +4 -0
- data/core/public/stylesheets/refinery/application.css +72 -0
- data/core/public/stylesheets/refinery/formatting.css +57 -0
- data/{vendor/refinerycms/core → core}/public/stylesheets/refinery/home.css +0 -0
- data/core/public/stylesheets/refinery/refinery.css +1572 -0
- data/core/public/stylesheets/refinery/site_bar.css +87 -0
- data/core/public/stylesheets/refinery/submenu.css +22 -0
- data/{vendor/refinerycms/core → core}/public/stylesheets/refinery/theme.css +0 -0
- data/{vendor/refinerycms/core → core}/public/stylesheets/refinery/tooltips.css +0 -0
- data/core/public/stylesheets/refinery/ui.css +107 -0
- data/core/public/stylesheets/theme.css +4 -0
- data/core/public/stylesheets/wymeditor/skins/refinery/skin.css +528 -0
- data/{vendor/refinerycms/core → core}/public/stylesheets/wymeditor/skins/refinery/wymiframe.css +0 -0
- data/{vendor/refinerycms/core → core}/public/wymeditor/GPL-license.txt +0 -0
- data/{vendor/refinerycms/core → core}/public/wymeditor/MIT-license.txt +0 -0
- data/{vendor/refinerycms/core → core}/public/wymeditor/README +0 -0
- data/core/refinerycms-core.gemspec +20 -0
- data/core/spec/lib/refinery/plugins_spec.rb +90 -0
- data/dashboard/app/controllers/admin/dashboard_controller.rb +38 -0
- data/dashboard/app/helpers/admin/dashboard_helper.rb +24 -0
- data/dashboard/app/views/admin/dashboard/_additional_dashboard_menu_items.html.erb +1 -0
- data/dashboard/app/views/admin/dashboard/_recent_activity.html.erb +14 -0
- data/{vendor/refinerycms/dashboard → dashboard}/app/views/admin/dashboard/_recent_inquiries.html.erb +0 -0
- data/dashboard/app/views/admin/dashboard/index.html.erb +70 -0
- data/{vendor/refinerycms/dashboard → dashboard}/app/views/admin/dashboard/index.rss.builder +0 -0
- data/dashboard/config/locales/cs.yml +25 -0
- data/dashboard/config/locales/da.yml +25 -0
- data/dashboard/config/locales/de.yml +25 -0
- data/dashboard/config/locales/el.yml +25 -0
- data/dashboard/config/locales/en.yml +25 -0
- data/dashboard/config/locales/es.yml +28 -0
- data/dashboard/config/locales/fr.yml +25 -0
- data/dashboard/config/locales/it.yml +27 -0
- data/dashboard/config/locales/lolcat.yml +24 -0
- data/dashboard/config/locales/lt.yml +25 -0
- data/dashboard/config/locales/lv.yml +27 -0
- data/dashboard/config/locales/nb.yml +25 -0
- data/dashboard/config/locales/nl.yml +25 -0
- data/dashboard/config/locales/pl.yml +29 -0
- data/dashboard/config/locales/pt-BR.yml +29 -0
- data/dashboard/config/locales/rs.yml +26 -0
- data/dashboard/config/locales/ru.yml +29 -0
- data/dashboard/config/locales/sl.yml +24 -0
- data/dashboard/config/locales/sv.yml +25 -0
- data/dashboard/config/locales/zh-CN.yml +25 -0
- data/dashboard/config/locales/zh-TW.yml +25 -0
- data/dashboard/config/routes.rb +11 -0
- data/dashboard/features/dashboard.feature +35 -0
- data/{vendor/refinerycms/dashboard → dashboard}/features/support/paths.rb +0 -0
- data/dashboard/lib/dashboard.rb +19 -0
- data/dashboard/license.md +21 -0
- data/dashboard/readme.md +22 -0
- data/dashboard/refinerycms-dashboard.gemspec +20 -0
- data/images/app/controllers/admin/images_controller.rb +108 -0
- data/images/app/helpers/admin/images_helper.rb +27 -0
- data/images/app/models/image.rb +72 -0
- data/images/app/views/admin/images/_existing_image.html.erb +73 -0
- data/images/app/views/admin/images/_form.html.erb +54 -0
- data/images/app/views/admin/images/_grid_view.html.erb +19 -0
- data/images/app/views/admin/images/_images.html.erb +2 -0
- data/images/app/views/admin/images/_list_view.html.erb +10 -0
- data/images/app/views/admin/images/_list_view_image.html.erb +17 -0
- data/{vendor/refinerycms/images → images}/app/views/admin/images/edit.html.erb +0 -0
- data/images/app/views/admin/images/index.html.erb +38 -0
- data/images/app/views/admin/images/insert.html.erb +47 -0
- data/{vendor/refinerycms/images → images}/app/views/admin/images/new.html.erb +0 -0
- data/images/config/locales/cs.yml +41 -0
- data/images/config/locales/da.yml +41 -0
- data/images/config/locales/de.yml +41 -0
- data/images/config/locales/el.yml +41 -0
- data/images/config/locales/en.yml +41 -0
- data/images/config/locales/es.yml +40 -0
- data/images/config/locales/fr.yml +41 -0
- data/images/config/locales/it.yml +47 -0
- data/images/config/locales/lolcat.yml +41 -0
- data/images/config/locales/lt.yml +41 -0
- data/images/config/locales/lv.yml +41 -0
- data/images/config/locales/nb.yml +42 -0
- data/images/config/locales/nl.yml +40 -0
- data/images/config/locales/pl.yml +42 -0
- data/images/config/locales/pt-BR.yml +42 -0
- data/images/config/locales/rs.yml +42 -0
- data/images/config/locales/ru.yml +41 -0
- data/images/config/locales/sl.yml +40 -0
- data/images/config/locales/sv.yml +41 -0
- data/images/config/locales/zh-CN.yml +41 -0
- data/images/config/locales/zh-TW.yml +41 -0
- data/images/config/routes.rb +11 -0
- data/images/db/migrate/20100913234707_create_refinerycms_images_schema.rb +23 -0
- data/images/features/manage_images.feature +49 -0
- data/images/features/step_definitions/image_steps.rb +40 -0
- data/{vendor/refinerycms/images → images}/features/support/factories.rb +0 -0
- data/{vendor/refinerycms/images → images}/features/support/paths.rb +0 -0
- data/{vendor/refinerycms/images → images}/features/uploads/beach.jpeg +0 -0
- data/{vendor/refinerycms/images → images}/features/uploads/id-rather-be-here.jpg +0 -0
- data/{vendor/refinerycms/images → images}/features/uploads/refinery_is_awesome.txt +0 -0
- data/images/lib/generators/refinerycms_images_generator.rb +8 -0
- data/images/lib/images.rb +59 -0
- data/images/license.md +21 -0
- data/images/readme.md +34 -0
- data/images/refinerycms-images.gemspec +20 -0
- data/images/spec/models/image_spec.rb +87 -0
- data/{vendor/refinerycms/images → images}/spec/uploads/beach.jpeg +0 -0
- data/lib/refinery.rb +1 -0
- data/lib/refinerycms.rb +10 -0
- data/license.md +2 -2
- data/pages/app/controllers/admin/page_parts_controller.rb +24 -0
- data/pages/app/controllers/admin/pages_controller.rb +37 -0
- data/pages/app/controllers/admin/pages_dialogs_controller.rb +87 -0
- data/pages/app/controllers/pages_controller.rb +32 -0
- data/{vendor/refinerycms/pages → pages}/app/helpers/pages_helper.rb +0 -0
- data/pages/app/models/page.rb +290 -0
- data/pages/app/models/page_part.rb +23 -0
- data/{vendor/refinerycms/pages → pages}/app/presenters/page_presenter.rb +0 -0
- data/pages/app/views/admin/pages/_form.html.erb +61 -0
- data/pages/app/views/admin/pages/_form_advanced_options.html.erb +79 -0
- data/{vendor/refinerycms/pages → pages}/app/views/admin/pages/_form_advanced_options_seo.html.erb +0 -0
- data/{vendor/refinerycms/pages → pages}/app/views/admin/pages/_form_fields_after_title.html.erb +0 -0
- data/{vendor/refinerycms/pages → pages}/app/views/admin/pages/_form_new_page_parts.html.erb +0 -0
- data/pages/app/views/admin/pages/_form_page_parts.html.erb +47 -0
- data/pages/app/views/admin/pages/_locale_picker.html.erb +11 -0
- data/pages/app/views/admin/pages/_page.html.erb +33 -0
- data/{vendor/refinerycms/pages → pages}/app/views/admin/pages/_page_part_field.html.erb +0 -0
- data/pages/app/views/admin/pages/_sortable_list.html.erb +5 -0
- data/{vendor/refinerycms/pages → pages}/app/views/admin/pages/edit.html.erb +0 -0
- data/pages/app/views/admin/pages/index.html.erb +40 -0
- data/{vendor/refinerycms/pages → pages}/app/views/admin/pages/new.html.erb +0 -0
- data/pages/app/views/admin/pages_dialogs/_page_link.html.erb +13 -0
- data/pages/app/views/admin/pages_dialogs/link_to.html.erb +141 -0
- data/{vendor/refinerycms/pages → pages}/app/views/pages/home.html.erb +0 -0
- data/{vendor/refinerycms/pages → pages}/app/views/pages/show.html.erb +0 -0
- data/pages/config/locales/cs.yml +84 -0
- data/pages/config/locales/da.yml +84 -0
- data/pages/config/locales/de.yml +84 -0
- data/pages/config/locales/el.yml +84 -0
- data/pages/config/locales/en.yml +84 -0
- data/pages/config/locales/es.yml +83 -0
- data/pages/config/locales/fr.yml +84 -0
- data/pages/config/locales/it.yml +98 -0
- data/pages/config/locales/lolcat.yml +83 -0
- data/pages/config/locales/lt.yml +85 -0
- data/pages/config/locales/lv.yml +86 -0
- data/pages/config/locales/nb.yml +85 -0
- data/pages/config/locales/nl.yml +81 -0
- data/pages/config/locales/pl.yml +85 -0
- data/pages/config/locales/pt-BR.yml +85 -0
- data/pages/config/locales/rs.yml +84 -0
- data/pages/config/locales/ru.yml +108 -0
- data/pages/config/locales/sl.yml +83 -0
- data/pages/config/locales/sv.yml +84 -0
- data/pages/config/locales/zh-CN.yml +84 -0
- data/pages/config/locales/zh-TW.yml +84 -0
- data/pages/config/routes.rb +21 -0
- data/pages/db/migrate/20100913234708_create_refinerycms_pages_schema.rb +53 -0
- data/pages/db/migrate/20101214040815_translate_page_plugin.rb +29 -0
- data/pages/db/migrate/20101216194133_remove_cached_slug_from_pages.rb +9 -0
- data/{db → pages/db}/seeds/pages.rb +0 -0
- data/pages/features/manage_pages.feature +47 -0
- data/pages/features/step_definitions/page_steps.rb +53 -0
- data/pages/features/support/paths.rb +26 -0
- data/pages/features/visit_pages.feature +47 -0
- data/pages/lib/generators/refinerycms_pages_generator.rb +8 -0
- data/pages/lib/pages.rb +36 -0
- data/pages/lib/pages/marketable_routes.rb +3 -0
- data/pages/lib/pages/tabs.rb +30 -0
- data/pages/license.md +21 -0
- data/pages/readme.md +156 -0
- data/pages/refinerycms-pages.gemspec +21 -0
- data/pages/spec/models/page_spec.rb +155 -0
- data/readme.md +37 -25
- data/refinerycms.gemspec +913 -0
- data/resources/app/controllers/admin/resources_controller.rb +89 -0
- data/resources/app/models/resource.rb +53 -0
- data/{vendor/refinerycms/resources → resources}/app/views/admin/resources/_existing_resource.html.erb +0 -0
- data/resources/app/views/admin/resources/_form.html.erb +55 -0
- data/resources/app/views/admin/resources/_resource.html.erb +17 -0
- data/resources/app/views/admin/resources/_resources.html.erb +10 -0
- data/{vendor/refinerycms/resources → resources}/app/views/admin/resources/edit.html.erb +0 -0
- data/resources/app/views/admin/resources/index.html.erb +31 -0
- data/resources/app/views/admin/resources/insert.html.erb +54 -0
- data/{vendor/refinerycms/resources → resources}/app/views/admin/resources/new.html.erb +0 -0
- data/resources/config/locales/cs.yml +34 -0
- data/resources/config/locales/da.yml +34 -0
- data/resources/config/locales/de.yml +34 -0
- data/resources/config/locales/el.yml +34 -0
- data/resources/config/locales/en.yml +34 -0
- data/resources/config/locales/es.yml +33 -0
- data/resources/config/locales/fr.yml +34 -0
- data/resources/config/locales/it.yml +43 -0
- data/resources/config/locales/lolcat.yml +34 -0
- data/resources/config/locales/lt.yml +34 -0
- data/resources/config/locales/lv.yml +34 -0
- data/resources/config/locales/nb.yml +34 -0
- data/resources/config/locales/nl.yml +33 -0
- data/resources/config/locales/pl.yml +35 -0
- data/resources/config/locales/pt-BR.yml +34 -0
- data/resources/config/locales/rs.yml +35 -0
- data/resources/config/locales/ru.yml +34 -0
- data/resources/config/locales/sl.yml +33 -0
- data/resources/config/locales/sv.yml +34 -0
- data/resources/config/locales/zh-CN.yml +34 -0
- data/resources/config/locales/zh-TW.yml +34 -0
- data/resources/config/routes.rb +11 -0
- data/resources/db/migrate/20100913234709_create_refinerycms_resources_schema.rb +21 -0
- data/resources/features/manage_files.feature +43 -0
- data/resources/features/step_definitions/file_steps.rb +21 -0
- data/{vendor/refinerycms/resources → resources}/features/support/paths.rb +0 -0
- data/{vendor/refinerycms/resources → resources}/features/uploads/beach.jpeg +0 -0
- data/{vendor/refinerycms/resources → resources}/features/uploads/refinery_is_awesome.txt +0 -0
- data/resources/lib/generators/refinerycms_resources_generator.rb +8 -0
- data/resources/lib/resources.rb +58 -0
- data/resources/license.md +21 -0
- data/resources/readme.md +9 -0
- data/resources/refinerycms-resources.gemspec +20 -0
- data/resources/spec/models/resource_spec.rb +91 -0
- data/{vendor/refinerycms/resources → resources}/spec/uploads/refinery_is_awesome.txt +0 -0
- data/settings/app/controllers/admin/refinery_settings_controller.rb +77 -0
- data/settings/app/helpers/refinery_settings_helper.rb +25 -0
- data/settings/app/models/refinery_setting.rb +212 -0
- data/settings/app/views/admin/refinery_settings/_form.html.erb +62 -0
- data/settings/app/views/admin/refinery_settings/_refinery_setting.html.erb +23 -0
- data/settings/app/views/admin/refinery_settings/_refinery_settings.html.erb +5 -0
- data/{vendor/refinerycms/settings → settings}/app/views/admin/refinery_settings/edit.html.erb +0 -0
- data/settings/app/views/admin/refinery_settings/index.html.erb +49 -0
- data/{vendor/refinerycms/settings → settings}/app/views/admin/refinery_settings/new.html.erb +0 -0
- data/settings/config/locales/cs.yml +45 -0
- data/settings/config/locales/da.yml +46 -0
- data/settings/config/locales/de.yml +46 -0
- data/settings/config/locales/el.yml +46 -0
- data/settings/config/locales/en.yml +46 -0
- data/settings/config/locales/es.yml +43 -0
- data/settings/config/locales/fr.yml +44 -0
- data/settings/config/locales/it.yml +36 -0
- data/settings/config/locales/lolcat.yml +43 -0
- data/settings/config/locales/lt.yml +46 -0
- data/settings/config/locales/lv.yml +46 -0
- data/settings/config/locales/nb.yml +47 -0
- data/settings/config/locales/nl.yml +46 -0
- data/settings/config/locales/pl.yml +46 -0
- data/settings/config/locales/pt-BR.yml +44 -0
- data/settings/config/locales/rs.yml +46 -0
- data/settings/config/locales/ru.yml +43 -0
- data/settings/config/locales/sl.yml +25 -0
- data/settings/config/locales/sv.yml +45 -0
- data/settings/config/locales/zh-CN.yml +46 -0
- data/settings/config/locales/zh-TW.yml +46 -0
- data/settings/config/routes.rb +8 -0
- data/settings/db/migrate/20100913234710_create_refinerycms_settings_schema.rb +24 -0
- data/{db → settings/db}/migrate/20100926142529_add_value_type_to_refinery_settings.rb +0 -0
- data/{vendor/refinerycms/settings → settings}/features/manage_refinery_settings.feature +0 -0
- data/settings/features/step_definitions/setting_steps.rb +9 -0
- data/{vendor/refinerycms/settings → settings}/features/support/paths.rb +0 -0
- data/settings/lib/generators/refinerycms_settings_generator.rb +8 -0
- data/settings/lib/settings.rb +16 -0
- data/settings/license.md +21 -0
- data/settings/readme.md +55 -0
- data/settings/refinerycms-settings.gemspec +20 -0
- data/{vendor/refinerycms/settings → settings}/spec/models/refinery_setting_spec.rb +0 -0
- data/spec/rcov.opts +2 -0
- data/spec/spec_helper.rb +76 -0
- metadata +872 -826
- data/app/controllers/admin/base_controller.rb +0 -8
- data/app/controllers/application_controller.rb +0 -9
- data/app/helpers/application_helper.rb +0 -7
- data/config/initializers/acts_as_indexed_config.rb +0 -5
- data/config/initializers/field_with_error_fix.rb +0 -3
- data/config/initializers/fix_rack.rb +0 -17
- data/config/routes.rb +0 -74
- data/db/migrate/20100913234704_create_refinery_schema.rb +0 -152
- data/db/schema.rb +0 -159
- data/db/seeds.rb +0 -4
- data/db/seeds/pages_for_inquiries.rb +0 -40
- data/db/seeds/refinery_settings.rb +0 -16
- data/todo.md +0 -33
- data/vendor/refinerycms/authentication/app/controllers/admin/users_controller.rb +0 -58
- data/vendor/refinerycms/authentication/app/controllers/sessions_controller.rb +0 -40
- data/vendor/refinerycms/authentication/app/controllers/users_controller.rb +0 -116
- data/vendor/refinerycms/authentication/app/mailers/user_mailer.rb +0 -28
- data/vendor/refinerycms/authentication/app/models/user.rb +0 -71
- data/vendor/refinerycms/authentication/app/models/user_session.rb +0 -9
- data/vendor/refinerycms/authentication/app/views/admin/users/_form.html.erb +0 -70
- data/vendor/refinerycms/authentication/app/views/admin/users/_user.html.erb +0 -18
- data/vendor/refinerycms/authentication/app/views/admin/users/index.html.erb +0 -14
- data/vendor/refinerycms/authentication/app/views/layouts/login.html.erb +0 -20
- data/vendor/refinerycms/authentication/app/views/sessions/new.html.erb +0 -28
- data/vendor/refinerycms/authentication/app/views/user_mailer/reset_notification.html.erb +0 -6
- data/vendor/refinerycms/authentication/app/views/users/forgot.html.erb +0 -18
- data/vendor/refinerycms/authentication/app/views/users/new.html.erb +0 -41
- data/vendor/refinerycms/authentication/app/views/users/reset.html.erb +0 -29
- data/vendor/refinerycms/authentication/config/locales/da.yml +0 -83
- data/vendor/refinerycms/authentication/config/locales/de.yml +0 -74
- data/vendor/refinerycms/authentication/config/locales/en.yml +0 -66
- data/vendor/refinerycms/authentication/config/locales/es.yml +0 -66
- data/vendor/refinerycms/authentication/config/locales/fr.yml +0 -81
- data/vendor/refinerycms/authentication/config/locales/it.yml +0 -80
- data/vendor/refinerycms/authentication/config/locales/lv.yml +0 -66
- data/vendor/refinerycms/authentication/config/locales/nb.yml +0 -80
- data/vendor/refinerycms/authentication/config/locales/nl.yml +0 -66
- data/vendor/refinerycms/authentication/config/locales/pt-BR.yml +0 -71
- data/vendor/refinerycms/authentication/config/locales/ru.yml +0 -80
- data/vendor/refinerycms/authentication/config/locales/sl.yml +0 -90
- data/vendor/refinerycms/authentication/config/locales/zh-CN.yml +0 -80
- data/vendor/refinerycms/authentication/config/routes.rb +0 -26
- data/vendor/refinerycms/authentication/features/lost_password.feature +0 -41
- data/vendor/refinerycms/authentication/features/manage_users.feature +0 -57
- data/vendor/refinerycms/authentication/features/step_definitions/lost_password.rb +0 -8
- data/vendor/refinerycms/authentication/features/step_definitions/user_steps.rb +0 -32
- data/vendor/refinerycms/authentication/features/support/factories.rb +0 -18
- data/vendor/refinerycms/authentication/features/support/paths.rb +0 -24
- data/vendor/refinerycms/authentication/lib/authenticated_system.rb +0 -129
- data/vendor/refinerycms/authentication/lib/authenticated_test_helper.rb +0 -10
- data/vendor/refinerycms/authentication/lib/authentication.rb +0 -31
- data/vendor/refinerycms/authentication/readme.md +0 -17
- data/vendor/refinerycms/authentication/spec/models/user_spec.rb +0 -52
- data/vendor/refinerycms/authentication/test/unit/user_mailer_test.rb +0 -31
- data/vendor/refinerycms/authentication/test/unit/user_test.rb +0 -164
- data/vendor/refinerycms/core/app/controllers/admin/dialogs_controller.rb +0 -24
- data/vendor/refinerycms/core/app/controllers/admin/refinery_core_controller.rb +0 -16
- data/vendor/refinerycms/core/app/controllers/refinery/fast_controller.rb +0 -7
- data/vendor/refinerycms/core/app/views/admin/_head.html.erb +0 -53
- data/vendor/refinerycms/core/app/views/admin/_menu.html.erb +0 -17
- data/vendor/refinerycms/core/app/views/admin/_menu_tab.html.erb +0 -4
- data/vendor/refinerycms/core/app/views/admin/dialogs/show.html.erb +0 -19
- data/vendor/refinerycms/core/app/views/layouts/admin.html.erb +0 -22
- data/vendor/refinerycms/core/app/views/layouts/admin_dialog.html.erb +0 -13
- data/vendor/refinerycms/core/app/views/layouts/application.html.erb +0 -22
- data/vendor/refinerycms/core/app/views/shared/_content_page.html.erb +0 -41
- data/vendor/refinerycms/core/app/views/shared/_draft_page_message.html.erb +0 -3
- data/vendor/refinerycms/core/app/views/shared/_footer.html.erb +0 -5
- data/vendor/refinerycms/core/app/views/shared/_google_analytics.html.erb +0 -14
- data/vendor/refinerycms/core/app/views/shared/_head.html.erb +0 -17
- data/vendor/refinerycms/core/app/views/shared/_header.html.erb +0 -8
- data/vendor/refinerycms/core/app/views/shared/_html5_for_ie.js.erb +0 -7
- data/vendor/refinerycms/core/app/views/shared/_ie6check.html.erb +0 -63
- data/vendor/refinerycms/core/app/views/shared/_menu.html.erb +0 -38
- data/vendor/refinerycms/core/app/views/shared/_message.html.erb +0 -10
- data/vendor/refinerycms/core/app/views/shared/_no_script.html.erb +0 -9
- data/vendor/refinerycms/core/app/views/shared/_site_bar.html.erb +0 -33
- data/vendor/refinerycms/core/app/views/shared/admin/_continue_editing.html.erb +0 -3
- data/vendor/refinerycms/core/app/views/shared/admin/_form_actions.html.erb +0 -74
- data/vendor/refinerycms/core/app/views/shared/admin/_image_picker.html.erb +0 -59
- data/vendor/refinerycms/core/app/views/shared/admin/_make_sortable.html.erb +0 -13
- data/vendor/refinerycms/core/app/views/shared/admin/_resource_picker.html.erb +0 -66
- data/vendor/refinerycms/core/app/views/shared/admin/_search.html.erb +0 -5
- data/vendor/refinerycms/core/app/views/welcome.html.erb +0 -17
- data/vendor/refinerycms/core/app/views/wymiframe.html.erb +0 -17
- data/vendor/refinerycms/core/config/locales/da.yml +0 -71
- data/vendor/refinerycms/core/config/locales/de.yml +0 -70
- data/vendor/refinerycms/core/config/locales/en.yml +0 -70
- data/vendor/refinerycms/core/config/locales/es.yml +0 -60
- data/vendor/refinerycms/core/config/locales/fr.yml +0 -66
- data/vendor/refinerycms/core/config/locales/it.yml +0 -65
- data/vendor/refinerycms/core/config/locales/lv.yml +0 -63
- data/vendor/refinerycms/core/config/locales/nb.yml +0 -61
- data/vendor/refinerycms/core/config/locales/nl.yml +0 -62
- data/vendor/refinerycms/core/config/locales/pt-BR.yml +0 -67
- data/vendor/refinerycms/core/config/locales/ru.yml +0 -61
- data/vendor/refinerycms/core/config/locales/sl.yml +0 -68
- data/vendor/refinerycms/core/config/locales/zh-CN.yml +0 -65
- data/vendor/refinerycms/core/config/routes.rb +0 -15
- data/vendor/refinerycms/core/crud.md +0 -197
- data/vendor/refinerycms/core/engines.md +0 -218
- data/vendor/refinerycms/core/features/engine_generator.feature +0 -27
- data/vendor/refinerycms/core/features/search.feature +0 -59
- data/vendor/refinerycms/core/features/site_bar.feature +0 -24
- data/vendor/refinerycms/core/features/step_definitions/core_steps.rb +0 -61
- data/vendor/refinerycms/core/features/step_definitions/engine_generator_steps.rb +0 -19
- data/vendor/refinerycms/core/features/step_definitions/generator_steps.rb +0 -11
- data/vendor/refinerycms/core/lib/core.rb +0 -152
- data/vendor/refinerycms/core/lib/generators/refinery_engine/USAGE +0 -23
- data/vendor/refinerycms/core/lib/generators/refinery_engine/refinery_engine_generator.rb +0 -49
- data/vendor/refinerycms/core/lib/generators/refinery_engine/templates/app/controllers/admin/plural_name_controller.rb +0 -7
- data/vendor/refinerycms/core/lib/generators/refinery_engine/templates/app/controllers/plural_name_controller.rb +0 -30
- data/vendor/refinerycms/core/lib/generators/refinery_engine/templates/app/models/singular_name.rb +0 -17
- data/vendor/refinerycms/core/lib/generators/refinery_engine/templates/app/views/admin/plural_name/_form.html.erb +0 -36
- data/vendor/refinerycms/core/lib/generators/refinery_engine/templates/app/views/admin/plural_name/_singular_name.html.erb +0 -20
- data/vendor/refinerycms/core/lib/generators/refinery_engine/templates/app/views/admin/plural_name/_sortable_list.html.erb +0 -4
- data/vendor/refinerycms/core/lib/generators/refinery_engine/templates/app/views/admin/plural_name/edit.html.erb +0 -1
- data/vendor/refinerycms/core/lib/generators/refinery_engine/templates/app/views/admin/plural_name/index.html.erb +0 -67
- data/vendor/refinerycms/core/lib/generators/refinery_engine/templates/app/views/admin/plural_name/new.html.erb +0 -1
- data/vendor/refinerycms/core/lib/generators/refinery_engine/templates/app/views/plural_name/index.html.erb +0 -11
- data/vendor/refinerycms/core/lib/generators/refinery_engine/templates/app/views/plural_name/show.html.erb +0 -31
- data/vendor/refinerycms/core/lib/generators/refinery_engine/templates/config/locales/en.yml +0 -23
- data/vendor/refinerycms/core/lib/generators/refinery_engine/templates/config/locales/nb.yml +0 -19
- data/vendor/refinerycms/core/lib/generators/refinery_engine/templates/config/locales/nl.yml +0 -19
- data/vendor/refinerycms/core/lib/generators/refinery_engine/templates/config/routes.rb +0 -11
- data/vendor/refinerycms/core/lib/generators/refinery_engine/templates/db/migrate/create_plural_name.rb +0 -33
- data/vendor/refinerycms/core/lib/generators/refinery_engine/templates/db/seeds/plural_name.rb +0 -15
- data/vendor/refinerycms/core/lib/generators/refinery_engine/templates/lib/generators/refinerycms_plural_name_generator.rb +0 -6
- data/vendor/refinerycms/core/lib/generators/refinery_engine/templates/lib/plural_name.rb +0 -20
- data/vendor/refinerycms/core/lib/generators/refinery_engine/templates/lib/tasks/plural_name.rake +0 -13
- data/vendor/refinerycms/core/lib/generators/refinery_engine/templates/readme.md +0 -10
- data/vendor/refinerycms/core/lib/generators/refinery_engine/templates/refinerycms-plural_name.gemspec +0 -12
- data/vendor/refinerycms/core/lib/refinery/admin_base_controller.rb +0 -95
- data/vendor/refinerycms/core/lib/refinery/application_controller.rb +0 -113
- data/vendor/refinerycms/core/lib/refinery/application_helper.rb +0 -15
- data/vendor/refinerycms/core/lib/refinery/attachment_fu_patch.rb +0 -16
- data/vendor/refinerycms/core/lib/refinery/base_presenter.rb +0 -27
- data/vendor/refinerycms/core/lib/refinery/catch_all_routes.rb +0 -5
- data/vendor/refinerycms/core/lib/refinery/crud.rb +0 -295
- data/vendor/refinerycms/core/lib/refinery/helpers/form_helper.rb +0 -63
- data/vendor/refinerycms/core/lib/refinery/helpers/html_truncation_helper.rb +0 -26
- data/vendor/refinerycms/core/lib/refinery/helpers/image_helper.rb +0 -38
- data/vendor/refinerycms/core/lib/refinery/helpers/menu_helper.rb +0 -68
- data/vendor/refinerycms/core/lib/refinery/helpers/meta_helper.rb +0 -67
- data/vendor/refinerycms/core/lib/refinery/helpers/script_helper.rb +0 -36
- data/vendor/refinerycms/core/lib/refinery/helpers/site_bar_helper.rb +0 -26
- data/vendor/refinerycms/core/lib/refinery/helpers/tag_helper.rb +0 -19
- data/vendor/refinerycms/core/lib/refinery/plugin.rb +0 -134
- data/vendor/refinerycms/core/lib/refinery/plugins.rb +0 -66
- data/vendor/refinerycms/core/lib/tasks/refinery.rake +0 -134
- data/vendor/refinerycms/core/public/images/refinery/icons/flags/ad.png +0 -0
- data/vendor/refinerycms/core/public/images/refinery/icons/flags/ae.png +0 -0
- data/vendor/refinerycms/core/public/images/refinery/icons/flags/af.png +0 -0
- data/vendor/refinerycms/core/public/images/refinery/icons/flags/ag.png +0 -0
- data/vendor/refinerycms/core/public/images/refinery/icons/flags/ai.png +0 -0
- data/vendor/refinerycms/core/public/images/refinery/icons/flags/al.png +0 -0
- data/vendor/refinerycms/core/public/images/refinery/icons/flags/am.png +0 -0
- data/vendor/refinerycms/core/public/images/refinery/icons/flags/an.png +0 -0
- data/vendor/refinerycms/core/public/images/refinery/icons/flags/ao.png +0 -0
- data/vendor/refinerycms/core/public/images/refinery/icons/flags/ar.png +0 -0
- data/vendor/refinerycms/core/public/images/refinery/icons/flags/as.png +0 -0
- data/vendor/refinerycms/core/public/images/refinery/icons/flags/at.png +0 -0
- data/vendor/refinerycms/core/public/images/refinery/icons/flags/au.png +0 -0
- data/vendor/refinerycms/core/public/images/refinery/icons/flags/aw.png +0 -0
- data/vendor/refinerycms/core/public/images/refinery/icons/flags/ax.png +0 -0
- data/vendor/refinerycms/core/public/images/refinery/icons/flags/az.png +0 -0
- data/vendor/refinerycms/core/public/images/refinery/icons/flags/ba.png +0 -0
- data/vendor/refinerycms/core/public/images/refinery/icons/flags/bb.png +0 -0
- data/vendor/refinerycms/core/public/images/refinery/icons/flags/bd.png +0 -0
- data/vendor/refinerycms/core/public/images/refinery/icons/flags/be.png +0 -0
- data/vendor/refinerycms/core/public/images/refinery/icons/flags/bf.png +0 -0
- data/vendor/refinerycms/core/public/images/refinery/icons/flags/bg.png +0 -0
- data/vendor/refinerycms/core/public/images/refinery/icons/flags/bh.png +0 -0
- data/vendor/refinerycms/core/public/images/refinery/icons/flags/bi.png +0 -0
- data/vendor/refinerycms/core/public/images/refinery/icons/flags/bj.png +0 -0
- data/vendor/refinerycms/core/public/images/refinery/icons/flags/bm.png +0 -0
- data/vendor/refinerycms/core/public/images/refinery/icons/flags/bn.png +0 -0
- data/vendor/refinerycms/core/public/images/refinery/icons/flags/bo.png +0 -0
- data/vendor/refinerycms/core/public/images/refinery/icons/flags/bs.png +0 -0
- data/vendor/refinerycms/core/public/images/refinery/icons/flags/bt.png +0 -0
- data/vendor/refinerycms/core/public/images/refinery/icons/flags/bv.png +0 -0
- data/vendor/refinerycms/core/public/images/refinery/icons/flags/bw.png +0 -0
- data/vendor/refinerycms/core/public/images/refinery/icons/flags/by.png +0 -0
- data/vendor/refinerycms/core/public/images/refinery/icons/flags/bz.png +0 -0
- data/vendor/refinerycms/core/public/images/refinery/icons/flags/ca.png +0 -0
- data/vendor/refinerycms/core/public/images/refinery/icons/flags/catalonia.png +0 -0
- data/vendor/refinerycms/core/public/images/refinery/icons/flags/cc.png +0 -0
- data/vendor/refinerycms/core/public/images/refinery/icons/flags/cd.png +0 -0
- data/vendor/refinerycms/core/public/images/refinery/icons/flags/cf.png +0 -0
- data/vendor/refinerycms/core/public/images/refinery/icons/flags/cg.png +0 -0
- data/vendor/refinerycms/core/public/images/refinery/icons/flags/ch.png +0 -0
- data/vendor/refinerycms/core/public/images/refinery/icons/flags/ci.png +0 -0
- data/vendor/refinerycms/core/public/images/refinery/icons/flags/ck.png +0 -0
- data/vendor/refinerycms/core/public/images/refinery/icons/flags/cl.png +0 -0
- data/vendor/refinerycms/core/public/images/refinery/icons/flags/cm.png +0 -0
- data/vendor/refinerycms/core/public/images/refinery/icons/flags/cn.png +0 -0
- data/vendor/refinerycms/core/public/images/refinery/icons/flags/co.png +0 -0
- data/vendor/refinerycms/core/public/images/refinery/icons/flags/cr.png +0 -0
- data/vendor/refinerycms/core/public/images/refinery/icons/flags/cs.png +0 -0
- data/vendor/refinerycms/core/public/images/refinery/icons/flags/cu.png +0 -0
- data/vendor/refinerycms/core/public/images/refinery/icons/flags/cv.png +0 -0
- data/vendor/refinerycms/core/public/images/refinery/icons/flags/cx.png +0 -0
- data/vendor/refinerycms/core/public/images/refinery/icons/flags/cy.png +0 -0
- data/vendor/refinerycms/core/public/images/refinery/icons/flags/cz.png +0 -0
- data/vendor/refinerycms/core/public/images/refinery/icons/flags/da.png +0 -0
- data/vendor/refinerycms/core/public/images/refinery/icons/flags/de.png +0 -0
- data/vendor/refinerycms/core/public/images/refinery/icons/flags/dj.png +0 -0
- data/vendor/refinerycms/core/public/images/refinery/icons/flags/dm.png +0 -0
- data/vendor/refinerycms/core/public/images/refinery/icons/flags/do.png +0 -0
- data/vendor/refinerycms/core/public/images/refinery/icons/flags/dz.png +0 -0
- data/vendor/refinerycms/core/public/images/refinery/icons/flags/ec.png +0 -0
- data/vendor/refinerycms/core/public/images/refinery/icons/flags/ee.png +0 -0
- data/vendor/refinerycms/core/public/images/refinery/icons/flags/eg.png +0 -0
- data/vendor/refinerycms/core/public/images/refinery/icons/flags/eh.png +0 -0
- data/vendor/refinerycms/core/public/images/refinery/icons/flags/en.png +0 -0
- data/vendor/refinerycms/core/public/images/refinery/icons/flags/england.png +0 -0
- data/vendor/refinerycms/core/public/images/refinery/icons/flags/er.png +0 -0
- data/vendor/refinerycms/core/public/images/refinery/icons/flags/es.png +0 -0
- data/vendor/refinerycms/core/public/images/refinery/icons/flags/et.png +0 -0
- data/vendor/refinerycms/core/public/images/refinery/icons/flags/europeanunion.png +0 -0
- data/vendor/refinerycms/core/public/images/refinery/icons/flags/fam.png +0 -0
- data/vendor/refinerycms/core/public/images/refinery/icons/flags/fi.png +0 -0
- data/vendor/refinerycms/core/public/images/refinery/icons/flags/fj.png +0 -0
- data/vendor/refinerycms/core/public/images/refinery/icons/flags/fk.png +0 -0
- data/vendor/refinerycms/core/public/images/refinery/icons/flags/fm.png +0 -0
- data/vendor/refinerycms/core/public/images/refinery/icons/flags/fo.png +0 -0
- data/vendor/refinerycms/core/public/images/refinery/icons/flags/fr.png +0 -0
- data/vendor/refinerycms/core/public/images/refinery/icons/flags/ga.png +0 -0
- data/vendor/refinerycms/core/public/images/refinery/icons/flags/gb.png +0 -0
- data/vendor/refinerycms/core/public/images/refinery/icons/flags/gd.png +0 -0
- data/vendor/refinerycms/core/public/images/refinery/icons/flags/ge.png +0 -0
- data/vendor/refinerycms/core/public/images/refinery/icons/flags/gf.png +0 -0
- data/vendor/refinerycms/core/public/images/refinery/icons/flags/gh.png +0 -0
- data/vendor/refinerycms/core/public/images/refinery/icons/flags/gi.png +0 -0
- data/vendor/refinerycms/core/public/images/refinery/icons/flags/gl.png +0 -0
- data/vendor/refinerycms/core/public/images/refinery/icons/flags/gm.png +0 -0
- data/vendor/refinerycms/core/public/images/refinery/icons/flags/gn.png +0 -0
- data/vendor/refinerycms/core/public/images/refinery/icons/flags/gp.png +0 -0
- data/vendor/refinerycms/core/public/images/refinery/icons/flags/gq.png +0 -0
- data/vendor/refinerycms/core/public/images/refinery/icons/flags/gr.png +0 -0
- data/vendor/refinerycms/core/public/images/refinery/icons/flags/gs.png +0 -0
- data/vendor/refinerycms/core/public/images/refinery/icons/flags/gt.png +0 -0
- data/vendor/refinerycms/core/public/images/refinery/icons/flags/gu.png +0 -0
- data/vendor/refinerycms/core/public/images/refinery/icons/flags/gw.png +0 -0
- data/vendor/refinerycms/core/public/images/refinery/icons/flags/gy.png +0 -0
- data/vendor/refinerycms/core/public/images/refinery/icons/flags/hk.png +0 -0
- data/vendor/refinerycms/core/public/images/refinery/icons/flags/hm.png +0 -0
- data/vendor/refinerycms/core/public/images/refinery/icons/flags/hn.png +0 -0
- data/vendor/refinerycms/core/public/images/refinery/icons/flags/hr.png +0 -0
- data/vendor/refinerycms/core/public/images/refinery/icons/flags/ht.png +0 -0
- data/vendor/refinerycms/core/public/images/refinery/icons/flags/hu.png +0 -0
- data/vendor/refinerycms/core/public/images/refinery/icons/flags/id.png +0 -0
- data/vendor/refinerycms/core/public/images/refinery/icons/flags/ie.png +0 -0
- data/vendor/refinerycms/core/public/images/refinery/icons/flags/il.png +0 -0
- data/vendor/refinerycms/core/public/images/refinery/icons/flags/in.png +0 -0
- data/vendor/refinerycms/core/public/images/refinery/icons/flags/io.png +0 -0
- data/vendor/refinerycms/core/public/images/refinery/icons/flags/iq.png +0 -0
- data/vendor/refinerycms/core/public/images/refinery/icons/flags/ir.png +0 -0
- data/vendor/refinerycms/core/public/images/refinery/icons/flags/is.png +0 -0
- data/vendor/refinerycms/core/public/images/refinery/icons/flags/it.png +0 -0
- data/vendor/refinerycms/core/public/images/refinery/icons/flags/jm.png +0 -0
- data/vendor/refinerycms/core/public/images/refinery/icons/flags/jo.png +0 -0
- data/vendor/refinerycms/core/public/images/refinery/icons/flags/jp.png +0 -0
- data/vendor/refinerycms/core/public/images/refinery/icons/flags/ke.png +0 -0
- data/vendor/refinerycms/core/public/images/refinery/icons/flags/kg.png +0 -0
- data/vendor/refinerycms/core/public/images/refinery/icons/flags/kh.png +0 -0
- data/vendor/refinerycms/core/public/images/refinery/icons/flags/ki.png +0 -0
- data/vendor/refinerycms/core/public/images/refinery/icons/flags/km.png +0 -0
- data/vendor/refinerycms/core/public/images/refinery/icons/flags/kn.png +0 -0
- data/vendor/refinerycms/core/public/images/refinery/icons/flags/kp.png +0 -0
- data/vendor/refinerycms/core/public/images/refinery/icons/flags/kr.png +0 -0
- data/vendor/refinerycms/core/public/images/refinery/icons/flags/kw.png +0 -0
- data/vendor/refinerycms/core/public/images/refinery/icons/flags/ky.png +0 -0
- data/vendor/refinerycms/core/public/images/refinery/icons/flags/kz.png +0 -0
- data/vendor/refinerycms/core/public/images/refinery/icons/flags/la.png +0 -0
- data/vendor/refinerycms/core/public/images/refinery/icons/flags/lb.png +0 -0
- data/vendor/refinerycms/core/public/images/refinery/icons/flags/lc.png +0 -0
- data/vendor/refinerycms/core/public/images/refinery/icons/flags/li.png +0 -0
- data/vendor/refinerycms/core/public/images/refinery/icons/flags/lk.png +0 -0
- data/vendor/refinerycms/core/public/images/refinery/icons/flags/lr.png +0 -0
- data/vendor/refinerycms/core/public/images/refinery/icons/flags/ls.png +0 -0
- data/vendor/refinerycms/core/public/images/refinery/icons/flags/lt.png +0 -0
- data/vendor/refinerycms/core/public/images/refinery/icons/flags/lu.png +0 -0
- data/vendor/refinerycms/core/public/images/refinery/icons/flags/lv.png +0 -0
- data/vendor/refinerycms/core/public/images/refinery/icons/flags/ly.png +0 -0
- data/vendor/refinerycms/core/public/images/refinery/icons/flags/ma.png +0 -0
- data/vendor/refinerycms/core/public/images/refinery/icons/flags/mc.png +0 -0
- data/vendor/refinerycms/core/public/images/refinery/icons/flags/md.png +0 -0
- data/vendor/refinerycms/core/public/images/refinery/icons/flags/me.png +0 -0
- data/vendor/refinerycms/core/public/images/refinery/icons/flags/mg.png +0 -0
- data/vendor/refinerycms/core/public/images/refinery/icons/flags/mh.png +0 -0
- data/vendor/refinerycms/core/public/images/refinery/icons/flags/mk.png +0 -0
- data/vendor/refinerycms/core/public/images/refinery/icons/flags/ml.png +0 -0
- data/vendor/refinerycms/core/public/images/refinery/icons/flags/mm.png +0 -0
- data/vendor/refinerycms/core/public/images/refinery/icons/flags/mn.png +0 -0
- data/vendor/refinerycms/core/public/images/refinery/icons/flags/mo.png +0 -0
- data/vendor/refinerycms/core/public/images/refinery/icons/flags/mp.png +0 -0
- data/vendor/refinerycms/core/public/images/refinery/icons/flags/mq.png +0 -0
- data/vendor/refinerycms/core/public/images/refinery/icons/flags/mr.png +0 -0
- data/vendor/refinerycms/core/public/images/refinery/icons/flags/ms.png +0 -0
- data/vendor/refinerycms/core/public/images/refinery/icons/flags/mt.png +0 -0
- data/vendor/refinerycms/core/public/images/refinery/icons/flags/mu.png +0 -0
- data/vendor/refinerycms/core/public/images/refinery/icons/flags/mv.png +0 -0
- data/vendor/refinerycms/core/public/images/refinery/icons/flags/mw.png +0 -0
- data/vendor/refinerycms/core/public/images/refinery/icons/flags/mx.png +0 -0
- data/vendor/refinerycms/core/public/images/refinery/icons/flags/my.png +0 -0
- data/vendor/refinerycms/core/public/images/refinery/icons/flags/mz.png +0 -0
- data/vendor/refinerycms/core/public/images/refinery/icons/flags/na.png +0 -0
- data/vendor/refinerycms/core/public/images/refinery/icons/flags/nb.png +0 -0
- data/vendor/refinerycms/core/public/images/refinery/icons/flags/nc.png +0 -0
- data/vendor/refinerycms/core/public/images/refinery/icons/flags/ne.png +0 -0
- data/vendor/refinerycms/core/public/images/refinery/icons/flags/nf.png +0 -0
- data/vendor/refinerycms/core/public/images/refinery/icons/flags/ng.png +0 -0
- data/vendor/refinerycms/core/public/images/refinery/icons/flags/ni.png +0 -0
- data/vendor/refinerycms/core/public/images/refinery/icons/flags/nl.png +0 -0
- data/vendor/refinerycms/core/public/images/refinery/icons/flags/nn.png +0 -0
- data/vendor/refinerycms/core/public/images/refinery/icons/flags/np.png +0 -0
- data/vendor/refinerycms/core/public/images/refinery/icons/flags/nr.png +0 -0
- data/vendor/refinerycms/core/public/images/refinery/icons/flags/nu.png +0 -0
- data/vendor/refinerycms/core/public/images/refinery/icons/flags/nz.png +0 -0
- data/vendor/refinerycms/core/public/images/refinery/icons/flags/om.png +0 -0
- data/vendor/refinerycms/core/public/images/refinery/icons/flags/pa.png +0 -0
- data/vendor/refinerycms/core/public/images/refinery/icons/flags/pe.png +0 -0
- data/vendor/refinerycms/core/public/images/refinery/icons/flags/pf.png +0 -0
- data/vendor/refinerycms/core/public/images/refinery/icons/flags/pg.png +0 -0
- data/vendor/refinerycms/core/public/images/refinery/icons/flags/ph.png +0 -0
- data/vendor/refinerycms/core/public/images/refinery/icons/flags/pk.png +0 -0
- data/vendor/refinerycms/core/public/images/refinery/icons/flags/pl.png +0 -0
- data/vendor/refinerycms/core/public/images/refinery/icons/flags/pm.png +0 -0
- data/vendor/refinerycms/core/public/images/refinery/icons/flags/pn.png +0 -0
- data/vendor/refinerycms/core/public/images/refinery/icons/flags/pr.png +0 -0
- data/vendor/refinerycms/core/public/images/refinery/icons/flags/ps.png +0 -0
- data/vendor/refinerycms/core/public/images/refinery/icons/flags/pt-BR.png +0 -0
- data/vendor/refinerycms/core/public/images/refinery/icons/flags/pt.png +0 -0
- data/vendor/refinerycms/core/public/images/refinery/icons/flags/pw.png +0 -0
- data/vendor/refinerycms/core/public/images/refinery/icons/flags/py.png +0 -0
- data/vendor/refinerycms/core/public/images/refinery/icons/flags/qa.png +0 -0
- data/vendor/refinerycms/core/public/images/refinery/icons/flags/re.png +0 -0
- data/vendor/refinerycms/core/public/images/refinery/icons/flags/ro.png +0 -0
- data/vendor/refinerycms/core/public/images/refinery/icons/flags/rs.png +0 -0
- data/vendor/refinerycms/core/public/images/refinery/icons/flags/ru.png +0 -0
- data/vendor/refinerycms/core/public/images/refinery/icons/flags/rw.png +0 -0
- data/vendor/refinerycms/core/public/images/refinery/icons/flags/sa.png +0 -0
- data/vendor/refinerycms/core/public/images/refinery/icons/flags/sb.png +0 -0
- data/vendor/refinerycms/core/public/images/refinery/icons/flags/sc.png +0 -0
- data/vendor/refinerycms/core/public/images/refinery/icons/flags/scotland.png +0 -0
- data/vendor/refinerycms/core/public/images/refinery/icons/flags/sd.png +0 -0
- data/vendor/refinerycms/core/public/images/refinery/icons/flags/se.png +0 -0
- data/vendor/refinerycms/core/public/images/refinery/icons/flags/sg.png +0 -0
- data/vendor/refinerycms/core/public/images/refinery/icons/flags/sh.png +0 -0
- data/vendor/refinerycms/core/public/images/refinery/icons/flags/si.png +0 -0
- data/vendor/refinerycms/core/public/images/refinery/icons/flags/sj.png +0 -0
- data/vendor/refinerycms/core/public/images/refinery/icons/flags/sk.png +0 -0
- data/vendor/refinerycms/core/public/images/refinery/icons/flags/sl.png +0 -0
- data/vendor/refinerycms/core/public/images/refinery/icons/flags/sm.png +0 -0
- data/vendor/refinerycms/core/public/images/refinery/icons/flags/sn.png +0 -0
- data/vendor/refinerycms/core/public/images/refinery/icons/flags/so.png +0 -0
- data/vendor/refinerycms/core/public/images/refinery/icons/flags/sr.png +0 -0
- data/vendor/refinerycms/core/public/images/refinery/icons/flags/st.png +0 -0
- data/vendor/refinerycms/core/public/images/refinery/icons/flags/sv.png +0 -0
- data/vendor/refinerycms/core/public/images/refinery/icons/flags/sy.png +0 -0
- data/vendor/refinerycms/core/public/images/refinery/icons/flags/sz.png +0 -0
- data/vendor/refinerycms/core/public/images/refinery/icons/flags/tc.png +0 -0
- data/vendor/refinerycms/core/public/images/refinery/icons/flags/td.png +0 -0
- data/vendor/refinerycms/core/public/images/refinery/icons/flags/tf.png +0 -0
- data/vendor/refinerycms/core/public/images/refinery/icons/flags/tg.png +0 -0
- data/vendor/refinerycms/core/public/images/refinery/icons/flags/th.png +0 -0
- data/vendor/refinerycms/core/public/images/refinery/icons/flags/tj.png +0 -0
- data/vendor/refinerycms/core/public/images/refinery/icons/flags/tk.png +0 -0
- data/vendor/refinerycms/core/public/images/refinery/icons/flags/tl.png +0 -0
- data/vendor/refinerycms/core/public/images/refinery/icons/flags/tm.png +0 -0
- data/vendor/refinerycms/core/public/images/refinery/icons/flags/tn.png +0 -0
- data/vendor/refinerycms/core/public/images/refinery/icons/flags/to.png +0 -0
- data/vendor/refinerycms/core/public/images/refinery/icons/flags/tr.png +0 -0
- data/vendor/refinerycms/core/public/images/refinery/icons/flags/tt.png +0 -0
- data/vendor/refinerycms/core/public/images/refinery/icons/flags/tv.png +0 -0
- data/vendor/refinerycms/core/public/images/refinery/icons/flags/tw.png +0 -0
- data/vendor/refinerycms/core/public/images/refinery/icons/flags/tz.png +0 -0
- data/vendor/refinerycms/core/public/images/refinery/icons/flags/ua.png +0 -0
- data/vendor/refinerycms/core/public/images/refinery/icons/flags/ug.png +0 -0
- data/vendor/refinerycms/core/public/images/refinery/icons/flags/um.png +0 -0
- data/vendor/refinerycms/core/public/images/refinery/icons/flags/us.png +0 -0
- data/vendor/refinerycms/core/public/images/refinery/icons/flags/uy.png +0 -0
- data/vendor/refinerycms/core/public/images/refinery/icons/flags/uz.png +0 -0
- data/vendor/refinerycms/core/public/images/refinery/icons/flags/va.png +0 -0
- data/vendor/refinerycms/core/public/images/refinery/icons/flags/vc.png +0 -0
- data/vendor/refinerycms/core/public/images/refinery/icons/flags/ve.png +0 -0
- data/vendor/refinerycms/core/public/images/refinery/icons/flags/vg.png +0 -0
- data/vendor/refinerycms/core/public/images/refinery/icons/flags/vi.png +0 -0
- data/vendor/refinerycms/core/public/images/refinery/icons/flags/vn.png +0 -0
- data/vendor/refinerycms/core/public/images/refinery/icons/flags/vu.png +0 -0
- data/vendor/refinerycms/core/public/images/refinery/icons/flags/wales.png +0 -0
- data/vendor/refinerycms/core/public/images/refinery/icons/flags/wf.png +0 -0
- data/vendor/refinerycms/core/public/images/refinery/icons/flags/ws.png +0 -0
- data/vendor/refinerycms/core/public/images/refinery/icons/flags/ye.png +0 -0
- data/vendor/refinerycms/core/public/images/refinery/icons/flags/yt.png +0 -0
- data/vendor/refinerycms/core/public/images/refinery/icons/flags/za.png +0 -0
- data/vendor/refinerycms/core/public/images/refinery/icons/flags/zh-CN.png +0 -0
- data/vendor/refinerycms/core/public/images/refinery/icons/flags/zm.png +0 -0
- data/vendor/refinerycms/core/public/images/refinery/icons/flags/zw.png +0 -0
- data/vendor/refinerycms/core/public/javascripts/jquery-ui-custom-min.js +0 -244
- data/vendor/refinerycms/core/public/javascripts/jquery.js +0 -6240
- data/vendor/refinerycms/core/public/javascripts/refinery/admin.js +0 -978
- data/vendor/refinerycms/core/public/javascripts/refinery/boot_wym.js +0 -210
- data/vendor/refinerycms/core/public/javascripts/refinery/core.js +0 -15
- data/vendor/refinerycms/core/public/javascripts/refinery/i18n.js +0 -340
- data/vendor/refinerycms/core/public/javascripts/refinery/site_bar.js +0 -15
- data/vendor/refinerycms/core/public/javascripts/wymeditor/jquery.refinery.wymeditor.js +0 -5110
- data/vendor/refinerycms/core/public/javascripts/wymeditor/lang/da.js +0 -47
- data/vendor/refinerycms/core/public/javascripts/wymeditor/lang/en.js +0 -47
- data/vendor/refinerycms/core/public/javascripts/wymeditor/lang/nb.js +0 -45
- data/vendor/refinerycms/core/public/javascripts/wymeditor/lang/pt-br.js +0 -47
- data/vendor/refinerycms/core/public/javascripts/wymeditor/lang/ru.js +0 -45
- data/vendor/refinerycms/core/public/javascripts/wymeditor/skins/refinery/skin.js +0 -40
- data/vendor/refinerycms/core/public/stylesheets/application.css +0 -5
- data/vendor/refinerycms/core/public/stylesheets/formatting.css +0 -5
- data/vendor/refinerycms/core/public/stylesheets/home.css +0 -5
- data/vendor/refinerycms/core/public/stylesheets/ie6.css +0 -0
- data/vendor/refinerycms/core/public/stylesheets/ie7.css +0 -1
- data/vendor/refinerycms/core/public/stylesheets/refinery/application.css +0 -50
- data/vendor/refinerycms/core/public/stylesheets/refinery/formatting.css +0 -57
- data/vendor/refinerycms/core/public/stylesheets/refinery/ie-less-than-8.css +0 -21
- data/vendor/refinerycms/core/public/stylesheets/refinery/ie-less-than-9.css +0 -26
- data/vendor/refinerycms/core/public/stylesheets/refinery/refinery.css +0 -1500
- data/vendor/refinerycms/core/public/stylesheets/refinery/site_bar.css +0 -81
- data/vendor/refinerycms/core/public/stylesheets/refinery/ui.css +0 -101
- data/vendor/refinerycms/core/public/stylesheets/theme.css +0 -1
- data/vendor/refinerycms/core/public/stylesheets/wymeditor/skins/refinery/skin.css +0 -219
- data/vendor/refinerycms/dashboard/app/controllers/admin/dashboard_controller.rb +0 -38
- data/vendor/refinerycms/dashboard/app/helpers/admin/dashboard_helper.rb +0 -20
- data/vendor/refinerycms/dashboard/app/views/admin/dashboard/_recent_activity.html.erb +0 -12
- data/vendor/refinerycms/dashboard/app/views/admin/dashboard/index.html.erb +0 -72
- data/vendor/refinerycms/dashboard/config/locales/da.yml +0 -24
- data/vendor/refinerycms/dashboard/config/locales/de.yml +0 -24
- data/vendor/refinerycms/dashboard/config/locales/en.yml +0 -24
- data/vendor/refinerycms/dashboard/config/locales/es.yml +0 -27
- data/vendor/refinerycms/dashboard/config/locales/fr.yml +0 -24
- data/vendor/refinerycms/dashboard/config/locales/it.yml +0 -24
- data/vendor/refinerycms/dashboard/config/locales/lv.yml +0 -25
- data/vendor/refinerycms/dashboard/config/locales/nb.yml +0 -27
- data/vendor/refinerycms/dashboard/config/locales/nl.yml +0 -23
- data/vendor/refinerycms/dashboard/config/locales/pt-BR.yml +0 -28
- data/vendor/refinerycms/dashboard/config/locales/ru.yml +0 -27
- data/vendor/refinerycms/dashboard/config/locales/sl.yml +0 -23
- data/vendor/refinerycms/dashboard/config/locales/zh-CN.yml +0 -23
- data/vendor/refinerycms/dashboard/config/routes.rb +0 -11
- data/vendor/refinerycms/dashboard/features/dashboard.feature +0 -56
- data/vendor/refinerycms/dashboard/lib/dashboard.rb +0 -19
- data/vendor/refinerycms/dashboard/readme.md +0 -22
- data/vendor/refinerycms/images/app/controllers/admin/images_controller.rb +0 -116
- data/vendor/refinerycms/images/app/helpers/admin/images_helper.rb +0 -27
- data/vendor/refinerycms/images/app/models/image.rb +0 -72
- data/vendor/refinerycms/images/app/views/admin/images/_existing_image.html.erb +0 -73
- data/vendor/refinerycms/images/app/views/admin/images/_form.html.erb +0 -51
- data/vendor/refinerycms/images/app/views/admin/images/_grid_view.html.erb +0 -19
- data/vendor/refinerycms/images/app/views/admin/images/_list_view.html.erb +0 -14
- data/vendor/refinerycms/images/app/views/admin/images/_list_view_image.html.erb +0 -17
- data/vendor/refinerycms/images/app/views/admin/images/index.html.erb +0 -43
- data/vendor/refinerycms/images/app/views/admin/images/insert.html.erb +0 -47
- data/vendor/refinerycms/images/config/locales/da.yml +0 -42
- data/vendor/refinerycms/images/config/locales/de.yml +0 -38
- data/vendor/refinerycms/images/config/locales/en.yml +0 -38
- data/vendor/refinerycms/images/config/locales/es.yml +0 -37
- data/vendor/refinerycms/images/config/locales/fr.yml +0 -42
- data/vendor/refinerycms/images/config/locales/it.yml +0 -40
- data/vendor/refinerycms/images/config/locales/lv.yml +0 -38
- data/vendor/refinerycms/images/config/locales/nb.yml +0 -46
- data/vendor/refinerycms/images/config/locales/nl.yml +0 -37
- data/vendor/refinerycms/images/config/locales/pt-BR.yml +0 -38
- data/vendor/refinerycms/images/config/locales/ru.yml +0 -46
- data/vendor/refinerycms/images/config/locales/sl.yml +0 -37
- data/vendor/refinerycms/images/config/locales/zh-CN.yml +0 -35
- data/vendor/refinerycms/images/config/routes.rb +0 -12
- data/vendor/refinerycms/images/features/manage_images.feature +0 -48
- data/vendor/refinerycms/images/features/step_definitions/image_steps.rb +0 -37
- data/vendor/refinerycms/images/lib/images.rb +0 -60
- data/vendor/refinerycms/images/readme.md +0 -34
- data/vendor/refinerycms/images/spec/models/image_spec.rb +0 -50
- data/vendor/refinerycms/pages/app/controllers/admin/page_parts_controller.rb +0 -22
- data/vendor/refinerycms/pages/app/controllers/admin/pages_controller.rb +0 -33
- data/vendor/refinerycms/pages/app/controllers/admin/pages_dialogs_controller.rb +0 -80
- data/vendor/refinerycms/pages/app/controllers/pages_controller.rb +0 -45
- data/vendor/refinerycms/pages/app/models/page.rb +0 -258
- data/vendor/refinerycms/pages/app/models/page_part.rb +0 -21
- data/vendor/refinerycms/pages/app/sweepers/page_sweeper.rb +0 -18
- data/vendor/refinerycms/pages/app/views/admin/pages/_form.html.erb +0 -56
- data/vendor/refinerycms/pages/app/views/admin/pages/_form_advanced_options.html.erb +0 -62
- data/vendor/refinerycms/pages/app/views/admin/pages/_form_page_parts.html.erb +0 -37
- data/vendor/refinerycms/pages/app/views/admin/pages/_page.html.erb +0 -35
- data/vendor/refinerycms/pages/app/views/admin/pages/_sortable_list.html.erb +0 -4
- data/vendor/refinerycms/pages/app/views/admin/pages/index.html.erb +0 -35
- data/vendor/refinerycms/pages/app/views/admin/pages_dialogs/_page_link.html.erb +0 -5
- data/vendor/refinerycms/pages/app/views/admin/pages_dialogs/link_to.html.erb +0 -134
- data/vendor/refinerycms/pages/config/locales/da.yml +0 -53
- data/vendor/refinerycms/pages/config/locales/de.yml +0 -83
- data/vendor/refinerycms/pages/config/locales/en.yml +0 -83
- data/vendor/refinerycms/pages/config/locales/es.yml +0 -82
- data/vendor/refinerycms/pages/config/locales/fr.yml +0 -53
- data/vendor/refinerycms/pages/config/locales/it.yml +0 -53
- data/vendor/refinerycms/pages/config/locales/lv.yml +0 -85
- data/vendor/refinerycms/pages/config/locales/nb.yml +0 -95
- data/vendor/refinerycms/pages/config/locales/nl.yml +0 -77
- data/vendor/refinerycms/pages/config/locales/pt-BR.yml +0 -83
- data/vendor/refinerycms/pages/config/locales/ru.yml +0 -97
- data/vendor/refinerycms/pages/config/locales/sl.yml +0 -82
- data/vendor/refinerycms/pages/config/locales/zh-CN.yml +0 -75
- data/vendor/refinerycms/pages/config/routes.rb +0 -21
- data/vendor/refinerycms/pages/features/manage_pages.feature +0 -47
- data/vendor/refinerycms/pages/features/step_definitions/page_steps.rb +0 -53
- data/vendor/refinerycms/pages/features/support/paths.rb +0 -26
- data/vendor/refinerycms/pages/features/visit_pages.feature +0 -45
- data/vendor/refinerycms/pages/lib/pages.rb +0 -34
- data/vendor/refinerycms/pages/lib/pages/marketable_routes.rb +0 -3
- data/vendor/refinerycms/pages/readme.md +0 -156
- data/vendor/refinerycms/pages/spec/models/page_spec.rb +0 -143
- data/vendor/refinerycms/refinery.rb +0 -45
- data/vendor/refinerycms/refinerycms.rb +0 -12
- data/vendor/refinerycms/resources/app/controllers/admin/resources_controller.rb +0 -87
- data/vendor/refinerycms/resources/app/models/resource.rb +0 -40
- data/vendor/refinerycms/resources/app/views/admin/resources/_form.html.erb +0 -52
- data/vendor/refinerycms/resources/app/views/admin/resources/_resource.html.erb +0 -17
- data/vendor/refinerycms/resources/app/views/admin/resources/index.html.erb +0 -45
- data/vendor/refinerycms/resources/app/views/admin/resources/insert.html.erb +0 -54
- data/vendor/refinerycms/resources/config/locales/da.yml +0 -32
- data/vendor/refinerycms/resources/config/locales/de.yml +0 -31
- data/vendor/refinerycms/resources/config/locales/en.yml +0 -31
- data/vendor/refinerycms/resources/config/locales/es.yml +0 -30
- data/vendor/refinerycms/resources/config/locales/fr.yml +0 -32
- data/vendor/refinerycms/resources/config/locales/it.yml +0 -32
- data/vendor/refinerycms/resources/config/locales/lv.yml +0 -30
- data/vendor/refinerycms/resources/config/locales/nb.yml +0 -33
- data/vendor/refinerycms/resources/config/locales/nl.yml +0 -30
- data/vendor/refinerycms/resources/config/locales/pt-BR.yml +0 -31
- data/vendor/refinerycms/resources/config/locales/ru.yml +0 -33
- data/vendor/refinerycms/resources/config/locales/sl.yml +0 -30
- data/vendor/refinerycms/resources/config/locales/zh-CN.yml +0 -29
- data/vendor/refinerycms/resources/config/routes.rb +0 -11
- data/vendor/refinerycms/resources/features/manage_files.feature +0 -43
- data/vendor/refinerycms/resources/features/step_definitions/file_steps.rb +0 -21
- data/vendor/refinerycms/resources/lib/resources.rb +0 -58
- data/vendor/refinerycms/resources/readme.md +0 -9
- data/vendor/refinerycms/resources/spec/models/resource_spec.rb +0 -45
- data/vendor/refinerycms/settings/app/controllers/admin/refinery_settings_controller.rb +0 -60
- data/vendor/refinerycms/settings/app/models/refinery_setting.rb +0 -212
- data/vendor/refinerycms/settings/app/views/admin/refinery_settings/_form.html.erb +0 -51
- data/vendor/refinerycms/settings/app/views/admin/refinery_settings/_refinery_setting.html.erb +0 -17
- data/vendor/refinerycms/settings/app/views/admin/refinery_settings/index.html.erb +0 -55
- data/vendor/refinerycms/settings/config/locales/da.yml +0 -49
- data/vendor/refinerycms/settings/config/locales/de.yml +0 -43
- data/vendor/refinerycms/settings/config/locales/en.yml +0 -44
- data/vendor/refinerycms/settings/config/locales/es.yml +0 -42
- data/vendor/refinerycms/settings/config/locales/fr.yml +0 -23
- data/vendor/refinerycms/settings/config/locales/it.yml +0 -23
- data/vendor/refinerycms/settings/config/locales/lv.yml +0 -43
- data/vendor/refinerycms/settings/config/locales/nb.yml +0 -45
- data/vendor/refinerycms/settings/config/locales/nl.yml +0 -42
- data/vendor/refinerycms/settings/config/locales/pt-BR.yml +0 -43
- data/vendor/refinerycms/settings/config/locales/ru.yml +0 -45
- data/vendor/refinerycms/settings/config/locales/sl.yml +0 -24
- data/vendor/refinerycms/settings/config/locales/zh-CN.yml +0 -40
- data/vendor/refinerycms/settings/config/routes.rb +0 -5
- data/vendor/refinerycms/settings/features/step_definitions/setting_steps.rb +0 -9
- data/vendor/refinerycms/settings/lib/settings.rb +0 -16
- data/vendor/refinerycms/settings/readme.md +0 -55
@@ -0,0 +1,19 @@
|
|
1
|
+
::Refinery::Application.routes.draw do
|
2
|
+
filter(:refinery_locales) if defined?(RoutingFilter::RefineryLocales) # optionally use i18n.
|
3
|
+
|
4
|
+
root :to => 'pages#home'
|
5
|
+
|
6
|
+
match 'wymiframe(/:id)', :to => 'refinery/fast#wymiframe', :as => :wymiframe
|
7
|
+
|
8
|
+
scope(:path => 'refinery', :as => 'admin', :module => 'admin') do
|
9
|
+
root :to => 'dashboard#index'
|
10
|
+
resources :dialogs, :only => :show
|
11
|
+
end
|
12
|
+
|
13
|
+
match '/refinery/update_menu_positions', :to => 'admin/refinery_core#update_plugin_positions'
|
14
|
+
|
15
|
+
match '/sitemap.xml' => 'sitemap#index', :defaults => { :format => 'xml' }
|
16
|
+
|
17
|
+
# Marketable URLs should be appended to routes by the Pages Engine.
|
18
|
+
# Catch all routes should be appended to routes by the Core Engine.
|
19
|
+
end
|
data/core/crud.md
ADDED
@@ -0,0 +1,197 @@
|
|
1
|
+
# The Magical Mixin: Crudify (create, read, update & delete)
|
2
|
+
|
3
|
+
## Introduction
|
4
|
+
|
5
|
+
__Most controllers Refinery and other apps do four common things, create, read, update and delete stuff.__ Instead of writing the same logic for these actions over and over again we wrap all this functionality up into what we called ``crudify``.
|
6
|
+
|
7
|
+
``crudify`` takes these four basic actions and extends them to allow easy paging, searching and sorting too.
|
8
|
+
|
9
|
+
Although this single file is included in Refinery, you could take just this single file and use it in any app you like.
|
10
|
+
|
11
|
+
The best part about ``crudify`` is that this gives you a smart default and if there is anything you want to work differently just override that method.
|
12
|
+
|
13
|
+
## Where is it located?
|
14
|
+
|
15
|
+
``core/lib/refinery/crud.rb``
|
16
|
+
|
17
|
+
## How do I use it in my engines?
|
18
|
+
|
19
|
+
All you need to do is call ``crudify`` in your controller.
|
20
|
+
|
21
|
+
If you used the Refinery generator you're plugin will already be using ``crudify``.
|
22
|
+
|
23
|
+
### Example
|
24
|
+
|
25
|
+
class NewsItemsController < ApplicationController
|
26
|
+
|
27
|
+
crudify :news_item, :order => "created_at DESC"
|
28
|
+
|
29
|
+
end
|
30
|
+
|
31
|
+
### Complex Example
|
32
|
+
|
33
|
+
class NewsItemsController < ApplicationController
|
34
|
+
|
35
|
+
crudify :news_item, :order => "created_at DESC",
|
36
|
+
:conditions => 'published = true',
|
37
|
+
:sortable => false,
|
38
|
+
:searchable => true,
|
39
|
+
:include => [:author],
|
40
|
+
:paging => true,
|
41
|
+
:search_conditions => ''
|
42
|
+
|
43
|
+
end
|
44
|
+
|
45
|
+
## What can you configure with ``crudify``?
|
46
|
+
|
47
|
+
### ``:title_attribute``
|
48
|
+
|
49
|
+
Default value is ``title``
|
50
|
+
|
51
|
+
This is the human readable value you want ``crudify`` to use throughout. Just choose an attribute that is on your model that is short and descriptive to what the model is.
|
52
|
+
|
53
|
+
#### Example
|
54
|
+
|
55
|
+
On a page model you'd probably use "title" (which is default so you don't need to specify this)
|
56
|
+
|
57
|
+
#### Example 2
|
58
|
+
|
59
|
+
On a ``team_member`` model you'd probably want to use an attribute like ``name``.
|
60
|
+
|
61
|
+
### ``:order``
|
62
|
+
|
63
|
+
Default value is ``position ASC``
|
64
|
+
|
65
|
+
This is the position that is used when listing out what you're crudifying. If you have ``:sortable`` set to ``true`` you probably want to have your ``:order`` set to ``position ASC`` so it uses the order you have set when sorting.
|
66
|
+
|
67
|
+
If you have a news area, it makes more sense to sort by ``posted_at``. So you might set it like this
|
68
|
+
|
69
|
+
:order => "posted_at DESC"
|
70
|
+
|
71
|
+
### ``:conditions``
|
72
|
+
|
73
|
+
Default value is ``nil``
|
74
|
+
|
75
|
+
This will filter down the list of items you have when you're asking for all records.
|
76
|
+
|
77
|
+
An example here is say you're crudifying a photos table that uses attachment_fu. Attachment_fu creates several photo records, 1 for the main photo and others for it's "children" thumbnails. Those thumbnails have a parent id set.
|
78
|
+
|
79
|
+
So when viewing a list of the images you have you don't want it to show all the thumbnails too, you just want to each see unique image listed so you need to apply some conditions to hide the thumbnails.
|
80
|
+
|
81
|
+
You do that like this:
|
82
|
+
|
83
|
+
:conditions => {:parent_id => nil}
|
84
|
+
|
85
|
+
### ``:sortable``
|
86
|
+
|
87
|
+
Default value is ``true``
|
88
|
+
|
89
|
+
Enabling ``:sortable`` gives you several handy methods which "just work" with sortable JavaScript lists. One of the methods is ``update_positions()`` which handles saving the new position items have been sorted into.
|
90
|
+
|
91
|
+
### ``:searchable``
|
92
|
+
|
93
|
+
Default value is ``true``
|
94
|
+
|
95
|
+
When this option is ``true``, the routes are modified so when you go to the next page of results the search continues on.
|
96
|
+
|
97
|
+
### ``:include``
|
98
|
+
|
99
|
+
Default value is ``[]``
|
100
|
+
|
101
|
+
For performance optimisation, sometimes you might want to eager load other related models to this one. For example a ``news_post`` might below to a ``user`` who wrote the post. But in our index view we're printing out the name of each user.
|
102
|
+
|
103
|
+
Instead of having to look up each user for each of the ``news_posts`` we iterate over, the ``:include`` option allows you to load the ``news_post`` and user all at the same time which'll allow you to save on expensive database queries.
|
104
|
+
|
105
|
+
Here's an example of that.
|
106
|
+
|
107
|
+
class NewsItem
|
108
|
+
|
109
|
+
belongs_to :user
|
110
|
+
|
111
|
+
end
|
112
|
+
|
113
|
+
class NewsItemsController < ApplicationController
|
114
|
+
|
115
|
+
crudify :news_item, :order => "created_at DESC", :include => [:user]
|
116
|
+
|
117
|
+
end
|
118
|
+
|
119
|
+
### ``:paging``
|
120
|
+
|
121
|
+
Default value is ``true``
|
122
|
+
|
123
|
+
The ``:paging`` option tells ``crudify`` you don't just want one big long list but rather to break it out into pages and support paging methods uses [will_paginate](http://wiki.github.com/mislav/will_paginate/).
|
124
|
+
|
125
|
+
### ``:search_conditions``
|
126
|
+
|
127
|
+
Default value is ``nil``
|
128
|
+
|
129
|
+
Similar to the ``:conditions`` options, ``:search_conditions`` just apply these conditions when delivering search results.
|
130
|
+
|
131
|
+
## Easy Accessor Methods
|
132
|
+
|
133
|
+
``crudify`` automatically writes up finder methods for the model you're crudifying. The easier way to explain this is with an example.
|
134
|
+
|
135
|
+
Say we have a pages controller that is going to manage pages.
|
136
|
+
|
137
|
+
class PagesController < ApplicationController
|
138
|
+
|
139
|
+
crudify :page
|
140
|
+
|
141
|
+
end
|
142
|
+
|
143
|
+
In this controller, automatically I have these methods:
|
144
|
+
|
145
|
+
find_page()
|
146
|
+
find_all_pages()
|
147
|
+
|
148
|
+
So say I wanted to change the way all pages are found, all I do is override the ``find_all_pages`` method.
|
149
|
+
|
150
|
+
class PagesController < ApplicationController
|
151
|
+
|
152
|
+
crudify :page
|
153
|
+
|
154
|
+
def find_all_pages
|
155
|
+
@pages = Page.find(...) # apply any logic I want here to get all pages.
|
156
|
+
end
|
157
|
+
|
158
|
+
end
|
159
|
+
|
160
|
+
## Overriding or Extending Crudify
|
161
|
+
|
162
|
+
Before overriding anything, the best thing to do is check out how the default works. Read the ``vendor/plugins/refinery/lib/crud.rb`` and see what code it's injecting into your controller.
|
163
|
+
|
164
|
+
Pick the method you want to override and then override it in your controller.
|
165
|
+
|
166
|
+
Let's go back to the example above with the pages controller.
|
167
|
+
|
168
|
+
class PagesController < ApplicationController
|
169
|
+
|
170
|
+
crudify :page
|
171
|
+
|
172
|
+
end
|
173
|
+
|
174
|
+
Say every time someone deletes a page I want my ``NotificationMailer`` to email me to say someone just deleted a page.
|
175
|
+
|
176
|
+
When I look in the ``crud.rb`` file I see that my controller has this added to it
|
177
|
+
|
178
|
+
def destroy
|
179
|
+
flash.notice = "'\#{@#{singular_name}.#{options[:title_attribute]}}' was successfully deleted." if @#{singular_name}.destroy
|
180
|
+
redirect_to admin_#{plural_name}_url
|
181
|
+
end
|
182
|
+
|
183
|
+
To override this all I would is create my own delete method that works the same but just with my mailer code on it.
|
184
|
+
|
185
|
+
class PagesController < ApplicationController
|
186
|
+
|
187
|
+
crudify :page
|
188
|
+
|
189
|
+
def destroy
|
190
|
+
if @page.destroy
|
191
|
+
flash.notice = "'#{@page.title}' was successfully deleted."
|
192
|
+
NotificationMailer.deliver_page_deleted(@page) # sends me an email to say a page was deleted
|
193
|
+
end
|
194
|
+
redirect_to admin_pages_url
|
195
|
+
end
|
196
|
+
|
197
|
+
end
|
Binary file
|
data/core/engines.md
ADDED
@@ -0,0 +1,179 @@
|
|
1
|
+
# Extending Refinery with Engines
|
2
|
+
|
3
|
+
## Introduction
|
4
|
+
|
5
|
+
__Refinery is designed to be easily extended so you can quickly customise your Refinery site to manage new areas you want to add to your site. If you see something you want to customise, the chances are you can customise it.__
|
6
|
+
|
7
|
+
The main way of extending Refinery is through adding new engines to your app. By default you can edit pages in Refinery's backend, but how do you add a new section to manage like products?
|
8
|
+
|
9
|
+
See: [The Refinery Engine Generator](http://github.com/resolve/refinerycms-generators/blob/master/readme.md#readme)
|
10
|
+
|
11
|
+
## The Structure of an Engine
|
12
|
+
|
13
|
+
Think of a engine in Refinery as a small Rails app. Engines have a structure that is extremely similar to a Rails app. Here's an example of Refinery's pages engine (located in Refinery's ``pages/`` folder)
|
14
|
+
|
15
|
+
pages
|
16
|
+
|- app
|
17
|
+
| |- controllers
|
18
|
+
| | |- admin
|
19
|
+
| | | |- pages_dialogs_controller.rb
|
20
|
+
| | | |- page_parts_controller.rb
|
21
|
+
| | | |- pages_controller.rb
|
22
|
+
| | |- pages_controller.rb
|
23
|
+
| |- helpers
|
24
|
+
| | |- pages_helper.rb
|
25
|
+
| |- models
|
26
|
+
| | |- page.rb
|
27
|
+
| |- views
|
28
|
+
| |- pages
|
29
|
+
| | |- home.html.erb
|
30
|
+
| | |- show.html.erb
|
31
|
+
| |- admin
|
32
|
+
| |- pages
|
33
|
+
| |- _form.html.erb
|
34
|
+
| |- edit.html.erb
|
35
|
+
| |- index.html.erb
|
36
|
+
| |- new.html.erb
|
37
|
+
|- config
|
38
|
+
| |- routes.rb
|
39
|
+
|- rails
|
40
|
+
|- init.rb
|
41
|
+
|
42
|
+
|
43
|
+
### app/controllers
|
44
|
+
|
45
|
+
In this example you see one "public" controller ``app/controllers/pages_controller`` that is responsible for managing the front end when I view a page.
|
46
|
+
|
47
|
+
### app/controllers/admin
|
48
|
+
|
49
|
+
This bit is important. It's where all the controllers are held to manage pages in the Refinery back end in this example. You can ignore the ``pages_dialogs_controller.rb`` and ``page_parts_controller.rb`` for now and let's just focus on the ``admin/pages_controller.rb`` file. Here's what that looks like inside at a basic level:
|
50
|
+
|
51
|
+
module Admin
|
52
|
+
class PagesController < Admin::BaseController
|
53
|
+
|
54
|
+
crudify :page, :conditions => {:parent_id => nil},
|
55
|
+
:order => "position ASC", :paging => false
|
56
|
+
|
57
|
+
end
|
58
|
+
end
|
59
|
+
|
60
|
+
This single controller allows us to create, read, update and delete pages in the backend. With a little bit of Refinery magic we utilise the [crudify mixin](http://github.com/resolve/refinerycms/blob/master/core/crud.md) which gives us all of these regular features out of the box.
|
61
|
+
|
62
|
+
How crudify works is an entire topic of it's own. Checkout the [crudify documentation](http://github.com/resolve/refinerycms/blob/master/core/crud.md) to get an insight into how that works.
|
63
|
+
|
64
|
+
### app/views and app/helpers
|
65
|
+
|
66
|
+
Works exactly the same as ``app/views`` and ``app/helpers`` in a normal Rails app. You just put the views and helpers related to this engine in here instead of in your actual main app directory.
|
67
|
+
|
68
|
+
### config/routes.rb
|
69
|
+
|
70
|
+
Works exactly the same as ``config/routes.rb`` in your app except this routes file only loads the routes for this engine.
|
71
|
+
|
72
|
+
### rails/init.rb
|
73
|
+
|
74
|
+
This file runs when your site is started up. All is does is registers this engine with Refinery so it knows that it exists, how to handle it in the Refinery admin menu and how to render recent activity on the Dashboard (see "Getting your Engine to Report Activity in the Dashboard")
|
75
|
+
|
76
|
+
NOTE: The latest version of Refinery requires that you only specify a engine.name. plugin.title & plugin.description will be looked up by the I18n system.
|
77
|
+
|
78
|
+
# pages/lib/pages.rb
|
79
|
+
Refinery::Plugin.register do |plugin|
|
80
|
+
plugin.name = "pages"
|
81
|
+
plugin.version = 1.0
|
82
|
+
plugin.menu_match = /(refinery|admin)\/page(_dialog|part)?s$/
|
83
|
+
plugin.activity = {
|
84
|
+
:class => Page,
|
85
|
+
:url_prefix => "edit_",
|
86
|
+
:title => "title",
|
87
|
+
:created_image => "page_add.png",
|
88
|
+
:updated_image => "page_edit.png"
|
89
|
+
}
|
90
|
+
end
|
91
|
+
|
92
|
+
# pages/config/locales/en.yml
|
93
|
+
en:
|
94
|
+
plugins:
|
95
|
+
refinery_pages:
|
96
|
+
title: Pages
|
97
|
+
description: Manage content pages
|
98
|
+
|
99
|
+
## Getting your Engine to Report Activity in the Dashboard
|
100
|
+
|
101
|
+
Recent activity reporting is built right in, so all you need to do is follow the convention below and your engine will start showing up in the recent activity list of the Dashboard.
|
102
|
+
|
103
|
+
In our example above we showed the use of ``plugin.activity`` for the pages engine.
|
104
|
+
|
105
|
+
Refinery::Plugin.register do |plugin|
|
106
|
+
plugin.name = "pages"
|
107
|
+
plugin.version = 1.0
|
108
|
+
plugin.menu_match = /(refinery|admin)\/page(_dialog|part)?s$/
|
109
|
+
plugin.activity = {
|
110
|
+
:class => Page,
|
111
|
+
:url_prefix => "edit_",
|
112
|
+
:title => "title",
|
113
|
+
:created_image => "page_add.png",
|
114
|
+
:updated_image => "page_edit.png"
|
115
|
+
}
|
116
|
+
end
|
117
|
+
|
118
|
+
Here's what the different activity options mean:
|
119
|
+
|
120
|
+
### Required
|
121
|
+
|
122
|
+
:class
|
123
|
+
# the name of the class we're watching.
|
124
|
+
|
125
|
+
:url_prefix
|
126
|
+
# Just use "edit_" if you're not sure how this works.
|
127
|
+
#
|
128
|
+
# When it says "'About' page was updated about 4 hours ago", the page title "About"
|
129
|
+
# is linked to that page in a way we specify. So by setting "_edit" as a :url_prefix what
|
130
|
+
# we're doing is making it link to the page that allows us to edit this page.
|
131
|
+
# So the next result is edit_admin_page_url(page)
|
132
|
+
|
133
|
+
:title
|
134
|
+
# which attribute on the :class should be in the activty message. In our case it's "title"
|
135
|
+
# because we want it to run something like this "#{page.title} was updated about ...."
|
136
|
+
|
137
|
+
### Optional
|
138
|
+
|
139
|
+
:created_image and :updated_image
|
140
|
+
# the activity monitor knows if something is created or updated and shows a different icon
|
141
|
+
# depending on how you want that to look. You can specify the filename to any image you
|
142
|
+
# want in the public/images/refinery/icons/ directory.
|
143
|
+
|
144
|
+
## Search Engine Optimisation: Improving the default URLs
|
145
|
+
|
146
|
+
In our example above we extended Refinery to manage a products area. The problem is when I look at a product on the front end I get a URL like [http://localhost:3000/products/1](http://localhost:3000/products/1) but I would really like it to be something like [http://localhost:3000/products/my-product](http://localhost:3000/products/my-product)
|
147
|
+
|
148
|
+
To achieve this all you need to do is open up the product model (found in ``/vendor/plugins/products/app/models/product.rb``) and add the following line inside your class:
|
149
|
+
|
150
|
+
has_friendly_id :title, :use_slug => true
|
151
|
+
|
152
|
+
Note you want to change ``:title`` to the field which you want to show up in the URL.
|
153
|
+
|
154
|
+
This will work just fine for new products added from this point, but you'll want to migrate any existing products you have to use this new URL format. All you have to do is save each product you have in the database to make it create a nice URL for you.
|
155
|
+
|
156
|
+
ruby script/console
|
157
|
+
>> Product.all.each {|p| p.save };nil
|
158
|
+
|
159
|
+
Now all the products in your database will have nice URLs.
|
160
|
+
|
161
|
+
## How to get a WYSIWYG editor to show on your form fields
|
162
|
+
|
163
|
+
Refinery uses a standards compliant visual editor called [WYMeditor](http://www.wymeditor.org/)
|
164
|
+
|
165
|
+
_Note: When using the Refinery generator, if you apply a field type of "text" to any of your fields, they automatically load as a WYMEditor._
|
166
|
+
|
167
|
+
The WYSIWYG editor can only be applied to a ``textarea``. All you need to do is add a class of "wymeditor widest" to a ``textarea`` in your form and a WYSIWYG WYMEditor will load right in place.
|
168
|
+
|
169
|
+
### Example
|
170
|
+
|
171
|
+
Again going back to our product plugin example if you had this in your ``vendor/plugins/products/app/views/admin/products/_form.html.erb`` file:
|
172
|
+
|
173
|
+
<%= f.text_area :description %>
|
174
|
+
|
175
|
+
Just change that to:
|
176
|
+
|
177
|
+
<%= f.text_area :description, :class => "wymeditor widest" %>
|
178
|
+
|
179
|
+
Refresh and you're done.
|
@@ -0,0 +1,55 @@
|
|
1
|
+
@refinerycms @search
|
2
|
+
Feature: Search
|
3
|
+
In order find content more quickly
|
4
|
+
As an administrator
|
5
|
+
I want to use search
|
6
|
+
|
7
|
+
Background:
|
8
|
+
Given I am a logged in refinery user
|
9
|
+
|
10
|
+
@search-existing
|
11
|
+
Scenario Outline: Search Existing Item
|
12
|
+
Given I have a <item> titled "<title>"
|
13
|
+
When I go to the list of <location>
|
14
|
+
And I fill in "search" with "<title>"
|
15
|
+
And I press "Search"
|
16
|
+
Then I should see "<title>"
|
17
|
+
|
18
|
+
Examples:
|
19
|
+
| item | title | location |
|
20
|
+
|page |testitem|pages |
|
21
|
+
|setting |testitem|settings |
|
22
|
+
|
23
|
+
# This will only run when resources engine is installed.
|
24
|
+
@search-file
|
25
|
+
Scenario: Search File
|
26
|
+
When I upload the file at "refinery_is_awesome.txt"
|
27
|
+
And I go to the list of files
|
28
|
+
And I fill in "search" with "Refinery Is Awesome"
|
29
|
+
And I press "Search"
|
30
|
+
Then I should see "Refinery Is Awesome"
|
31
|
+
|
32
|
+
# This will only run when images engine is installed.
|
33
|
+
@search-image
|
34
|
+
Scenario: Search Image
|
35
|
+
When I upload the image at "beach.jpeg"
|
36
|
+
And I go to the list of images
|
37
|
+
And I fill in "search" with "Beach"
|
38
|
+
And I press "Search"
|
39
|
+
Then I should see "Beach"
|
40
|
+
|
41
|
+
@search-nonexisting
|
42
|
+
Scenario Outline: Search Nonexisting Item
|
43
|
+
Given I have no <item>
|
44
|
+
When I go to the list of <location>
|
45
|
+
And I fill in "search" with "nonexisting"
|
46
|
+
And I press "Search"
|
47
|
+
Then I should see "Sorry, no results found"
|
48
|
+
|
49
|
+
Examples:
|
50
|
+
| item | location |
|
51
|
+
|pages |pages |
|
52
|
+
|images |images |
|
53
|
+
|files |files |
|
54
|
+
|settings |settings |
|
55
|
+
|