typus 0.9.39 → 1.0.0.pre
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/CHANGELOG +104 -0
- data/Gemfile +17 -0
- data/Gemfile.lock +96 -0
- data/MIT-LICENSE +1 -1
- data/README.rdoc +45 -0
- data/Rakefile +19 -48
- data/app/controllers/admin/account_controller.rb +54 -0
- data/app/controllers/admin/dashboard_controller.rb +7 -0
- data/app/controllers/admin/resource_controller.rb +8 -0
- data/app/controllers/admin/resources_controller.rb +307 -0
- data/app/controllers/admin/session_controller.rb +38 -0
- data/app/controllers/admin_controller.rb +26 -0
- data/app/helpers/admin/dashboard_helper.rb +38 -0
- data/app/helpers/admin/filters_helper.rb +81 -0
- data/app/helpers/admin/form_helper.rb +68 -261
- data/app/helpers/admin/preview_helper.rb +48 -0
- data/app/helpers/admin/relationships_helper.rb +192 -0
- data/app/helpers/admin/resources_helper.rb +80 -0
- data/app/helpers/admin/search_helper.rb +19 -0
- data/app/helpers/admin/sidebar_helper.rb +32 -210
- data/app/helpers/admin/table_helper.rb +207 -200
- data/app/helpers/admin_helper.rb +56 -0
- data/app/mailers/admin/mailer.rb +13 -0
- data/app/models/admin/fake_user.rb +38 -0
- data/app/views/admin/account/forgot_password.html.erb +21 -0
- data/app/views/admin/account/new.html.erb +21 -0
- data/app/views/admin/dashboard/_sidebar.html.erb +3 -3
- data/app/views/admin/dashboard/show.html.erb +16 -0
- data/app/views/admin/dashboard/styles.html.erb +154 -0
- data/app/views/admin/helpers/_apps.html.erb +6 -0
- data/app/views/admin/helpers/_flash_message.html.erb +3 -0
- data/app/views/admin/helpers/_header.html.erb +7 -0
- data/app/views/admin/helpers/_login_info.html.erb +4 -0
- data/app/views/admin/helpers/_preview.html.erb +13 -0
- data/app/views/admin/helpers/dashboard/_applications.html.erb +32 -0
- data/app/views/admin/helpers/dashboard/_resources.html.erb +16 -0
- data/app/views/admin/helpers/filters/_filters.html.erb +31 -0
- data/app/views/admin/helpers/resources/_display_link_to_previous.html.erb +3 -0
- data/app/views/admin/helpers/resources/_pagination.html.erb +28 -0
- data/app/views/admin/helpers/search/_search.html.erb +12 -0
- data/app/views/admin/helpers/sidebar/_sidebar.html.erb +17 -0
- data/app/views/admin/helpers/table/_table.html.erb +22 -0
- data/app/views/{typus_mailer/reset_password_link.erb → admin/mailer/reset_password_link.text.erb} +2 -2
- data/{test/config/broken/empty.yml → app/views/admin/resources/_edit.html.erb} +0 -0
- data/app/views/admin/resources/_form.html.erb +26 -0
- data/{test/config/broken/empty_roles.yml → app/views/admin/resources/_index.html.erb} +0 -0
- data/{test/config/empty/empty_01.yml → app/views/admin/resources/_new.html.erb} +0 -0
- data/{test/config/empty/empty_01_roles.yml → app/views/admin/resources/_show.html.erb} +0 -0
- data/app/views/admin/resources/edit.html.erb +23 -21
- data/app/views/admin/resources/index.html.erb +31 -18
- data/app/views/admin/resources/new.html.erb +20 -18
- data/app/views/admin/resources/show.html.erb +29 -20
- data/app/views/admin/session/new.html.erb +26 -0
- data/app/views/admin/templates/_belongs_to.html.erb +4 -0
- data/app/views/admin/templates/_boolean.html.erb +4 -8
- data/app/views/admin/templates/_date.html.erb +9 -2
- data/app/views/admin/templates/_datetime.html.erb +9 -2
- data/app/views/admin/templates/_file.html.erb +20 -5
- data/app/views/admin/templates/_has_many.html.erb +24 -0
- data/app/views/admin/templates/_has_n.html.erb +17 -0
- data/{test/config/empty/empty_02.yml → app/views/admin/templates/_has_one.html.erb} +0 -0
- data/app/views/admin/templates/_password.html.erb +4 -2
- data/app/views/admin/templates/_relate_form.html.erb +4 -0
- data/app/views/admin/templates/_selector.html.erb +6 -18
- data/app/views/admin/templates/_string.html.erb +11 -10
- data/app/views/admin/templates/_text.html.erb +9 -2
- data/app/views/admin/templates/_time.html.erb +9 -2
- data/app/views/admin/templates/_tree.html.erb +4 -0
- data/app/views/layouts/admin/session.html.erb +44 -0
- data/app/views/layouts/admin.html.erb +45 -39
- data/config/available_locales/ca.yml +124 -0
- data/config/available_locales/ca_models.yml +16 -0
- data/config/{locales → available_locales}/de.yml +108 -89
- data/config/available_locales/de_models.yml +13 -0
- data/config/available_locales/es.yml +124 -0
- data/config/available_locales/es_models.yml +13 -0
- data/config/available_locales/fr.yml +124 -0
- data/config/available_locales/fr_models.yml +13 -0
- data/config/available_locales/hu.yml +124 -0
- data/config/available_locales/hu_models.yml +13 -0
- data/config/available_locales/it.yml +136 -0
- data/config/available_locales/it_models.yml +15 -0
- data/config/available_locales/language.yml.template +122 -0
- data/config/available_locales/language_models.yml.template +13 -0
- data/config/{locales → available_locales}/pt-BR.yml +97 -74
- data/config/available_locales/pt-BR_models.yml +13 -0
- data/config/{locales → available_locales}/ru.yml +107 -85
- data/config/available_locales/ru_models.yml +13 -0
- data/config/routes.rb +18 -11
- data/lib/generators/templates/config/initializers/typus.rb +26 -0
- data/lib/generators/templates/config/initializers/typus_authentication.rb +18 -0
- data/lib/generators/templates/config/initializers/typus_resources.rb +30 -0
- data/{generators/typus → lib/generators}/templates/config/typus/README +34 -16
- data/lib/generators/templates/config/typus/application.yml +5 -0
- data/lib/generators/templates/config/typus/application_roles.yml +6 -0
- data/lib/generators/templates/config/typus/typus.yml +17 -0
- data/lib/generators/templates/config/typus/typus_roles.yml +6 -0
- data/lib/generators/templates/controller.rb +4 -0
- data/lib/generators/templates/functional_test.rb +21 -0
- data/{generators/typus/templates/db/create_typus_users.rb → lib/generators/templates/migration.rb} +4 -4
- data/lib/generators/templates/model.rb +8 -0
- data/lib/generators/templates/model.yml +10 -0
- data/{generators/typus/templates/public/images/admin → lib/generators/templates/public/admin/images}/ui-icons.png +0 -0
- data/lib/generators/templates/public/admin/javascripts/application.js +6 -0
- data/lib/generators/templates/public/admin/javascripts/jquery-1.4.2.min.js +154 -0
- data/lib/generators/templates/public/admin/javascripts/jquery.rails.js +126 -0
- data/lib/generators/templates/public/admin/javascripts/jquery.searchField.js +91 -0
- data/lib/generators/templates/public/admin/stylesheets/application.css +11 -0
- data/lib/generators/templates/public/admin/stylesheets/screen.css +356 -0
- data/lib/generators/templates/public/admin/vendor/fancybox/blank.gif +0 -0
- data/lib/generators/templates/public/admin/vendor/fancybox/fancy_close.png +0 -0
- data/lib/generators/templates/public/admin/vendor/fancybox/fancy_loading.png +0 -0
- data/lib/generators/templates/public/admin/vendor/fancybox/fancy_nav_left.png +0 -0
- data/lib/generators/templates/public/admin/vendor/fancybox/fancy_nav_right.png +0 -0
- data/lib/generators/templates/public/admin/vendor/fancybox/fancy_shadow_e.png +0 -0
- data/lib/generators/templates/public/admin/vendor/fancybox/fancy_shadow_n.png +0 -0
- data/lib/generators/templates/public/admin/vendor/fancybox/fancy_shadow_ne.png +0 -0
- data/lib/generators/templates/public/admin/vendor/fancybox/fancy_shadow_nw.png +0 -0
- data/lib/generators/templates/public/admin/vendor/fancybox/fancy_shadow_s.png +0 -0
- data/lib/generators/templates/public/admin/vendor/fancybox/fancy_shadow_se.png +0 -0
- data/lib/generators/templates/public/admin/vendor/fancybox/fancy_shadow_sw.png +0 -0
- data/lib/generators/templates/public/admin/vendor/fancybox/fancy_shadow_w.png +0 -0
- data/lib/generators/templates/public/admin/vendor/fancybox/fancy_title_left.png +0 -0
- data/lib/generators/templates/public/admin/vendor/fancybox/fancy_title_main.png +0 -0
- data/lib/generators/templates/public/admin/vendor/fancybox/fancy_title_over.png +0 -0
- data/{generators/typus/templates/public/images/admin → lib/generators/templates/public/admin/vendor}/fancybox/fancy_title_right.png +0 -0
- data/lib/generators/templates/public/admin/vendor/fancybox/fancybox-x.png +0 -0
- data/lib/generators/templates/public/admin/vendor/fancybox/fancybox-y.png +0 -0
- data/lib/generators/templates/public/admin/vendor/fancybox/fancybox.png +0 -0
- data/lib/generators/templates/public/admin/vendor/fancybox/jquery.easing-1.3.pack.js +72 -0
- data/lib/generators/templates/public/admin/vendor/fancybox/jquery.fancybox-1.3.1.css +363 -0
- data/lib/generators/templates/public/admin/vendor/fancybox/jquery.fancybox-1.3.1.js +1077 -0
- data/lib/generators/templates/public/admin/vendor/fancybox/jquery.fancybox-1.3.1.pack.js +44 -0
- data/lib/generators/templates/public/admin/vendor/fancybox/jquery.mousewheel-3.0.2.pack.js +13 -0
- data/lib/generators/templates/view.html.erb +9 -0
- data/lib/generators/typus/migration_generator.rb +85 -0
- data/lib/generators/typus/typus_generator.rb +190 -0
- data/lib/generators/typus/views_generator.rb +27 -0
- data/lib/support/active_record.rb +60 -0
- data/lib/support/array.rb +13 -0
- data/lib/{typus → support}/hash.rb +2 -2
- data/lib/{typus → support}/object.rb +2 -2
- data/lib/support/string.rb +47 -0
- data/lib/tasks/typus.rake +19 -0
- data/lib/typus/authentication.rb +146 -40
- data/lib/typus/configuration.rb +14 -49
- data/lib/typus/engine.rb +6 -0
- data/lib/typus/format.rb +41 -18
- data/lib/typus/orm/active_record.rb +378 -0
- data/lib/typus/resources.rb +57 -0
- data/lib/typus/user.rb +54 -37
- data/lib/typus/version.rb +3 -0
- data/lib/typus.rb +118 -80
- data/lib/vendor/paginator.rb +2 -2
- data/test/factories/assets.rb +5 -0
- data/test/factories/categories.rb +3 -0
- data/test/factories/comments.rb +6 -0
- data/test/factories/pages.rb +5 -0
- data/test/factories/pictures.rb +7 -0
- data/test/factories/posts.rb +6 -0
- data/test/factories/typus_users.rb +8 -0
- data/test/{config → fixtures/config}/broken/application.yml +0 -0
- data/test/{config → fixtures/config}/broken/application_roles.yml +0 -0
- data/test/{config/empty/empty_02_roles.yml → fixtures/config/broken/empty.yml} +0 -0
- data/test/fixtures/config/broken/empty_roles.yml +0 -0
- data/test/{config → fixtures/config}/broken/undefined.yml +0 -0
- data/test/{config → fixtures/config}/broken/undefined_roles.yml +0 -0
- data/test/{config → fixtures/config}/default/typus.yml +2 -1
- data/{generators/typus/templates/config/typus → test/fixtures/config/default}/typus_roles.yml +0 -0
- data/test/fixtures/config/empty/empty_01.yml +0 -0
- data/test/fixtures/config/empty/empty_01_roles.yml +0 -0
- data/test/fixtures/config/empty/empty_02.yml +0 -0
- data/test/fixtures/config/empty/empty_02_roles.yml +0 -0
- data/test/{config → fixtures/config}/locales/es.yml +0 -0
- data/test/fixtures/config/namespaced/application.yml +5 -0
- data/test/fixtures/config/namespaced/application_roles.yml +2 -0
- data/test/{config → fixtures/config}/ordered/001_roles.yml +0 -0
- data/test/{config → fixtures/config}/ordered/002_roles.yml +0 -0
- data/test/{config → fixtures/config}/unordered/app_one_roles.yml +0 -0
- data/test/{config → fixtures/config}/unordered/app_two_roles.yml +0 -0
- data/test/fixtures/config/working/application.yml +73 -0
- data/test/fixtures/config/working/application_roles.yml +24 -0
- data/{generators/typus/templates/config/typus → test/fixtures/config/working}/typus.yml +2 -1
- data/test/{config/default → fixtures/config/working}/typus_roles.yml +0 -0
- data/test/fixtures/rails_app/README +244 -0
- data/test/fixtures/rails_app/Rakefile +7 -0
- data/test/fixtures/rails_app/app/controllers/admin/assets_controller.rb +2 -0
- data/test/fixtures/rails_app/app/controllers/admin/categories_controller.rb +2 -0
- data/test/fixtures/rails_app/app/controllers/admin/comments_controller.rb +2 -0
- data/test/fixtures/rails_app/app/controllers/admin/pages_controller.rb +2 -0
- data/test/fixtures/rails_app/app/controllers/admin/pictures_controller.rb +2 -0
- data/test/fixtures/rails_app/app/controllers/admin/posts_controller.rb +2 -0
- data/test/fixtures/rails_app/app/controllers/admin/status_controller.rb +2 -0
- data/test/fixtures/rails_app/app/controllers/admin/typus_users_controller.rb +2 -0
- data/test/fixtures/rails_app/app/controllers/admin/watch_dog_controller.rb +2 -0
- data/test/fixtures/rails_app/app/controllers/application_controller.rb +4 -0
- data/test/fixtures/rails_app/app/helpers/application_helper.rb +2 -0
- data/test/fixtures/{app → rails_app/app}/models/asset.rb +1 -1
- data/test/fixtures/{app → rails_app/app}/models/category.rb +2 -2
- data/test/fixtures/{app → rails_app/app}/models/comment.rb +1 -1
- data/test/fixtures/{app → rails_app/app}/models/custom_user.rb +1 -1
- data/test/fixtures/{app → rails_app/app}/models/delayed/task.rb +2 -2
- data/test/fixtures/rails_app/app/models/page.rb +9 -0
- data/test/fixtures/rails_app/app/models/picture.rb +6 -0
- data/test/fixtures/{app → rails_app/app}/models/post.rb +6 -6
- data/test/fixtures/rails_app/app/models/typus_user.rb +8 -0
- data/test/fixtures/{app → rails_app/app}/models/view.rb +1 -1
- data/test/fixtures/rails_app/app/views/admin/categories/_form.html.erb +1 -0
- data/test/fixtures/rails_app/app/views/admin/dashboard/_sidebar.html.erb +1 -0
- data/test/fixtures/rails_app/app/views/admin/mailer/reset_password_link.text.erb +6 -0
- data/test/fixtures/rails_app/app/views/admin/posts/_edit.html.erb +1 -0
- data/test/fixtures/rails_app/app/views/admin/posts/_index.html.erb +1 -0
- data/test/fixtures/rails_app/app/views/admin/posts/_new.html.erb +1 -0
- data/test/fixtures/rails_app/app/views/admin/posts/_show.html.erb +1 -0
- data/test/fixtures/rails_app/app/views/admin/posts/_sidebar.html.erb +1 -0
- data/test/fixtures/rails_app/app/views/admin/resources/_sidebar.html.erb +1 -0
- data/test/fixtures/rails_app/app/views/admin/status/index.html.erb +1 -0
- data/test/fixtures/rails_app/app/views/admin/templates/_datepicker.html.erb +1 -0
- data/test/fixtures/rails_app/app/views/layouts/application.html.erb +14 -0
- data/test/fixtures/rails_app/config/application.rb +50 -0
- data/test/fixtures/rails_app/config/boot.rb +13 -0
- data/test/fixtures/rails_app/config/database.yml +22 -0
- data/test/fixtures/rails_app/config/environment.rb +5 -0
- data/test/fixtures/rails_app/config/environments/development.rb +19 -0
- data/test/fixtures/rails_app/config/environments/production.rb +42 -0
- data/test/fixtures/rails_app/config/environments/test.rb +34 -0
- data/test/fixtures/rails_app/config/initializers/acts_as_list.rb +258 -0
- data/test/fixtures/rails_app/config/initializers/acts_as_tree.rb +98 -0
- data/test/fixtures/rails_app/config/initializers/backtrace_silencers.rb +7 -0
- data/test/fixtures/rails_app/config/initializers/inflections.rb +10 -0
- data/test/fixtures/rails_app/config/initializers/mime_types.rb +5 -0
- data/test/fixtures/rails_app/config/initializers/secret_token.rb +7 -0
- data/test/fixtures/rails_app/config/initializers/session_store.rb +8 -0
- data/test/fixtures/rails_app/config/initializers/typus.rb +6 -0
- data/test/fixtures/rails_app/config/locales/en.yml +5 -0
- data/test/fixtures/rails_app/config/routes.rb +8 -0
- data/test/{config/working → fixtures/rails_app/config/typus}/application.yml +11 -9
- data/test/{config/working → fixtures/rails_app/config/typus}/application_roles.yml +0 -0
- data/{generators/typus_update_schema_to_01/templates/config → test/fixtures/rails_app/config/typus}/typus.yml +0 -0
- data/test/{config/working → fixtures/rails_app/config/typus}/typus_roles.yml +0 -0
- data/test/fixtures/rails_app/config.ru +4 -0
- data/test/fixtures/rails_app/db/seeds.rb +7 -0
- data/test/fixtures/rails_app/db/test.sqlite3 +0 -0
- data/test/fixtures/rails_app/log/test.log +4268 -0
- data/test/fixtures/rails_app/public/404.html +26 -0
- data/test/fixtures/rails_app/public/422.html +26 -0
- data/test/fixtures/rails_app/public/500.html +26 -0
- data/test/fixtures/rails_app/public/favicon.ico +0 -0
- data/test/fixtures/rails_app/public/images/rails.png +0 -0
- data/test/fixtures/rails_app/public/index.html +279 -0
- data/test/fixtures/rails_app/public/javascripts/application.js +2 -0
- data/test/fixtures/rails_app/public/javascripts/controls.js +965 -0
- data/test/fixtures/rails_app/public/javascripts/dragdrop.js +974 -0
- data/test/fixtures/rails_app/public/javascripts/effects.js +1123 -0
- data/test/fixtures/rails_app/public/javascripts/prototype.js +4874 -0
- data/test/fixtures/rails_app/public/javascripts/rails.js +118 -0
- data/test/fixtures/rails_app/public/robots.txt +5 -0
- data/test/fixtures/rails_app/script/rails +9 -0
- data/test/fixtures/rails_app/tmp/export-posts-20100902120447.csv +2 -0
- data/test/fixtures/rails_app/tmp/export-posts-20100902120700.csv +2 -0
- data/test/functional/admin/account_controller_test.rb +90 -0
- data/test/functional/admin/dashboard_controller_http_basic_test.rb +24 -0
- data/test/functional/admin/dashboard_controller_none_test.rb +18 -0
- data/test/functional/admin/dashboard_controller_test.rb +106 -0
- data/test/functional/admin/resources_controller_assets_relationships.rb +59 -0
- data/test/functional/admin/resources_controller_categories_before_test.rb +10 -0
- data/test/functional/admin/resources_controller_categories_lists_test.rb +44 -0
- data/test/functional/admin/resources_controller_categories_views_test.rb +10 -0
- data/test/functional/admin/resources_controller_comments_toggle_test.rb +21 -0
- data/test/functional/admin/{master_controller_posts_before_test.rb → resources_controller_posts_before_test.rb} +3 -3
- data/test/functional/admin/resources_controller_posts_crud_custom_test.rb +27 -0
- data/test/functional/admin/resources_controller_posts_crud_test.rb +44 -0
- data/test/functional/admin/resources_controller_posts_formats_test.rb +39 -0
- data/test/functional/admin/resources_controller_posts_forms_test.rb +58 -0
- data/test/functional/admin/resources_controller_posts_permissions_test.rb +100 -0
- data/test/functional/admin/{master_controller_posts_relationships_test.rb → resources_controller_posts_relationships_test.rb} +25 -20
- data/test/functional/admin/resources_controller_posts_roles.rb +52 -0
- data/test/functional/admin/resources_controller_posts_views_test.rb +143 -0
- data/test/functional/admin/resources_controller_tableless_resource_test.rb +51 -0
- data/test/functional/admin/resources_controller_typus_users_test.rb +159 -0
- data/test/functional/admin/session_controller_test.rb +85 -0
- data/test/helpers/admin/dashboard_helper_test.rb +42 -0
- data/test/helpers/admin/form_helper_test.rb +52 -276
- data/test/helpers/admin/resources_helper_test.rb +52 -0
- data/test/helpers/admin/sidebar_helper_test.rb +133 -224
- data/test/helpers/admin/table_helper_test.rb +136 -144
- data/test/helpers/admin_helper_test.rb +69 -0
- data/test/lib/support/active_record_test.rb +35 -0
- data/test/lib/support/array_test.rb +15 -0
- data/test/lib/support/hash_test.rb +11 -0
- data/test/lib/support/string_test.rb +48 -0
- data/test/lib/typus/active_record_test.rb +385 -0
- data/test/lib/typus/configuration_test.rb +52 -0
- data/test/lib/typus/resource_test.rb +17 -0
- data/test/lib/typus/routes_test.rb +29 -0
- data/test/lib/typus_test.rb +72 -40
- data/test/{vendor → lib/vendor}/paginator_test.rb +7 -4
- data/test/schema.rb +28 -3
- data/test/test_helper.rb +29 -0
- data/test/unit/admin/mailer_test.rb +32 -0
- data/test/unit/typus_user_roles_test.rb +69 -61
- data/test/unit/typus_user_test.rb +56 -143
- data/typus.gemspec +18 -276
- metadata +305 -231
- data/.gitignore +0 -1
- data/AUTHORS.md +0 -34
- data/CHANGES +0 -3
- data/README.md +0 -75
- data/VERSION +0 -1
- data/app/controllers/admin/master_controller.rb +0 -394
- data/app/controllers/typus_controller.rb +0 -152
- data/app/helpers/admin/master_helper.rb +0 -104
- data/app/helpers/admin/public_helper.rb +0 -27
- data/app/helpers/typus_helper.rb +0 -181
- data/app/models/typus_mailer.rb +0 -14
- data/app/models/typus_user.rb +0 -5
- data/app/views/admin/shared/_feedback.html.erb +0 -6
- data/app/views/admin/shared/_footer.html.erb +0 -2
- data/app/views/admin/shared/_pagination.html.erb +0 -28
- data/app/views/admin/templates/_tiny_mce.html.erb +0 -2
- data/app/views/layouts/typus.html.erb +0 -29
- data/app/views/typus/dashboard.html.erb +0 -9
- data/app/views/typus/recover_password.html.erb +0 -7
- data/app/views/typus/reset_password.html.erb +0 -15
- data/app/views/typus/sign_in.html.erb +0 -9
- data/app/views/typus/sign_up.html.erb +0 -7
- data/config/locales/es.yml +0 -105
- data/config/locales/fr.yml +0 -98
- data/config/locales/language.yml.template +0 -106
- data/generators/typus/templates/auto/index.html.erb +0 -11
- data/generators/typus/templates/auto/resource_controller.rb.erb +0 -15
- data/generators/typus/templates/auto/resource_controller_test.rb.erb +0 -11
- data/generators/typus/templates/auto/resources_controller.rb.erb +0 -37
- data/generators/typus/templates/config/initializers/typus.rb +0 -34
- data/generators/typus/templates/config/typus/application.yml +0 -6
- data/generators/typus/templates/config/typus/application_roles.yml +0 -23
- data/generators/typus/templates/lib/tasks/typus_tasks.rake +0 -32
- data/generators/typus/templates/public/images/admin/fancybox/fancy_closebox.png +0 -0
- data/generators/typus/templates/public/images/admin/fancybox/fancy_left.png +0 -0
- data/generators/typus/templates/public/images/admin/fancybox/fancy_progress.png +0 -0
- data/generators/typus/templates/public/images/admin/fancybox/fancy_right.png +0 -0
- data/generators/typus/templates/public/images/admin/fancybox/fancy_shadow_e.png +0 -0
- data/generators/typus/templates/public/images/admin/fancybox/fancy_shadow_n.png +0 -0
- data/generators/typus/templates/public/images/admin/fancybox/fancy_shadow_ne.png +0 -0
- data/generators/typus/templates/public/images/admin/fancybox/fancy_shadow_nw.png +0 -0
- data/generators/typus/templates/public/images/admin/fancybox/fancy_shadow_s.png +0 -0
- data/generators/typus/templates/public/images/admin/fancybox/fancy_shadow_se.png +0 -0
- data/generators/typus/templates/public/images/admin/fancybox/fancy_shadow_sw.png +0 -0
- data/generators/typus/templates/public/images/admin/fancybox/fancy_shadow_w.png +0 -0
- data/generators/typus/templates/public/images/admin/fancybox/fancy_title_left.png +0 -0
- data/generators/typus/templates/public/images/admin/fancybox/fancy_title_main.png +0 -0
- data/generators/typus/templates/public/javascripts/admin/application.js +0 -14
- data/generators/typus/templates/public/javascripts/admin/jquery-1.3.2.min.js +0 -19
- data/generators/typus/templates/public/javascripts/admin/jquery.fancybox-1.2.1.min.js +0 -9
- data/generators/typus/templates/public/stylesheets/admin/jquery.fancybox.css +0 -315
- data/generators/typus/templates/public/stylesheets/admin/reset.css +0 -68
- data/generators/typus/templates/public/stylesheets/admin/screen.css +0 -361
- data/generators/typus/typus_generator.rb +0 -191
- data/generators/typus_update_schema_to_01/templates/migration.rb +0 -11
- data/generators/typus_update_schema_to_01/typus_update_schema_to_01_generator.rb +0 -19
- data/generators/typus_update_schema_to_02/templates/migration.rb +0 -11
- data/generators/typus_update_schema_to_02/typus_update_schema_to_02_generator.rb +0 -11
- data/lib/typus/active_record.rb +0 -323
- data/lib/typus/extensions/routes.rb +0 -15
- data/lib/typus/extensions/routes_hack.rb +0 -15
- data/lib/typus/preferences.rb +0 -11
- data/lib/typus/preview.rb +0 -76
- data/lib/typus/quick_edit.rb +0 -40
- data/lib/typus/reloader.rb +0 -14
- data/lib/typus/string.rb +0 -27
- data/lib/vendor/active_record.rb +0 -15
- data/lib/vendor/rss_parser.rb +0 -20
- data/rails/init.rb +0 -3
- data/tasks/typus_tasks.rake +0 -32
- data/test/config/working/typus.yml +0 -12
- data/test/fixtures/app/controllers/admin/assets_controller.rb +0 -2
- data/test/fixtures/app/controllers/admin/categories_controller.rb +0 -2
- data/test/fixtures/app/controllers/admin/comments_controller.rb +0 -2
- data/test/fixtures/app/controllers/admin/pages_controller.rb +0 -2
- data/test/fixtures/app/controllers/admin/posts_controller.rb +0 -2
- data/test/fixtures/app/controllers/admin/status_controller.rb +0 -6
- data/test/fixtures/app/controllers/admin/typus_users_controller.rb +0 -2
- data/test/fixtures/app/controllers/admin/watch_dog_controller.rb +0 -6
- data/test/fixtures/app/models/page.rb +0 -5
- data/test/fixtures/app/views/admin/dashboard/_content.html.erb +0 -1
- data/test/fixtures/app/views/admin/dashboard/_sidebar.html.erb +0 -1
- data/test/fixtures/app/views/admin/posts/_edit.html.erb +0 -1
- data/test/fixtures/app/views/admin/posts/_index.html.erb +0 -1
- data/test/fixtures/app/views/admin/posts/_new.html.erb +0 -1
- data/test/fixtures/app/views/admin/posts/_show.html.erb +0 -1
- data/test/fixtures/app/views/admin/posts/_sidebar.html.erb +0 -1
- data/test/fixtures/app/views/admin/resources/_sidebar.html.erb +0 -1
- data/test/fixtures/app/views/admin/shared/_footer.html.erb +0 -1
- data/test/fixtures/app/views/admin/status/index.html.erb +0 -1
- data/test/fixtures/app/views/admin/templates/_datepicker.html.erb +0 -1
- data/test/fixtures/assets.yml +0 -11
- data/test/fixtures/categories.yml +0 -14
- data/test/fixtures/comments.yml +0 -27
- data/test/fixtures/pages.yml +0 -41
- data/test/fixtures/posts.yml +0 -37
- data/test/fixtures/typus_users.yml +0 -59
- data/test/functional/admin/master_controller_assets_relationships.rb +0 -66
- data/test/functional/admin/master_controller_categories_lists_test.rb +0 -64
- data/test/functional/admin/master_controller_posts_crud_test.rb +0 -97
- data/test/functional/admin/master_controller_posts_formats_test.rb +0 -53
- data/test/functional/admin/master_controller_posts_permissions_test.rb +0 -127
- data/test/functional/admin/master_controller_posts_roles.rb +0 -50
- data/test/functional/admin/master_controller_posts_toggle_test.rb +0 -35
- data/test/functional/admin/master_controller_posts_views_test.rb +0 -209
- data/test/functional/admin/master_controller_tableless_resource_test.rb +0 -36
- data/test/functional/admin/master_controller_typus_users_test.rb +0 -211
- data/test/functional/typus_controller_test.rb +0 -342
- data/test/helper.rb +0 -51
- data/test/helpers/admin/master_helper_test.rb +0 -70
- data/test/helpers/admin/public_helper_test.rb +0 -26
- data/test/helpers/typus_helper_test.rb +0 -96
- data/test/lib/active_record_test.rb +0 -377
- data/test/lib/configuration_test.rb +0 -95
- data/test/lib/hash_test.rb +0 -11
- data/test/lib/routes_test.rb +0 -71
- data/test/lib/string_test.rb +0 -55
- data/test/unit/typus_mailer_test.rb +0 -29
- data/test/unit/typus_test.rb +0 -17
- data/test/vendor/active_record_test.rb +0 -18
|
@@ -2,101 +2,123 @@
|
|
|
2
2
|
# by Alexey Noskov <http://github.com/alno>
|
|
3
3
|
|
|
4
4
|
ru:
|
|
5
|
-
|
|
6
|
-
"Password": "Пароль"
|
|
7
|
-
"Password confirmation": "Подтверждение пароля"
|
|
8
|
-
"Sign in": "Войти"
|
|
9
|
-
"Recover password": "Восстановить пароль"
|
|
10
|
-
"Sign up": "Зарегистрироваться"
|
|
11
|
-
"Enter your email below to create the first user": "Введите E-Mail для создания первого пользователя"
|
|
12
|
-
"That doesn't seem like a valid email address": "E-Mail некорректен"
|
|
13
|
-
"I remember my password": "Запомнить пароль"
|
|
14
|
-
"Password recovery link sent to your email": "Ссылка для восставновления пароля выслана по указанному E-Mail"
|
|
5
|
+
|
|
15
6
|
"A valid token is required": "Необходим корректный ключ"
|
|
16
|
-
"
|
|
17
|
-
"
|
|
18
|
-
"
|
|
19
|
-
"
|
|
20
|
-
"
|
|
7
|
+
"Actions": "Действия"
|
|
8
|
+
"Active":
|
|
9
|
+
"Add": "Добавить"
|
|
10
|
+
"Add %{resource}": "Добавить %{resource}"
|
|
11
|
+
"Add new": "Добавить новый"
|
|
12
|
+
"Are you sure?":
|
|
13
|
+
"Are you sure you want to leave this page?": "Вы уверены, что хотите покинуть страницу?"
|
|
14
|
+
"Are you sure you want to sign out and end your session?":
|
|
15
|
+
"As you're not the admin or the owner of this record you cannot edit it": "Вы не администратор и не владелец записи и не можете ее редактировать"
|
|
16
|
+
|
|
17
|
+
"Back to list": "Назад к списку"
|
|
18
|
+
|
|
19
|
+
"Cancel and go back":
|
|
21
20
|
"Change password": "Сменить пароль"
|
|
22
|
-
"
|
|
23
|
-
"
|
|
21
|
+
"Change %{attribute}?": "Изменить %{attribute}?"
|
|
22
|
+
"Checked if active": "Отмечено, если активно"
|
|
23
|
+
"Click OK to continue, or click Cancel to stay on this page": "нажмите Ок, чтобы продолжить или Отмена, чтобы остаться на этой странице."
|
|
24
|
+
"Create %{resource}": "Создать %{resource}"
|
|
25
|
+
"Create one now":
|
|
26
|
+
|
|
24
27
|
"Dashboard": "Обзор"
|
|
25
|
-
"
|
|
26
|
-
"
|
|
27
|
-
"
|
|
28
|
-
|
|
28
|
+
"Do you want to cancel it?": "Вы хотите отменить это?"
|
|
29
|
+
"Documentation":
|
|
30
|
+
"Down": "Вниз"
|
|
31
|
+
|
|
29
32
|
"Edit": "Изменить"
|
|
30
|
-
"
|
|
31
|
-
"
|
|
32
|
-
"
|
|
33
|
-
|
|
34
|
-
"
|
|
35
|
-
"
|
|
33
|
+
"Edit %{resource}": "Изменить %{resource}"
|
|
34
|
+
"Enter your email below to create the first user":
|
|
35
|
+
"Error! Typus User or role doesn't exist":
|
|
36
|
+
|
|
37
|
+
"False":
|
|
38
|
+
"Filter": "фильтр"
|
|
39
|
+
"Filter by %{attribute}": "фильтр по %{attribute}"
|
|
40
|
+
|
|
41
|
+
"Go to": "Перейти к"
|
|
42
|
+
|
|
43
|
+
"I remember my password": "Запомнить пароль"
|
|
44
|
+
"If you didn't request a password update, you can ignore this message": "Если Вы не запрашивали обновление пароля, Вы можете проигнорировать это сообщение."
|
|
45
|
+
"If you have made any changes to the fields without clicking the Save/Update entry button, your changes will be lost": "Если вы сделали какие-то изменения, не кликая на Обновить/Сохранить, то они будут утеряны."
|
|
46
|
+
"Inactive":
|
|
47
|
+
|
|
48
|
+
"Last few days": "Последние дней"
|
|
49
|
+
"Last 7 days": "Последние 7 дней"
|
|
50
|
+
"Last 30 days": "Последние 30 дней"
|
|
51
|
+
"License":
|
|
36
52
|
"Logged as": "Вы вошли как"
|
|
37
|
-
"
|
|
38
|
-
|
|
39
|
-
"
|
|
40
|
-
"Add": "Добавить"
|
|
41
|
-
"Previous": "Предыдующий"
|
|
53
|
+
"Login": "Редактировать"
|
|
54
|
+
|
|
55
|
+
"New": "Новый"
|
|
42
56
|
"Next": "Следующий"
|
|
57
|
+
|
|
58
|
+
"Options": "Опции"
|
|
59
|
+
|
|
60
|
+
"Password recovery link sent to your email": "Ссылка для восставновления пароля выслана по указанному E-Mail"
|
|
61
|
+
"Previous": "Предыдующий"
|
|
62
|
+
|
|
63
|
+
"Record moved %{to}": "Запись перемещена в %{to}."
|
|
64
|
+
"Recover password": "Восстановить пароль"
|
|
65
|
+
"Remove": "Удалить"
|
|
66
|
+
"Remove %{attribute}": "Удалить %{attribute}"
|
|
67
|
+
"Remove %{resource}?": "Удалить %{resource}?"
|
|
68
|
+
"Remove filter": "Удалить фильтр"
|
|
69
|
+
"Remove search":
|
|
70
|
+
"Reset password": "Сбросить пароль"
|
|
71
|
+
"Resources": "Ресурсы"
|
|
72
|
+
|
|
73
|
+
"Save %{resource}":
|
|
43
74
|
"Search": "Поиск"
|
|
44
75
|
"Search by": "Искать по"
|
|
45
|
-
"
|
|
46
|
-
"
|
|
47
|
-
"
|
|
48
|
-
"
|
|
49
|
-
"
|
|
50
|
-
"
|
|
51
|
-
"
|
|
52
|
-
"
|
|
53
|
-
"Toggle is disabled": "Переключение отключено"
|
|
54
|
-
"Record moved {{to}}": "Запись перемещена в {{to}}."
|
|
55
|
-
"{{model_a}} related to {{model_b}}": "{{model_a}} присоединен с {{model_b}}."
|
|
56
|
-
"{{model_a}} successfully assigned to {{model_b}}": "{{model_a}} добавлен к {{model_b}}."
|
|
57
|
-
"{{model_a}} unrelated from {{model_b}}": "{{model_a}} отсоединен от {{model_b}}."
|
|
58
|
-
"Your new password is {{password}}": "Ваш новый пароль: {{password}}."
|
|
59
|
-
"Add entry": "Добавить запись"
|
|
60
|
-
"Go to": "Перейти к"
|
|
61
|
-
"First name": "Имя"
|
|
62
|
-
"Last name": "Фамлия"
|
|
63
|
-
"Roles": "Роли"
|
|
64
|
-
"Status": "Статус"
|
|
65
|
-
"Typus User": "Системный пользователь"
|
|
76
|
+
"Send us feedback":
|
|
77
|
+
"Setup": "Установки"
|
|
78
|
+
"Show": "Показать"
|
|
79
|
+
"Show %{resource}": "Показать %{resource}"
|
|
80
|
+
"Sign in": "Войти"
|
|
81
|
+
"Sign out": "Выйти"
|
|
82
|
+
"Sign up": "Зарегистрироваться"
|
|
83
|
+
"Submit a bug report":
|
|
66
84
|
"System Users Administration": "Администрирование системных пользователей"
|
|
67
|
-
|
|
85
|
+
|
|
86
|
+
"That doesn't seem like a valid email address": "E-Mail некорректен"
|
|
87
|
+
"The email and/or password you entered is invalid": "E-Mail или пароль введены неверно"
|
|
88
|
+
"There are no %{records}": "%{records} не найдены"
|
|
89
|
+
"There are no %{records} under this filter": "%{records} по такому фильтру не найдены"
|
|
90
|
+
"Today": "Сегодня"
|
|
91
|
+
"Toggle is disabled": "Переключение отключено"
|
|
92
|
+
"True": "ВЕРНО"
|
|
93
|
+
|
|
94
|
+
"Unrelate %{unrelate_model} from %{unrelate_model_from}?": "Отсоединить %{unrelate_model} от %{unrelate_model_from}?"
|
|
68
95
|
"Up": "Вверх"
|
|
69
|
-
|
|
70
|
-
"
|
|
71
|
-
|
|
72
|
-
"
|
|
96
|
+
|
|
97
|
+
"View site": "Перейти к сайту"
|
|
98
|
+
|
|
99
|
+
"You can update your password at": "Вы можете установить свой пароль на"
|
|
73
100
|
"You can't change your role": "Вы не можете менять свою собственную роль"
|
|
74
|
-
"Error! Typus User or role doesn't exist": "Ошибка! Пользователь или роль не существует"
|
|
75
|
-
"You can't toggle your status": "Вы не можете менять свой статус"
|
|
76
|
-
"You're not allowed to toggle status": "Вам не позволено менять статус"
|
|
77
101
|
"You can't remove yourself": "Вы не можете удалить себя"
|
|
102
|
+
"You can't toggle your status": "Вы не можете менять свой статус"
|
|
103
|
+
"You're adding a new %{resource_from}": "Вы добавляете новый %{resource_from}."
|
|
104
|
+
"You're adding a new %{resource_from} to %{resource_to}": "Вы добавляете новый %{resource_from} для %{resource_to}."
|
|
105
|
+
"You're updating a %{resource_from}": "Вы редактируете %{resource_from}."
|
|
106
|
+
"You're updating a %{resource_from} for %{resource_to}": "Вы редактируете %{resource_from} для %{resource_to}."
|
|
78
107
|
"You're not allowed to remove Typus Users": "Вам не позволено удалять системных пользователей"
|
|
79
|
-
"
|
|
80
|
-
|
|
81
|
-
"{
|
|
82
|
-
"{
|
|
83
|
-
"
|
|
84
|
-
"
|
|
85
|
-
"
|
|
86
|
-
"
|
|
87
|
-
"
|
|
88
|
-
"
|
|
89
|
-
"
|
|
90
|
-
"
|
|
91
|
-
"
|
|
92
|
-
"
|
|
93
|
-
"
|
|
94
|
-
"
|
|
95
|
-
"
|
|
96
|
-
"Last few days": "Последние дней"
|
|
97
|
-
"Last 7 days": "Последние 7 дней"
|
|
98
|
-
"Last 30 days": "Последние 30 дней"
|
|
99
|
-
"{{model}} filtered by {{filtered_by}}":
|
|
100
|
-
"True": "ВЕРНО"
|
|
101
|
-
"False":
|
|
102
|
-
"Are you sure you want to sign out and end your session?":
|
|
108
|
+
"You're not allowed to toggle status": "Вам не позволено менять статус"
|
|
109
|
+
|
|
110
|
+
"%{attachment} can't be removed":
|
|
111
|
+
"%{attachment} removed":
|
|
112
|
+
"%{model} filtered by %{filtered_by}":
|
|
113
|
+
"%{current_user_role} can't delete this item": "%{current_user_role} не может удалить эту запись"
|
|
114
|
+
"%{current_user_role} can't display items": "%{current_user_role} не может отобразить записи"
|
|
115
|
+
"%{current_user_role} can't perform action. (%{action})": "%{current_user_role} не может выполнить действие. (%{action})"
|
|
116
|
+
"%{model} successfully created": "%{model} создан"
|
|
117
|
+
"%{model} successfully removed": "%{model} удален"
|
|
118
|
+
"%{model} successfully updated": "%{model} успешно обновлен"
|
|
119
|
+
"%{model_a} cannot be related to %{model_b}":
|
|
120
|
+
"%{model_a} cannot be unrelated from %{model_b}":
|
|
121
|
+
"%{model} %{attribute} changed": "%{model} %{attribute} изменен"
|
|
122
|
+
"%{model_a} related to %{model_b}": "%{model_a} присоединен с %{model_b}."
|
|
123
|
+
"%{model_a} successfully assigned to %{model_b}": "%{model_a} добавлен к %{model_b}."
|
|
124
|
+
"%{model_a} unrelated from %{model_b}": "%{model_a} отсоединен от %{model_b}."
|
data/config/routes.rb
CHANGED
|
@@ -1,13 +1,20 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
1
|
+
Rails.application.routes.draw do
|
|
2
|
+
|
|
3
|
+
resource :admin, :only => [:show], :controller => :admin
|
|
4
|
+
|
|
5
|
+
namespace :admin do
|
|
6
|
+
|
|
7
|
+
resource :dashboard, :only => [:show], :controller => :dashboard
|
|
8
|
+
|
|
9
|
+
if Typus.authentication == :session
|
|
10
|
+
resource :session, :only => [:new, :create, :destroy], :controller => :session
|
|
11
|
+
resources :account, :only => [:new, :create, :show, :forgot_password] do
|
|
12
|
+
collection { get :forgot_password }
|
|
13
|
+
end
|
|
14
|
+
end
|
|
15
|
+
|
|
11
16
|
end
|
|
12
17
|
|
|
13
|
-
|
|
18
|
+
match ':controller(/:action(/:id))', :controller => /admin\/[^\/]+/
|
|
19
|
+
|
|
20
|
+
end
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
Typus.setup do |config|
|
|
2
|
+
|
|
3
|
+
# Application name.
|
|
4
|
+
config.admin_title = "<%= options[:admin_title] %>"
|
|
5
|
+
# config.admin_sub_title = ""
|
|
6
|
+
|
|
7
|
+
# Configure the e-mail address which will be shown in Admin::Mailer.
|
|
8
|
+
# When this option is define Typus will allow admin users to recover
|
|
9
|
+
# lost passwords.
|
|
10
|
+
# config.mailer_sender = "admin@example.com"
|
|
11
|
+
|
|
12
|
+
# Define file attachment settings.
|
|
13
|
+
# config.file_preview = :typus_preview
|
|
14
|
+
# config.file_thumbnail = :typus_thumbnail
|
|
15
|
+
|
|
16
|
+
# Authentication: :none, :http_basic
|
|
17
|
+
# config.authentication = :none
|
|
18
|
+
|
|
19
|
+
# Define username and password for http authentication
|
|
20
|
+
# config.username = "admin"
|
|
21
|
+
# config.password = "columbia"
|
|
22
|
+
|
|
23
|
+
# Define available languages on the admin interface.
|
|
24
|
+
# config.available_locales = [:en]
|
|
25
|
+
|
|
26
|
+
end
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
Typus.setup do |config|
|
|
2
|
+
|
|
3
|
+
# Authentication: none, http_basic, session
|
|
4
|
+
config.authentication = :session
|
|
5
|
+
|
|
6
|
+
# Define the default root.
|
|
7
|
+
# config.master_role = "admin"
|
|
8
|
+
|
|
9
|
+
# Define relationship table.
|
|
10
|
+
# config.relationship = "typus_users"
|
|
11
|
+
|
|
12
|
+
# Define user_class_name and user_fk.
|
|
13
|
+
config.user_class_name = "<%= options[:user_class_name] %>"
|
|
14
|
+
|
|
15
|
+
# Define the user_fk
|
|
16
|
+
config.user_fk = "<%= options[:user_fk] %>"
|
|
17
|
+
|
|
18
|
+
end
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
Typus::Resources.setup do |config|
|
|
2
|
+
|
|
3
|
+
# Defines the default_action_on_item.
|
|
4
|
+
# config.default_action_on_item = "edit"
|
|
5
|
+
|
|
6
|
+
# Defines the end_year.
|
|
7
|
+
# config.end_year = nil
|
|
8
|
+
|
|
9
|
+
# Defines the form_rows.
|
|
10
|
+
# config.form_rows = 15
|
|
11
|
+
|
|
12
|
+
# Defines the action_after_save.
|
|
13
|
+
# config.action_after_save = "edit"
|
|
14
|
+
|
|
15
|
+
# Defines the minute step.
|
|
16
|
+
# config.minute_step = 5
|
|
17
|
+
|
|
18
|
+
# Defines nil.
|
|
19
|
+
# config.human_nil = "nil"
|
|
20
|
+
|
|
21
|
+
# Defines only_user_items.
|
|
22
|
+
# config.only_user_items = false
|
|
23
|
+
|
|
24
|
+
# Defines per_page
|
|
25
|
+
# config.per_page = 15
|
|
26
|
+
|
|
27
|
+
# Defines start year
|
|
28
|
+
# config.start_year = nil
|
|
29
|
+
|
|
30
|
+
end
|
|
@@ -1,11 +1,12 @@
|
|
|
1
|
-
|
|
2
|
-
options. You can use this example to customize your YAML files which
|
|
3
|
-
only have set the most common settings.
|
|
1
|
+
# Models
|
|
4
2
|
|
|
5
|
-
|
|
3
|
+
This is an example of a **Typus** enabled model with all available
|
|
4
|
+
options. You can use this example to customize your YAML files which
|
|
5
|
+
only have set the most common settings.
|
|
6
6
|
|
|
7
7
|
Post:
|
|
8
8
|
fields:
|
|
9
|
+
default: id, title, category_id, created_at, is_published?
|
|
9
10
|
list: id, title, category_id, created_at, is_published?
|
|
10
11
|
form: title, body, is_published?, created_at
|
|
11
12
|
show: title, category, is_published?
|
|
@@ -18,14 +19,9 @@ Note: To define namespace models use :: as a separator. (i.e. Delayed::Job)
|
|
|
18
19
|
created_at: post_long
|
|
19
20
|
selectors:
|
|
20
21
|
read_only:
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
theme: simple
|
|
25
|
-
theme_advanced_buttons3_add:
|
|
26
|
-
- fulscreen
|
|
27
|
-
plugins:
|
|
28
|
-
- fulscreen
|
|
22
|
+
filter_by_date_range: valid_until
|
|
23
|
+
templates:
|
|
24
|
+
body: rich_text
|
|
29
25
|
actions:
|
|
30
26
|
index: cleanup
|
|
31
27
|
edit: send_as_newsletter
|
|
@@ -41,12 +37,34 @@ Note: To define namespace models use :: as a separator. (i.e. Delayed::Job)
|
|
|
41
37
|
default_action_on_item: show
|
|
42
38
|
end_year: 2015
|
|
43
39
|
form_rows: 25
|
|
44
|
-
|
|
40
|
+
action_after_save: :index
|
|
45
41
|
minute_step: 15
|
|
46
42
|
nil: 'nil'
|
|
47
|
-
on_header: true
|
|
48
43
|
only_user_items: true
|
|
49
44
|
per_page: 5
|
|
50
|
-
sidebar_selector: 5
|
|
51
45
|
start_year: 1990
|
|
52
|
-
|
|
46
|
+
|
|
47
|
+
Note: To define namespace models use :: as a separator. (i.e. Delayed::Job)
|
|
48
|
+
|
|
49
|
+
# Roles
|
|
50
|
+
|
|
51
|
+
In this file you can configure the actions available for each of
|
|
52
|
+
your models on the application. You can also use the 'all' shortcut
|
|
53
|
+
to allow the user the access to all actions.
|
|
54
|
+
|
|
55
|
+
admin:
|
|
56
|
+
Post: create, read, update, delete
|
|
57
|
+
Category: create, read, update, delete
|
|
58
|
+
TypusUser: all
|
|
59
|
+
|
|
60
|
+
editor:
|
|
61
|
+
Post: create, read, update
|
|
62
|
+
Category: read, update
|
|
63
|
+
|
|
64
|
+
You can also define `resources` which are not related to a model,
|
|
65
|
+
for example to control MemCached or see the Starling queue
|
|
66
|
+
statistics.
|
|
67
|
+
|
|
68
|
+
admin:
|
|
69
|
+
Starling: index
|
|
70
|
+
MemCached: index, cleanup
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
# Typus Models Configuration File
|
|
2
|
+
#
|
|
3
|
+
# Use the README file as a reference to customize settings.
|
|
4
|
+
|
|
5
|
+
<%= options[:user_class_name] %>:
|
|
6
|
+
fields:
|
|
7
|
+
default: first_name, last_name, role, email, language
|
|
8
|
+
list: email, role, status
|
|
9
|
+
form: first_name, last_name, role, email, password, password_confirmation, language
|
|
10
|
+
options:
|
|
11
|
+
selectors: role, language
|
|
12
|
+
booleans:
|
|
13
|
+
status: Active, Inactive
|
|
14
|
+
filters: status, role
|
|
15
|
+
search: first_name, last_name, email, role
|
|
16
|
+
application: Admin Panel
|
|
17
|
+
description: Users Administration
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
require "test_helper"
|
|
2
|
+
|
|
3
|
+
# ControllerTest generated by Typus, use it to test the extended admin functionality.
|
|
4
|
+
class Admin::<%= resource %>ControllerTest < ActionController::TestCase
|
|
5
|
+
|
|
6
|
+
setup do
|
|
7
|
+
admin = admin_users(:admin)
|
|
8
|
+
@request.session[:typus_user_id] = admin.id
|
|
9
|
+
end
|
|
10
|
+
|
|
11
|
+
test "should render index" do
|
|
12
|
+
get :index
|
|
13
|
+
assert_template :index
|
|
14
|
+
end
|
|
15
|
+
|
|
16
|
+
test "should render new" do
|
|
17
|
+
get :new
|
|
18
|
+
assert_template :new
|
|
19
|
+
end
|
|
20
|
+
|
|
21
|
+
end
|
data/{generators/typus/templates/db/create_typus_users.rb → lib/generators/templates/migration.rb}
RENAMED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
class
|
|
1
|
+
class <%= migration_name %> < ActiveRecord::Migration
|
|
2
2
|
|
|
3
3
|
def self.up
|
|
4
|
-
create_table
|
|
4
|
+
create_table :<%= admin_users_table_name %> do |t|
|
|
5
5
|
t.string :first_name, :default => "", :null => false
|
|
6
6
|
t.string :last_name, :default => "", :null => false
|
|
7
7
|
t.string :role, :null => false
|
|
@@ -16,7 +16,7 @@ class CreateTypusUsers < ActiveRecord::Migration
|
|
|
16
16
|
end
|
|
17
17
|
|
|
18
18
|
def self.down
|
|
19
|
-
drop_table
|
|
19
|
+
drop_table :<%= admin_users_table_name %>
|
|
20
20
|
end
|
|
21
21
|
|
|
22
|
-
end
|
|
22
|
+
end
|
|
File without changes
|