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
@@ -1,61 +0,0 @@
|
|
1
|
-
ru:
|
2
|
-
welcome:
|
3
|
-
there_are_no_users: "Ни одного пользователя не создано. Вы будете первым."
|
4
|
-
remember_admin_location: "Запомнить администратора как:"
|
5
|
-
lets_start: "Ок, давайте введем настройки для входа в систему..."
|
6
|
-
continue: "Далее..."
|
7
|
-
admin:
|
8
|
-
menu:
|
9
|
-
reorder_menu: Изменить порядок в меню
|
10
|
-
reorder_menu_done: Сохранить такой порядок в меню
|
11
|
-
search: Поиск
|
12
|
-
search_submit: Далее
|
13
|
-
search_results_for: "Результаты поиска для «{{query}}»"
|
14
|
-
search_no_results: Ничего не найдено
|
15
|
-
images:
|
16
|
-
existing_image:
|
17
|
-
submit_insert: Вставить
|
18
|
-
refinery:
|
19
|
-
other: "Иначе {{what}}"
|
20
|
-
reorder: "Поменять порядок {{what}}"
|
21
|
-
reorder_done: "Закончено {{what}}"
|
22
|
-
crudify:
|
23
|
-
created: "{{what}} создан(а)."
|
24
|
-
updated: "{{what}} отредактирован(а)."
|
25
|
-
destroyed: "{{what}} уничтожен(а)."
|
26
|
-
shared:
|
27
|
-
site_bar:
|
28
|
-
log_out: Выйти
|
29
|
-
switch_to_your_website: Перейти на сайт
|
30
|
-
switch_to_your_website_editor: Перейти в панель управления
|
31
|
-
admin:
|
32
|
-
message:
|
33
|
-
close: Закрыть
|
34
|
-
continue_editing:
|
35
|
-
save_and_continue_editing: Сохранить и продолжить
|
36
|
-
form_actions:
|
37
|
-
or: или
|
38
|
-
save: Сохранить
|
39
|
-
or_cancel: или
|
40
|
-
cancel: Отмена
|
41
|
-
or_continue: или
|
42
|
-
cancel_lose_changes: "Cancelling will lose all changes you've made to this {{object_name}}"
|
43
|
-
delete: Удалить
|
44
|
-
previous: Предыдущее
|
45
|
-
next: Следующее
|
46
|
-
image_picker:
|
47
|
-
none_selected: "There is currently no {{what}} selected, please click here to add one."
|
48
|
-
remove_current: "Remove current {{what}}"
|
49
|
-
change: Click here to pick a image
|
50
|
-
image: image
|
51
|
-
show: Show
|
52
|
-
resource_picker:
|
53
|
-
none_selected: "There is currently no {{what}} selected, please click here to add one."
|
54
|
-
current: "Current {{what}}"
|
55
|
-
download_current: "Download current {{what}}"
|
56
|
-
opens_in_new_window: Opens in a new window
|
57
|
-
remove_current: "Remove current {{what}}"
|
58
|
-
resource: resource
|
59
|
-
message:
|
60
|
-
close: Закрыть
|
61
|
-
close_this_message: Закрыть это сообщение
|
@@ -1,68 +0,0 @@
|
|
1
|
-
sl:
|
2
|
-
welcome:
|
3
|
-
there_are_no_users: "Trenutno še ni nobenega uporabnika, zato vas moramo najprej namestiti."
|
4
|
-
remember_admin_location: "Zapomnite si vaše administracijsko področje v Refinery je:"
|
5
|
-
lets_start: "Vredu najprej vas bomo namestili, da se boste potem lahko prijavili..."
|
6
|
-
continue: "Nadaljuj..."
|
7
|
-
admin:
|
8
|
-
menu:
|
9
|
-
reorder_menu: Spremeni vrsti red zavihkov
|
10
|
-
reorder_menu_done: "Končaj s prerazporeditvijo zavihkov."
|
11
|
-
dialogs:
|
12
|
-
show:
|
13
|
-
save: Shrani
|
14
|
-
cancel: Prekliči
|
15
|
-
refinery:
|
16
|
-
other: "Drugo %{what}"
|
17
|
-
reorder: "Spremeni vrstni red %{what}"
|
18
|
-
reorder_done: "Končaj s prerazporeditvijo %{what}"
|
19
|
-
crudify:
|
20
|
-
created: "%{what} je bil uspešno ustvarjen"
|
21
|
-
updated: "%{what} je bil uspešno ustvarjen"
|
22
|
-
destroyed: "%{what} je bil uspešno odstranjen"
|
23
|
-
shared:
|
24
|
-
site_bar:
|
25
|
-
log_out: Odjavite se
|
26
|
-
switch_to_your_website: "Preklopite na vašo spletno stran"
|
27
|
-
switch_to_your_website_editor: "Preklopite na urejevalnik spletne strani"
|
28
|
-
admin:
|
29
|
-
message:
|
30
|
-
close: Zapri
|
31
|
-
continue_editing:
|
32
|
-
save_and_continue_editing: "Shrani & nadaljuj z urejanjem"
|
33
|
-
form_actions:
|
34
|
-
save: Shrani
|
35
|
-
cancel: Prekliči
|
36
|
-
cancel_lose_changes: "S preklicem bodo izgubljene vse spremembe, ki ste jih naredili na %{object_name}."
|
37
|
-
delete: Izbriši
|
38
|
-
previous: Nazaj
|
39
|
-
next: Naprej
|
40
|
-
close: Zapri
|
41
|
-
image_picker:
|
42
|
-
none_selected: "Trenutno ni izbrana nobena %{what}, prosimo kliknite tukaj da dodate eno."
|
43
|
-
remove_current: "Odstrani trenutno %{what}"
|
44
|
-
change: Kliknite tukaj za izbiro slike
|
45
|
-
show: Prikaži
|
46
|
-
resource_picker:
|
47
|
-
none_selected: "Trenutno ni izbrana nobena %{what}, prosimo kliknite tukaj da dodate eno."
|
48
|
-
current: "Trenutna %{what}"
|
49
|
-
download_current: "Prenesi trenutno %{what}"
|
50
|
-
opens_in_new_window: Odpri v novem oknu
|
51
|
-
remove_current: "Odstrani trenutno %{what}"
|
52
|
-
resource: vir
|
53
|
-
search:
|
54
|
-
button_text: Išči
|
55
|
-
results_for: Iskalni rezultati za '%{query}'
|
56
|
-
no_results: Ni bilo zadetkov
|
57
|
-
delete:
|
58
|
-
message: Ali ste prepričani da želite odstraniti '%{title}'?
|
59
|
-
error_messages:
|
60
|
-
problems_in_following_fields: Prišlo je do težav v naslednjih poljih
|
61
|
-
help: pomoč
|
62
|
-
message:
|
63
|
-
close: Zapri
|
64
|
-
close_this_message: Zapri to sporočilo
|
65
|
-
draft_page_message:
|
66
|
-
not_live: Ta stran še ni javno dostopna.
|
67
|
-
footer:
|
68
|
-
copyright: Vse pravice pridržane ©
|
@@ -1,65 +0,0 @@
|
|
1
|
-
zh-CN:
|
2
|
-
welcome:
|
3
|
-
there_are_no_users: "There are no users yet, so we'll set you up first."
|
4
|
-
remember_admin_location: "Remember your Refinery admin area is at:"
|
5
|
-
lets_start: "Alright let's get you setup so you can login..."
|
6
|
-
continue: "Continue..."
|
7
|
-
admin:
|
8
|
-
menu:
|
9
|
-
reorder_menu: Reorder menu
|
10
|
-
reorder_menu_done: "I'm done reordering the menu"
|
11
|
-
images:
|
12
|
-
existing_image:
|
13
|
-
submit_insert: Insert
|
14
|
-
refinery:
|
15
|
-
other: "Other %{what}"
|
16
|
-
reorder: "Reorder %{what}"
|
17
|
-
reorder_done: "Done Reordering %{what}"
|
18
|
-
crudify:
|
19
|
-
created: "%{what} was successfully added."
|
20
|
-
updated: "%{what} was successfully updated."
|
21
|
-
destroyed: "%{what} was successfully destroyed."
|
22
|
-
shared:
|
23
|
-
site_bar:
|
24
|
-
log_out: Log out
|
25
|
-
switch_to_your_website: Switch to your website
|
26
|
-
switch_to_your_website_editor: Switch to your website editor
|
27
|
-
admin:
|
28
|
-
continue_editing:
|
29
|
-
save_and_continue_editing: "Save & continue editing"
|
30
|
-
form_actions:
|
31
|
-
or: or
|
32
|
-
save: Save
|
33
|
-
or_cancel: or
|
34
|
-
cancel: Cancel
|
35
|
-
or_continue: or
|
36
|
-
cancel_lose_changes: "Cancelling will lose all changes you've made to this %{object_name}"
|
37
|
-
delete: Delete
|
38
|
-
previous: Previous
|
39
|
-
next: Next
|
40
|
-
close: Close
|
41
|
-
image_picker:
|
42
|
-
none_selected: "There is currently no %{what} selected, please click here to add one."
|
43
|
-
remove_current: "Remove current %{what}"
|
44
|
-
change: Click here to pick a image
|
45
|
-
image: image
|
46
|
-
show: Show
|
47
|
-
resource_picker:
|
48
|
-
none_selected: "There is currently no %{what} selected, please click here to add one."
|
49
|
-
current: "Current %{what}"
|
50
|
-
download_current: "Download current %{what}"
|
51
|
-
opens_in_new_window: Opens in a new window
|
52
|
-
remove_current: "Remove current %{what}"
|
53
|
-
resource: resource
|
54
|
-
search:
|
55
|
-
button_text: Search
|
56
|
-
results_for: Search results for '%{query}'
|
57
|
-
no_results: Sorry, no results found
|
58
|
-
delete:
|
59
|
-
message: Are you sure you want to delete '%{title}'?
|
60
|
-
title: Remove this %{object_name} forever
|
61
|
-
edit:
|
62
|
-
title: Edit this %{object_name}
|
63
|
-
message:
|
64
|
-
close: Close
|
65
|
-
close_this_message: Close this message
|
@@ -1,15 +0,0 @@
|
|
1
|
-
Refinery::Application.routes.draw do
|
2
|
-
|
3
|
-
match 'wymiframe(/:id)', :to => 'refinery/fast#wymiframe', :as => :wymiframe
|
4
|
-
|
5
|
-
scope(:path => 'refinery', :as => 'admin', :module => 'admin') do
|
6
|
-
resources :refinery_core
|
7
|
-
end
|
8
|
-
|
9
|
-
match '/refinery/flash', :to => 'admin/refinery_core#render_flash_messages'
|
10
|
-
match '/refinery/update_menu_positions', :to => 'admin/refinery_core#update_plugin_positions'
|
11
|
-
|
12
|
-
scope(:path => 'refinery', :as => 'admin', :module => 'admin') do
|
13
|
-
resources :dialogs # FIXME: Rails 3, :only => [:show]
|
14
|
-
end
|
15
|
-
end
|
@@ -1,197 +0,0 @@
|
|
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
|
-
``vendor/refinerycms/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
|
@@ -1,218 +0,0 @@
|
|
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
|
-
## The Refinery Generator
|
10
|
-
|
11
|
-
The Refinery generator is a standard Rails generator that functions just like the scaffold generator. It allows you to quickly add new managed sections to the Refinery backend and get the front end views for free.
|
12
|
-
|
13
|
-
To see how to use the generator run
|
14
|
-
|
15
|
-
rails generate refinery_engine
|
16
|
-
|
17
|
-
Usage instructions should appear.
|
18
|
-
|
19
|
-
## Example of Using the Generator
|
20
|
-
|
21
|
-
Let's say you have a client who has a range of products they want to show on their website. You've considered using a few pages to manage the products but you've decided it would be much nicer if there was a separate place that had forms dedicated to managing products.
|
22
|
-
|
23
|
-
First decide what fields they need to manage. In our case, the client is going to want to edit the title and description of each product. They would also like a little "facts panel" to show on the right of the page.
|
24
|
-
|
25
|
-
So go to the root of your project and run
|
26
|
-
|
27
|
-
rails generate refinery_engine
|
28
|
-
|
29
|
-
This will output the help on how to use the generator. To generate the new section we want to manage products we run:
|
30
|
-
|
31
|
-
rails generate refinery_engine product title:string description:text image:image brochure:resource
|
32
|
-
|
33
|
-
The generator will output a list of files it generated. You'll notice there is a new engine that has been added in ``vendor/engines/products``. This is where both the backend and front end files are held for this new products area.
|
34
|
-
|
35
|
-
Engines are treated like gems. When you generate a new engine it adds the gem dependency for this engine to the end of your ``Gemfile``. Because your ``Gemfile`` has changed you now need to run:
|
36
|
-
|
37
|
-
bundle install
|
38
|
-
|
39
|
-
When the products engine was generated a products generator was also created. This installs any migrations and seeds into your Rails app. Here's how to finish off the install
|
40
|
-
|
41
|
-
rails generate refinerycms_products
|
42
|
-
rake db:migrate
|
43
|
-
|
44
|
-
Start up your app by running ``ruby script/server`` go to [http://localhost:3000](http://localhost:3000) and you'll see instantly a new menu item called "products". Click on that and you'll see there are no products yet.
|
45
|
-
|
46
|
-
Now go to the backend of your site by visiting [http://localhost:3000/refinery](http://localhost:3000/refinery) and logging in. You'll see a new tab called "Products", click on that and then click "Add a new product", fill the form and add an example product. Now go back to the front end and you'll see your product is showing up in the products part of your site.
|
47
|
-
|
48
|
-
Now you have a fully managed products section in Refinery, nice.
|
49
|
-
|
50
|
-
If you want to modify your generated engine you need to understand the basic structure of how they work.
|
51
|
-
|
52
|
-
## The Structure of an Engine
|
53
|
-
|
54
|
-
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 ``vendor/refinerycms/pages/`` folder)
|
55
|
-
|
56
|
-
pages
|
57
|
-
|- app
|
58
|
-
| |- controllers
|
59
|
-
| | |- admin
|
60
|
-
| | | |- pages_dialogs_controller.rb
|
61
|
-
| | | |- page_parts_controller.rb
|
62
|
-
| | | |- pages_controller.rb
|
63
|
-
| | |- pages_controller.rb
|
64
|
-
| |- helpers
|
65
|
-
| | |- pages_helper.rb
|
66
|
-
| |- models
|
67
|
-
| | |- page.rb
|
68
|
-
| |- views
|
69
|
-
| |- pages
|
70
|
-
| | |- home.html.erb
|
71
|
-
| | |- show.html.erb
|
72
|
-
| |- admin
|
73
|
-
| |- pages
|
74
|
-
| |- _form.html.erb
|
75
|
-
| |- edit.html.erb
|
76
|
-
| |- index.html.erb
|
77
|
-
| |- new.html.erb
|
78
|
-
|- config
|
79
|
-
| |- routes.rb
|
80
|
-
|- rails
|
81
|
-
|- init.rb
|
82
|
-
|
83
|
-
|
84
|
-
### app/controllers
|
85
|
-
|
86
|
-
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.
|
87
|
-
|
88
|
-
### app/controllers/admin
|
89
|
-
|
90
|
-
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:
|
91
|
-
|
92
|
-
class Admin::PagesController < Admin::BaseController
|
93
|
-
|
94
|
-
crudify :page, :conditions => {:parent_id => nil},
|
95
|
-
:order => "position ASC", :paging => false
|
96
|
-
|
97
|
-
end
|
98
|
-
|
99
|
-
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/vendor/refinerycms/core/crud.md) which gives us all of these regular features out of the box.
|
100
|
-
|
101
|
-
How crudify works is an entire topic of it's own. Checkout the [crudify documentation](http://github.com/resolve/refinerycms/blob/master/vendor/refinerycms/core/crud.md) to get an insight into how that works.
|
102
|
-
|
103
|
-
### app/views and app/helpers
|
104
|
-
|
105
|
-
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.
|
106
|
-
|
107
|
-
### config/routes.rb
|
108
|
-
|
109
|
-
Works exactly the same as ``config/routes.rb`` in your app except this routes file only loads the routes for this engine.
|
110
|
-
|
111
|
-
### rails/init.rb
|
112
|
-
|
113
|
-
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")
|
114
|
-
|
115
|
-
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.
|
116
|
-
|
117
|
-
# pages/lib/pages.rb
|
118
|
-
Refinery::Plugin.register do |plugin|
|
119
|
-
plugin.name = "pages"
|
120
|
-
plugin.version = 1.0
|
121
|
-
plugin.menu_match = /(refinery|admin)\/page(_dialog|part)?s$/
|
122
|
-
plugin.activity = {
|
123
|
-
:class => Page,
|
124
|
-
:url_prefix => "edit_",
|
125
|
-
:title => "title",
|
126
|
-
:created_image => "page_add.png",
|
127
|
-
:updated_image => "page_edit.png"
|
128
|
-
}
|
129
|
-
end
|
130
|
-
|
131
|
-
# pages/config/locales/en.yml
|
132
|
-
en:
|
133
|
-
plugins:
|
134
|
-
refinery_pages:
|
135
|
-
title: Pages
|
136
|
-
description: Manage content pages
|
137
|
-
|
138
|
-
## Getting your Engine to Report Activity in the Dashboard
|
139
|
-
|
140
|
-
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.
|
141
|
-
|
142
|
-
In our example above we showed the use of ``plugin.activity`` for the pages engine.
|
143
|
-
|
144
|
-
Refinery::Plugin.register do |plugin|
|
145
|
-
plugin.name = "pages"
|
146
|
-
plugin.version = 1.0
|
147
|
-
plugin.menu_match = /(refinery|admin)\/page(_dialog|part)?s$/
|
148
|
-
plugin.activity = {
|
149
|
-
:class => Page,
|
150
|
-
:url_prefix => "edit_",
|
151
|
-
:title => "title",
|
152
|
-
:created_image => "page_add.png",
|
153
|
-
:updated_image => "page_edit.png"
|
154
|
-
}
|
155
|
-
end
|
156
|
-
|
157
|
-
Here's what the different activity options mean:
|
158
|
-
|
159
|
-
### Required
|
160
|
-
|
161
|
-
:class
|
162
|
-
# the name of the class we're watching.
|
163
|
-
|
164
|
-
:url_prefix
|
165
|
-
# Just use "edit_" if you're not sure how this works.
|
166
|
-
#
|
167
|
-
# When it says "'About' page was updated about 4 hours ago", the page title "About"
|
168
|
-
# is linked to that page in a way we specify. So by setting "_edit" as a :url_prefix what
|
169
|
-
# we're doing is making it link to the page that allows us to edit this page.
|
170
|
-
# So the next result is edit_admin_page_url(page)
|
171
|
-
|
172
|
-
:title
|
173
|
-
# which attribute on the :class should be in the activty message. In our case it's "title"
|
174
|
-
# because we want it to run something like this "#{page.title} was updated about ...."
|
175
|
-
|
176
|
-
### Optional
|
177
|
-
|
178
|
-
:created_image and :updated_image
|
179
|
-
# the activity monitor knows if something is created or updated and shows a different icon
|
180
|
-
# depending on how you want that to look. You can specify the filename to any image you
|
181
|
-
# want in the public/images/refinery/icons/ directory.
|
182
|
-
|
183
|
-
## Search Engine Optimisation: Improving the default URLs
|
184
|
-
|
185
|
-
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)
|
186
|
-
|
187
|
-
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:
|
188
|
-
|
189
|
-
has_friendly_id :title, :use_slug => true
|
190
|
-
|
191
|
-
Note you want to change ``:title`` to the field which you want to show up in the URL.
|
192
|
-
|
193
|
-
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.
|
194
|
-
|
195
|
-
ruby script/console
|
196
|
-
>> Product.all.each {|p| p.save };nil
|
197
|
-
|
198
|
-
Now all the products in your database will have nice URLs.
|
199
|
-
|
200
|
-
## How to get a WYSIWYG editor to show on your form fields
|
201
|
-
|
202
|
-
Refinery uses a standards compliant visual editor called [WYMeditor](http://www.wymeditor.org/)
|
203
|
-
|
204
|
-
_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._
|
205
|
-
|
206
|
-
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.
|
207
|
-
|
208
|
-
### Example
|
209
|
-
|
210
|
-
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:
|
211
|
-
|
212
|
-
<%= f.text_area :description %>
|
213
|
-
|
214
|
-
Just change that to:
|
215
|
-
|
216
|
-
<%= f.text_area :description, :class => "wymeditor widest" %>
|
217
|
-
|
218
|
-
Refresh and you're done.
|