admin_assistant 2.0.0 → 2.0.1
Sign up to get free protection for your applications and to get access to all the features.
- data/Rakefile +2 -2
- data/VERSION +1 -1
- data/admin_assistant.gemspec +404 -8
- data/rails_2_test/README +256 -0
- data/rails_2_test/Rakefile +13 -0
- data/rails_2_test/app/controllers/admin/appointments2_controller.rb +15 -0
- data/rails_2_test/app/controllers/admin/appointments_controller.rb +11 -0
- data/rails_2_test/app/controllers/admin/blog_posts2_controller.rb +138 -0
- data/rails_2_test/app/controllers/admin/blog_posts3_controller.rb +76 -0
- data/rails_2_test/app/controllers/admin/blog_posts4_controller.rb +21 -0
- data/rails_2_test/app/controllers/admin/blog_posts5_controller.rb +27 -0
- data/rails_2_test/app/controllers/admin/blog_posts6_controller.rb +10 -0
- data/rails_2_test/app/controllers/admin/blog_posts_controller.rb +8 -0
- data/rails_2_test/app/controllers/admin/blog_posts_custom_new_and_edit_controller.rb +15 -0
- data/rails_2_test/app/controllers/admin/blog_posts_read_only_controller.rb +19 -0
- data/rails_2_test/app/controllers/admin/bookmarks_controller.rb +11 -0
- data/rails_2_test/app/controllers/admin/comments2_controller.rb +14 -0
- data/rails_2_test/app/controllers/admin/comments_controller.rb +12 -0
- data/rails_2_test/app/controllers/admin/file_column_images2_controller.rb +10 -0
- data/rails_2_test/app/controllers/admin/file_column_images_controller.rb +6 -0
- data/rails_2_test/app/controllers/admin/images2_controller.rb +11 -0
- data/rails_2_test/app/controllers/admin/images_controller.rb +6 -0
- data/rails_2_test/app/controllers/admin/misconfigured1_controller.rb +7 -0
- data/rails_2_test/app/controllers/admin/not_migrated_yets_controller.rb +9 -0
- data/rails_2_test/app/controllers/admin/product_categories2_controller.rb +7 -0
- data/rails_2_test/app/controllers/admin/product_categories_controller.rb +5 -0
- data/rails_2_test/app/controllers/admin/products2_controller.rb +15 -0
- data/rails_2_test/app/controllers/admin/products_controller.rb +31 -0
- data/rails_2_test/app/controllers/admin/television_airings_controller.rb +5 -0
- data/rails_2_test/app/controllers/admin/television_time_slots_controller.rb +5 -0
- data/rails_2_test/app/controllers/admin/users2_controller.rb +10 -0
- data/rails_2_test/app/controllers/admin/users_controller.rb +63 -0
- data/rails_2_test/app/controllers/application.rb +16 -0
- data/rails_2_test/app/controllers/application_controller.rb +16 -0
- data/rails_2_test/app/controllers/blog_posts_controller.rb +5 -0
- data/rails_2_test/app/helpers/admin/appointments2_helper.rb +2 -0
- data/rails_2_test/app/helpers/admin/appointments_helper.rb +2 -0
- data/rails_2_test/app/helpers/admin/blog_posts2_helper.rb +27 -0
- data/rails_2_test/app/helpers/admin/blog_posts3_helper.rb +2 -0
- data/rails_2_test/app/helpers/admin/blog_posts4_helper.rb +2 -0
- data/rails_2_test/app/helpers/admin/blog_posts6_helper.rb +16 -0
- data/rails_2_test/app/helpers/admin/blog_posts_custom_new_and_edit_helper.rb +29 -0
- data/rails_2_test/app/helpers/admin/blog_posts_helper.rb +2 -0
- data/rails_2_test/app/helpers/admin/blog_posts_read_only_helper.rb +2 -0
- data/rails_2_test/app/helpers/admin/bookmarks_helper.rb +2 -0
- data/rails_2_test/app/helpers/admin/comments2_helper.rb +2 -0
- data/rails_2_test/app/helpers/admin/comments_helper.rb +2 -0
- data/rails_2_test/app/helpers/admin/file_column_images2_helper.rb +2 -0
- data/rails_2_test/app/helpers/admin/file_column_images_helper.rb +2 -0
- data/rails_2_test/app/helpers/admin/images2_helper.rb +8 -0
- data/rails_2_test/app/helpers/admin/images_helper.rb +2 -0
- data/rails_2_test/app/helpers/admin/misconfigured1_helper.rb +2 -0
- data/rails_2_test/app/helpers/admin/not_migrated_yets_helper.rb +2 -0
- data/rails_2_test/app/helpers/admin/product_categories2_helper.rb +2 -0
- data/rails_2_test/app/helpers/admin/product_categories_helper.rb +2 -0
- data/rails_2_test/app/helpers/admin/products2_helper.rb +3 -0
- data/rails_2_test/app/helpers/admin/products_helper.rb +6 -0
- data/rails_2_test/app/helpers/admin/television_airings_helper.rb +2 -0
- data/rails_2_test/app/helpers/admin/television_time_slots_helper.rb +2 -0
- data/rails_2_test/app/helpers/admin/users2_helper.rb +2 -0
- data/rails_2_test/app/helpers/admin/users_helper.rb +25 -0
- data/rails_2_test/app/helpers/application_helper.rb +3 -0
- data/rails_2_test/app/helpers/blog_posts_helper.rb +2 -0
- data/rails_2_test/app/models/appointment.rb +5 -0
- data/rails_2_test/app/models/blog_post.rb +14 -0
- data/rails_2_test/app/models/blog_post_tag.rb +6 -0
- data/rails_2_test/app/models/bookmark.rb +6 -0
- data/rails_2_test/app/models/comment.rb +4 -0
- data/rails_2_test/app/models/file_column_image.rb +3 -0
- data/rails_2_test/app/models/image.rb +3 -0
- data/rails_2_test/app/models/not_migrated_yet.rb +2 -0
- data/rails_2_test/app/models/product.rb +7 -0
- data/rails_2_test/app/models/product_category.rb +9 -0
- data/rails_2_test/app/models/tag.rb +4 -0
- data/rails_2_test/app/models/television_airing.rb +3 -0
- data/rails_2_test/app/models/television_time_slot.rb +11 -0
- data/rails_2_test/app/models/user.rb +14 -0
- data/rails_2_test/app/views/admin/appointments/_subject_input.html.erb +2 -0
- data/rails_2_test/app/views/admin/appointments2/_time_input.html.erb +31 -0
- data/rails_2_test/app/views/admin/blog_posts2/_after_form.html.erb +5 -0
- data/rails_2_test/app/views/admin/blog_posts2/_after_index.html.erb +1 -0
- data/rails_2_test/app/views/admin/blog_posts2/_after_tags_input.html.erb +16 -0
- data/rails_2_test/app/views/admin/blog_posts2/_before_index.html.erb +2 -0
- data/rails_2_test/app/views/admin/blog_posts5/_after_index_header.html.erb +8 -0
- data/rails_2_test/app/views/admin/blog_posts_read_only/_body_for_show.html.erb +1 -0
- data/rails_2_test/app/views/admin/products/_name_input.html.erb +2 -0
- data/rails_2_test/app/views/admin/products/_percent_off_input.html.erb +2 -0
- data/rails_2_test/app/views/admin/products/_price_input.html.erb +10 -0
- data/rails_2_test/app/views/blog_posts/show.html.erb +13 -0
- data/rails_2_test/app/views/layouts/admin.html.erb +31 -0
- data/rails_2_test/config/boot.rb +109 -0
- data/rails_2_test/config/database.yml +28 -0
- data/rails_2_test/config/environment.rb +78 -0
- data/rails_2_test/config/environments/development.rb +17 -0
- data/rails_2_test/config/environments/production.rb +24 -0
- data/rails_2_test/config/environments/test.rb +24 -0
- data/rails_2_test/config/initializers/inflections.rb +10 -0
- data/rails_2_test/config/initializers/mime_types.rb +5 -0
- data/rails_2_test/config/initializers/new_rails_defaults.rb +17 -0
- data/rails_2_test/config/locales/en.yml +5 -0
- data/rails_2_test/config/routes.rb +43 -0
- data/rails_2_test/db/migrate/20090213215514_create_blog_posts.rb +12 -0
- data/rails_2_test/db/migrate/20090217225542_add_body_to_blog_posts.rb +9 -0
- data/rails_2_test/db/migrate/20090221220917_create_tags.rb +13 -0
- data/rails_2_test/db/migrate/20090221220947_create_blog_post_tags.rb +14 -0
- data/rails_2_test/db/migrate/20090222162204_add_textile_to_blog_posts.rb +9 -0
- data/rails_2_test/db/migrate/20090222163231_add_published_at_to_blog_posts.rb +9 -0
- data/rails_2_test/db/migrate/20090301191722_create_images.rb +16 -0
- data/rails_2_test/db/migrate/20090305165345_create_accounts.rb +14 -0
- data/rails_2_test/db/migrate/20090307225027_rename_accounts_to_users.rb +9 -0
- data/rails_2_test/db/migrate/20090307225750_add_user_id_to_blog_posts.rb +9 -0
- data/rails_2_test/db/migrate/20090309185114_change_blog_posts_textile.rb +9 -0
- data/rails_2_test/db/migrate/20090309193635_create_products.rb +14 -0
- data/rails_2_test/db/migrate/20090309203056_create_comments.rb +15 -0
- data/rails_2_test/db/migrate/20090323005947_create_file_column_images.rb +12 -0
- data/rails_2_test/db/migrate/20090326160049_add_birthday_to_users.rb +9 -0
- data/rails_2_test/db/migrate/20090326223606_add_state_to_users.rb +9 -0
- data/rails_2_test/db/migrate/20090503134004_add_file_column_image_to_products.rb +9 -0
- data/rails_2_test/db/migrate/20090617173651_create_bookmarks.rb +15 -0
- data/rails_2_test/db/migrate/20090624165355_add_tags_string_to_blog_post.rb +9 -0
- data/rails_2_test/db/migrate/20090625144313_add_avatar_fields_to_user.rb +11 -0
- data/rails_2_test/db/migrate/20090629202956_add_merged_into_to_blog_posts.rb +9 -0
- data/rails_2_test/db/migrate/20090701171857_add_force_textile_to_users.rb +9 -0
- data/rails_2_test/db/migrate/20090704163647_add_deleted_at_to_products.rb +9 -0
- data/rails_2_test/db/migrate/20090704173800_add_sale_fields_to_products.rb +13 -0
- data/rails_2_test/db/migrate/20090714024501_create_product_categories.rb +15 -0
- data/rails_2_test/db/migrate/20090819162835_add_admin_level_to_users.rb +9 -0
- data/rails_2_test/db/migrate/20091115134559_add_first_and_last_names_to_users.rb +11 -0
- data/rails_2_test/db/migrate/20091221011256_add_position_to_product_categories.rb +9 -0
- data/rails_2_test/db/migrate/20091222160814_create_appointments.rb +14 -0
- data/rails_2_test/db/migrate/20091227224547_add_user_id_to_appointments.rb +9 -0
- data/rails_2_test/db/migrate/20100214213359_create_television_time_slots.rb +13 -0
- data/rails_2_test/db/migrate/20100214213451_create_television_airings.rb +15 -0
- data/rails_2_test/doc/README_FOR_APP +5 -0
- data/rails_2_test/lib/tasks/rspec.rake +163 -0
- data/rails_2_test/public/404.html +30 -0
- data/rails_2_test/public/422.html +30 -0
- data/rails_2_test/public/500.html +33 -0
- data/rails_2_test/public/dispatch.cgi +10 -0
- data/rails_2_test/public/dispatch.fcgi +24 -0
- data/rails_2_test/public/dispatch.rb +10 -0
- data/rails_2_test/public/favicon.ico +0 -0
- data/rails_2_test/public/images/rails.png +0 -0
- data/rails_2_test/public/index.html +274 -0
- data/rails_2_test/public/javascripts/application.js +2 -0
- data/rails_2_test/public/javascripts/jquery-1.4.4.min.js +167 -0
- data/rails_2_test/public/robots.txt +5 -0
- data/rails_2_test/public/stylesheets/admin.css +3 -0
- data/rails_2_test/public/stylesheets/scaffold.css +54 -0
- data/rails_2_test/script/about +4 -0
- data/rails_2_test/script/autospec +5 -0
- data/rails_2_test/script/console +3 -0
- data/rails_2_test/script/dbconsole +3 -0
- data/rails_2_test/script/destroy +3 -0
- data/rails_2_test/script/generate +3 -0
- data/rails_2_test/script/performance/benchmarker +3 -0
- data/rails_2_test/script/performance/profiler +3 -0
- data/rails_2_test/script/performance/request +3 -0
- data/rails_2_test/script/plugin +3 -0
- data/rails_2_test/script/populate_tables.rb +49 -0
- data/rails_2_test/script/process/inspector +3 -0
- data/rails_2_test/script/process/reaper +3 -0
- data/rails_2_test/script/process/spawner +3 -0
- data/rails_2_test/script/runner +3 -0
- data/rails_2_test/script/server +3 -0
- data/rails_2_test/script/spec +5 -0
- data/rails_2_test/script/spec_server +125 -0
- data/rails_2_test/test/data/ruby_throated.jpg +0 -0
- data/rails_2_test/test/data/tweenbot.jpg +0 -0
- data/rails_2_test/test/fixtures/file_column_images.yml +7 -0
- data/rails_2_test/test/integration/admin/appointments2_integration_test.rb +79 -0
- data/rails_2_test/test/integration/admin/appointments_integration_test.rb +367 -0
- data/rails_2_test/test/integration/admin/blog_posts2_integration_test.rb +806 -0
- data/rails_2_test/test/integration/admin/blog_posts3_integration_test.rb +418 -0
- data/rails_2_test/test/integration/admin/blog_posts4_integration_test.rb +189 -0
- data/rails_2_test/test/integration/admin/blog_posts5_integration_test.rb +75 -0
- data/rails_2_test/test/integration/admin/blog_posts6_integration_test.rb +39 -0
- data/rails_2_test/test/integration/admin/blog_posts_custom_new_and_edit_integration_test.rb +89 -0
- data/rails_2_test/test/integration/admin/blog_posts_integration_test.rb +788 -0
- data/rails_2_test/test/integration/admin/blog_posts_read_only_integration_test.rb +69 -0
- data/rails_2_test/test/integration/admin/bookmarks_integration_test.rb +445 -0
- data/rails_2_test/test/integration/admin/comments2_integration_test.rb +52 -0
- data/rails_2_test/test/integration/admin/comments_integration_test.rb +50 -0
- data/rails_2_test/test/integration/admin/file_column_images2_integration_test.rb +19 -0
- data/rails_2_test/test/integration/admin/file_column_images_integration_test.rb +69 -0
- data/rails_2_test/test/integration/admin/images2_integration_test.rb +33 -0
- data/rails_2_test/test/integration/admin/images_integration_test.rb +79 -0
- data/rails_2_test/test/integration/admin/misconfigured1_integration_test.rb +17 -0
- data/rails_2_test/test/integration/admin/product_categories2_integration_test.rb +179 -0
- data/rails_2_test/test/integration/admin/product_categories_integration_test.rb +12 -0
- data/rails_2_test/test/integration/admin/products2_integration_test.rb +155 -0
- data/rails_2_test/test/integration/admin/products_integration_test.rb +210 -0
- data/rails_2_test/test/integration/admin/television_airings_integration_test.rb +25 -0
- data/rails_2_test/test/integration/admin/users2_integration_test.rb +48 -0
- data/rails_2_test/test/integration/admin/users_integration_test.rb +266 -0
- data/rails_2_test/test/integration/blog_posts_integration_test.rb +9 -0
- data/rails_2_test/test/test_helper.rb +114 -0
- data/rails_2_test/vendor/plugins/file_column/CHANGELOG +69 -0
- data/rails_2_test/vendor/plugins/file_column/README +54 -0
- data/rails_2_test/vendor/plugins/file_column/Rakefile +36 -0
- data/rails_2_test/vendor/plugins/file_column/TODO +6 -0
- data/rails_2_test/vendor/plugins/file_column/init.rb +13 -0
- data/rails_2_test/vendor/plugins/file_column/lib/file_column.rb +723 -0
- data/rails_2_test/vendor/plugins/file_column/lib/file_column_helper.rb +150 -0
- data/rails_2_test/vendor/plugins/file_column/lib/file_compat.rb +28 -0
- data/rails_2_test/vendor/plugins/file_column/lib/magick_file_column.rb +260 -0
- data/rails_2_test/vendor/plugins/file_column/lib/rails_file_column.rb +19 -0
- data/rails_2_test/vendor/plugins/file_column/lib/test_case.rb +124 -0
- data/rails_2_test/vendor/plugins/file_column/lib/validations.rb +112 -0
- data/rails_2_test/vendor/plugins/file_column/test/abstract_unit.rb +63 -0
- data/rails_2_test/vendor/plugins/file_column/test/connection.rb +17 -0
- data/rails_2_test/vendor/plugins/file_column/test/file_column_helper_test.rb +97 -0
- data/rails_2_test/vendor/plugins/file_column/test/file_column_test.rb +650 -0
- data/rails_2_test/vendor/plugins/file_column/test/fixtures/entry.rb +32 -0
- data/rails_2_test/vendor/plugins/file_column/test/fixtures/invalid-image.jpg +1 -0
- data/rails_2_test/vendor/plugins/file_column/test/fixtures/kerb.jpg +0 -0
- data/rails_2_test/vendor/plugins/file_column/test/fixtures/mysql.sql +25 -0
- data/rails_2_test/vendor/plugins/file_column/test/fixtures/schema.rb +10 -0
- data/rails_2_test/vendor/plugins/file_column/test/fixtures/skanthak.png +0 -0
- data/rails_2_test/vendor/plugins/file_column/test/magick_test.rb +380 -0
- data/rails_2_test/vendor/plugins/file_column/test/magick_view_only_test.rb +21 -0
- data/rails_3_test/.gitignore +4 -0
- data/rails_3_test/Gemfile +12 -0
- data/rails_3_test/Gemfile.lock +100 -0
- data/rails_3_test/README +256 -0
- data/rails_3_test/Rakefile +7 -0
- data/rails_3_test/app/controllers/admin/appointments2_controller.rb +15 -0
- data/rails_3_test/app/controllers/admin/appointments_controller.rb +11 -0
- data/rails_3_test/app/controllers/admin/blog_posts2_controller.rb +138 -0
- data/rails_3_test/app/controllers/admin/blog_posts3_controller.rb +76 -0
- data/rails_3_test/app/controllers/admin/blog_posts4_controller.rb +21 -0
- data/rails_3_test/app/controllers/admin/blog_posts5_controller.rb +27 -0
- data/rails_3_test/app/controllers/admin/blog_posts6_controller.rb +10 -0
- data/rails_3_test/app/controllers/admin/blog_posts_controller.rb +9 -0
- data/rails_3_test/app/controllers/admin/blog_posts_custom_new_and_edit_controller.rb +15 -0
- data/rails_3_test/app/controllers/admin/blog_posts_read_only_controller.rb +19 -0
- data/rails_3_test/app/controllers/admin/bookmarks_controller.rb +11 -0
- data/rails_3_test/app/controllers/admin/comments2_controller.rb +14 -0
- data/rails_3_test/app/controllers/admin/comments_controller.rb +12 -0
- data/rails_3_test/app/controllers/admin/images2_controller.rb +11 -0
- data/rails_3_test/app/controllers/admin/images_controller.rb +6 -0
- data/rails_3_test/app/controllers/admin/misconfigured1_controller.rb +7 -0
- data/rails_3_test/app/controllers/admin/not_migrated_yets_controller.rb +9 -0
- data/rails_3_test/app/controllers/admin/product_categories2_controller.rb +7 -0
- data/rails_3_test/app/controllers/admin/product_categories_controller.rb +5 -0
- data/rails_3_test/app/controllers/admin/television_airings_controller.rb +5 -0
- data/rails_3_test/app/controllers/admin/television_time_slots_controller.rb +5 -0
- data/rails_3_test/app/controllers/admin/users2_controller.rb +10 -0
- data/rails_3_test/app/controllers/admin/users_controller.rb +48 -0
- data/rails_3_test/app/controllers/application_controller.rb +7 -0
- data/rails_3_test/app/controllers/blog_posts_controller.rb +5 -0
- data/rails_3_test/app/helpers/admin/appointments_helper.rb +2 -0
- data/rails_3_test/app/helpers/admin/blog_posts2_helper.rb +27 -0
- data/rails_3_test/app/helpers/admin/blog_posts3_helper.rb +2 -0
- data/rails_3_test/app/helpers/admin/blog_posts4_helper.rb +2 -0
- data/rails_3_test/app/helpers/admin/blog_posts6_helper.rb +13 -0
- data/rails_3_test/app/helpers/admin/blog_posts_custom_new_and_edit_helper.rb +29 -0
- data/rails_3_test/app/helpers/admin/blog_posts_helper.rb +2 -0
- data/rails_3_test/app/helpers/admin/blog_posts_read_only_helper.rb +2 -0
- data/rails_3_test/app/helpers/admin/bookmarks_helper.rb +2 -0
- data/rails_3_test/app/helpers/admin/comments2_helper.rb +2 -0
- data/rails_3_test/app/helpers/admin/comments_helper.rb +2 -0
- data/rails_3_test/app/helpers/admin/images2_helper.rb +8 -0
- data/rails_3_test/app/helpers/admin/images_helper.rb +2 -0
- data/rails_3_test/app/helpers/admin/misconfigured1_helper.rb +2 -0
- data/rails_3_test/app/helpers/admin/not_migrated_yets_helper.rb +2 -0
- data/rails_3_test/app/helpers/admin/product_categories2_helper.rb +2 -0
- data/rails_3_test/app/helpers/admin/product_categories_helper.rb +2 -0
- data/rails_3_test/app/helpers/admin/television_airings_helper.rb +2 -0
- data/rails_3_test/app/helpers/admin/television_time_slots_helper.rb +2 -0
- data/rails_3_test/app/helpers/admin/users2_helper.rb +2 -0
- data/rails_3_test/app/helpers/admin/users_helper.rb +13 -0
- data/rails_3_test/app/helpers/application_helper.rb +2 -0
- data/rails_3_test/app/models/appointment.rb +5 -0
- data/rails_3_test/app/models/blog_post.rb +14 -0
- data/rails_3_test/app/models/blog_post_tag.rb +6 -0
- data/rails_3_test/app/models/bookmark.rb +6 -0
- data/rails_3_test/app/models/comment.rb +4 -0
- data/rails_3_test/app/models/image.rb +3 -0
- data/rails_3_test/app/models/not_migrated_yet.rb +2 -0
- data/rails_3_test/app/models/product.rb +5 -0
- data/rails_3_test/app/models/product_category.rb +9 -0
- data/rails_3_test/app/models/tag.rb +4 -0
- data/rails_3_test/app/models/television_airing.rb +3 -0
- data/rails_3_test/app/models/television_time_slot.rb +11 -0
- data/rails_3_test/app/models/user.rb +11 -0
- data/rails_3_test/app/views/admin/appointments/_subject_input.html.erb +2 -0
- data/rails_3_test/app/views/admin/appointments2/_time_input.html.erb +31 -0
- data/rails_3_test/app/views/admin/blog_posts2/_after_form.html.erb +5 -0
- data/rails_3_test/app/views/admin/blog_posts2/_after_index.html.erb +1 -0
- data/rails_3_test/app/views/admin/blog_posts2/_after_tags_input.html.erb +16 -0
- data/rails_3_test/app/views/admin/blog_posts2/_before_index.html.erb +2 -0
- data/rails_3_test/app/views/admin/blog_posts5/_after_index_header.html.erb +8 -0
- data/rails_3_test/app/views/admin/blog_posts_read_only/_body_for_show.html.erb +1 -0
- data/rails_3_test/app/views/layouts/admin.html.erb +32 -0
- data/rails_3_test/app/views/layouts/application.html.erb +14 -0
- data/rails_3_test/config/application.rb +42 -0
- data/rails_3_test/config/boot.rb +6 -0
- data/rails_3_test/config/database.yml +22 -0
- data/rails_3_test/config/environment.rb +5 -0
- data/rails_3_test/config/environments/development.rb +26 -0
- data/rails_3_test/config/environments/production.rb +49 -0
- data/rails_3_test/config/environments/test.rb +35 -0
- data/rails_3_test/config/initializers/backtrace_silencers.rb +7 -0
- data/rails_3_test/config/initializers/inflections.rb +10 -0
- data/rails_3_test/config/initializers/mime_types.rb +5 -0
- data/rails_3_test/config/initializers/secret_token.rb +7 -0
- data/rails_3_test/config/initializers/session_store.rb +8 -0
- data/rails_3_test/config/locales/en.yml +5 -0
- data/rails_3_test/config/routes.rb +63 -0
- data/rails_3_test/config.ru +4 -0
- data/rails_3_test/db/migrate/20090213215514_create_blog_posts.rb +12 -0
- data/rails_3_test/db/migrate/20090217225542_add_body_to_blog_posts.rb +9 -0
- data/rails_3_test/db/migrate/20090221220917_create_tags.rb +13 -0
- data/rails_3_test/db/migrate/20090221220947_create_blog_post_tags.rb +14 -0
- data/rails_3_test/db/migrate/20090222162204_add_textile_to_blog_posts.rb +9 -0
- data/rails_3_test/db/migrate/20090222163231_add_published_at_to_blog_posts.rb +9 -0
- data/rails_3_test/db/migrate/20090301191722_create_images.rb +16 -0
- data/rails_3_test/db/migrate/20090305165345_create_accounts.rb +14 -0
- data/rails_3_test/db/migrate/20090307225027_rename_accounts_to_users.rb +9 -0
- data/rails_3_test/db/migrate/20090307225750_add_user_id_to_blog_posts.rb +9 -0
- data/rails_3_test/db/migrate/20090309185114_change_blog_posts_textile.rb +9 -0
- data/rails_3_test/db/migrate/20090309193635_create_products.rb +14 -0
- data/rails_3_test/db/migrate/20090309203056_create_comments.rb +15 -0
- data/rails_3_test/db/migrate/20090323005947_create_file_column_images.rb +12 -0
- data/rails_3_test/db/migrate/20090326160049_add_birthday_to_users.rb +9 -0
- data/rails_3_test/db/migrate/20090326223606_add_state_to_users.rb +9 -0
- data/rails_3_test/db/migrate/20090503134004_add_file_column_image_to_products.rb +9 -0
- data/rails_3_test/db/migrate/20090617173651_create_bookmarks.rb +15 -0
- data/rails_3_test/db/migrate/20090624165355_add_tags_string_to_blog_post.rb +9 -0
- data/rails_3_test/db/migrate/20090625144313_add_avatar_fields_to_user.rb +11 -0
- data/rails_3_test/db/migrate/20090629202956_add_merged_into_to_blog_posts.rb +9 -0
- data/rails_3_test/db/migrate/20090701171857_add_force_textile_to_users.rb +9 -0
- data/rails_3_test/db/migrate/20090704163647_add_deleted_at_to_products.rb +9 -0
- data/rails_3_test/db/migrate/20090704173800_add_sale_fields_to_products.rb +13 -0
- data/rails_3_test/db/migrate/20090714024501_create_product_categories.rb +15 -0
- data/rails_3_test/db/migrate/20090819162835_add_admin_level_to_users.rb +9 -0
- data/rails_3_test/db/migrate/20091115134559_add_first_and_last_names_to_users.rb +11 -0
- data/rails_3_test/db/migrate/20091221011256_add_position_to_product_categories.rb +9 -0
- data/rails_3_test/db/migrate/20091222160814_create_appointments.rb +14 -0
- data/rails_3_test/db/migrate/20091227224547_add_user_id_to_appointments.rb +9 -0
- data/rails_3_test/db/migrate/20100214213359_create_television_time_slots.rb +13 -0
- data/rails_3_test/db/migrate/20100214213451_create_television_airings.rb +15 -0
- data/rails_3_test/db/migrate/20110426215702_remove_avatar_fields_from_users.rb +11 -0
- data/rails_3_test/db/seeds.rb +7 -0
- data/rails_3_test/doc/README_FOR_APP +2 -0
- data/rails_3_test/lib/tasks/.gitkeep +0 -0
- data/rails_3_test/public/404.html +26 -0
- data/rails_3_test/public/422.html +26 -0
- data/rails_3_test/public/500.html +26 -0
- data/rails_3_test/public/favicon.ico +0 -0
- data/rails_3_test/public/images/rails.png +0 -0
- data/rails_3_test/public/index.html +239 -0
- data/rails_3_test/public/javascripts/application.js +2 -0
- data/rails_3_test/public/javascripts/jquery-1.4.4.min.js +167 -0
- data/rails_3_test/public/javascripts/rails.js +191 -0
- data/rails_3_test/public/robots.txt +5 -0
- data/rails_3_test/public/stylesheets/.gitkeep +0 -0
- data/rails_3_test/public/stylesheets/admin.css +3 -0
- data/rails_3_test/public/stylesheets/scaffold.css +54 -0
- data/rails_3_test/script/rails +6 -0
- data/rails_3_test/test/data/ruby_throated.jpg +0 -0
- data/rails_3_test/test/data/tweenbot.jpg +0 -0
- data/rails_3_test/test/fixtures/placeholder.txt +0 -0
- data/rails_3_test/test/integration/admin/appointments2_integration_test.rb +79 -0
- data/rails_3_test/test/integration/admin/appointments_integration_test.rb +367 -0
- data/rails_3_test/test/integration/admin/blog_posts2_integration_test.rb +789 -0
- data/rails_3_test/test/integration/admin/blog_posts3_integration_test.rb +418 -0
- data/rails_3_test/test/integration/admin/blog_posts4_integration_test.rb +189 -0
- data/rails_3_test/test/integration/admin/blog_posts5_integration_test.rb +75 -0
- data/rails_3_test/test/integration/admin/blog_posts6_integration_test.rb +39 -0
- data/rails_3_test/test/integration/admin/blog_posts_custom_new_and_edit_integration_test.rb +89 -0
- data/rails_3_test/test/integration/admin/blog_posts_integration_test.rb +784 -0
- data/rails_3_test/test/integration/admin/blog_posts_read_only_integration_test.rb +69 -0
- data/rails_3_test/test/integration/admin/bookmarks_integration_test.rb +445 -0
- data/rails_3_test/test/integration/admin/comments2_integration_test.rb +52 -0
- data/rails_3_test/test/integration/admin/comments_integration_test.rb +50 -0
- data/rails_3_test/test/integration/admin/images2_integration_test.rb +33 -0
- data/rails_3_test/test/integration/admin/images_integration_test.rb +79 -0
- data/rails_3_test/test/integration/admin/misconfigured1_integration_test.rb +21 -0
- data/rails_3_test/test/integration/admin/product_categories2_integration_test.rb +179 -0
- data/rails_3_test/test/integration/admin/product_categories_integration_test.rb +12 -0
- data/rails_3_test/test/integration/admin/television_airings_integration_test.rb +25 -0
- data/rails_3_test/test/integration/admin/users2_integration_test.rb +48 -0
- data/rails_3_test/test/integration/admin/users_integration_test.rb +182 -0
- data/rails_3_test/test/integration/blog_posts_integration_test.rb +10 -0
- data/rails_3_test/test/performance/browsing_test.rb +9 -0
- data/rails_3_test/test/test_helper.rb +98 -0
- data/rails_3_test/vendor/plugins/.gitkeep +0 -0
- data/website/_layouts/api.html +20 -17
- data/website/_layouts/api1.html +42 -0
- data/website/_layouts/default.html +42 -18
- data/website/api/core.markdown +6 -3
- data/website/api/destroy.markdown +4 -2
- data/website/api/form.markdown +6 -5
- data/website/api/idx.markdown +8 -7
- data/website/api/index.markdown +9 -7
- data/website/api/search.markdown +5 -3
- data/website/api/show.markdown +4 -2
- data/website/community.markdown +3 -2
- data/website/css/main.css +83 -17
- data/website/design_principles.markdown +3 -8
- data/website/index.markdown +13 -9
- data/website/js/lightbox.js +2 -2
- data/website/quick_start.markdown +10 -10
- data/website/screenshots.markdown +11 -11
- data/website/tutorial.markdown +23 -14
- data/website/v1/api/core.markdown +108 -0
- data/website/v1/api/destroy.markdown +27 -0
- data/website/v1/api/form.markdown +293 -0
- data/website/v1/api/idx.markdown +288 -0
- data/website/v1/api/index.markdown +149 -0
- data/website/v1/api/search.markdown +110 -0
- data/website/v1/api/show.markdown +24 -0
- data/website/v1/index.markdown +10 -0
- data/website/v1/quick_start.markdown +48 -0
- data/website/v1/tutorial.markdown +60 -0
- metadata +407 -9
data/website/_layouts/api.html
CHANGED
@@ -2,35 +2,38 @@
|
|
2
2
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
3
3
|
<head>
|
4
4
|
<title>admin_assistant: API{% if page.title != '' %}: {{ page.title }}{% endif% %}</title>
|
5
|
-
<link rel="stylesheet" href="
|
5
|
+
<link rel="stylesheet" href="/admin_assistant/css/main.css" type="text/css" media="screen">
|
6
|
+
<script type="text/javascript" src="/admin_assistant/js/prototype.js"></script>
|
7
|
+
<script type="text/javascript" src="/admin_assistant/js/scriptaculous.js?load=effects,builder"></script>
|
8
|
+
<script type="text/javascript" src="/admin_assistant/js/lightbox.js"></script>
|
9
|
+
<link rel="stylesheet" href="/admin_assistant/css/lightbox.css" type="text/css" media="screen" />
|
6
10
|
</head>
|
7
11
|
|
8
12
|
<body>
|
9
13
|
<div id="page_header">
|
10
|
-
<h1><a href="
|
14
|
+
<h1><a href="/admin_assistant/">admin_assistant</a></h1>
|
11
15
|
<div class="nav">
|
12
|
-
<a href="
|
13
|
-
<a href="
|
14
|
-
<a href="
|
15
|
-
<a href="
|
16
|
-
<a href="
|
17
|
-
<a href="
|
18
|
-
<a href="http://
|
19
|
-
<a href="http://github.com/fhwang/admin_assistant">Github page</a>
|
16
|
+
<a href="/admin_assistant/quick_start.html">Quick start</a>
|
17
|
+
<a href="/admin_assistant/tutorial.html">Tutorial</a>
|
18
|
+
<a href="/admin_assistant/screenshots.html">Screenshots</a>
|
19
|
+
<a href="/admin_assistant/api/">API</a>
|
20
|
+
<a href="/admin_assistant/community.html">Community</a>
|
21
|
+
<a href="/admin_assistant/design_principles.html">Design principles</a>
|
22
|
+
<a href="http://github.com/fhwang/admin_assistant">Source</a>
|
20
23
|
</div>
|
21
24
|
</div>
|
22
25
|
<div id="body">
|
23
26
|
<h2>
|
24
|
-
<a href="
|
27
|
+
<a href="/admin_assistant/api/">API</a>
|
25
28
|
{% if page.title != '' %}: {{page.title}}{% endif %}
|
26
29
|
</h2>
|
27
30
|
<div class="subnav">
|
28
|
-
<a href="
|
29
|
-
<a href="
|
30
|
-
<a href="
|
31
|
-
<a href="
|
32
|
-
<a href="
|
33
|
-
<a href="
|
31
|
+
<a href="/admin_assistant/api/core.html">Core</a> |
|
32
|
+
<a href="/admin_assistant/api/destroy.html">Destroy</a> |
|
33
|
+
<a href="/admin_assistant/api/form.html">Form</a> |
|
34
|
+
<a href="/admin_assistant/api/idx.html">Index</a> |
|
35
|
+
<a href="/admin_assistant/api/search.html">Search</a> |
|
36
|
+
<a href="/admin_assistant/api/show.html">Show</a>
|
34
37
|
</div>
|
35
38
|
|
36
39
|
{{ content }}
|
@@ -0,0 +1,42 @@
|
|
1
|
+
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
2
|
+
<html xmlns="http://www.w3.org/1999/xhtml">
|
3
|
+
<head>
|
4
|
+
<title>admin_assistant: API{% if page.title != '' %}: {{ page.title }}{% endif% %}</title>
|
5
|
+
<link rel="stylesheet" href="/admin_assistant/css/main.css" type="text/css" media="screen">
|
6
|
+
<script type="text/javascript" src="/admin_assistant/js/prototype.js"></script>
|
7
|
+
<script type="text/javascript" src="/admin_assistant/js/scriptaculous.js?load=effects,builder"></script>
|
8
|
+
<script type="text/javascript" src="/admin_assistant/js/lightbox.js"></script>
|
9
|
+
<link rel="stylesheet" href="/admin_assistant/css/lightbox.css" type="text/css" media="screen" />
|
10
|
+
</head>
|
11
|
+
|
12
|
+
<body>
|
13
|
+
<div id="page_header">
|
14
|
+
<h1><a href="/admin_assistant/">admin_assistant</a></h1>
|
15
|
+
<div class="nav">
|
16
|
+
<a href="/admin_assistant/quick_start.html">Quick start</a>
|
17
|
+
<a href="/admin_assistant/tutorial.html">Tutorial</a>
|
18
|
+
<a href="/admin_assistant/screenshots.html">Screenshots</a>
|
19
|
+
<a href="/admin_assistant/api/">API</a>
|
20
|
+
<a href="/admin_assistant/community.html">Community</a>
|
21
|
+
<a href="/admin_assistant/design_principles.html">Design principles</a>
|
22
|
+
<a href="http://github.com/fhwang/admin_assistant">Source</a>
|
23
|
+
</div>
|
24
|
+
</div>
|
25
|
+
<div id="body">
|
26
|
+
<h2>
|
27
|
+
<a href="/admin_assistant/v1/api/">API</a>
|
28
|
+
{% if page.title != '' %}: {{page.title}}{% endif %}
|
29
|
+
</h2>
|
30
|
+
<div class="subnav">
|
31
|
+
<a href="/admin_assistant/v1/api/core.html">Core</a> |
|
32
|
+
<a href="/admin_assistant/v1/api/destroy.html">Destroy</a> |
|
33
|
+
<a href="/admin_assistant/v1/api/form.html">Form</a> |
|
34
|
+
<a href="/admin_assistant/v1/api/idx.html">Index</a> |
|
35
|
+
<a href="/admin_assistant/v1/api/search.html">Search</a> |
|
36
|
+
<a href="/admin_assistant/v1/api/show.html">Show</a>
|
37
|
+
</div>
|
38
|
+
|
39
|
+
{{ content }}
|
40
|
+
</div>
|
41
|
+
</body>
|
42
|
+
</html>
|
@@ -2,31 +2,55 @@
|
|
2
2
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
3
3
|
<head>
|
4
4
|
<title>admin_assistant{% if page.title %}: {{ page.title }}{% endif% %}</title>
|
5
|
-
<link rel="stylesheet" href="
|
6
|
-
|
7
|
-
<script type="text/javascript" src="
|
8
|
-
<script type="text/javascript" src="
|
9
|
-
<
|
10
|
-
|
11
|
-
</head>
|
5
|
+
<link rel="stylesheet" href="/admin_assistant/css/main.css" type="text/css" media="screen">
|
6
|
+
<script type="text/javascript" src="/admin_assistant/js/prototype.js"></script>
|
7
|
+
<script type="text/javascript" src="/admin_assistant/js/scriptaculous.js?load=effects,builder"></script>
|
8
|
+
<script type="text/javascript" src="/admin_assistant/js/lightbox.js"></script>
|
9
|
+
<link rel="stylesheet" href="/admin_assistant/css/lightbox.css" type="text/css" media="screen" />
|
10
|
+
</head>
|
12
11
|
|
13
12
|
<body>
|
14
13
|
<div id="page_header">
|
15
|
-
<h1><a href="
|
14
|
+
<h1><a href="/admin_assistant/">admin_assistant</a></h1>
|
16
15
|
<div class="nav">
|
17
|
-
<a href="
|
18
|
-
<a href="
|
19
|
-
<a href="
|
20
|
-
<a href="
|
21
|
-
<a href="
|
22
|
-
<a href="
|
23
|
-
<a href="http://
|
24
|
-
<a href="http://github.com/fhwang/admin_assistant">Github page</a>
|
16
|
+
<a href="/admin_assistant/quick_start.html">Quick start</a>
|
17
|
+
<a href="/admin_assistant/tutorial.html">Tutorial</a>
|
18
|
+
<a href="/admin_assistant/screenshots.html">Screenshots</a>
|
19
|
+
<a href="/admin_assistant/api/">API</a>
|
20
|
+
<a href="/admin_assistant/community.html">Community</a>
|
21
|
+
<a href="/admin_assistant/design_principles.html">Design principles</a>
|
22
|
+
<a href="http://github.com/fhwang/admin_assistant">Source</a>
|
25
23
|
</div>
|
26
24
|
</div>
|
27
25
|
<div id="body">
|
28
|
-
{% if page.
|
29
|
-
|
26
|
+
{% if page.subnav == 'api' %}
|
27
|
+
<h2>
|
28
|
+
<a href="/admin_assistant/api/">API</a>{% if page.subtitle %}: {{page.subtitle}}{% endif %}
|
29
|
+
</h2>
|
30
|
+
<div class="subnav">
|
31
|
+
<a href="/admin_assistant/api/core.html">Core</a> |
|
32
|
+
<a href="/admin_assistant/api/destroy.html">Destroy</a> |
|
33
|
+
<a href="/admin_assistant/api/form.html">Form</a> |
|
34
|
+
<a href="/admin_assistant/api/idx.html">Index</a> |
|
35
|
+
<a href="/admin_assistant/api/search.html">Search</a> |
|
36
|
+
<a href="/admin_assistant/api/show.html">Show</a>
|
37
|
+
</div>
|
38
|
+
{% elsif page.subnav == 'api1' %}
|
39
|
+
<h2>
|
40
|
+
<a href="/admin_assistant/v1/api/">Version 1 API</a>{% if page.subtitle %}: {{page.subtitle}}{% endif %}
|
41
|
+
</h2>
|
42
|
+
<div class="subnav">
|
43
|
+
<a href="/admin_assistant/v1/api/core.html">Core</a> |
|
44
|
+
<a href="/admin_assistant/v1/api/destroy.html">Destroy</a> |
|
45
|
+
<a href="/admin_assistant/v1/api/form.html">Form</a> |
|
46
|
+
<a href="/admin_assistant/v1/api/idx.html">Index</a> |
|
47
|
+
<a href="/admin_assistant/v1/api/search.html">Search</a> |
|
48
|
+
<a href="/admin_assistant/v1/api/show.html">Show</a>
|
49
|
+
</div>
|
50
|
+
{% else %}
|
51
|
+
{% if page.title != '' %}
|
52
|
+
<h2>{{ page.title }}</h2>
|
53
|
+
{% endif %}
|
30
54
|
{% endif %}
|
31
55
|
{{ content }}
|
32
56
|
</div>
|
data/website/api/core.markdown
CHANGED
@@ -1,8 +1,11 @@
|
|
1
1
|
---
|
2
|
-
layout:
|
3
|
-
title:
|
2
|
+
layout: default
|
3
|
+
title: "API: Core"
|
4
|
+
subnav: api
|
5
|
+
subtitle: Core
|
4
6
|
---
|
5
7
|
|
8
|
+
|
6
9
|
### Includes
|
7
10
|
|
8
11
|
admin\_assistant comes with its own Javascript and CSS. Call `admin_assistant_includes` in your admin layout to use them:
|
@@ -22,7 +25,7 @@ Submissions of other themes are welcome.
|
|
22
25
|
|
23
26
|
### Configuring the core builder object
|
24
27
|
|
25
|
-
<a name="builder_actions"
|
28
|
+
<a name="builder_actions"> </a>
|
26
29
|
#### actions
|
27
30
|
|
28
31
|
admin\_assistant uses the old-fashioned seven Rails actions: index, show, new/create, edit/update, and destroy. By default, you get all of them except destroy. To add destroy, you can simply append it to the `actions` method:
|
data/website/api/form.markdown
CHANGED
@@ -1,9 +1,11 @@
|
|
1
1
|
---
|
2
|
-
layout:
|
3
|
-
title:
|
2
|
+
layout: default
|
3
|
+
title: "API: Form"
|
4
|
+
subnav: api
|
5
|
+
subtitle: Form
|
4
6
|
---
|
5
7
|
|
6
|
-
![form](
|
8
|
+
![form](/admin_assistant/img/user-form.png)
|
7
9
|
|
8
10
|
Form configuration affects both creating new records and updating existing records. Most of its customization happens through the form builder object:
|
9
11
|
|
@@ -82,7 +84,7 @@ Sets descriptive text that will appear next to the column's input.
|
|
82
84
|
|
83
85
|
form[:image].image_size = '300x500'
|
84
86
|
|
85
|
-
By default, [Paperclip]
|
87
|
+
By default, [Paperclip] image files are rendered at full-size in the form. To restrict their size, pass a size string to `image_size`.
|
86
88
|
|
87
89
|
#### input
|
88
90
|
|
@@ -286,6 +288,5 @@ If this partial is present, it will be rendered after the default input for the
|
|
286
288
|
If this partial is present in the controller's views directory, it will be rendered after the normal form.
|
287
289
|
|
288
290
|
|
289
|
-
[FileColumn]: http://www.kanthak.net/opensource/file_column/
|
290
291
|
[Paperclip]: http://thoughtbot.com/projects/paperclip
|
291
292
|
|
data/website/api/idx.markdown
CHANGED
@@ -1,6 +1,8 @@
|
|
1
1
|
---
|
2
|
-
layout:
|
3
|
-
title:
|
2
|
+
layout: default
|
3
|
+
title: "API: Index"
|
4
|
+
subnav: api
|
5
|
+
subtitle: Index
|
4
6
|
---
|
5
7
|
|
6
8
|
![index](../img/blog_posts-index.png)
|
@@ -77,7 +79,7 @@ For customization the text at the top of the page; takes a block with params as
|
|
77
79
|
|
78
80
|
Accepts one or more association names to be eagerly loaded by ActiveRecord.
|
79
81
|
|
80
|
-
<a name="builder_right_column_links"
|
82
|
+
<a name="builder_right_column_links"> </a>
|
81
83
|
#### right\_column\_links
|
82
84
|
|
83
85
|
By default, there are two links on the right-hand side of the row for each model: "Edit" and "Show". You can add new ones by appending to `right_column_links`:
|
@@ -98,7 +100,7 @@ See also the helper method [extra\_right\_column\_links\_for\_index](#helper_ext
|
|
98
100
|
|
99
101
|
index.search :id, :title
|
100
102
|
|
101
|
-
Shortcut to Search [`columns`](/api/search.html#builder_columns) .
|
103
|
+
Shortcut to Search [`columns`](/admin_assistant/api/search.html#builder_columns) .
|
102
104
|
|
103
105
|
#### sort\_by
|
104
106
|
|
@@ -134,7 +136,7 @@ By default, all boolean fields displayed in the index can be toggled with an Aja
|
|
134
136
|
|
135
137
|
index[:image].image_size = '300x500'
|
136
138
|
|
137
|
-
By default, [Paperclip]
|
139
|
+
By default, [Paperclip] image files are rendered at full-size in the index. To restrict their size, pass a size string to `image_size`.
|
138
140
|
|
139
141
|
|
140
142
|
#### link\_to\_args
|
@@ -196,7 +198,7 @@ Can also be set via `index.conditions`; see `conditions` above.
|
|
196
198
|
|
197
199
|
If this method exists on the helper, it will be used to render the HTML shown in each row for the column in question. It takes the model as its only argument.
|
198
200
|
|
199
|
-
<a name="helper_extra_right_column_links_for_index"
|
201
|
+
<a name="helper_extra_right_column_links_for_index"> </a>
|
200
202
|
#### extra\_right\_column\_links\_for\_index
|
201
203
|
|
202
204
|
By default, there are two links on the right-hand side of the row for each model: "Edit" and "Show". You can add new ones by returning them from `extra_right_column_links_for_index`:
|
@@ -281,6 +283,5 @@ If this partial is present, it will be rendered before the entire index HTML.
|
|
281
283
|
|
282
284
|
|
283
285
|
|
284
|
-
[FileColumn]: http://www.kanthak.net/opensource/file_column/
|
285
286
|
[Paperclip]: http://thoughtbot.com/projects/paperclip
|
286
287
|
|
data/website/api/index.markdown
CHANGED
@@ -1,17 +1,19 @@
|
|
1
1
|
---
|
2
|
-
layout:
|
2
|
+
layout: default
|
3
|
+
title: API
|
4
|
+
subnav: api
|
3
5
|
---
|
4
6
|
|
5
7
|
### Reference sections
|
6
8
|
|
7
9
|
The API reference is broken down into a few sections:
|
8
10
|
|
9
|
-
* [Core](
|
10
|
-
* [Destroy](
|
11
|
-
* [Form](
|
12
|
-
* [Index](
|
13
|
-
* [Search](
|
14
|
-
* [Show](
|
11
|
+
* [Core](/admin_assistant/api/core.html): Settings that apply to an admin controller in general.
|
12
|
+
* [Destroy](/admin_assistant/api/destroy.html): Settings that apply to destroying records. Note that `destroy` is turned off by default. To turn it on, use the core [actions](/admin_assistant/api/core.html#builder_actions) method.
|
13
|
+
* [Form](/admin_assistant/api/form.html): Settings that apply to creating or updating records.
|
14
|
+
* [Index](/admin_assistant/api/idx.html): Settings that apply to the index view, which you use to view records, paginate, and sort.
|
15
|
+
* [Search](/admin_assistant/api/search.html): Settings that apply to how searches work.
|
16
|
+
* [Show](/admin_assistant/api/show.html): Settings that apply to how the show view.
|
15
17
|
|
16
18
|
|
17
19
|
### Configuration overview
|
data/website/api/search.markdown
CHANGED
@@ -1,6 +1,8 @@
|
|
1
1
|
---
|
2
|
-
layout:
|
3
|
-
title:
|
2
|
+
layout: default
|
3
|
+
title: "API: Search"
|
4
|
+
subnav: api
|
5
|
+
subtitle: Search
|
4
6
|
---
|
5
7
|
|
6
8
|
![index](../img/blog_posts-search.png)
|
@@ -32,7 +34,7 @@ You can chain calls to get to the search builder more quickly:
|
|
32
34
|
### Search config options
|
33
35
|
|
34
36
|
#### columns
|
35
|
-
<a name="builder_columns"
|
37
|
+
<a name="builder_columns"> </a>
|
36
38
|
|
37
39
|
search.columns :title, :user
|
38
40
|
|
data/website/api/show.markdown
CHANGED
data/website/community.markdown
CHANGED
@@ -7,7 +7,7 @@ title: Community
|
|
7
7
|
|
8
8
|
We have a mailing list over at [Google Groups](http://groups.google.com/group/admin_assistant). If you have a question, please consider asking it there instead of a direct email, in the hopes that the next person who has the same question might find the answer by just Googling it.
|
9
9
|
|
10
|
-
<a name="whos_using"
|
10
|
+
<a name="whos_using"> </a>
|
11
11
|
### Who's using admin\_assistant?
|
12
12
|
|
13
13
|
admin\_assistant is being used on the following sites:
|
@@ -15,9 +15,10 @@ admin\_assistant is being used on the following sites:
|
|
15
15
|
* [boundlessny.com](http://www.boundlessny.com/) by [Michael Celona][mcelona]
|
16
16
|
* [casahelga.com](http://casahelga.com) by [Alex Farrill][afarrill]
|
17
17
|
* [fhwang.net](http://fhwang.net) by [Francis Hwang][fhwang]
|
18
|
+
* [Profitably](http://www.profitably.com/)
|
18
19
|
* [sling.com](http://www.sling.com) by [Diversion Media](http://www.diversionmedia.com/)
|
19
20
|
* [stockblotter.com](http://stockblotter.com) by [Alex Farrill][afarrill]
|
20
|
-
* [
|
21
|
+
* [Weplay](http://www.weplay.com)
|
21
22
|
|
22
23
|
If you're also using admin\_assistant, and would like to be listed here, please get in touch with us on the mailing list.
|
23
24
|
|
data/website/css/main.css
CHANGED
@@ -1,6 +1,17 @@
|
|
1
|
+
/*
|
2
|
+
Retro Package from Kuler:
|
3
|
+
#f2e6ce
|
4
|
+
#8ab29f
|
5
|
+
#606362
|
6
|
+
#593325
|
7
|
+
#1d1d1f
|
8
|
+
*/
|
9
|
+
|
1
10
|
body {
|
2
11
|
margin: 0;
|
3
|
-
|
12
|
+
font-family: "Georgia", "Times New Roman", serif;
|
13
|
+
background: #F2E6CE;
|
14
|
+
color: #1d1d1f;
|
4
15
|
}
|
5
16
|
|
6
17
|
h1 {
|
@@ -9,13 +20,8 @@ h1 {
|
|
9
20
|
padding: 10px;
|
10
21
|
}
|
11
22
|
|
12
|
-
h1
|
13
|
-
|
14
|
-
color: black;
|
15
|
-
}
|
16
|
-
|
17
|
-
h1 a:hover {
|
18
|
-
background: #ff3;
|
23
|
+
h1, h2, h3, h4, h5 {
|
24
|
+
font-family: Courier, "Courier New", monospace
|
19
25
|
}
|
20
26
|
|
21
27
|
code {
|
@@ -29,20 +35,15 @@ pre {
|
|
29
35
|
border: #ff6 1px solid;
|
30
36
|
padding: 5px;
|
31
37
|
font-size: large;
|
38
|
+
overflow: auto;
|
32
39
|
}
|
33
40
|
|
34
41
|
pre code {
|
35
42
|
border: none;
|
36
43
|
}
|
37
44
|
|
38
|
-
#body {
|
39
|
-
width: 900px;
|
40
|
-
margin: auto;
|
41
|
-
padding-bottom: 25px;
|
42
|
-
}
|
43
|
-
|
44
45
|
#page_header {
|
45
|
-
background: #
|
46
|
+
background: #1D1D1F;
|
46
47
|
}
|
47
48
|
|
48
49
|
#page_header .nav {
|
@@ -51,13 +52,44 @@ pre code {
|
|
51
52
|
padding-bottom: 10px;
|
52
53
|
}
|
53
54
|
|
55
|
+
#page_header h1 {
|
56
|
+
font-weight: normal;
|
57
|
+
}
|
58
|
+
|
59
|
+
#page_header h1 a, #page_header h1 a:visited {
|
60
|
+
text-decoration: none;
|
61
|
+
background: #1d1d1f;
|
62
|
+
color: #F2E6CE;
|
63
|
+
padding: 15px;
|
64
|
+
margin-left: -15px;
|
65
|
+
}
|
66
|
+
|
67
|
+
#page_header h1 a:hover {
|
68
|
+
background: #606362;
|
69
|
+
color: #f2e6ce;
|
70
|
+
}
|
71
|
+
|
54
72
|
#page_header .nav a, #page_header .nav a:visited {
|
55
73
|
text-decoration: none;
|
56
|
-
color:
|
74
|
+
color: #f2e6ce;
|
75
|
+
margin-right: 5px;
|
76
|
+
background: #3d3d3f;
|
77
|
+
padding: 5px 20px 5px 5px;
|
78
|
+
font-family: Courier, "Courier New", monospace
|
57
79
|
}
|
58
80
|
|
59
81
|
#page_header .nav a:hover {
|
60
|
-
background: #
|
82
|
+
background: #606362;
|
83
|
+
color: black
|
84
|
+
}
|
85
|
+
|
86
|
+
|
87
|
+
|
88
|
+
#body {
|
89
|
+
width: 900px;
|
90
|
+
margin: auto;
|
91
|
+
padding-bottom: 25px;
|
92
|
+
line-height: 175%;
|
61
93
|
}
|
62
94
|
|
63
95
|
.subnav {
|
@@ -68,3 +100,37 @@ pre code {
|
|
68
100
|
.thumb {
|
69
101
|
margin-right: 10px;
|
70
102
|
}
|
103
|
+
|
104
|
+
#body a, a:visited {
|
105
|
+
background: #d2c6ae;
|
106
|
+
color: #1d1d1f;
|
107
|
+
text-decoration: none;
|
108
|
+
padding: 2px;
|
109
|
+
margin: -2px;
|
110
|
+
}
|
111
|
+
|
112
|
+
#body a:hover {
|
113
|
+
color: #F2E6CE;
|
114
|
+
background: #606362;
|
115
|
+
}
|
116
|
+
|
117
|
+
#body .note a, a:visited {
|
118
|
+
color: #f2e6ce;
|
119
|
+
background: #8ab29f;
|
120
|
+
}
|
121
|
+
|
122
|
+
#body .note a:hover {
|
123
|
+
color: #606362;
|
124
|
+
background: #f2e6ce;
|
125
|
+
}
|
126
|
+
|
127
|
+
#body li {
|
128
|
+
margin-left: -20px;
|
129
|
+
}
|
130
|
+
|
131
|
+
.note {
|
132
|
+
background: #8ab29f;
|
133
|
+
padding: 10px;
|
134
|
+
border: 1px solid #593325;
|
135
|
+
margin: 0 100px;
|
136
|
+
}
|
@@ -7,16 +7,11 @@ admin\_assistant is built with a few design principles in mind:
|
|
7
7
|
|
8
8
|
### Relentless full-stack testing
|
9
9
|
|
10
|
-
admin\_assistant is tested against a complete, self-contained Rails app
|
10
|
+
admin\_assistant is tested against a complete, self-contained Rails app. This app serves as the reference implementation of admin\_assistant, so new features can be added with minimal worry of breaking old features.
|
11
11
|
|
12
12
|
In addition, this test suite can be run against multiple versions of Rails, making multi-version support possible.
|
13
13
|
|
14
14
|
|
15
|
-
### Wide support of Rails versions
|
16
|
-
|
17
|
-
admin\_assistant currently supports six versions of Rails: 2.1.0, 2.1.2, 2.2.2, 2.3.2, 2.3.3, and 2.3.4. We offer this support by writing a test suite that can be run with different versions of Rails. After all, it doesn't make any sense to release a plugin intended for other programmers' convenience, and then tell them to drop everything and spend the next two weeks upgrading their whole app.
|
18
|
-
|
19
|
-
|
20
15
|
### Deeply customizable API
|
21
16
|
|
22
17
|
It's great to be able to do the quick boilerplate CRUD operations, but it doesn't take long before you need a lot of custom functionality. So, while admin\_assistant can be set up in a few lines, its real strength is all the hooks it offers you:
|
@@ -30,7 +25,7 @@ It's great to be able to do the quick boilerplate CRUD operations, but it doesn'
|
|
30
25
|
* Custom options for date selects, datetime selects, textarea tags, etc. can be set up on a per-column level and passed through to the underlying Rails method.
|
31
26
|
* Custom redirecting after successful saves
|
32
27
|
|
33
|
-
If you're copying and pasting
|
28
|
+
If you're copying and pasting out of the admin\_assistant source, that's a design flaw.
|
34
29
|
|
35
30
|
|
36
31
|
### Minimally invasive
|
@@ -46,5 +41,5 @@ In addition, admin\_assistant doesn't override or `alias_method_chain` anything
|
|
46
41
|
|
47
42
|
admin\_assistant is opinionated in its own way, much of which has to do with picking the most safe default behavior possible.
|
48
43
|
|
49
|
-
* The `destroy` action is turned off by default, since the
|
44
|
+
* The `destroy` action is turned off by default, since the deletion of production data should never be enabled without a careful consideration of what that means for the overall system.
|
50
45
|
* Date selects and datetime selects in forms are blank by default, not the current date or time. This helps avoid a situation on models with many fields where dates and datetimes can be set by accident, changing the site's behavior in unexpected ways. The current date or time is usually not a useful default, anyway.
|
data/website/index.markdown
CHANGED
@@ -4,31 +4,35 @@ layout: default
|
|
4
4
|
|
5
5
|
admin\_assistant is a Rails plugin that automates a lot of features typically needed in admin controllers. It is written and maintained by [Francis Hwang][fhwang].
|
6
6
|
|
7
|
-
admin\_assistant is in beta, meaning that it is stable, and being used in production sites, but there may be small API changes in the future.
|
8
|
-
|
9
|
-
It currently supports Rails 2.1.0, 2.1.2, 2.2.2, 2.3.2, 2.3.3, and 2.3.4. There are no plans to support Rails 2.0 or earlier.
|
10
|
-
|
11
|
-
|
12
7
|
## Features
|
13
8
|
|
14
9
|
* Built-in model creation, updating, and deletion.
|
15
10
|
* Live querying of models, which allows incremental development of controllers without the maintenance problems of generated code.
|
16
|
-
* Paginated indexes with built field-ordering.
|
11
|
+
* Paginated indexes with built-in field-ordering.
|
17
12
|
* Highly customizable search that allows customization of individual fields, numerical comparators, and boolean operators.
|
18
13
|
* Built-in Ajax autocompleters for handling belongs-to associations.
|
19
14
|
* Built-in widgets for handling polymorphic belongs-to associations.
|
20
|
-
* Built-in support for images with
|
15
|
+
* Built-in support for images with [Paperclip](http://thoughtbot.com/projects/paperclip).
|
21
16
|
* Heavily hookable interface allows customization of columns, search parameters, form inputs, parameter handling, and model creation.
|
22
17
|
|
23
18
|
|
19
|
+
## Versions
|
20
|
+
|
21
|
+
admin_assistant 2.x is only compatible with Rails 3.
|
22
|
+
|
23
|
+
If you'd like to get admin\_assistant for Rails 2.1.x through Rails 2.3.x, you can install the most recent version of admin\_assistant 1.x. Note that admin\_assistant 1 is deprecated, and that will only see bugfixes from now on. [Click here](/admin_assistant/v1/) for admin\_assistant 1.x documentation.
|
24
|
+
|
25
|
+
The full list of admin\_assistant versions can be seen [here](https://rubygems.org/gems/admin_assistant/versions).
|
26
|
+
|
27
|
+
|
24
28
|
## Still not convinced?
|
25
29
|
|
26
|
-
Check out our [screenshots](
|
30
|
+
Check out our [screenshots](/admin_assistant/screenshots.html), [who's using admin\_assistant](/admin_assistant/community.html#whos_using), or our [design principles](/admin_assistant/design_principles.html).
|
27
31
|
|
28
32
|
|
29
33
|
## Ready to give it a try?
|
30
34
|
|
31
|
-
[Getting started](
|
35
|
+
[Getting started](/admin_assistant/getting_started.html) is easy.
|
32
36
|
|
33
37
|
[afarrill]: http://github.com/alexfarrill
|
34
38
|
[fhwang]: http://fhwang.net/
|
data/website/js/lightbox.js
CHANGED
@@ -46,8 +46,8 @@
|
|
46
46
|
// Configurationl
|
47
47
|
//
|
48
48
|
LightboxOptions = Object.extend({
|
49
|
-
fileLoadingImage: '
|
50
|
-
fileBottomNavCloseImage: '
|
49
|
+
fileLoadingImage: '/admin_assistant/img/lightbox/loading.gif',
|
50
|
+
fileBottomNavCloseImage: '/admin_assistant/img/lightbox/closelabel.gif',
|
51
51
|
|
52
52
|
overlayOpacity: 0.8, // controls transparency of shadow overlay
|
53
53
|
|