refinerycms 0.9.7.15 → 0.9.8
Sign up to get free protection for your applications and to get access to all the features.
- data/.gitignore +5 -4
- data/Gemfile +61 -34
- data/app/controllers/application_controller.rb +1 -0
- data/bin/refinerycms +236 -143
- data/config/environments/development.rb +18 -24
- data/config/environments/production.rb +46 -16
- data/config/environments/test.rb +30 -17
- data/config/initializers/acts_as_indexed_config.rb +5 -0
- data/config/initializers/field_with_error_fix.rb +1 -1
- data/config/initializers/fix_rack.rb +17 -0
- data/config/routes.rb +64 -15
- data/db/migrate/20100305023037_remove_unused_users_columns.rb +0 -1
- data/db/migrate/20100605132138_convert_resource_to_dragonfly.rb +41 -0
- data/db/migrate/20100605132208_convert_image_to_dragonfly.rb +51 -0
- data/db/migrate/20100606135207_change_thumbnail_sizes_for_dragonfly.rb +17 -0
- data/db/migrate/20100701053151_remove_superuser_from_users.rb +1 -1
- data/db/migrate/20100826232810_move_inquiry_settings_to_refinery_settings.rb +23 -0
- data/db/schema.rb +21 -22
- data/db/seeds.rb +0 -3
- data/db/seeds/refinery_settings.rb +3 -4
- data/vendor/refinerycms/authentication/app/controllers/admin/users_controller.rb +58 -0
- data/vendor/refinerycms/authentication/app/controllers/sessions_controller.rb +40 -0
- data/vendor/refinerycms/authentication/app/controllers/users_controller.rb +116 -0
- data/vendor/{plugins → refinerycms}/authentication/app/helpers/sessions_helper.rb +0 -0
- data/vendor/{plugins → refinerycms}/authentication/app/helpers/users_helper.rb +0 -0
- data/vendor/refinerycms/authentication/app/mailers/user_mailer.rb +22 -0
- data/vendor/refinerycms/authentication/app/models/role.rb +16 -0
- data/vendor/refinerycms/authentication/app/models/user.rb +71 -0
- data/vendor/{plugins → refinerycms}/authentication/app/models/user_plugin.rb +0 -0
- data/vendor/{plugins → refinerycms}/authentication/app/models/user_session.rb +0 -0
- data/vendor/refinerycms/authentication/app/views/admin/users/_form.html.erb +70 -0
- data/vendor/refinerycms/authentication/app/views/admin/users/_user.html.erb +18 -0
- data/vendor/{plugins → refinerycms}/authentication/app/views/admin/users/edit.html.erb +0 -0
- data/vendor/{plugins → refinerycms}/authentication/app/views/admin/users/index.html.erb +0 -0
- data/vendor/{plugins → refinerycms}/authentication/app/views/admin/users/new.html.erb +0 -0
- data/vendor/refinerycms/authentication/app/views/layouts/login.html.erb +20 -0
- data/vendor/refinerycms/authentication/app/views/sessions/new.html.erb +28 -0
- data/vendor/{plugins → refinerycms}/authentication/app/views/user_mailer/reset_notification.html.erb +0 -0
- data/vendor/refinerycms/authentication/app/views/users/forgot.html.erb +18 -0
- data/vendor/refinerycms/authentication/app/views/users/new.html.erb +41 -0
- data/vendor/refinerycms/authentication/app/views/users/reset.html.erb +29 -0
- data/vendor/refinerycms/authentication/config/locales/da.yml +83 -0
- data/vendor/{plugins → refinerycms}/authentication/config/locales/de.yml +0 -0
- data/vendor/refinerycms/authentication/config/locales/en.yml +67 -0
- data/vendor/refinerycms/authentication/config/locales/es.yml +66 -0
- data/vendor/{plugins → refinerycms}/authentication/config/locales/fr.yml +0 -0
- data/vendor/refinerycms/authentication/config/locales/it.yml +80 -0
- data/vendor/refinerycms/authentication/config/locales/lv.yml +66 -0
- data/vendor/refinerycms/authentication/config/locales/nb.yml +80 -0
- data/vendor/refinerycms/authentication/config/locales/nl.yml +66 -0
- data/vendor/{plugins → refinerycms}/authentication/config/locales/pt-BR.yml +0 -0
- data/vendor/refinerycms/authentication/config/locales/ru.yml +80 -0
- data/vendor/refinerycms/authentication/config/locales/sl.yml +90 -0
- data/vendor/refinerycms/authentication/config/locales/zh-CN.yml +80 -0
- data/vendor/refinerycms/authentication/config/routes.rb +26 -0
- data/vendor/refinerycms/authentication/lib/authenticated_system.rb +129 -0
- data/vendor/{plugins → refinerycms}/authentication/lib/authenticated_test_helper.rb +0 -0
- data/vendor/refinerycms/authentication/lib/authentication.rb +31 -0
- data/vendor/{plugins → refinerycms}/authentication/readme.md +0 -0
- data/vendor/{plugins → refinerycms}/authentication/test/unit/user_mailer_test.rb +0 -0
- data/vendor/refinerycms/authentication/test/unit/user_test.rb +164 -0
- data/vendor/refinerycms/core/app/controllers/admin/dialogs_controller.rb +24 -0
- data/vendor/{plugins/refinery → refinerycms/core}/app/controllers/admin/refinery_core_controller.rb +0 -0
- data/vendor/{plugins/refinery → refinerycms/core}/app/controllers/refinery/fast_controller.rb +0 -0
- data/vendor/refinerycms/core/app/views/admin/_head.html.erb +56 -0
- data/vendor/refinerycms/core/app/views/admin/_menu.html.erb +17 -0
- data/vendor/{plugins/refinery → refinerycms/core}/app/views/admin/_menu_tab.html.erb +0 -0
- data/vendor/refinerycms/core/app/views/admin/dialogs/show.html.erb +19 -0
- data/vendor/refinerycms/core/app/views/layouts/admin.html.erb +22 -0
- data/vendor/{plugins/refinery_dialogs → refinerycms/core}/app/views/layouts/admin_dialog.html.erb +0 -0
- data/vendor/refinerycms/core/app/views/layouts/application.html.erb +22 -0
- data/vendor/refinerycms/core/app/views/shared/_content_page.html.erb +41 -0
- data/vendor/refinerycms/core/app/views/shared/_draft_page_message.html.erb +3 -0
- data/vendor/refinerycms/core/app/views/shared/_footer.html.erb +5 -0
- data/vendor/{plugins/refinery → refinerycms/core}/app/views/shared/_google_analytics.html.erb +0 -0
- data/vendor/refinerycms/core/app/views/shared/_head.html.erb +17 -0
- data/vendor/refinerycms/core/app/views/shared/_header.html.erb +8 -0
- data/vendor/refinerycms/core/app/views/shared/_html5_for_ie.js.erb +7 -0
- data/vendor/{plugins/refinery → refinerycms/core}/app/views/shared/_ie6check.html.erb +0 -0
- data/vendor/{plugins/refinery → refinerycms/core}/app/views/shared/_menu.html.erb +0 -0
- data/vendor/refinerycms/core/app/views/shared/_menu_branch.html.erb +20 -0
- data/vendor/refinerycms/core/app/views/shared/_message.html.erb +10 -0
- data/vendor/refinerycms/core/app/views/shared/_no_script.html.erb +9 -0
- data/vendor/refinerycms/core/app/views/shared/_site_bar.html.erb +37 -0
- data/vendor/refinerycms/core/app/views/shared/admin/_continue_editing.html.erb +3 -0
- data/vendor/refinerycms/core/app/views/shared/admin/_error_messages.html.erb +16 -0
- data/vendor/refinerycms/core/app/views/shared/admin/_form_actions.html.erb +73 -0
- data/vendor/{plugins/refinery → refinerycms/core}/app/views/shared/admin/_image_picker.html.erb +0 -0
- data/vendor/{plugins/refinery → refinerycms/core}/app/views/shared/admin/_make_sortable.html.erb +0 -0
- data/vendor/refinerycms/core/app/views/shared/admin/_resource_picker.html.erb +59 -0
- data/vendor/refinerycms/core/app/views/shared/admin/_search.html.erb +5 -0
- data/vendor/refinerycms/core/app/views/shared/admin/_sortable_list.html.erb +8 -0
- data/vendor/refinerycms/core/app/views/welcome.html.erb +17 -0
- data/vendor/refinerycms/core/app/views/wymiframe.html.erb +17 -0
- data/vendor/refinerycms/core/config/locales/da.yml +71 -0
- data/vendor/refinerycms/core/config/locales/de.yml +68 -0
- data/vendor/refinerycms/core/config/locales/en.yml +67 -0
- data/vendor/refinerycms/core/config/locales/es.yml +60 -0
- data/vendor/refinerycms/core/config/locales/fr.yml +66 -0
- data/vendor/refinerycms/core/config/locales/it.yml +65 -0
- data/vendor/refinerycms/core/config/locales/lv.yml +60 -0
- data/vendor/refinerycms/core/config/locales/nb.yml +61 -0
- data/vendor/refinerycms/core/config/locales/nl.yml +62 -0
- data/vendor/refinerycms/core/config/locales/pt-BR.yml +71 -0
- data/vendor/refinerycms/core/config/locales/ru.yml +61 -0
- data/vendor/refinerycms/core/config/locales/sl.yml +68 -0
- data/vendor/refinerycms/core/config/locales/zh-CN.yml +65 -0
- data/vendor/refinerycms/core/config/routes.rb +15 -0
- data/vendor/{plugins/refinery → refinerycms/core}/crud.md +0 -0
- data/vendor/refinerycms/core/engines.md +213 -0
- data/vendor/refinerycms/core/lib/core.rb +77 -0
- data/vendor/refinerycms/core/lib/crud.rb +265 -0
- data/vendor/refinerycms/core/lib/generators/refinery_engine/USAGE +23 -0
- data/vendor/refinerycms/core/lib/generators/refinery_engine/refinery_engine_generator.rb +83 -0
- data/vendor/{plugins/refinery/lib/generators/refinery_plugin/templates/controller.rb → refinerycms/core/lib/generators/refinery_engine/templates/app/controllers/admin/plural_name_controller.rb} +0 -0
- data/vendor/{plugins/refinery/lib/generators/refinery_plugin/templates/public_controller.rb → refinerycms/core/lib/generators/refinery_engine/templates/app/controllers/plural_name_controller.rb} +0 -0
- data/vendor/{plugins/refinery/lib/generators/refinery_plugin/templates/model.rb → refinerycms/core/lib/generators/refinery_engine/templates/app/models/singular_name.rb} +0 -0
- data/vendor/refinerycms/core/lib/generators/refinery_engine/templates/app/views/admin/plural_name/_form.html.erb +35 -0
- data/vendor/refinerycms/core/lib/generators/refinery_engine/templates/app/views/admin/plural_name/_singular_name.html.erb +16 -0
- data/vendor/{plugins/refinery/lib/generators/refinery_plugin/templates/views/admin → refinerycms/core/lib/generators/refinery_engine/templates/app/views/admin/plural_name}/_sortable_list.html.erb +0 -0
- data/vendor/{plugins/refinery/lib/generators/refinery_plugin/templates/views/admin → refinerycms/core/lib/generators/refinery_engine/templates/app/views/admin/plural_name}/edit.html.erb +0 -0
- data/vendor/refinerycms/core/lib/generators/refinery_engine/templates/app/views/admin/plural_name/index.html.erb +65 -0
- data/vendor/{plugins/refinery/lib/generators/refinery_plugin/templates/views/admin → refinerycms/core/lib/generators/refinery_engine/templates/app/views/admin/plural_name}/new.html.erb +0 -0
- data/vendor/{plugins/refinery/lib/generators/refinery_plugin/templates/views → refinerycms/core/lib/generators/refinery_engine/templates/app/views/plural_name}/index.html.erb +0 -0
- data/vendor/refinerycms/core/lib/generators/refinery_engine/templates/app/views/plural_name/show.html.erb +31 -0
- data/vendor/refinerycms/core/lib/generators/refinery_engine/templates/config/locales/en.yml +19 -0
- data/vendor/refinerycms/core/lib/generators/refinery_engine/templates/config/locales/nb.yml +19 -0
- data/vendor/refinerycms/core/lib/generators/refinery_engine/templates/config/locales/nl.yml +19 -0
- data/vendor/refinerycms/core/lib/generators/refinery_engine/templates/config/routes.rb +11 -0
- data/vendor/refinerycms/core/lib/generators/refinery_engine/templates/db/migrate/migration_number_create_plural_name.rb +33 -0
- data/vendor/refinerycms/core/lib/generators/refinery_engine/templates/db/seeds/plural_name.rb +15 -0
- data/vendor/refinerycms/core/lib/generators/refinery_engine/templates/lib/plural_name.rb +16 -0
- data/vendor/refinerycms/core/lib/generators/refinery_engine/templates/refinerycms-plural_name.gemspec +12 -0
- data/vendor/refinerycms/core/lib/refinery/activity.rb +45 -0
- data/vendor/refinerycms/core/lib/refinery/admin_base_controller.rb +95 -0
- data/vendor/refinerycms/core/lib/refinery/application_controller.rb +101 -0
- data/vendor/refinerycms/core/lib/refinery/application_helper.rb +195 -0
- data/vendor/{plugins/refinery → refinerycms/core}/lib/refinery/attachment_fu_patch.rb +0 -0
- data/vendor/{plugins/refinery → refinerycms/core}/lib/refinery/base_presenter.rb +0 -0
- data/vendor/refinerycms/core/lib/refinery/catch_all_routes.rb +5 -0
- data/vendor/{plugins/refinery → refinerycms/core}/lib/refinery/form_helpers.rb +0 -0
- data/vendor/{plugins/refinery → refinerycms/core}/lib/refinery/html_truncation_helper.rb +0 -0
- data/vendor/refinerycms/core/lib/refinery/link_renderer.rb +55 -0
- data/vendor/refinerycms/core/lib/refinery/plugin.rb +134 -0
- data/vendor/refinerycms/core/lib/refinery/plugins.rb +66 -0
- data/vendor/refinerycms/core/lib/tasks/doc.rake +29 -0
- data/vendor/refinerycms/core/lib/tasks/refinery.rake +128 -0
- data/vendor/refinerycms/core/lib/tasks/yard.rake +30 -0
- data/vendor/refinerycms/core/public/404.html +26 -0
- data/vendor/refinerycms/core/public/422.html +26 -0
- data/vendor/refinerycms/core/public/500.html +26 -0
- data/{public → vendor/refinerycms/core/public}/favicon.ico +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/add.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/admin_bg.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/ajax-loader.gif +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/branch-end.gif +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/branch-start.gif +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/branch.gif +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/carousel-left.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/carousel-right.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/cross.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/dialogLoadingAnimation.gif +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/header_background.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/hover-gradient.jpg +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/accept.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/add.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/ajax-loader.gif +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/application_edit.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/application_go.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/arrow_left.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/arrow_switch.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/arrow_up.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/bin.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/bin_closed.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/cancel.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/cog_add.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/cog_edit.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/cross.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/delete.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/doc.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/edit.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/email.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/email_edit.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/email_go.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/email_open.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/eye.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/flags/ad.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/flags/ae.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/flags/af.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/flags/ag.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/flags/ai.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/flags/al.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/flags/am.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/flags/an.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/flags/ao.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/flags/ar.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/flags/as.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/flags/at.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/flags/au.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/flags/aw.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/flags/ax.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/flags/az.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/flags/ba.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/flags/bb.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/flags/bd.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/flags/be.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/flags/bf.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/flags/bg.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/flags/bh.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/flags/bi.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/flags/bj.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/flags/bm.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/flags/bn.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/flags/bo.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/flags/bs.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/flags/bt.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/flags/bv.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/flags/bw.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/flags/by.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/flags/bz.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/flags/ca.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/flags/catalonia.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/flags/cc.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/flags/cd.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/flags/cf.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/flags/cg.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/flags/ch.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/flags/ci.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/flags/ck.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/flags/cl.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/flags/cm.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/flags/cn.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/flags/co.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/flags/cr.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/flags/cs.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/flags/cu.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/flags/cv.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/flags/cx.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/flags/cy.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/flags/cz.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/flags/da.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/flags/de.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/flags/dj.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/flags/dm.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/flags/do.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/flags/dz.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/flags/ec.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/flags/ee.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/flags/eg.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/flags/eh.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/flags/en.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/flags/england.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/flags/er.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/flags/es.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/flags/et.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/flags/europeanunion.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/flags/fam.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/flags/fi.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/flags/fj.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/flags/fk.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/flags/fm.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/flags/fo.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/flags/fr.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/flags/ga.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/flags/gb.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/flags/gd.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/flags/ge.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/flags/gf.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/flags/gh.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/flags/gi.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/flags/gl.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/flags/gm.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/flags/gn.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/flags/gp.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/flags/gq.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/flags/gr.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/flags/gs.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/flags/gt.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/flags/gu.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/flags/gw.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/flags/gy.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/flags/hk.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/flags/hm.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/flags/hn.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/flags/hr.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/flags/ht.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/flags/hu.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/flags/id.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/flags/ie.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/flags/il.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/flags/in.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/flags/io.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/flags/iq.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/flags/ir.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/flags/is.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/flags/it.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/flags/jm.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/flags/jo.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/flags/jp.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/flags/ke.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/flags/kg.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/flags/kh.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/flags/ki.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/flags/km.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/flags/kn.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/flags/kp.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/flags/kr.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/flags/kw.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/flags/ky.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/flags/kz.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/flags/la.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/flags/lb.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/flags/lc.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/flags/li.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/flags/lk.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/flags/lr.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/flags/ls.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/flags/lt.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/flags/lu.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/flags/lv.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/flags/ly.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/flags/ma.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/flags/mc.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/flags/md.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/flags/me.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/flags/mg.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/flags/mh.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/flags/mk.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/flags/ml.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/flags/mm.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/flags/mn.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/flags/mo.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/flags/mp.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/flags/mq.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/flags/mr.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/flags/ms.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/flags/mt.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/flags/mu.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/flags/mv.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/flags/mw.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/flags/mx.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/flags/my.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/flags/mz.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/flags/na.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/flags/nb.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/flags/nc.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/flags/ne.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/flags/nf.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/flags/ng.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/flags/ni.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/flags/nl.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/flags/nn.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/flags/np.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/flags/nr.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/flags/nu.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/flags/nz.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/flags/om.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/flags/pa.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/flags/pe.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/flags/pf.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/flags/pg.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/flags/ph.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/flags/pk.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/flags/pl.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/flags/pm.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/flags/pn.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/flags/pr.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/flags/ps.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/flags/pt-BR.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/flags/pt.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/flags/pw.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/flags/py.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/flags/qa.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/flags/re.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/flags/ro.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/flags/rs.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/flags/ru.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/flags/rw.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/flags/sa.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/flags/sb.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/flags/sc.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/flags/scotland.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/flags/sd.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/flags/se.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/flags/sg.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/flags/sh.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/flags/si.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/flags/sj.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/flags/sk.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/flags/sl.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/flags/sm.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/flags/sn.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/flags/so.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/flags/sr.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/flags/st.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/flags/sv.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/flags/sy.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/flags/sz.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/flags/tc.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/flags/td.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/flags/tf.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/flags/tg.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/flags/th.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/flags/tj.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/flags/tk.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/flags/tl.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/flags/tm.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/flags/tn.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/flags/to.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/flags/tr.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/flags/tt.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/flags/tv.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/flags/tw.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/flags/tz.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/flags/ua.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/flags/ug.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/flags/um.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/flags/us.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/flags/uy.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/flags/uz.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/flags/va.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/flags/vc.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/flags/ve.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/flags/vg.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/flags/vi.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/flags/vn.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/flags/vu.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/flags/wales.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/flags/wf.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/flags/ws.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/flags/ye.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/flags/yt.png +0 -0
- data/{public → 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/{public → vendor/refinerycms/core/public}/images/refinery/icons/flags/zm.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/flags/zw.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/folder_page_white.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/image_add.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/image_edit.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/img.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/layout_add.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/layout_edit.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/music.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/page_add.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/page_edit.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/page_white_edit.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/page_white_gear.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/page_white_put.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/pdf.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/ppt.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/star.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/tick.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/user_add.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/user_comment.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/user_edit.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/xls.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/zip.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/icons/zoom.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/logo-large.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/logo-medium.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/logo-site-bar.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/logo-small-medium.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/logo-small.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/logo-tiny.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/logo.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/nav-3-background.gif +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/nav_inactive_background.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/orange_button.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/page_bg.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/resolve_digital_footer_logo.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/text_field_background.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/refinery/tooltip-nib.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/wymeditor/skins/refinery/arrow_redo.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/wymeditor/skins/refinery/arrow_undo.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/wymeditor/skins/refinery/eye.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/wymeditor/skins/refinery/iframe/lbl-blockquote.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/wymeditor/skins/refinery/iframe/lbl-h1.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/wymeditor/skins/refinery/iframe/lbl-h2.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/wymeditor/skins/refinery/iframe/lbl-h3.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/wymeditor/skins/refinery/iframe/lbl-h4.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/wymeditor/skins/refinery/iframe/lbl-h5.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/wymeditor/skins/refinery/iframe/lbl-h6.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/wymeditor/skins/refinery/iframe/lbl-p.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/wymeditor/skins/refinery/iframe/lbl-pre.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/wymeditor/skins/refinery/link_add.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/wymeditor/skins/refinery/link_break.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/wymeditor/skins/refinery/page_code.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/wymeditor/skins/refinery/page_paste.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/wymeditor/skins/refinery/photo_add.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/wymeditor/skins/refinery/right.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/wymeditor/skins/refinery/style.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/wymeditor/skins/refinery/table_add.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/wymeditor/skins/refinery/text_align_center.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/wymeditor/skins/refinery/text_align_justify.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/wymeditor/skins/refinery/text_align_left.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/wymeditor/skins/refinery/text_align_right.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/wymeditor/skins/refinery/text_bold.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/wymeditor/skins/refinery/text_heading_1.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/wymeditor/skins/refinery/text_heading_2.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/wymeditor/skins/refinery/text_heading_3.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/wymeditor/skins/refinery/text_heading_4.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/wymeditor/skins/refinery/text_heading_5.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/wymeditor/skins/refinery/text_heading_6.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/wymeditor/skins/refinery/text_indent.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/wymeditor/skins/refinery/text_indent_remove.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/wymeditor/skins/refinery/text_italic.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/wymeditor/skins/refinery/text_list_bullets.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/wymeditor/skins/refinery/text_list_numbers.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/wymeditor/skins/refinery/text_paragraph.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/wymeditor/skins/refinery/text_strikethrough.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/wymeditor/skins/refinery/text_subscript.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/wymeditor/skins/refinery/text_superscript.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/wymeditor/skins/refinery/text_underline.png +0 -0
- data/{public → vendor/refinerycms/core/public}/images/wymeditor/skins/wymeditor_icon.png +0 -0
- data/{public → vendor/refinerycms/core/public}/javascripts/admin.js +0 -0
- data/{public → vendor/refinerycms/core/public}/javascripts/application.js +0 -0
- data/{public → vendor/refinerycms/core/public}/javascripts/i18n-messages.js +0 -0
- data/{public → vendor/refinerycms/core/public}/javascripts/jquery-min.js +0 -0
- data/{public → vendor/refinerycms/core/public}/javascripts/jquery-ui-custom-min.js +0 -0
- data/{public → vendor/refinerycms/core/public}/javascripts/jquery.js +0 -0
- data/{public → vendor/refinerycms/core/public}/javascripts/jquery/GPL-LICENSE.txt +0 -0
- data/{public → vendor/refinerycms/core/public}/javascripts/jquery/MIT-LICENSE.txt +0 -0
- data/{public → vendor/refinerycms/core/public}/javascripts/jquery/jquery.corner.js +0 -0
- data/{public → vendor/refinerycms/core/public}/javascripts/jquery/jquery.html5-placeholder-shim.js +0 -0
- data/{public → vendor/refinerycms/core/public}/javascripts/jquery/jquery.jcarousel.js +0 -0
- data/{public → vendor/refinerycms/core/public}/javascripts/jquery/jquery.nestedsortables.js +0 -0
- data/{public → vendor/refinerycms/core/public}/javascripts/jquery/jquery.textTruncate.js +0 -0
- data/{public → vendor/refinerycms/core/public}/javascripts/jquery/jquery.timers.js +0 -0
- data/vendor/refinerycms/core/public/javascripts/refinery/admin.js +989 -0
- data/{public → vendor/refinerycms/core/public}/javascripts/refinery/boot_wym.js +0 -0
- data/vendor/refinerycms/core/public/javascripts/refinery/core.js +12 -0
- data/{public → vendor/refinerycms/core/public}/javascripts/refinery/i18n.js +0 -0
- data/vendor/refinerycms/core/public/javascripts/refinery/site_bar.js +15 -0
- data/vendor/refinerycms/core/public/javascripts/wymeditor/jquery.refinery.wymeditor.js +5077 -0
- data/{public → vendor/refinerycms/core/public}/javascripts/wymeditor/lang/ca.js +0 -0
- data/{public → vendor/refinerycms/core/public}/javascripts/wymeditor/lang/cs.js +0 -0
- data/{public → vendor/refinerycms/core/public}/javascripts/wymeditor/lang/da.js +0 -0
- data/{public → vendor/refinerycms/core/public}/javascripts/wymeditor/lang/de.js +0 -0
- data/{public → vendor/refinerycms/core/public}/javascripts/wymeditor/lang/en.js +0 -0
- data/{public → vendor/refinerycms/core/public}/javascripts/wymeditor/lang/es.js +0 -0
- data/{public → vendor/refinerycms/core/public}/javascripts/wymeditor/lang/fa.js +0 -0
- data/{public → vendor/refinerycms/core/public}/javascripts/wymeditor/lang/fr.js +0 -0
- data/{public → vendor/refinerycms/core/public}/javascripts/wymeditor/lang/he.js +0 -0
- data/{public → vendor/refinerycms/core/public}/javascripts/wymeditor/lang/hu.js +0 -0
- data/{public → vendor/refinerycms/core/public}/javascripts/wymeditor/lang/it.js +0 -0
- data/{public → vendor/refinerycms/core/public}/javascripts/wymeditor/lang/nb.js +0 -0
- data/{public → vendor/refinerycms/core/public}/javascripts/wymeditor/lang/nl.js +0 -0
- data/{public → vendor/refinerycms/core/public}/javascripts/wymeditor/lang/nn.js +0 -0
- data/{public → vendor/refinerycms/core/public}/javascripts/wymeditor/lang/pl.js +0 -0
- data/{public → vendor/refinerycms/core/public}/javascripts/wymeditor/lang/pt-br.js +0 -0
- data/{public → vendor/refinerycms/core/public}/javascripts/wymeditor/lang/pt.js +0 -0
- data/{public → vendor/refinerycms/core/public}/javascripts/wymeditor/lang/ru.js +0 -0
- data/{public → vendor/refinerycms/core/public}/javascripts/wymeditor/lang/sl.js +0 -0
- data/{public → vendor/refinerycms/core/public}/javascripts/wymeditor/lang/sv.js +0 -0
- data/{public → vendor/refinerycms/core/public}/javascripts/wymeditor/lang/tr.js +0 -0
- data/{public → vendor/refinerycms/core/public}/javascripts/wymeditor/lang/zh_cn.js +0 -0
- data/{public → vendor/refinerycms/core/public}/javascripts/wymeditor/skins/refinery/skin.js +0 -0
- data/{public → vendor/refinerycms/core/public}/robots.txt +0 -0
- data/{public → vendor/refinerycms/core/public}/stylesheets/application.css +0 -0
- data/{public → vendor/refinerycms/core/public}/stylesheets/formatting.css +0 -0
- data/{public → vendor/refinerycms/core/public}/stylesheets/home.css +0 -0
- data/{themes/demolicious → vendor/refinerycms/core/public}/stylesheets/ie6.css +0 -0
- data/{public → vendor/refinerycms/core/public}/stylesheets/ie7.css +0 -0
- data/{public → vendor/refinerycms/core/public}/stylesheets/refinery/application.css +0 -0
- data/{public → vendor/refinerycms/core/public}/stylesheets/refinery/formatting.css +0 -0
- data/{public → vendor/refinerycms/core/public}/stylesheets/refinery/home.css +0 -0
- data/{public → vendor/refinerycms/core/public}/stylesheets/refinery/ie-less-than-8.css +0 -0
- data/{public → vendor/refinerycms/core/public}/stylesheets/refinery/ie-less-than-9.css +0 -0
- data/vendor/refinerycms/core/public/stylesheets/refinery/refinery.css +1494 -0
- data/{public → vendor/refinerycms/core/public}/stylesheets/refinery/site_bar.css +0 -0
- data/{public → vendor/refinerycms/core/public}/stylesheets/refinery/theme.css +0 -0
- data/{public → vendor/refinerycms/core/public}/stylesheets/refinery/tooltips.css +0 -0
- data/{public → vendor/refinerycms/core/public}/stylesheets/refinery/ui.css +0 -0
- data/{public → vendor/refinerycms/core/public}/stylesheets/theme.css +0 -0
- data/{public → vendor/refinerycms/core/public}/stylesheets/wymeditor/skins/refinery/skin.css +0 -0
- data/{public → vendor/refinerycms/core/public}/stylesheets/wymeditor/skins/refinery/wymiframe.css +0 -0
- data/{public → vendor/refinerycms/core/public}/wymeditor/GPL-license.txt +0 -0
- data/{public → vendor/refinerycms/core/public}/wymeditor/MIT-license.txt +0 -0
- data/{public → vendor/refinerycms/core/public}/wymeditor/README +0 -0
- data/vendor/refinerycms/dashboard/app/controllers/admin/dashboard_controller.rb +38 -0
- data/vendor/refinerycms/dashboard/app/helpers/admin/dashboard_helper.rb +20 -0
- data/vendor/refinerycms/dashboard/app/views/admin/dashboard/_recent_activity.html.erb +12 -0
- data/vendor/{plugins → refinerycms}/dashboard/app/views/admin/dashboard/_recent_inquiries.html.erb +0 -0
- data/vendor/refinerycms/dashboard/app/views/admin/dashboard/index.html.erb +72 -0
- data/vendor/{plugins → refinerycms}/dashboard/app/views/admin/dashboard/index.rss.builder +0 -0
- data/vendor/{plugins → refinerycms}/dashboard/config/locales/da.yml +0 -0
- data/vendor/{plugins → refinerycms}/dashboard/config/locales/de.yml +0 -0
- data/vendor/refinerycms/dashboard/config/locales/en.yml +24 -0
- data/vendor/refinerycms/dashboard/config/locales/es.yml +27 -0
- data/vendor/{plugins → refinerycms}/dashboard/config/locales/fr.yml +0 -0
- data/vendor/{plugins → refinerycms}/dashboard/config/locales/it.yml +0 -0
- data/vendor/refinerycms/dashboard/config/locales/lv.yml +25 -0
- data/vendor/refinerycms/dashboard/config/locales/nb.yml +27 -0
- data/vendor/refinerycms/dashboard/config/locales/nl.yml +23 -0
- data/vendor/{plugins → refinerycms}/dashboard/config/locales/pt-BR.yml +0 -0
- data/vendor/refinerycms/dashboard/config/locales/ru.yml +27 -0
- data/vendor/refinerycms/dashboard/config/locales/sl.yml +23 -0
- data/vendor/refinerycms/dashboard/config/locales/zh-CN.yml +23 -0
- data/vendor/refinerycms/dashboard/config/routes.rb +11 -0
- data/vendor/refinerycms/dashboard/lib/dashboard.rb +19 -0
- data/vendor/refinerycms/dashboard/readme.md +22 -0
- data/vendor/refinerycms/images/app/controllers/admin/images_controller.rb +118 -0
- data/vendor/{plugins → refinerycms}/images/app/helpers/admin/images_helper.rb +0 -0
- data/vendor/refinerycms/images/app/models/image.rb +66 -0
- data/vendor/refinerycms/images/app/views/admin/images/_existing_image.html.erb +52 -0
- data/vendor/refinerycms/images/app/views/admin/images/_form.html.erb +51 -0
- data/vendor/refinerycms/images/app/views/admin/images/_grid_view.html.erb +19 -0
- data/vendor/{plugins → refinerycms}/images/app/views/admin/images/_list_view.html.erb +0 -0
- data/vendor/refinerycms/images/app/views/admin/images/_list_view_image.html.erb +17 -0
- data/vendor/{plugins → refinerycms}/images/app/views/admin/images/edit.html.erb +0 -0
- data/vendor/refinerycms/images/app/views/admin/images/index.html.erb +43 -0
- data/vendor/refinerycms/images/app/views/admin/images/insert.html.erb +47 -0
- data/vendor/{plugins → refinerycms}/images/app/views/admin/images/new.html.erb +0 -0
- data/vendor/refinerycms/images/config/locales/da.yml +42 -0
- data/vendor/refinerycms/images/config/locales/de.yml +42 -0
- data/vendor/refinerycms/images/config/locales/en.yml +38 -0
- data/vendor/refinerycms/images/config/locales/es.yml +37 -0
- data/vendor/refinerycms/images/config/locales/fr.yml +42 -0
- data/vendor/refinerycms/images/config/locales/it.yml +40 -0
- data/vendor/refinerycms/images/config/locales/lv.yml +38 -0
- data/vendor/refinerycms/images/config/locales/nb.yml +46 -0
- data/vendor/refinerycms/images/config/locales/nl.yml +37 -0
- data/vendor/refinerycms/images/config/locales/pt-BR.yml +48 -0
- data/vendor/refinerycms/images/config/locales/ru.yml +46 -0
- data/vendor/refinerycms/images/config/locales/sl.yml +37 -0
- data/vendor/refinerycms/images/config/locales/zh-CN.yml +35 -0
- data/vendor/refinerycms/images/config/routes.rb +12 -0
- data/vendor/refinerycms/images/lib/images.rb +59 -0
- data/vendor/refinerycms/images/lib/tasks/images.rake +50 -0
- data/vendor/refinerycms/images/readme.md +58 -0
- data/vendor/{plugins → refinerycms}/pages/app/controllers/admin/page_parts_controller.rb +0 -0
- data/vendor/refinerycms/pages/app/controllers/admin/pages_controller.rb +71 -0
- data/vendor/{plugins → refinerycms}/pages/app/controllers/admin/pages_dialogs_controller.rb +0 -0
- data/vendor/refinerycms/pages/app/controllers/pages_controller.rb +45 -0
- data/vendor/{plugins → refinerycms}/pages/app/helpers/pages_helper.rb +0 -0
- data/vendor/refinerycms/pages/app/models/page.rb +255 -0
- data/vendor/refinerycms/pages/app/models/page_part.rb +21 -0
- data/vendor/{plugins → refinerycms}/pages/app/presenters/page_presenter.rb +0 -0
- data/vendor/refinerycms/pages/app/views/admin/pages/_form.html.erb +50 -0
- data/vendor/refinerycms/pages/app/views/admin/pages/_form_advanced_options.html.erb +62 -0
- data/vendor/{plugins → refinerycms}/pages/app/views/admin/pages/_form_advanced_options_seo.html.erb +0 -0
- data/vendor/refinerycms/pages/app/views/admin/pages/_form_new_page_parts.html.erb +14 -0
- data/vendor/refinerycms/pages/app/views/admin/pages/_form_page_parts.html.erb +37 -0
- data/vendor/refinerycms/pages/app/views/admin/pages/_page.html.erb +34 -0
- data/vendor/{plugins → refinerycms}/pages/app/views/admin/pages/_page_part_field.html.erb +0 -0
- data/vendor/{plugins → refinerycms}/pages/app/views/admin/pages/_sortable_list.html.erb +0 -0
- data/vendor/{plugins → refinerycms}/pages/app/views/admin/pages/edit.html.erb +0 -0
- data/vendor/refinerycms/pages/app/views/admin/pages/index.html.erb +35 -0
- data/vendor/{plugins → refinerycms}/pages/app/views/admin/pages/new.html.erb +0 -0
- data/vendor/refinerycms/pages/app/views/admin/pages_dialogs/_page_link.html.erb +5 -0
- data/vendor/refinerycms/pages/app/views/admin/pages_dialogs/link_to.html.erb +134 -0
- data/{themes/demolicious → vendor/refinerycms/pages/app}/views/pages/home.html.erb +0 -0
- data/{themes/demolicious → vendor/refinerycms/pages/app}/views/pages/show.html.erb +0 -0
- data/vendor/refinerycms/pages/config/locales/da.yml +53 -0
- data/vendor/{plugins → refinerycms}/pages/config/locales/de.yml +0 -0
- data/vendor/refinerycms/pages/config/locales/en.yml +83 -0
- data/vendor/refinerycms/pages/config/locales/es.yml +82 -0
- data/vendor/refinerycms/pages/config/locales/fr.yml +53 -0
- data/vendor/refinerycms/pages/config/locales/it.yml +53 -0
- data/vendor/refinerycms/pages/config/locales/lv.yml +85 -0
- data/vendor/refinerycms/pages/config/locales/nb.yml +95 -0
- data/vendor/refinerycms/pages/config/locales/nl.yml +77 -0
- data/vendor/{plugins → refinerycms}/pages/config/locales/pt-BR.yml +0 -0
- data/vendor/refinerycms/pages/config/locales/ru.yml +97 -0
- data/vendor/refinerycms/pages/config/locales/sl.yml +82 -0
- data/vendor/refinerycms/pages/config/locales/zh-CN.yml +75 -0
- data/vendor/refinerycms/pages/config/routes.rb +24 -0
- data/vendor/refinerycms/pages/lib/pages.rb +29 -0
- data/vendor/refinerycms/pages/lib/pages/marketable_routes.rb +3 -0
- data/vendor/refinerycms/pages/readme.md +156 -0
- data/vendor/refinerycms/refinery.rb +40 -0
- data/vendor/refinerycms/refinerycms.rb +12 -0
- data/vendor/{plugins → refinerycms}/resources/app/controllers/admin/resources_controller.rb +0 -0
- data/vendor/refinerycms/resources/app/models/resource.rb +40 -0
- data/vendor/refinerycms/resources/app/views/admin/resources/_existing_resource.html.erb +32 -0
- data/vendor/refinerycms/resources/app/views/admin/resources/_form.html.erb +52 -0
- data/vendor/refinerycms/resources/app/views/admin/resources/_resource.html.erb +17 -0
- data/vendor/{plugins → refinerycms}/resources/app/views/admin/resources/edit.html.erb +0 -0
- data/vendor/refinerycms/resources/app/views/admin/resources/index.html.erb +45 -0
- data/vendor/refinerycms/resources/app/views/admin/resources/insert.html.erb +54 -0
- data/vendor/{plugins → refinerycms}/resources/app/views/admin/resources/new.html.erb +0 -0
- data/vendor/{plugins → refinerycms}/resources/config/locales/da.yml +0 -0
- data/vendor/{plugins → refinerycms}/resources/config/locales/de.yml +0 -0
- data/vendor/refinerycms/resources/config/locales/en.yml +31 -0
- data/vendor/refinerycms/resources/config/locales/es.yml +30 -0
- data/vendor/{plugins → refinerycms}/resources/config/locales/fr.yml +0 -0
- data/vendor/{plugins → refinerycms}/resources/config/locales/it.yml +0 -0
- data/vendor/refinerycms/resources/config/locales/lv.yml +30 -0
- data/vendor/{plugins → refinerycms}/resources/config/locales/nb.yml +0 -0
- data/vendor/refinerycms/resources/config/locales/nl.yml +30 -0
- data/vendor/{plugins → refinerycms}/resources/config/locales/pt-BR.yml +0 -0
- data/vendor/refinerycms/resources/config/locales/ru.yml +33 -0
- data/vendor/refinerycms/resources/config/locales/sl.yml +30 -0
- data/vendor/refinerycms/resources/config/locales/zh-CN.yml +29 -0
- data/vendor/refinerycms/resources/config/routes.rb +11 -0
- data/vendor/refinerycms/resources/lib/resources.rb +48 -0
- data/vendor/refinerycms/resources/readme.md +9 -0
- data/vendor/{plugins/refinery_settings → refinerycms/settings}/app/controllers/admin/refinery_settings_controller.rb +0 -0
- data/vendor/refinerycms/settings/app/models/refinery_setting.rb +175 -0
- data/vendor/refinerycms/settings/app/views/admin/refinery_settings/_form.html.erb +51 -0
- data/vendor/refinerycms/settings/app/views/admin/refinery_settings/_refinery_setting.html.erb +17 -0
- data/vendor/{plugins/refinery_settings → refinerycms/settings}/app/views/admin/refinery_settings/edit.html.erb +0 -0
- data/vendor/refinerycms/settings/app/views/admin/refinery_settings/index.html.erb +32 -0
- data/vendor/{plugins/refinery_settings → refinerycms/settings}/app/views/admin/refinery_settings/new.html.erb +0 -0
- data/vendor/{plugins/refinery_settings → refinerycms/settings}/config/locales/da.yml +0 -0
- data/vendor/{plugins/refinery_settings → refinerycms/settings}/config/locales/de.yml +0 -0
- data/vendor/refinerycms/settings/config/locales/en.yml +43 -0
- data/vendor/refinerycms/settings/config/locales/es.yml +42 -0
- data/vendor/{plugins/refinery_settings → refinerycms/settings}/config/locales/fr.yml +0 -0
- data/vendor/{plugins/refinery_settings → refinerycms/settings}/config/locales/it.yml +0 -0
- data/vendor/refinerycms/settings/config/locales/lv.yml +42 -0
- data/vendor/refinerycms/settings/config/locales/nb.yml +45 -0
- data/vendor/refinerycms/settings/config/locales/nl.yml +42 -0
- data/vendor/refinerycms/settings/config/locales/pt-BR.yml +45 -0
- data/vendor/refinerycms/settings/config/locales/ru.yml +45 -0
- data/vendor/refinerycms/settings/config/locales/sl.yml +24 -0
- data/vendor/refinerycms/settings/config/locales/zh-CN.yml +40 -0
- data/vendor/refinerycms/settings/config/routes.rb +5 -0
- data/vendor/refinerycms/settings/lib/settings.rb +16 -0
- data/vendor/{plugins/refinery_settings → refinerycms/settings}/readme.md +0 -0
- metadata +893 -1045
- data/Rakefile +0 -18
- data/bin/refinery +0 -4
- data/bin/refinery-upgrade-096-to-097 +0 -140
- data/changelog.md +0 -473
- data/config.ru +0 -7
- data/config/acts_as_indexed_config.rb +0 -10
- data/config/amazon_s3.yml.example +0 -18
- data/config/application.rb +0 -35
- data/config/boot.rb +0 -124
- data/config/cucumber.yml +0 -8
- data/config/environment.rb +0 -2
- data/config/environments/cucumber.rb +0 -23
- data/config/i18n-js.yml +0 -6
- data/config/initializers/inflections.rb +0 -10
- data/config/initializers/mime_types.rb +0 -5
- data/config/preinitializer.rb +0 -25
- data/config/rackspace_cloudfiles.yml.example +0 -15
- data/features/refinery/create_inquiries.feature +0 -38
- data/features/refinery/dashboard.feature +0 -50
- data/features/refinery/manage_files.feature +0 -40
- data/features/refinery/manage_images.feature +0 -48
- data/features/refinery/manage_inquiries.feature +0 -54
- data/features/refinery/manage_pages.feature +0 -45
- data/features/refinery/manage_refinery_settings.feature +0 -5
- data/features/refinery/manage_users.feature +0 -55
- data/features/refinery/plugin_generator.feature +0 -27
- data/features/refinery/search.feature +0 -37
- data/features/refinery/site_bar.feature +0 -24
- data/features/refinery/theme_generator.feature +0 -16
- data/features/step_definitions/refinery/core_steps.rb +0 -55
- data/features/step_definitions/refinery/file_steps.rb +0 -26
- data/features/step_definitions/refinery/generator_steps.rb +0 -11
- data/features/step_definitions/refinery/image_steps.rb +0 -47
- data/features/step_definitions/refinery/inquiry_steps.rb +0 -25
- data/features/step_definitions/refinery/page_steps.rb +0 -29
- data/features/step_definitions/refinery/plugin_generator_steps.rb +0 -16
- data/features/step_definitions/refinery/theme_generator_steps.rb +0 -15
- data/features/step_definitions/refinery/user_steps.rb +0 -33
- data/features/step_definitions/web_steps.rb +0 -219
- data/features/support/env.rb +0 -86
- data/features/support/factories.rb +0 -19
- data/features/support/negative_expectations_helper.rb +0 -57
- data/features/support/paths.rb +0 -72
- data/features/uploads/beach.INVALID +0 -0
- data/features/uploads/beach.jpeg +0 -0
- data/features/uploads/id-rather-be-here.jpg +0 -0
- data/features/uploads/refinery_is_awesome.txt +0 -1
- data/lib/gemspec.rb +0 -32
- data/lib/refinery_initializer.rb +0 -23
- data/lib/tasks/cucumber.rake +0 -53
- data/lib/tasks/rspec.rake +0 -143
- data/license.md +0 -21
- data/public/.htaccess +0 -40
- data/public/404.html +0 -29
- data/public/422.html +0 -30
- data/public/500.html +0 -29
- data/public/javascripts/refinery/admin.js +0 -1007
- data/public/javascripts/wymeditor/jquery.refinery.wymeditor.js +0 -5107
- data/public/stylesheets/refinery/refinery.css +0 -1483
- data/readme.md +0 -111
- data/script/about +0 -3
- data/script/autospec +0 -6
- data/script/console +0 -3
- data/script/cucumber +0 -10
- data/script/dbconsole +0 -3
- data/script/destroy +0 -3
- data/script/generate +0 -3
- data/script/performance/benchmarker +0 -3
- data/script/performance/profiler +0 -3
- data/script/performance/request +0 -3
- data/script/plugin +0 -3
- data/script/process/inspector +0 -3
- data/script/process/reaper +0 -3
- data/script/process/spawner +0 -3
- data/script/runner +0 -3
- data/script/server +0 -3
- data/script/spec +0 -10
- data/test/files/The world!.gif +0 -0
- data/test/files/car-wallpapers19.jpg +0 -0
- data/test/files/teng.pdf +0 -0
- data/test/fixtures/images.yml +0 -13
- data/test/fixtures/inquiries.yml +0 -22
- data/test/fixtures/page_parts.yml +0 -9
- data/test/fixtures/pages.yml +0 -94
- data/test/fixtures/refinery_settings.yml +0 -3
- data/test/fixtures/resources.yml +0 -4
- data/test/fixtures/user_plugins.yml +0 -32
- data/test/fixtures/users.yml +0 -15
- data/test/functional/dashboard_controller_test.rb +0 -41
- data/test/functional/images_controller_test.rb +0 -83
- data/test/performance/browsing_test.rb +0 -9
- data/test/test_helper.rb +0 -53
- data/test/unit/image_test.rb +0 -31
- data/test/unit/inquiry_test.rb +0 -33
- data/test/unit/page_part_test.rb +0 -19
- data/test/unit/page_test.rb +0 -163
- data/test/unit/refinery_setting_test.rb +0 -57
- data/test/unit/resource_test.rb +0 -33
- data/themes/demolicious/LICENSE +0 -21
- data/themes/demolicious/README +0 -1
- data/themes/demolicious/images/footer_background.png +0 -0
- data/themes/demolicious/images/header_background.png +0 -0
- data/themes/demolicious/stylesheets/application.css +0 -105
- data/themes/demolicious/stylesheets/formatting.css +0 -36
- data/themes/demolicious/stylesheets/home.css +0 -5
- data/themes/demolicious/stylesheets/ie7.css +0 -0
- data/themes/demolicious/views/layouts/application.html.erb +0 -27
- data/themes/hemingway/LICENSE +0 -7
- data/themes/hemingway/README +0 -3
- data/themes/hemingway/images/archives.gif +0 -0
- data/themes/hemingway/images/footer_black.gif +0 -0
- data/themes/hemingway/images/kyle-header.jpg +0 -0
- data/themes/hemingway/images/readon_black.gif +0 -0
- data/themes/hemingway/images/search.gif +0 -0
- data/themes/hemingway/images/spinner.gif +0 -0
- data/themes/hemingway/images/trackback_pingback.gif +0 -0
- data/themes/hemingway/stylesheets/application.css +0 -713
- data/themes/hemingway/stylesheets/formatting.css +0 -1
- data/themes/hemingway/stylesheets/home.css +0 -1
- data/themes/hemingway/views/layouts/application.html.erb +0 -45
- data/todo.md +0 -38
- data/vendor/plugins/acts_as_tree/README +0 -26
- data/vendor/plugins/acts_as_tree/Rakefile +0 -22
- data/vendor/plugins/acts_as_tree/init.rb +0 -1
- data/vendor/plugins/acts_as_tree/lib/active_record/acts/tree.rb +0 -141
- data/vendor/plugins/acts_as_tree/test/abstract_unit.rb +0 -0
- data/vendor/plugins/acts_as_tree/test/acts_as_tree_test.rb +0 -219
- data/vendor/plugins/acts_as_tree/test/database.yml +0 -0
- data/vendor/plugins/acts_as_tree/test/fixtures/mixin.rb +0 -0
- data/vendor/plugins/acts_as_tree/test/fixtures/mixins.yml +0 -0
- data/vendor/plugins/acts_as_tree/test/schema.rb +0 -0
- data/vendor/plugins/attachment_fu/CHANGELOG +0 -35
- data/vendor/plugins/attachment_fu/LICENSE +0 -20
- data/vendor/plugins/attachment_fu/README +0 -193
- data/vendor/plugins/attachment_fu/Rakefile +0 -22
- data/vendor/plugins/attachment_fu/amazon_s3.yml.tpl +0 -17
- data/vendor/plugins/attachment_fu/init.rb +0 -16
- data/vendor/plugins/attachment_fu/install.rb +0 -7
- data/vendor/plugins/attachment_fu/lib/geometry.rb +0 -93
- data/vendor/plugins/attachment_fu/lib/technoweenie/attachment_fu.rb +0 -514
- data/vendor/plugins/attachment_fu/lib/technoweenie/attachment_fu/backends/cloud_file_backend.rb +0 -211
- data/vendor/plugins/attachment_fu/lib/technoweenie/attachment_fu/backends/db_file_backend.rb +0 -39
- data/vendor/plugins/attachment_fu/lib/technoweenie/attachment_fu/backends/file_system_backend.rb +0 -126
- data/vendor/plugins/attachment_fu/lib/technoweenie/attachment_fu/backends/s3_backend.rb +0 -394
- data/vendor/plugins/attachment_fu/lib/technoweenie/attachment_fu/processors/core_image_processor.rb +0 -59
- data/vendor/plugins/attachment_fu/lib/technoweenie/attachment_fu/processors/gd2_processor.rb +0 -54
- data/vendor/plugins/attachment_fu/lib/technoweenie/attachment_fu/processors/image_science_processor.rb +0 -61
- data/vendor/plugins/attachment_fu/lib/technoweenie/attachment_fu/processors/mini_magick_processor.rb +0 -132
- data/vendor/plugins/attachment_fu/lib/technoweenie/attachment_fu/processors/rmagick_processor.rb +0 -57
- data/vendor/plugins/attachment_fu/rackspace_cloudfiles.yml.tpl +0 -14
- data/vendor/plugins/attachment_fu/test/backends/db_file_test.rb +0 -16
- data/vendor/plugins/attachment_fu/test/backends/file_system_test.rb +0 -143
- data/vendor/plugins/attachment_fu/test/backends/remote/cloudfiles_test.rb +0 -102
- data/vendor/plugins/attachment_fu/test/backends/remote/s3_test.rb +0 -119
- data/vendor/plugins/attachment_fu/test/base_attachment_tests.rb +0 -77
- data/vendor/plugins/attachment_fu/test/basic_test.rb +0 -70
- data/vendor/plugins/attachment_fu/test/database.yml +0 -18
- data/vendor/plugins/attachment_fu/test/extra_attachment_test.rb +0 -67
- data/vendor/plugins/attachment_fu/test/fixtures/attachment.rb +0 -226
- data/vendor/plugins/attachment_fu/test/fixtures/files/fake/rails.png +0 -0
- data/vendor/plugins/attachment_fu/test/fixtures/files/foo.txt +0 -1
- data/vendor/plugins/attachment_fu/test/fixtures/files/rails.png +0 -0
- data/vendor/plugins/attachment_fu/test/geometry_test.rb +0 -108
- data/vendor/plugins/attachment_fu/test/processors/core_image_test.rb +0 -37
- data/vendor/plugins/attachment_fu/test/processors/gd2_test.rb +0 -31
- data/vendor/plugins/attachment_fu/test/processors/image_science_test.rb +0 -31
- data/vendor/plugins/attachment_fu/test/processors/mini_magick_test.rb +0 -103
- data/vendor/plugins/attachment_fu/test/processors/rmagick_test.rb +0 -255
- data/vendor/plugins/attachment_fu/test/schema.rb +0 -134
- data/vendor/plugins/attachment_fu/test/test_helper.rb +0 -150
- data/vendor/plugins/attachment_fu/test/validation_test.rb +0 -55
- data/vendor/plugins/attachment_fu/vendor/red_artisan/core_image/filters/color.rb +0 -27
- data/vendor/plugins/attachment_fu/vendor/red_artisan/core_image/filters/effects.rb +0 -31
- data/vendor/plugins/attachment_fu/vendor/red_artisan/core_image/filters/perspective.rb +0 -25
- data/vendor/plugins/attachment_fu/vendor/red_artisan/core_image/filters/quality.rb +0 -25
- data/vendor/plugins/attachment_fu/vendor/red_artisan/core_image/filters/scale.rb +0 -47
- data/vendor/plugins/attachment_fu/vendor/red_artisan/core_image/filters/watermark.rb +0 -32
- data/vendor/plugins/attachment_fu/vendor/red_artisan/core_image/processor.rb +0 -123
- data/vendor/plugins/authentication/README +0 -0
- data/vendor/plugins/authentication/Rakefile +0 -0
- data/vendor/plugins/authentication/app/controllers/admin/users_controller.rb +0 -60
- data/vendor/plugins/authentication/app/controllers/sessions_controller.rb +0 -40
- data/vendor/plugins/authentication/app/controllers/users_controller.rb +0 -112
- data/vendor/plugins/authentication/app/models/role.rb +0 -16
- data/vendor/plugins/authentication/app/models/user.rb +0 -71
- data/vendor/plugins/authentication/app/models/user_mailer.rb +0 -22
- data/vendor/plugins/authentication/app/views/admin/users/_form.html.erb +0 -64
- data/vendor/plugins/authentication/app/views/admin/users/_user.html.erb +0 -18
- data/vendor/plugins/authentication/app/views/sessions/new.html.erb +0 -22
- data/vendor/plugins/authentication/app/views/users/forgot.html.erb +0 -18
- data/vendor/plugins/authentication/app/views/users/new.html.erb +0 -35
- data/vendor/plugins/authentication/app/views/users/reset.html.erb +0 -23
- data/vendor/plugins/authentication/config/locales/da.yml +0 -83
- data/vendor/plugins/authentication/config/locales/en.yml +0 -80
- data/vendor/plugins/authentication/config/locales/es.yml +0 -91
- data/vendor/plugins/authentication/config/locales/it.yml +0 -80
- data/vendor/plugins/authentication/config/locales/nb.yml +0 -80
- data/vendor/plugins/authentication/config/locales/nl.yml +0 -99
- data/vendor/plugins/authentication/config/locales/ru.yml +0 -80
- data/vendor/plugins/authentication/config/locales/sl.yml +0 -79
- data/vendor/plugins/authentication/config/routes.rb +0 -14
- data/vendor/plugins/authentication/lib/authenticated_system.rb +0 -129
- data/vendor/plugins/authentication/rails/init.rb +0 -26
- data/vendor/plugins/dashboard/app/controllers/admin/dashboard_controller.rb +0 -38
- data/vendor/plugins/dashboard/app/helpers/admin/dashboard_helper.rb +0 -21
- data/vendor/plugins/dashboard/app/views/admin/dashboard/_recent_activity.html.erb +0 -12
- data/vendor/plugins/dashboard/app/views/admin/dashboard/index.html.erb +0 -72
- data/vendor/plugins/dashboard/config/locales/en.yml +0 -27
- data/vendor/plugins/dashboard/config/locales/es.yml +0 -28
- data/vendor/plugins/dashboard/config/locales/nb.yml +0 -27
- data/vendor/plugins/dashboard/config/locales/nl.yml +0 -26
- data/vendor/plugins/dashboard/config/locales/ru.yml +0 -27
- data/vendor/plugins/dashboard/config/locales/sl.yml +0 -24
- data/vendor/plugins/dashboard/config/routes.rb +0 -6
- data/vendor/plugins/dashboard/rails/init.rb +0 -12
- data/vendor/plugins/dashboard/readme.md +0 -22
- data/vendor/plugins/i18n-js/README.rdoc +0 -249
- data/vendor/plugins/i18n-js/Rakefile +0 -23
- data/vendor/plugins/i18n-js/init.rb +0 -1
- data/vendor/plugins/i18n-js/install.rb +0 -7
- data/vendor/plugins/i18n-js/lib/i18n-js.rb +0 -132
- data/vendor/plugins/i18n-js/lib/i18n-js.yml +0 -4
- data/vendor/plugins/i18n-js/lib/i18n.js +0 -339
- data/vendor/plugins/i18n-js/lib/tasks/i18n-js_tasks.rake +0 -16
- data/vendor/plugins/i18n-js/test/i18n-test.html +0 -50
- data/vendor/plugins/i18n-js/test/i18n-test.js +0 -661
- data/vendor/plugins/i18n-js/test/i18n_js_test.rb +0 -168
- data/vendor/plugins/i18n-js/test/jsunittest/jsunittest.js +0 -1017
- data/vendor/plugins/i18n-js/test/jsunittest/unittest.css +0 -54
- data/vendor/plugins/i18n-js/test/resources/custom_path.yml +0 -4
- data/vendor/plugins/i18n-js/test/resources/default.yml +0 -4
- data/vendor/plugins/i18n-js/test/resources/locales.yml +0 -76
- data/vendor/plugins/i18n-js/test/resources/multiple_files.yml +0 -6
- data/vendor/plugins/i18n-js/test/resources/no_scope.yml +0 -3
- data/vendor/plugins/i18n-js/test/resources/simple_scope.yml +0 -4
- data/vendor/plugins/i18n-js/test/test_helper.rb +0 -24
- data/vendor/plugins/i18n/config/locales/ar.yml +0 -121
- data/vendor/plugins/i18n/config/locales/bg.yml +0 -198
- data/vendor/plugins/i18n/config/locales/bn-IN.yml +0 -180
- data/vendor/plugins/i18n/config/locales/bs.yml +0 -114
- data/vendor/plugins/i18n/config/locales/ca-ES.yml +0 -155
- data/vendor/plugins/i18n/config/locales/cz.rb +0 -166
- data/vendor/plugins/i18n/config/locales/da.yml +0 -167
- data/vendor/plugins/i18n/config/locales/de-AT.yml +0 -140
- data/vendor/plugins/i18n/config/locales/de.yml +0 -141
- data/vendor/plugins/i18n/config/locales/dsb.yml +0 -182
- data/vendor/plugins/i18n/config/locales/el.yml +0 -191
- data/vendor/plugins/i18n/config/locales/es-AR.yml +0 -168
- data/vendor/plugins/i18n/config/locales/es-CO.yml +0 -146
- data/vendor/plugins/i18n/config/locales/es-MX.yml +0 -118
- data/vendor/plugins/i18n/config/locales/es.yml +0 -186
- data/vendor/plugins/i18n/config/locales/et.yml +0 -109
- data/vendor/plugins/i18n/config/locales/fa.yml +0 -119
- data/vendor/plugins/i18n/config/locales/fi.yml +0 -154
- data/vendor/plugins/i18n/config/locales/fr-CH.yml +0 -123
- data/vendor/plugins/i18n/config/locales/fr.yml +0 -140
- data/vendor/plugins/i18n/config/locales/fun/en-AU.rb +0 -105
- data/vendor/plugins/i18n/config/locales/fun/gibberish.rb +0 -109
- data/vendor/plugins/i18n/config/locales/fur.yml +0 -141
- data/vendor/plugins/i18n/config/locales/gl-ES.yml +0 -193
- data/vendor/plugins/i18n/config/locales/he.yml +0 -103
- data/vendor/plugins/i18n/config/locales/hr.yml +0 -116
- data/vendor/plugins/i18n/config/locales/hsb.yml +0 -190
- data/vendor/plugins/i18n/config/locales/hu.yml +0 -144
- data/vendor/plugins/i18n/config/locales/id.yml +0 -122
- data/vendor/plugins/i18n/config/locales/is.yml +0 -142
- data/vendor/plugins/i18n/config/locales/it.yml +0 -146
- data/vendor/plugins/i18n/config/locales/ja.yml +0 -139
- data/vendor/plugins/i18n/config/locales/ko.yml +0 -153
- data/vendor/plugins/i18n/config/locales/lo.yml +0 -201
- data/vendor/plugins/i18n/config/locales/lt.yml +0 -141
- data/vendor/plugins/i18n/config/locales/lv.yml +0 -132
- data/vendor/plugins/i18n/config/locales/mk.yml +0 -115
- data/vendor/plugins/i18n/config/locales/nb.yml +0 -103
- data/vendor/plugins/i18n/config/locales/nl.yml +0 -173
- data/vendor/plugins/i18n/config/locales/nn.yml +0 -96
- data/vendor/plugins/i18n/config/locales/pl.yml +0 -127
- data/vendor/plugins/i18n/config/locales/pt-BR.yml +0 -148
- data/vendor/plugins/i18n/config/locales/pt-PT.yml +0 -220
- data/vendor/plugins/i18n/config/locales/rm.yml +0 -134
- data/vendor/plugins/i18n/config/locales/ro.yml +0 -152
- data/vendor/plugins/i18n/config/locales/ru.yml +0 -210
- data/vendor/plugins/i18n/config/locales/sk.yml +0 -139
- data/vendor/plugins/i18n/config/locales/sl.yml +0 -190
- data/vendor/plugins/i18n/config/locales/sr-Latn.yml +0 -116
- data/vendor/plugins/i18n/config/locales/sr.yml +0 -116
- data/vendor/plugins/i18n/config/locales/sv-SE.yml +0 -191
- data/vendor/plugins/i18n/config/locales/sw.yml +0 -123
- data/vendor/plugins/i18n/config/locales/th.rb +0 -222
- data/vendor/plugins/i18n/config/locales/tr.yml +0 -139
- data/vendor/plugins/i18n/config/locales/uk.yml +0 -237
- data/vendor/plugins/i18n/config/locales/vi.yml +0 -198
- data/vendor/plugins/i18n/config/locales/zh-CN.yml +0 -131
- data/vendor/plugins/i18n/config/locales/zh-TW.yml +0 -132
- data/vendor/plugins/i18n/lib/i18n.rb +0 -141
- data/vendor/plugins/i18n/lib/i18n_filter.rb +0 -48
- data/vendor/plugins/i18n/lib/routing_filter/MIT-LICENSE +0 -20
- data/vendor/plugins/i18n/lib/routing_filter/README.markdown +0 -123
- data/vendor/plugins/i18n/lib/routing_filter/VERSION +0 -1
- data/vendor/plugins/i18n/lib/routing_filter/routing_filter.rb +0 -96
- data/vendor/plugins/i18n/lib/routing_filter/routing_filter/base.rb +0 -31
- data/vendor/plugins/i18n/lib/routing_filter/routing_filter/force_extension.rb +0 -57
- data/vendor/plugins/i18n/lib/routing_filter/routing_filter/pagination.rb +0 -33
- data/vendor/plugins/i18n/lib/routing_filter/routing_filter/uuid_token.rb +0 -78
- data/vendor/plugins/i18n/rails/init.rb +0 -4
- data/vendor/plugins/images/app/controllers/admin/images_controller.rb +0 -101
- data/vendor/plugins/images/app/models/image.rb +0 -87
- data/vendor/plugins/images/app/views/admin/images/_existing_image.html.erb +0 -50
- data/vendor/plugins/images/app/views/admin/images/_form.html.erb +0 -46
- data/vendor/plugins/images/app/views/admin/images/_grid_view.html.erb +0 -19
- data/vendor/plugins/images/app/views/admin/images/_list_view_image.html.erb +0 -19
- data/vendor/plugins/images/app/views/admin/images/index.html.erb +0 -43
- data/vendor/plugins/images/app/views/admin/images/insert.html.erb +0 -47
- data/vendor/plugins/images/config/locales/da.yml +0 -42
- data/vendor/plugins/images/config/locales/de.yml +0 -43
- data/vendor/plugins/images/config/locales/en.yml +0 -46
- data/vendor/plugins/images/config/locales/es.yml +0 -40
- data/vendor/plugins/images/config/locales/fr.yml +0 -42
- data/vendor/plugins/images/config/locales/it.yml +0 -40
- data/vendor/plugins/images/config/locales/nb.yml +0 -46
- data/vendor/plugins/images/config/locales/nl.yml +0 -46
- data/vendor/plugins/images/config/locales/pt-BR.yml +0 -48
- data/vendor/plugins/images/config/locales/ru.yml +0 -46
- data/vendor/plugins/images/config/locales/sl.yml +0 -42
- data/vendor/plugins/images/config/routes.rb +0 -5
- data/vendor/plugins/images/lib/tasks/images.rake +0 -45
- data/vendor/plugins/images/rails/init.rb +0 -18
- data/vendor/plugins/images/readme.md +0 -58
- data/vendor/plugins/inquiries/app/controllers/admin/inquiries_controller.rb +0 -32
- data/vendor/plugins/inquiries/app/controllers/admin/inquiry_settings_controller.rb +0 -17
- data/vendor/plugins/inquiries/app/controllers/inquiries_controller.rb +0 -47
- data/vendor/plugins/inquiries/app/helpers/inquiries_helper.rb +0 -2
- data/vendor/plugins/inquiries/app/models/inquiry.rb +0 -144
- data/vendor/plugins/inquiries/app/models/inquiry_mailer.rb +0 -20
- data/vendor/plugins/inquiries/app/models/inquiry_setting.rb +0 -60
- data/vendor/plugins/inquiries/app/views/admin/inquiries/_inquiry.html.erb +0 -24
- data/vendor/plugins/inquiries/app/views/admin/inquiries/_submenu.html.erb +0 -27
- data/vendor/plugins/inquiries/app/views/admin/inquiries/index.html.erb +0 -24
- data/vendor/plugins/inquiries/app/views/admin/inquiries/show.html.erb +0 -74
- data/vendor/plugins/inquiries/app/views/admin/inquiries/spam.html.erb +0 -24
- data/vendor/plugins/inquiries/app/views/admin/inquiry_settings/_confirmation_email_form.html.erb +0 -57
- data/vendor/plugins/inquiries/app/views/admin/inquiry_settings/_notification_recipients_form.html.erb +0 -25
- data/vendor/plugins/inquiries/app/views/admin/inquiry_settings/_subject_form.html.erb +0 -9
- data/vendor/plugins/inquiries/app/views/admin/inquiry_settings/edit.html.erb +0 -7
- data/vendor/plugins/inquiries/app/views/inquiries/new.html.erb +0 -30
- data/vendor/plugins/inquiries/app/views/inquiries/thank_you.html.erb +0 -1
- data/vendor/plugins/inquiries/app/views/inquiry_mailer/confirmation.html.erb +0 -1
- data/vendor/plugins/inquiries/app/views/inquiry_mailer/notification.html.erb +0 -18
- data/vendor/plugins/inquiries/config/locales/da.yml +0 -68
- data/vendor/plugins/inquiries/config/locales/de.yml +0 -72
- data/vendor/plugins/inquiries/config/locales/en.yml +0 -79
- data/vendor/plugins/inquiries/config/locales/es.yml +0 -69
- data/vendor/plugins/inquiries/config/locales/fr.yml +0 -66
- data/vendor/plugins/inquiries/config/locales/it.yml +0 -67
- data/vendor/plugins/inquiries/config/locales/nb.yml +0 -77
- data/vendor/plugins/inquiries/config/locales/nl.yml +0 -84
- data/vendor/plugins/inquiries/config/locales/pt-BR.yml +0 -86
- data/vendor/plugins/inquiries/config/locales/ru.yml +0 -79
- data/vendor/plugins/inquiries/config/locales/sl.yml +0 -69
- data/vendor/plugins/inquiries/config/routes.rb +0 -20
- data/vendor/plugins/inquiries/rails/init.rb +0 -13
- data/vendor/plugins/inquiries/readme.md +0 -31
- data/vendor/plugins/model_translations/MIT-LICENSE +0 -20
- data/vendor/plugins/model_translations/README.rdoc +0 -90
- data/vendor/plugins/model_translations/Rakefile +0 -23
- data/vendor/plugins/model_translations/init.rb +0 -1
- data/vendor/plugins/model_translations/lib/active_record/model_translations.rb +0 -55
- data/vendor/plugins/model_translations/test/model_translations_test.rb +0 -88
- data/vendor/plugins/model_translations/test/test_helper.rb +0 -3
- data/vendor/plugins/pages/app/controllers/admin/pages_controller.rb +0 -71
- data/vendor/plugins/pages/app/controllers/pages_controller.rb +0 -45
- data/vendor/plugins/pages/app/models/page.rb +0 -246
- data/vendor/plugins/pages/app/models/page_part.rb +0 -21
- data/vendor/plugins/pages/app/views/admin/pages/_form.html.erb +0 -44
- data/vendor/plugins/pages/app/views/admin/pages/_form_advanced_options.html.erb +0 -62
- data/vendor/plugins/pages/app/views/admin/pages/_form_new_page_parts.html.erb +0 -13
- data/vendor/plugins/pages/app/views/admin/pages/_form_page_parts.html.erb +0 -37
- data/vendor/plugins/pages/app/views/admin/pages/_page.html.erb +0 -33
- data/vendor/plugins/pages/app/views/admin/pages/index.html.erb +0 -35
- data/vendor/plugins/pages/app/views/admin/pages_dialogs/_page_link.html.erb +0 -5
- data/vendor/plugins/pages/app/views/admin/pages_dialogs/link_to.html.erb +0 -134
- data/vendor/plugins/pages/app/views/pages/home.html.erb +0 -1
- data/vendor/plugins/pages/app/views/pages/show.html.erb +0 -1
- data/vendor/plugins/pages/config/locales/da.yml +0 -53
- data/vendor/plugins/pages/config/locales/en.yml +0 -97
- data/vendor/plugins/pages/config/locales/es.yml +0 -53
- data/vendor/plugins/pages/config/locales/fr.yml +0 -53
- data/vendor/plugins/pages/config/locales/it.yml +0 -53
- data/vendor/plugins/pages/config/locales/nb.yml +0 -95
- data/vendor/plugins/pages/config/locales/nl.yml +0 -104
- data/vendor/plugins/pages/config/locales/ru.yml +0 -97
- data/vendor/plugins/pages/config/locales/sl.yml +0 -96
- data/vendor/plugins/pages/config/routes.rb +0 -13
- data/vendor/plugins/pages/rails/init.rb +0 -17
- data/vendor/plugins/pages/readme.md +0 -156
- data/vendor/plugins/refinery/app/views/admin/_head.html.erb +0 -52
- data/vendor/plugins/refinery/app/views/admin/_menu.html.erb +0 -18
- data/vendor/plugins/refinery/app/views/layouts/admin.html.erb +0 -25
- data/vendor/plugins/refinery/app/views/layouts/application.html.erb +0 -21
- data/vendor/plugins/refinery/app/views/shared/_content_page.html.erb +0 -35
- data/vendor/plugins/refinery/app/views/shared/_draft_page_message.html.erb +0 -3
- data/vendor/plugins/refinery/app/views/shared/_footer.html.erb +0 -5
- data/vendor/plugins/refinery/app/views/shared/_head.html.erb +0 -17
- data/vendor/plugins/refinery/app/views/shared/_header.html.erb +0 -4
- data/vendor/plugins/refinery/app/views/shared/_html5_for_ie.js.erb +0 -5
- data/vendor/plugins/refinery/app/views/shared/_language_switcher.html.erb +0 -5
- data/vendor/plugins/refinery/app/views/shared/_menu_branch.html.erb +0 -23
- data/vendor/plugins/refinery/app/views/shared/_message.html.erb +0 -10
- data/vendor/plugins/refinery/app/views/shared/_site_bar.html.erb +0 -50
- data/vendor/plugins/refinery/app/views/shared/admin/_continue_editing.html.erb +0 -3
- data/vendor/plugins/refinery/app/views/shared/admin/_error_messages_for.html.erb +0 -2
- data/vendor/plugins/refinery/app/views/shared/admin/_form_actions.html.erb +0 -74
- data/vendor/plugins/refinery/app/views/shared/admin/_head_before_javascript_libraries.html.erb +0 -0
- data/vendor/plugins/refinery/app/views/shared/admin/_resource_picker.html.erb +0 -59
- data/vendor/plugins/refinery/app/views/shared/admin/_search.html.erb +0 -5
- data/vendor/plugins/refinery/app/views/shared/admin/_sortable_list.html.erb +0 -9
- data/vendor/plugins/refinery/app/views/welcome.html.erb +0 -16
- data/vendor/plugins/refinery/app/views/wymiframe.html.erb +0 -17
- data/vendor/plugins/refinery/config/locales/da.yml +0 -71
- data/vendor/plugins/refinery/config/locales/de.yml +0 -68
- data/vendor/plugins/refinery/config/locales/en.yml +0 -61
- data/vendor/plugins/refinery/config/locales/es.yml +0 -64
- data/vendor/plugins/refinery/config/locales/fr.yml +0 -66
- data/vendor/plugins/refinery/config/locales/it.yml +0 -65
- data/vendor/plugins/refinery/config/locales/nb.yml +0 -61
- data/vendor/plugins/refinery/config/locales/nl.yml +0 -69
- data/vendor/plugins/refinery/config/locales/pt-BR.yml +0 -71
- data/vendor/plugins/refinery/config/locales/ru.yml +0 -61
- data/vendor/plugins/refinery/config/locales/sl.yml +0 -59
- data/vendor/plugins/refinery/config/routes.rb +0 -10
- data/vendor/plugins/refinery/lib/crud.rb +0 -265
- data/vendor/plugins/refinery/lib/generators/refinery/refinery_generator.rb +0 -13
- data/vendor/plugins/refinery/lib/generators/refinery_plugin/README +0 -36
- data/vendor/plugins/refinery/lib/generators/refinery_plugin/Rakefile +0 -11
- data/vendor/plugins/refinery/lib/generators/refinery_plugin/USAGE +0 -2
- data/vendor/plugins/refinery/lib/generators/refinery_plugin/install.rb +0 -2
- data/vendor/plugins/refinery/lib/generators/refinery_plugin/refinery_plugin_generator.rb +0 -76
- data/vendor/plugins/refinery/lib/generators/refinery_plugin/templates/MIGRATE +0 -4
- data/vendor/plugins/refinery/lib/generators/refinery_plugin/templates/config/locales/en.yml +0 -19
- data/vendor/plugins/refinery/lib/generators/refinery_plugin/templates/config/locales/nb.yml +0 -19
- data/vendor/plugins/refinery/lib/generators/refinery_plugin/templates/config/locales/nl.yml +0 -19
- data/vendor/plugins/refinery/lib/generators/refinery_plugin/templates/config/routes.rb +0 -7
- data/vendor/plugins/refinery/lib/generators/refinery_plugin/templates/migration.rb +0 -38
- data/vendor/plugins/refinery/lib/generators/refinery_plugin/templates/rails/init.rb +0 -9
- data/vendor/plugins/refinery/lib/generators/refinery_plugin/templates/seed.rb +0 -15
- data/vendor/plugins/refinery/lib/generators/refinery_plugin/templates/views/admin/_form.html.erb +0 -32
- data/vendor/plugins/refinery/lib/generators/refinery_plugin/templates/views/admin/_singular_name.html.erb +0 -16
- data/vendor/plugins/refinery/lib/generators/refinery_plugin/templates/views/admin/index.html.erb +0 -43
- data/vendor/plugins/refinery/lib/generators/refinery_plugin/templates/views/show.html.erb +0 -31
- data/vendor/plugins/refinery/lib/refinery.rb +0 -41
- data/vendor/plugins/refinery/lib/refinery/activity.rb +0 -37
- data/vendor/plugins/refinery/lib/refinery/admin_base_controller.rb +0 -107
- data/vendor/plugins/refinery/lib/refinery/application_controller.rb +0 -119
- data/vendor/plugins/refinery/lib/refinery/application_helper.rb +0 -191
- data/vendor/plugins/refinery/lib/refinery/deprecations.rb +0 -46
- data/vendor/plugins/refinery/lib/refinery/initializer.rb +0 -75
- data/vendor/plugins/refinery/lib/refinery/link_renderer.rb +0 -49
- data/vendor/plugins/refinery/lib/refinery/plugin.rb +0 -59
- data/vendor/plugins/refinery/lib/refinery/plugins.rb +0 -66
- data/vendor/plugins/refinery/lib/tasks/doc.rake +0 -29
- data/vendor/plugins/refinery/lib/tasks/refinery.rake +0 -403
- data/vendor/plugins/refinery/lib/tasks/refinery.rb +0 -18
- data/vendor/plugins/refinery/lib/tasks/yard.rake +0 -32
- data/vendor/plugins/refinery/plugins.md +0 -205
- data/vendor/plugins/refinery/rails/init.rb +0 -23
- data/vendor/plugins/refinery_dialogs/app/controllers/admin/dialogs_controller.rb +0 -29
- data/vendor/plugins/refinery_dialogs/app/views/admin/dialogs/show.html.erb +0 -19
- data/vendor/plugins/refinery_dialogs/config/routes.rb +0 -5
- data/vendor/plugins/refinery_dialogs/rails/init.rb +0 -11
- data/vendor/plugins/refinery_settings/app/models/refinery_setting.rb +0 -165
- data/vendor/plugins/refinery_settings/app/views/admin/refinery_settings/_form.html.erb +0 -42
- data/vendor/plugins/refinery_settings/app/views/admin/refinery_settings/_refinery_setting.html.erb +0 -15
- data/vendor/plugins/refinery_settings/app/views/admin/refinery_settings/index.html.erb +0 -36
- data/vendor/plugins/refinery_settings/config/locales/en.yml +0 -45
- data/vendor/plugins/refinery_settings/config/locales/es.yml +0 -23
- data/vendor/plugins/refinery_settings/config/locales/nb.yml +0 -45
- data/vendor/plugins/refinery_settings/config/locales/nl.yml +0 -49
- data/vendor/plugins/refinery_settings/config/locales/pt-BR.yml +0 -45
- data/vendor/plugins/refinery_settings/config/locales/ru.yml +0 -45
- data/vendor/plugins/refinery_settings/config/locales/sl.yml +0 -23
- data/vendor/plugins/refinery_settings/config/routes.rb +0 -5
- data/vendor/plugins/refinery_settings/rails/init.rb +0 -10
- data/vendor/plugins/resources/app/models/resource.rb +0 -55
- data/vendor/plugins/resources/app/views/admin/resources/_existing_resource.html.erb +0 -32
- data/vendor/plugins/resources/app/views/admin/resources/_form.html.erb +0 -48
- data/vendor/plugins/resources/app/views/admin/resources/_resource.html.erb +0 -17
- data/vendor/plugins/resources/app/views/admin/resources/index.html.erb +0 -43
- data/vendor/plugins/resources/app/views/admin/resources/insert.html.erb +0 -54
- data/vendor/plugins/resources/config/locales/en.yml +0 -33
- data/vendor/plugins/resources/config/locales/es.yml +0 -32
- data/vendor/plugins/resources/config/locales/nl.yml +0 -35
- data/vendor/plugins/resources/config/locales/ru.yml +0 -33
- data/vendor/plugins/resources/config/locales/sl.yml +0 -32
- data/vendor/plugins/resources/config/routes.rb +0 -7
- data/vendor/plugins/resources/rails/init.rb +0 -16
- data/vendor/plugins/resources/readme.md +0 -9
- data/vendor/plugins/themes/app/helpers/themes_helper.rb +0 -34
- data/vendor/plugins/themes/generators/refinery_theme/README +0 -17
- data/vendor/plugins/themes/generators/refinery_theme/Rakefile +0 -11
- data/vendor/plugins/themes/generators/refinery_theme/USAGE +0 -2
- data/vendor/plugins/themes/generators/refinery_theme/install.rb +0 -2
- data/vendor/plugins/themes/generators/refinery_theme/refinery_theme_generator.rb +0 -46
- data/vendor/plugins/themes/generators/refinery_theme/templates/stylesheets/application.css +0 -5
- data/vendor/plugins/themes/generators/refinery_theme/templates/stylesheets/formatting.css +0 -7
- data/vendor/plugins/themes/generators/refinery_theme/templates/stylesheets/home.css +0 -5
- data/vendor/plugins/themes/generators/refinery_theme/templates/views/layouts/application.html.erb +0 -21
- data/vendor/plugins/themes/generators/refinery_theme/templates/views/pages/home.html.erb +0 -4
- data/vendor/plugins/themes/generators/refinery_theme/templates/views/pages/show.html.erb +0 -4
- data/vendor/plugins/themes/lib/theme.rb +0 -7
- data/vendor/plugins/themes/lib/theme_server.rb +0 -30
- data/vendor/plugins/themes/rails/init.rb +0 -36
- data/vendor/plugins/themes/readme.md +0 -118
- data/vendor/plugins/translate/MIT-LICENSE +0 -20
- data/vendor/plugins/translate/README +0 -61
- data/vendor/plugins/translate/REFINERY_README +0 -8
- data/vendor/plugins/translate/Rakefile +0 -11
- data/vendor/plugins/translate/init.rb +0 -8
- data/vendor/plugins/translate/lib/tasks/translate.rake +0 -193
- data/vendor/plugins/translate/lib/translate.rb +0 -13
- data/vendor/plugins/translate/lib/translate/file.rb +0 -35
- data/vendor/plugins/translate/lib/translate/keys.rb +0 -123
- data/vendor/plugins/translate/lib/translate/log.rb +0 -39
- data/vendor/plugins/translate/lib/translate/storage.rb +0 -20
@@ -1,339 +0,0 @@
|
|
1
|
-
// Instantiate the object
|
2
|
-
var I18n = I18n || {};
|
3
|
-
|
4
|
-
// Set default locale to english
|
5
|
-
I18n.defaultLocale = "en";
|
6
|
-
|
7
|
-
// Set current locale to null
|
8
|
-
I18n.locale = null;
|
9
|
-
|
10
|
-
I18n.lookup = function(scope, options) {
|
11
|
-
var translations = this.prepareOptions(I18n.translations);
|
12
|
-
var messages = translations[I18n.currentLocale()];
|
13
|
-
options = this.prepareOptions(options);
|
14
|
-
|
15
|
-
if (!messages) {
|
16
|
-
return;
|
17
|
-
}
|
18
|
-
|
19
|
-
if (typeof(scope) == "object") {
|
20
|
-
scope = scope.join(".");
|
21
|
-
}
|
22
|
-
|
23
|
-
if (options.scope) {
|
24
|
-
scope = options.scope.toString() + "." + scope;
|
25
|
-
}
|
26
|
-
|
27
|
-
scope = scope.split(".");
|
28
|
-
|
29
|
-
while (scope.length > 0) {
|
30
|
-
var currentScope = scope.shift();
|
31
|
-
messages = messages[currentScope];
|
32
|
-
|
33
|
-
if (!messages) {
|
34
|
-
break;
|
35
|
-
}
|
36
|
-
}
|
37
|
-
|
38
|
-
if (!messages && options.defaultValue != null && options.defaultValue != undefined) {
|
39
|
-
messages = options.defaultValue;
|
40
|
-
}
|
41
|
-
|
42
|
-
return messages;
|
43
|
-
};
|
44
|
-
|
45
|
-
// Merge serveral hash options, checking if value is set before
|
46
|
-
// overwriting any value. The precedence is from left to right.
|
47
|
-
//
|
48
|
-
// I18n.prepareOptions({name: "John Doe"}, {name: "Mary Doe", role: "user"});
|
49
|
-
// #=> {name: "John Doe", role: "user"}
|
50
|
-
//
|
51
|
-
I18n.prepareOptions = function() {
|
52
|
-
var options = {};
|
53
|
-
var opts;
|
54
|
-
var count = arguments.length;
|
55
|
-
|
56
|
-
for (var i = 0; i < count; i++) {
|
57
|
-
opts = arguments[i];
|
58
|
-
|
59
|
-
if (!opts) {
|
60
|
-
continue;
|
61
|
-
}
|
62
|
-
|
63
|
-
for (var key in opts) {
|
64
|
-
if (options[key] == undefined || options[key] == null) {
|
65
|
-
options[key] = opts[key];
|
66
|
-
}
|
67
|
-
}
|
68
|
-
}
|
69
|
-
|
70
|
-
return options;
|
71
|
-
};
|
72
|
-
|
73
|
-
I18n.interpolate = function(message, options) {
|
74
|
-
options = this.prepareOptions(options);
|
75
|
-
var regex = /\{\{(.*?)\}\}/gm;
|
76
|
-
|
77
|
-
var matches = message.match(regex);
|
78
|
-
|
79
|
-
if (!matches) {
|
80
|
-
return message;
|
81
|
-
}
|
82
|
-
|
83
|
-
var placeholder, value, name;
|
84
|
-
|
85
|
-
for (var i = 0; placeholder = matches[i]; i++) {
|
86
|
-
name = placeholder.replace(/\{\{(.*?)\}\}/gm, "$1");
|
87
|
-
|
88
|
-
value = options[name];
|
89
|
-
|
90
|
-
if (options[name] == null || options[name] == undefined) {
|
91
|
-
value = "[missing " + placeholder + " value]";
|
92
|
-
}
|
93
|
-
|
94
|
-
regex = new RegExp(placeholder.replace(/\{/gm, "\\{").replace(/\}/gm, "\\}"));
|
95
|
-
|
96
|
-
message = message.replace(regex, value);
|
97
|
-
}
|
98
|
-
|
99
|
-
return message;
|
100
|
-
};
|
101
|
-
|
102
|
-
I18n.translate = function(scope, options) {
|
103
|
-
options = this.prepareOptions(options);
|
104
|
-
var translation = this.lookup(scope, options);
|
105
|
-
|
106
|
-
try {
|
107
|
-
if (typeof(translation) == "object") {
|
108
|
-
if (typeof(options.count) == "number") {
|
109
|
-
return this.pluralize(options.count, scope, options);
|
110
|
-
} else {
|
111
|
-
return translation;
|
112
|
-
}
|
113
|
-
} else {
|
114
|
-
return this.interpolate(translation, options);
|
115
|
-
}
|
116
|
-
} catch(err) {
|
117
|
-
return this.missingTranslation(scope);
|
118
|
-
}
|
119
|
-
};
|
120
|
-
|
121
|
-
I18n.localize = function(scope, value) {
|
122
|
-
switch (scope) {
|
123
|
-
case "currency":
|
124
|
-
return this.toCurrency(value);
|
125
|
-
case "number":
|
126
|
-
scope = this.lookup("number.format");
|
127
|
-
return this.toNumber(value, scope);
|
128
|
-
case "percentage":
|
129
|
-
return this.toPercentage(value);
|
130
|
-
default:
|
131
|
-
if (scope.match(/^(date|time)/)) {
|
132
|
-
return this.toTime(scope, value);
|
133
|
-
} else {
|
134
|
-
return value.toString();
|
135
|
-
}
|
136
|
-
}
|
137
|
-
};
|
138
|
-
|
139
|
-
I18n.parseDate = function(d) {
|
140
|
-
var matches, date;
|
141
|
-
|
142
|
-
if (matches = d.toString().match(/(\d{4})-(\d{2})-(\d{2})(?:[ |T](\d{2}):(\d{2}):(\d{2}))?(Z)?/)) {
|
143
|
-
// date/time strings: yyyy-mm-dd hh:mm:ss or yyyy-mm-dd or yyyy-mm-ddThh:mm:ssZ
|
144
|
-
for (var i = 1; i <= 6; i++) {
|
145
|
-
matches[i] = parseInt(matches[i], 10) || 0;
|
146
|
-
}
|
147
|
-
|
148
|
-
// month starts on 0
|
149
|
-
matches[2] -= 1;
|
150
|
-
|
151
|
-
if (matches[7]) {
|
152
|
-
date = new Date(Date.UTC(matches[1], matches[2], matches[3], matches[4], matches[5], matches[6]));
|
153
|
-
} else {
|
154
|
-
date = new Date(matches[1], matches[2], matches[3], matches[4], matches[5], matches[6]);
|
155
|
-
}
|
156
|
-
} else if (typeof(d) == "number") {
|
157
|
-
// UNIX timestamp
|
158
|
-
date = new Date();
|
159
|
-
date.setTime(d);
|
160
|
-
} else {
|
161
|
-
// an arbitrary javascript string
|
162
|
-
date = new Date();
|
163
|
-
date.setTime(Date.parse(d));
|
164
|
-
}
|
165
|
-
|
166
|
-
return date;
|
167
|
-
};
|
168
|
-
|
169
|
-
I18n.toTime = function(scope, d) {
|
170
|
-
var date = this.parseDate(d);
|
171
|
-
var format = this.lookup(scope);
|
172
|
-
|
173
|
-
if (date.toString().match(/invalid/i)) {
|
174
|
-
return date.toString();
|
175
|
-
}
|
176
|
-
|
177
|
-
if (!format) {
|
178
|
-
return date.toString();
|
179
|
-
}
|
180
|
-
|
181
|
-
return this.strftime(date, format);
|
182
|
-
};
|
183
|
-
|
184
|
-
I18n.strftime = function(date, format) {
|
185
|
-
var options = this.lookup("date");
|
186
|
-
|
187
|
-
if (!options) {
|
188
|
-
return date.toString();
|
189
|
-
}
|
190
|
-
|
191
|
-
var weekDay = date.getDay();
|
192
|
-
var day = date.getDate();
|
193
|
-
var year = date.getFullYear();
|
194
|
-
var month = date.getMonth() + 1;
|
195
|
-
var hour = date.getHours();
|
196
|
-
var hour12 = hour;
|
197
|
-
var meridian = hour > 12? "PM" : "AM";
|
198
|
-
var secs = date.getSeconds();
|
199
|
-
var mins = date.getMinutes();
|
200
|
-
var offset = date.getTimezoneOffset();
|
201
|
-
var absOffsetHours = Math.floor(Math.abs(offset / 60));
|
202
|
-
var absOffsetMinutes = Math.abs(offset) - (absOffsetHours * 60);
|
203
|
-
var timezoneoffset = (offset > 0 ? "-" : "+") + (absOffsetHours.toString().length < 2 ? "0" + absOffsetHours : absOffsetHours) + (absOffsetMinutes.toString().length < 2 ? "0" + absOffsetMinutes : absOffsetMinutes);
|
204
|
-
|
205
|
-
if (hour12 > 12) {
|
206
|
-
hour12 = hour12 - 12;
|
207
|
-
}
|
208
|
-
|
209
|
-
var padding = function(n) {
|
210
|
-
var s = "0" + n.toString();
|
211
|
-
return s.substr(s.length - 2);
|
212
|
-
}
|
213
|
-
|
214
|
-
var f = format;
|
215
|
-
f = f.replace("%a", options["abbr_day_names"][weekDay]);
|
216
|
-
f = f.replace("%A", options["day_names"][weekDay]);
|
217
|
-
f = f.replace("%b", options["abbr_month_names"][month]);
|
218
|
-
f = f.replace("%B", options["month_names"][month]);
|
219
|
-
f = f.replace("%d", padding(day));
|
220
|
-
f = f.replace("%-d", day);
|
221
|
-
f = f.replace("%H", padding(hour));
|
222
|
-
f = f.replace("%-H", hour);
|
223
|
-
f = f.replace("%I", padding(hour12));
|
224
|
-
f = f.replace("%-I", hour12);
|
225
|
-
f = f.replace("%m", padding(month));
|
226
|
-
f = f.replace("%-m", month);
|
227
|
-
f = f.replace("%M", padding(mins));
|
228
|
-
f = f.replace("%-M", mins);
|
229
|
-
f = f.replace("%p", meridian);
|
230
|
-
f = f.replace("%S", padding(secs));
|
231
|
-
f = f.replace("%-S", secs);
|
232
|
-
f = f.replace("%w", weekDay);
|
233
|
-
f = f.replace("%y", padding(year));
|
234
|
-
f = f.replace("%-y", padding(year).replace(/^0+/, ""));
|
235
|
-
f = f.replace("%Y", year);
|
236
|
-
f = f.replace("%z", timezoneoffset);
|
237
|
-
|
238
|
-
return f;
|
239
|
-
};
|
240
|
-
|
241
|
-
I18n.toNumber = function(number, options) {
|
242
|
-
options = this.prepareOptions(
|
243
|
-
options,
|
244
|
-
this.lookup("number.format"),
|
245
|
-
{precision: 3, separator: ".", delimiter: ","}
|
246
|
-
);
|
247
|
-
|
248
|
-
var string = number.toFixed(options["precision"]).toString();
|
249
|
-
var parts = string.split(".");
|
250
|
-
|
251
|
-
number = parts[0];
|
252
|
-
var precision = parts[1];
|
253
|
-
|
254
|
-
var n = [];
|
255
|
-
|
256
|
-
while (number.length > 0) {
|
257
|
-
n.unshift(number.substr(Math.max(0, number.length - 3), 3));
|
258
|
-
number = number.substr(0, number.length -3);
|
259
|
-
}
|
260
|
-
|
261
|
-
var formattedNumber = n.join(options["delimiter"]);
|
262
|
-
|
263
|
-
if (options["precision"] > 0) {
|
264
|
-
formattedNumber += options["separator"] + parts[1];
|
265
|
-
}
|
266
|
-
|
267
|
-
return formattedNumber;
|
268
|
-
};
|
269
|
-
|
270
|
-
I18n.toCurrency = function(number, options) {
|
271
|
-
options = this.prepareOptions(
|
272
|
-
options,
|
273
|
-
this.lookup("number.currency.format"),
|
274
|
-
this.lookup("number.format"),
|
275
|
-
{unit: "$", precision: 2, format: "%u%n", delimiter: ",", separator: "."}
|
276
|
-
);
|
277
|
-
|
278
|
-
number = this.toNumber(number, options);
|
279
|
-
number = options["format"]
|
280
|
-
.replace("%u", options["unit"])
|
281
|
-
.replace("%n", number);
|
282
|
-
|
283
|
-
return number;
|
284
|
-
};
|
285
|
-
|
286
|
-
I18n.toPercentage = function(number, options) {
|
287
|
-
options = this.prepareOptions(
|
288
|
-
options,
|
289
|
-
this.lookup("number.percentage.format"),
|
290
|
-
this.lookup("number.format"),
|
291
|
-
{precision: 3, separator: ".", delimiter: ""}
|
292
|
-
);
|
293
|
-
|
294
|
-
number = this.toNumber(number, options);
|
295
|
-
return number + "%";
|
296
|
-
};
|
297
|
-
|
298
|
-
I18n.pluralize = function(count, scope, options) {
|
299
|
-
var translation = this.lookup(scope, options);
|
300
|
-
|
301
|
-
var message;
|
302
|
-
options = this.prepareOptions(options);
|
303
|
-
options["count"] = count.toString();
|
304
|
-
|
305
|
-
switch(Math.abs(count)) {
|
306
|
-
case 0:
|
307
|
-
message = translation["zero"] || translation["none"] || translation["other"] || this.missingTranslation(scope, "zero");
|
308
|
-
break;
|
309
|
-
case 1:
|
310
|
-
message = translation["one"] || this.missingTranslation(scope, "one");;
|
311
|
-
break;
|
312
|
-
default:
|
313
|
-
message = translation["other"] || this.missingTranslation(scope, "other");;
|
314
|
-
}
|
315
|
-
|
316
|
-
return this.interpolate(message, options);
|
317
|
-
};
|
318
|
-
|
319
|
-
I18n.missingTranslation = function() {
|
320
|
-
var message = '[missing "' + this.currentLocale();
|
321
|
-
var count = arguments.length;
|
322
|
-
|
323
|
-
for (var i = 0; i < count; i++) {
|
324
|
-
message += "." + arguments[i];
|
325
|
-
}
|
326
|
-
|
327
|
-
message += '" translation]';
|
328
|
-
|
329
|
-
return message;
|
330
|
-
};
|
331
|
-
|
332
|
-
I18n.currentLocale = function() {
|
333
|
-
return (I18n.locale || I18n.defaultLocale);
|
334
|
-
};
|
335
|
-
|
336
|
-
// shortcuts
|
337
|
-
I18n.t = I18n.translate;
|
338
|
-
I18n.l = I18n.localize;
|
339
|
-
I18n.p = I18n.pluralize;
|
@@ -1,16 +0,0 @@
|
|
1
|
-
namespace :i18n do
|
2
|
-
desc "Copy i18n.js and configuration file"
|
3
|
-
task :setup => :environment do
|
4
|
-
SimplesIdeias::I18n.setup!
|
5
|
-
end
|
6
|
-
|
7
|
-
desc "Export the messages files"
|
8
|
-
task :export => :environment do
|
9
|
-
SimplesIdeias::I18n.export!
|
10
|
-
end
|
11
|
-
|
12
|
-
desc "Update the JavaScript library"
|
13
|
-
task :update => :environment do
|
14
|
-
SimplesIdeias::I18n.update!
|
15
|
-
end
|
16
|
-
end
|
@@ -1,50 +0,0 @@
|
|
1
|
-
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
|
2
|
-
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
3
|
-
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
4
|
-
<head>
|
5
|
-
<title>JavaScript unit test file</title>
|
6
|
-
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
|
7
|
-
<script src="jsunittest/jsunittest.js" type="text/javascript"></script>
|
8
|
-
<link rel="stylesheet" href="jsunittest/unittest.css" type="text/css" />
|
9
|
-
|
10
|
-
<style type="text/css" media="screen">
|
11
|
-
#logger p {
|
12
|
-
background: #ffc;
|
13
|
-
padding: 5px;
|
14
|
-
}
|
15
|
-
</style>
|
16
|
-
<script type="text/javascript" charset="utf-8">
|
17
|
-
function log(name, message) {
|
18
|
-
var tag = document.getElementById("logger");
|
19
|
-
message = message.toString();
|
20
|
-
message = message.replace(/&/gm, "&");
|
21
|
-
message = message.replace(/</gm, "<");
|
22
|
-
message = message.replace(/>/gm, ">");
|
23
|
-
tag.innerHTML += "<p><strong>" + name + ":</strong> " + message + "</p>";
|
24
|
-
}
|
25
|
-
</script>
|
26
|
-
<script src="../lib/i18n.js" type="text/javascript"></script>
|
27
|
-
</head>
|
28
|
-
<body>
|
29
|
-
|
30
|
-
<div id="content">
|
31
|
-
<div id="header">
|
32
|
-
<h1>JavaScript unit test file</h1>
|
33
|
-
<p>
|
34
|
-
This file tests <strong>i18n.js</strong>.
|
35
|
-
</p>
|
36
|
-
</div>
|
37
|
-
|
38
|
-
<!-- Log output (one per Runner, via {testLog: "testlog"} option)-->
|
39
|
-
<div id="testlog"></div>
|
40
|
-
|
41
|
-
<!-- General debugger -->
|
42
|
-
<div id="logger"></div>
|
43
|
-
|
44
|
-
<!-- Put sample/test html here -->
|
45
|
-
<div id="sample">
|
46
|
-
</div>
|
47
|
-
</div>
|
48
|
-
<script src="i18n-test.js" type="text/javascript" charset="utf-8"></script>
|
49
|
-
</body>
|
50
|
-
</html>
|
@@ -1,661 +0,0 @@
|
|
1
|
-
new Test.Unit.Runner({
|
2
|
-
setup: function() {
|
3
|
-
I18n.defaultLocale = "en";
|
4
|
-
I18n.locale = null;
|
5
|
-
|
6
|
-
I18n.translations = {
|
7
|
-
en: {
|
8
|
-
hello: "Hello World!",
|
9
|
-
greetings: {
|
10
|
-
stranger: "Hello stranger!",
|
11
|
-
name: "Hello {{name}}!"
|
12
|
-
},
|
13
|
-
profile: {
|
14
|
-
details: "{{name}} is {{age}}-years old"
|
15
|
-
},
|
16
|
-
inbox: {
|
17
|
-
one: "You have {{count}} message",
|
18
|
-
other: "You have {{count}} messages",
|
19
|
-
zero: "You have no messages"
|
20
|
-
},
|
21
|
-
unread: {
|
22
|
-
one: "You have 1 new message ({{unread}} unread)",
|
23
|
-
other: "You have {{count}} new messages ({{unread}} unread)",
|
24
|
-
zero: "You have no new messages ({{unread}} unread)"
|
25
|
-
},
|
26
|
-
number: null
|
27
|
-
},
|
28
|
-
|
29
|
-
pt: {
|
30
|
-
hello: "Olá Mundo!",
|
31
|
-
date: {
|
32
|
-
formats: {
|
33
|
-
"default": "%d/%m/%Y",
|
34
|
-
"short": "%d de %B",
|
35
|
-
"long": "%d de %B de %Y"
|
36
|
-
},
|
37
|
-
day_names: ["Domingo", "Segunda", "Terça", "Quarta", "Quinta", "Sexta", "Sábado"],
|
38
|
-
abbr_day_names: ["Dom", "Seg", "Ter", "Qua", "Qui", "Sex", "Sáb"],
|
39
|
-
month_names: [null, "Janeiro", "Fevereiro", "Março", "Abril", "Maio", "Junho", "Julho", "Agosto", "Setembro", "Outubro", "Novembro", "Dezembro"],
|
40
|
-
abbr_month_names: [null, "Jan", "Fev", "Mar", "Abr", "Mai", "Jun", "Jul", "Ago", "Set", "Out", "Nov", "Dez"]
|
41
|
-
},
|
42
|
-
number: {
|
43
|
-
percentage: {
|
44
|
-
format: {
|
45
|
-
delimiter: "",
|
46
|
-
separator: ",",
|
47
|
-
precision: 2
|
48
|
-
}
|
49
|
-
}
|
50
|
-
},
|
51
|
-
time: {
|
52
|
-
formats: {
|
53
|
-
"default": "%A, %d de %B de %Y, %H:%M h",
|
54
|
-
"short": "%d/%m, %H:%M h",
|
55
|
-
"long": "%A, %d de %B de %Y, %H:%M h"
|
56
|
-
},
|
57
|
-
am: "AM",
|
58
|
-
pm: "PM"
|
59
|
-
}
|
60
|
-
}
|
61
|
-
}
|
62
|
-
},
|
63
|
-
|
64
|
-
teardown: function() {
|
65
|
-
},
|
66
|
-
|
67
|
-
// Defaults
|
68
|
-
testDefaults: function() { with(this) {
|
69
|
-
assertEqual("en", I18n.defaultLocale);
|
70
|
-
assertEqual(null, I18n.locale);
|
71
|
-
assertEqual("en", I18n.currentLocale());
|
72
|
-
}},
|
73
|
-
|
74
|
-
// Custom locale
|
75
|
-
testCustomLocale: function() { with(this) {
|
76
|
-
I18n.locale = "pt";
|
77
|
-
assertEqual("pt", I18n.currentLocale());
|
78
|
-
}},
|
79
|
-
|
80
|
-
// Aliases methods
|
81
|
-
testAliasesMethods: function() { with(this) {
|
82
|
-
assertEqual(I18n.translate, I18n.t);
|
83
|
-
assertEqual(I18n.localize, I18n.l);
|
84
|
-
assertEqual(I18n.pluralize, I18n.p);
|
85
|
-
}},
|
86
|
-
|
87
|
-
// Translation for single scope
|
88
|
-
testTranslationForSingleScope: function() { with(this) {
|
89
|
-
assertEqual("Hello World!", I18n.translate("hello"));
|
90
|
-
}},
|
91
|
-
|
92
|
-
// Translation as object
|
93
|
-
testTranslationAsObject: function() { with(this) {
|
94
|
-
assertEqual("object", typeof I18n.translate("greetings"));
|
95
|
-
}},
|
96
|
-
|
97
|
-
// Translation with invalid scope shall not block
|
98
|
-
testTranslationWithInvalidScope: function() { with(this) {
|
99
|
-
assertEqual('[missing "en.invalid.scope.shall.not.block" translation]', I18n.translate("invalid.scope.shall.not.block"));
|
100
|
-
}},
|
101
|
-
|
102
|
-
// Translation for single scope on a custom locale
|
103
|
-
testTranslationForSingleScopeOnACustomLocale: function() { with(this) {
|
104
|
-
I18n.locale = "pt";
|
105
|
-
assertEqual("Olá Mundo!", I18n.translate("hello"));
|
106
|
-
}},
|
107
|
-
|
108
|
-
// Translation for multiple scopes
|
109
|
-
testTranslationForMultipleScopes: function() { with(this) {
|
110
|
-
assertEqual("Hello stranger!", I18n.translate("greetings.stranger"));
|
111
|
-
}},
|
112
|
-
|
113
|
-
// Single interpolation
|
114
|
-
testSingleInterpolation: function() { with(this) {
|
115
|
-
actual = I18n.translate("greetings.name", {name: "John Doe"});
|
116
|
-
assertEqual("Hello John Doe!", actual);
|
117
|
-
}},
|
118
|
-
|
119
|
-
// Multiple interpolations
|
120
|
-
testMultipleInterpolations: function() { with(this) {
|
121
|
-
actual = I18n.translate("profile.details", {name: "John Doe", age: 27});
|
122
|
-
assertEqual("John Doe is 27-years old", actual);
|
123
|
-
}},
|
124
|
-
|
125
|
-
// Translation with count option
|
126
|
-
testTranslationWithCountOption: function() { with(this) {
|
127
|
-
assertEqual("You have 1 message", I18n.translate("inbox", {count: 1}));
|
128
|
-
assertEqual("You have 5 messages", I18n.translate("inbox", {count: 5}));
|
129
|
-
assertEqual("You have no messages", I18n.translate("inbox", {count: 0}));
|
130
|
-
}},
|
131
|
-
|
132
|
-
// Translation with count option and multiple placeholders
|
133
|
-
testTranslationWithCountOptionAndMultiplePlaceholders: function() { with(this) {
|
134
|
-
actual = I18n.translate("unread", {unread: 5, count: 1});
|
135
|
-
assertEqual("You have 1 new message (5 unread)", actual);
|
136
|
-
|
137
|
-
actual = I18n.translate("unread", {unread: 2, count: 10});
|
138
|
-
assertEqual("You have 10 new messages (2 unread)", actual);
|
139
|
-
|
140
|
-
actual = I18n.translate("unread", {unread: 5, count: 0});
|
141
|
-
assertEqual("You have no new messages (5 unread)", actual);
|
142
|
-
}},
|
143
|
-
|
144
|
-
// Missing translation with count option
|
145
|
-
testMissingTranslationWithCountOption: function() { with(this) {
|
146
|
-
actual = I18n.translate("invalid", {count: 1});
|
147
|
-
assertEqual('[missing "en.invalid" translation]', actual);
|
148
|
-
|
149
|
-
I18n.translations.en.inbox.one = null;
|
150
|
-
actual = I18n.translate("inbox", {count: 1});
|
151
|
-
assertEqual('[missing "en.inbox.one" translation]', actual);
|
152
|
-
}},
|
153
|
-
|
154
|
-
// Pluralization
|
155
|
-
testPluralization: function() { with(this) {
|
156
|
-
assertEqual("You have 1 message", I18n.pluralize(1, "inbox"));
|
157
|
-
assertEqual("You have 5 messages", I18n.pluralize(5, "inbox"));
|
158
|
-
assertEqual("You have no messages", I18n.pluralize(0, "inbox"));
|
159
|
-
}},
|
160
|
-
|
161
|
-
// Pluralize should return "other" scope
|
162
|
-
testPlurationShouldReturnOtherScope: function() { with(this) {
|
163
|
-
I18n.translations["en"]["inbox"]["zero"] = null;
|
164
|
-
assertEqual("You have 0 messages", I18n.pluralize(0, "inbox"));
|
165
|
-
}},
|
166
|
-
|
167
|
-
// Pluralize should return "zero" scope
|
168
|
-
testPlurationShouldReturnZeroScope: function() { with(this) {
|
169
|
-
I18n.translations["en"]["inbox"]["zero"] = "No messages (zero)";
|
170
|
-
I18n.translations["en"]["inbox"]["none"] = "No messages (none)";
|
171
|
-
|
172
|
-
assertEqual("No messages (zero)", I18n.pluralize(0, "inbox"));
|
173
|
-
}},
|
174
|
-
|
175
|
-
// Pluralize should return "none" scope
|
176
|
-
testPlurationShouldReturnNoneScope: function() { with(this) {
|
177
|
-
I18n.translations["en"]["inbox"]["zero"] = null;
|
178
|
-
I18n.translations["en"]["inbox"]["none"] = "No messages (none)";
|
179
|
-
|
180
|
-
assertEqual("No messages (none)", I18n.pluralize(0, "inbox"));
|
181
|
-
}},
|
182
|
-
|
183
|
-
// Pluralize with negative values
|
184
|
-
testPluralizeWithNegativeValues: function() { with(this) {
|
185
|
-
assertEqual("You have -1 message", I18n.pluralize(-1, "inbox"));
|
186
|
-
assertEqual("You have -5 messages", I18n.pluralize(-5, "inbox"));
|
187
|
-
}},
|
188
|
-
|
189
|
-
// Pluralize with multiple placeholders
|
190
|
-
testPluralizeWithMultiplePlaceholders: function() { with(this) {
|
191
|
-
actual = I18n.pluralize(1, "unread", {unread: 5});
|
192
|
-
assertEqual("You have 1 new message (5 unread)", actual);
|
193
|
-
|
194
|
-
actual = I18n.pluralize(10, "unread", {unread: 2});
|
195
|
-
assertEqual("You have 10 new messages (2 unread)", actual);
|
196
|
-
|
197
|
-
actual = I18n.pluralize(0, "unread", {unread: 5});
|
198
|
-
assertEqual("You have no new messages (5 unread)", actual);
|
199
|
-
}},
|
200
|
-
|
201
|
-
// Numbers with default settings
|
202
|
-
testNumbersWithDefaultSettings: function() { with(this) {
|
203
|
-
assertEqual("1.000", I18n.toNumber(1));
|
204
|
-
assertEqual("12.000", I18n.toNumber(12));
|
205
|
-
assertEqual("123.000", I18n.toNumber(123));
|
206
|
-
assertEqual("1,234.000", I18n.toNumber(1234));
|
207
|
-
assertEqual("123,456.000", I18n.toNumber(123456));
|
208
|
-
assertEqual("1,234,567.000", I18n.toNumber(1234567));
|
209
|
-
assertEqual("12,345,678.000", I18n.toNumber(12345678));
|
210
|
-
}},
|
211
|
-
|
212
|
-
// Numbers with partial translation and default options
|
213
|
-
testNumbersWithPartialTranslationAndDefaultOptions: function() { with(this) {
|
214
|
-
I18n.translations.en.number = {
|
215
|
-
format: {
|
216
|
-
precision: 2
|
217
|
-
}
|
218
|
-
}
|
219
|
-
|
220
|
-
assertEqual("1,234.00", I18n.toNumber(1234));
|
221
|
-
}},
|
222
|
-
|
223
|
-
// Numbers with full translation and default options
|
224
|
-
testNumbersWithFullTranslationAndDefaultOptions: function() { with(this) {
|
225
|
-
I18n.translations.en.number = {
|
226
|
-
format: {
|
227
|
-
delimiter: ".",
|
228
|
-
separator: ",",
|
229
|
-
precision: 2
|
230
|
-
}
|
231
|
-
}
|
232
|
-
|
233
|
-
assertEqual("1.234,00", I18n.toNumber(1234));
|
234
|
-
}},
|
235
|
-
|
236
|
-
// Numbers with some custom options that should be merged with default options
|
237
|
-
testNumbersWithSomeCustomOptionsThatShouldBeMergedWithDefaultOptions: function() { with(this) {
|
238
|
-
assertEqual("1,234", I18n.toNumber(1234, {precision: 0}));
|
239
|
-
assertEqual("1,234-000", I18n.toNumber(1234, {separator: "-"}));
|
240
|
-
assertEqual("1-234.000", I18n.toNumber(1234, {delimiter: "-"}));
|
241
|
-
}},
|
242
|
-
|
243
|
-
// Numbers considering options
|
244
|
-
testNumbersConsideringOptions: function() { with(this) {
|
245
|
-
options = {
|
246
|
-
precision: 2,
|
247
|
-
separator: ",",
|
248
|
-
delimiter: "."
|
249
|
-
};
|
250
|
-
|
251
|
-
assertEqual("1,00", I18n.toNumber(1, options));
|
252
|
-
assertEqual("12,00", I18n.toNumber(12, options));
|
253
|
-
assertEqual("123,00", I18n.toNumber(123, options));
|
254
|
-
assertEqual("1.234,00", I18n.toNumber(1234, options));
|
255
|
-
assertEqual("123.456,00", I18n.toNumber(123456, options));
|
256
|
-
assertEqual("1.234.567,00", I18n.toNumber(1234567, options));
|
257
|
-
assertEqual("12.345.678,00", I18n.toNumber(12345678, options));
|
258
|
-
}},
|
259
|
-
|
260
|
-
// Numbers with different precisions
|
261
|
-
testNumbersWithDifferentPrecisions: function() { with(this) {
|
262
|
-
options = {separator: ".", delimiter: ","};
|
263
|
-
|
264
|
-
options["precision"] = 2;
|
265
|
-
assertEqual("1.98", I18n.toNumber(1.98, options));
|
266
|
-
|
267
|
-
options["precision"] = 3;
|
268
|
-
assertEqual("1.980", I18n.toNumber(1.98, options));
|
269
|
-
|
270
|
-
options["precision"] = 2;
|
271
|
-
assertEqual("1.99", I18n.toNumber(1.987, options));
|
272
|
-
|
273
|
-
options["precision"] = 1;
|
274
|
-
assertEqual("2.0", I18n.toNumber(1.98, options));
|
275
|
-
|
276
|
-
options["precision"] = 0;
|
277
|
-
assertEqual("2", I18n.toNumber(1.98, options));
|
278
|
-
}},
|
279
|
-
|
280
|
-
// Currency with default settings
|
281
|
-
testCurrencyWithDefaultSettings: function() { with(this) {
|
282
|
-
assertEqual("$100.99", I18n.toCurrency(100.99));
|
283
|
-
assertEqual("$1,000.99", I18n.toCurrency(1000.99));
|
284
|
-
}},
|
285
|
-
|
286
|
-
// Current with custom settings
|
287
|
-
testCurrencyWithCustomSettings: function() { with(this) {
|
288
|
-
I18n.translations.en.number = {
|
289
|
-
currency: {
|
290
|
-
format: {
|
291
|
-
format: "%n %u",
|
292
|
-
unit: "USD",
|
293
|
-
delimiter: ".",
|
294
|
-
separator: ",",
|
295
|
-
precision: 2
|
296
|
-
}
|
297
|
-
}
|
298
|
-
};
|
299
|
-
|
300
|
-
assertEqual("12,00 USD", I18n.toCurrency(12));
|
301
|
-
assertEqual("123,00 USD", I18n.toCurrency(123));
|
302
|
-
assertEqual("1.234,56 USD", I18n.toCurrency(1234.56));
|
303
|
-
}},
|
304
|
-
|
305
|
-
// Currency with custom settings and partial overriding
|
306
|
-
testCurrencyWithCustomSettingsAndPartialOverriding: function() { with(this) {
|
307
|
-
I18n.translations.en.number = {
|
308
|
-
currency: {
|
309
|
-
format: {
|
310
|
-
format: "%n %u",
|
311
|
-
unit: "USD",
|
312
|
-
delimiter: ".",
|
313
|
-
separator: ",",
|
314
|
-
precision: 2
|
315
|
-
}
|
316
|
-
}
|
317
|
-
};
|
318
|
-
|
319
|
-
assertEqual("12 USD", I18n.toCurrency(12, {precision: 0}));
|
320
|
-
assertEqual("123,00 bucks", I18n.toCurrency(123, {unit: "bucks"}));
|
321
|
-
}},
|
322
|
-
|
323
|
-
// Currency with some custom options that should be merged with default options
|
324
|
-
testCurrencyWithSomeCustomOptionsThatShouldBeMergedWithDefaultOptions: function() { with(this) {
|
325
|
-
assertEqual("$1,234", I18n.toCurrency(1234, {precision: 0}));
|
326
|
-
assertEqual("º1,234.00", I18n.toCurrency(1234, {unit: "º"}));
|
327
|
-
assertEqual("$1,234-00", I18n.toCurrency(1234, {separator: "-"}));
|
328
|
-
assertEqual("$1-234.00", I18n.toCurrency(1234, {delimiter: "-"}));
|
329
|
-
assertEqual("$ 1,234.00", I18n.toCurrency(1234, {format: "%u %n"}));
|
330
|
-
}},
|
331
|
-
|
332
|
-
// Localize numbers
|
333
|
-
testLocalizeNumbers: function() { with(this) {
|
334
|
-
assertEqual("1,234,567.000", I18n.localize("number", 1234567));
|
335
|
-
}},
|
336
|
-
|
337
|
-
// Localize currency
|
338
|
-
testLocalizeCurrency: function() { with(this) {
|
339
|
-
assertEqual("$1,234,567.00", I18n.localize("currency", 1234567));
|
340
|
-
}},
|
341
|
-
|
342
|
-
// Parse date
|
343
|
-
testParseDate: function() { with(this) {
|
344
|
-
expected = new Date(2009, 0, 24, 0, 0, 0);
|
345
|
-
assertEqual(expected.toString(), I18n.parseDate("2009-01-24").toString());
|
346
|
-
|
347
|
-
expected = new Date(2009, 0, 24, 0, 15, 0);
|
348
|
-
assertEqual(expected.toString(), I18n.parseDate("2009-01-24 00:15:00").toString());
|
349
|
-
|
350
|
-
expected = new Date(2009, 0, 24, 0, 0, 15);
|
351
|
-
assertEqual(expected.toString(), I18n.parseDate("2009-01-24 00:00:15").toString());
|
352
|
-
|
353
|
-
expected = new Date(2009, 0, 24, 15, 33, 44);
|
354
|
-
assertEqual(expected.toString(), I18n.parseDate("2009-01-24 15:33:44").toString());
|
355
|
-
|
356
|
-
expected = new Date(2009, 0, 24, 0, 0, 0);
|
357
|
-
assertEqual(expected.toString(), I18n.parseDate(expected.getTime()).toString());
|
358
|
-
|
359
|
-
expected = new Date(2009, 0, 24, 0, 0, 0);
|
360
|
-
assertEqual(expected.toString(), I18n.parseDate("01/24/2009").toString());
|
361
|
-
|
362
|
-
expected = new Date(2009, 0, 24, 14, 33, 55);
|
363
|
-
assertEqual(expected.toString(), I18n.parseDate(expected).toString());
|
364
|
-
|
365
|
-
expected = new Date(2009, 0, 24, 15, 33, 44);
|
366
|
-
assertEqual(expected.toString(), I18n.parseDate("2009-01-24T15:33:44").toString());
|
367
|
-
|
368
|
-
expected = new Date(Date.UTC(2009, 0, 24, 15, 33, 44));
|
369
|
-
assertEqual(expected.toString(), I18n.parseDate("2009-01-24T15:33:44Z").toString());
|
370
|
-
}},
|
371
|
-
|
372
|
-
// Date formatting
|
373
|
-
testDateFormatting: function() { with(this) {
|
374
|
-
I18n.locale = "pt";
|
375
|
-
|
376
|
-
// 2009-04-26 19:35:44 (Sunday)
|
377
|
-
var date = new Date(2009, 3, 26, 19, 35, 44);
|
378
|
-
|
379
|
-
// short week day
|
380
|
-
assertEqual("Dom", I18n.strftime(date, "%a"));
|
381
|
-
|
382
|
-
// full week day
|
383
|
-
assertEqual("Domingo", I18n.strftime(date, "%A"));
|
384
|
-
|
385
|
-
// short month
|
386
|
-
assertEqual("Abr", I18n.strftime(date, "%b"));
|
387
|
-
|
388
|
-
// full month
|
389
|
-
assertEqual("Abril", I18n.strftime(date, "%B"));
|
390
|
-
|
391
|
-
// day
|
392
|
-
assertEqual("26", I18n.strftime(date, "%d"));
|
393
|
-
|
394
|
-
// 24-hour
|
395
|
-
assertEqual("19", I18n.strftime(date, "%H"));
|
396
|
-
|
397
|
-
// 12-hour
|
398
|
-
assertEqual("07", I18n.strftime(date, "%I"));
|
399
|
-
|
400
|
-
// month
|
401
|
-
assertEqual("04", I18n.strftime(date, "%m"));
|
402
|
-
|
403
|
-
// minutes
|
404
|
-
assertEqual("35", I18n.strftime(date, "%M"));
|
405
|
-
|
406
|
-
// meridian
|
407
|
-
assertEqual("PM", I18n.strftime(date, "%p"));
|
408
|
-
|
409
|
-
// seconds
|
410
|
-
assertEqual("44", I18n.strftime(date, "%S"));
|
411
|
-
|
412
|
-
// week day
|
413
|
-
assertEqual("0", I18n.strftime(date, "%w"));
|
414
|
-
|
415
|
-
// short year
|
416
|
-
assertEqual("09", I18n.strftime(date, "%y"));
|
417
|
-
|
418
|
-
// full year
|
419
|
-
assertEqual("2009", I18n.strftime(date, "%Y"));
|
420
|
-
}},
|
421
|
-
|
422
|
-
// Date formatting without padding
|
423
|
-
testDateFormattingWithoutPadding: function() { with(this) {
|
424
|
-
I18n.locale = "pt";
|
425
|
-
|
426
|
-
// 2009-04-26 19:35:44 (Sunday)
|
427
|
-
var date = new Date(2009, 3, 9, 7, 8, 9);
|
428
|
-
|
429
|
-
// 24-hour without padding
|
430
|
-
assertEqual("7", I18n.strftime(date, "%-H"));
|
431
|
-
|
432
|
-
// 12-hour without padding
|
433
|
-
assertEqual("7", I18n.strftime(date, "%-I"));
|
434
|
-
|
435
|
-
// minutes without padding
|
436
|
-
assertEqual("8", I18n.strftime(date, "%-M"));
|
437
|
-
|
438
|
-
// seconds without padding
|
439
|
-
assertEqual("9", I18n.strftime(date, "%-S"));
|
440
|
-
|
441
|
-
// short year without padding
|
442
|
-
assertEqual("9", I18n.strftime(date, "%-y"));
|
443
|
-
|
444
|
-
// month without padding
|
445
|
-
assertEqual("4", I18n.strftime(date, "%-m"));
|
446
|
-
|
447
|
-
// day without padding
|
448
|
-
assertEqual("9", I18n.strftime(date, "%-d"));
|
449
|
-
}},
|
450
|
-
|
451
|
-
// Date formatting with padding
|
452
|
-
testDateFormattingWithPadding: function() { with(this) {
|
453
|
-
I18n.locale = "pt";
|
454
|
-
|
455
|
-
// 2009-04-26 19:35:44 (Sunday)
|
456
|
-
var date = new Date(2009, 3, 9, 7, 8, 9);
|
457
|
-
|
458
|
-
// 24-hour
|
459
|
-
assertEqual("07", I18n.strftime(date, "%H"));
|
460
|
-
|
461
|
-
// 12-hour
|
462
|
-
assertEqual("07", I18n.strftime(date, "%I"));
|
463
|
-
|
464
|
-
// minutes
|
465
|
-
assertEqual("08", I18n.strftime(date, "%M"));
|
466
|
-
|
467
|
-
// seconds
|
468
|
-
assertEqual("09", I18n.strftime(date, "%S"));
|
469
|
-
|
470
|
-
// short year
|
471
|
-
assertEqual("09", I18n.strftime(date, "%y"));
|
472
|
-
|
473
|
-
// month
|
474
|
-
assertEqual("04", I18n.strftime(date, "%m"));
|
475
|
-
|
476
|
-
// day
|
477
|
-
assertEqual("09", I18n.strftime(date, "%d"));
|
478
|
-
}},
|
479
|
-
|
480
|
-
// Date formatting with negative Timezone
|
481
|
-
testDateFormattingWithNegativeTimezone: function() { with(this) {
|
482
|
-
I18n.locale = "pt";
|
483
|
-
|
484
|
-
var date = new Date(2009, 3, 26, 19, 35, 44);
|
485
|
-
|
486
|
-
date.getTimezoneOffset = function() {
|
487
|
-
return 345;
|
488
|
-
};
|
489
|
-
|
490
|
-
assertMatch(/^(\+|-)[\d]{4}$/, I18n.strftime(date, "%z"));
|
491
|
-
assertEqual("-0545", I18n.strftime(date, "%z"));
|
492
|
-
}},
|
493
|
-
|
494
|
-
// Date formatting with positive Timezone
|
495
|
-
testDateFormattingWithPositiveTimezone: function() { with(this) {
|
496
|
-
I18n.locale = "pt";
|
497
|
-
|
498
|
-
var date = new Date(2009, 3, 26, 19, 35, 44);
|
499
|
-
|
500
|
-
date.getTimezoneOffset = function() {
|
501
|
-
return -345;
|
502
|
-
};
|
503
|
-
|
504
|
-
assertMatch(/^(\+|-)[\d]{4}$/, I18n.strftime(date, "%z"));
|
505
|
-
assertEqual("+0545", I18n.strftime(date, "%z"));
|
506
|
-
}},
|
507
|
-
|
508
|
-
// Localize date strings
|
509
|
-
testLocalizeDateStrings: function() { with(this) {
|
510
|
-
I18n.locale = "pt";
|
511
|
-
|
512
|
-
assertEqual("29/11/2009", I18n.localize("date.formats.default", "2009-11-29"));
|
513
|
-
assertEqual("07 de Janeiro", I18n.localize("date.formats.short", "2009-01-07"));
|
514
|
-
assertEqual("07 de Janeiro de 2009", I18n.localize("date.formats.long", "2009-01-07"));
|
515
|
-
}},
|
516
|
-
|
517
|
-
// Localize time strings
|
518
|
-
testLocalizeTimeStrings: function() { with(this) {
|
519
|
-
I18n.locale = "pt";
|
520
|
-
assertEqual("Domingo, 29 de Novembro de 2009, 15:07 h", I18n.localize("time.formats.default", "2009-11-29 15:07:59"));
|
521
|
-
assertEqual("07/01, 09:12 h", I18n.localize("time.formats.short", "2009-01-07 09:12:35"));
|
522
|
-
assertEqual("Domingo, 29 de Novembro de 2009, 15:07 h", I18n.localize("time.formats.long", "2009-11-29 15:07:59"));
|
523
|
-
}},
|
524
|
-
|
525
|
-
// Localize percentage
|
526
|
-
testLocalizePercentage: function() { with(this) {
|
527
|
-
I18n.locale = "pt";
|
528
|
-
assertEqual("123,45%", I18n.localize("percentage", 123.45));
|
529
|
-
}},
|
530
|
-
|
531
|
-
|
532
|
-
|
533
|
-
// Default value for simple translation
|
534
|
-
testDefaultValueForSimpleTranslation: function() { with(this) {
|
535
|
-
actual = I18n.translate("warning", {defaultValue: "Warning!"});
|
536
|
-
assertEqual("Warning!", actual);
|
537
|
-
}},
|
538
|
-
|
539
|
-
// Default value with interpolation
|
540
|
-
testDefaultValueWithInterpolation: function() { with(this) {
|
541
|
-
actual = I18n.translate("alert", {defaultValue: "Attention! {{message}}", message: "You're out of quota!"});
|
542
|
-
assertEqual("Attention! You're out of quota!", actual);
|
543
|
-
}},
|
544
|
-
|
545
|
-
// Default value should not be used when scope exist
|
546
|
-
testDefaultValueShouldNotBeUsedWhenScopeExist: function() { with(this) {
|
547
|
-
actual = I18n.translate("hello", {defaultValue: "What's up?"});
|
548
|
-
assertEqual("Hello World!", actual);
|
549
|
-
}},
|
550
|
-
|
551
|
-
// Default value for pluralize
|
552
|
-
testDefaultValueForPluralize: function() { with(this) {
|
553
|
-
options = {defaultValue: {
|
554
|
-
none: "No things here!",
|
555
|
-
one: "There is {{count}} thing here!",
|
556
|
-
other: "There are {{count}} things here!"
|
557
|
-
}};
|
558
|
-
|
559
|
-
assertEqual("No things here!", I18n.pluralize(0, "things", options));
|
560
|
-
assertEqual("There is 1 thing here!", I18n.pluralize(1, "things", options));
|
561
|
-
assertEqual("There are 5 things here!", I18n.pluralize(5, "things", options));
|
562
|
-
}},
|
563
|
-
|
564
|
-
// Default value for pluralize should not be used when scope exist
|
565
|
-
testDefaultValueForPluralizeShouldNotBeUsedWhenScopeExist: function() { with(this) {
|
566
|
-
options = {defaultValue: {
|
567
|
-
none: "No things here!",
|
568
|
-
one: "There is {{count}} thing here!",
|
569
|
-
other: "There are {{count}} things here!"
|
570
|
-
}};
|
571
|
-
|
572
|
-
assertEqual("You have no messages", I18n.pluralize(0, "inbox", options));
|
573
|
-
assertEqual("You have 1 message", I18n.pluralize(1, "inbox", options));
|
574
|
-
assertEqual("You have 5 messages", I18n.pluralize(5, "inbox", options));
|
575
|
-
}},
|
576
|
-
|
577
|
-
// Prepare options
|
578
|
-
testPrepareOptions: function() { with(this) {
|
579
|
-
options = I18n.prepareOptions(
|
580
|
-
{name: "Mary Doe"},
|
581
|
-
{name: "John Doe", role: "user"}
|
582
|
-
);
|
583
|
-
|
584
|
-
assertEqual("Mary Doe", options["name"]);
|
585
|
-
assertEqual("user", options["role"]);
|
586
|
-
}},
|
587
|
-
|
588
|
-
// Prepare options with multiple options
|
589
|
-
testPrepareOptionsWithMultipleOptions: function() { with(this) {
|
590
|
-
options = I18n.prepareOptions(
|
591
|
-
{name: "Mary Doe"},
|
592
|
-
{name: "John Doe", role: "user"},
|
593
|
-
{age: 33},
|
594
|
-
{email: "mary@doe.com", url: "http://marydoe.com"},
|
595
|
-
{role: "admin", email: "john@doe.com"}
|
596
|
-
);
|
597
|
-
|
598
|
-
assertEqual("Mary Doe", options["name"]);
|
599
|
-
assertEqual("user", options["role"]);
|
600
|
-
assertEqual(33, options["age"]);
|
601
|
-
assertEqual("mary@doe.com", options["email"]);
|
602
|
-
assertEqual("http://marydoe.com", options["url"]);
|
603
|
-
}},
|
604
|
-
|
605
|
-
// Prepare options should return an empty hash when values are null
|
606
|
-
testPrepareOptionsShouldReturnAnEmptyHashWhenValuesAreNull: function() { with(this) {
|
607
|
-
assertNotNullOrUndefined(I18n.prepareOptions(null, null));
|
608
|
-
}},
|
609
|
-
|
610
|
-
// Percentage with defaults
|
611
|
-
testPercentageWithDefaults: function() { with(this) {
|
612
|
-
assertEqual("1234.000%", I18n.toPercentage(1234));
|
613
|
-
}},
|
614
|
-
|
615
|
-
// Percentage with custom options
|
616
|
-
testPercentageWithCustomOptions: function() { with(this) {
|
617
|
-
assertEqual("1_234%", I18n.toPercentage(1234, {delimiter: "_", precision: 0}));
|
618
|
-
}},
|
619
|
-
|
620
|
-
// Percentage with translation
|
621
|
-
testPercentageWithTranslation: function() { with(this) {
|
622
|
-
I18n.translations.en.number = {
|
623
|
-
percentage: {
|
624
|
-
format: {
|
625
|
-
precision: 2,
|
626
|
-
delimiter: ".",
|
627
|
-
separator: ","
|
628
|
-
}
|
629
|
-
}
|
630
|
-
}
|
631
|
-
|
632
|
-
assertEqual("1.234,00%", I18n.toPercentage(1234));
|
633
|
-
}},
|
634
|
-
|
635
|
-
// Percentage with translation and custom options
|
636
|
-
testPercentageWithTranslationAndCustomOptions: function() { with(this) {
|
637
|
-
I18n.translations.en.number = {
|
638
|
-
percentage: {
|
639
|
-
format: {
|
640
|
-
precision: 2,
|
641
|
-
delimiter: ".",
|
642
|
-
separator: ","
|
643
|
-
}
|
644
|
-
}
|
645
|
-
}
|
646
|
-
|
647
|
-
assertEqual("1-234+0000%", I18n.toPercentage(1234, {precision: 4, delimiter: "-", separator: "+"}));
|
648
|
-
}},
|
649
|
-
|
650
|
-
// Scope option as string
|
651
|
-
testScopeOptionAsString: function() { with(this) {
|
652
|
-
actual = I18n.translate("stranger", {scope: "greetings"});
|
653
|
-
assertEqual("Hello stranger!", actual);
|
654
|
-
}},
|
655
|
-
|
656
|
-
// Scope as array
|
657
|
-
testScopeAsArray: function() { with(this) {
|
658
|
-
actual = I18n.translate(["greetings", "stranger"]);
|
659
|
-
assertEqual("Hello stranger!", actual);
|
660
|
-
}}
|
661
|
-
});
|