admin_assistant 1.0.0 → 1.0.1
Sign up to get free protection for your applications and to get access to all the features.
- data/.gitignore +16 -0
- data/Rakefile +34 -6
- data/VERSION +1 -0
- data/admin_assistant.gemspec +440 -0
- data/doc/img/blog_posts-index.png +0 -0
- data/install.rb +25 -4
- data/lib/admin_assistant/active_record_column.rb +133 -45
- data/lib/admin_assistant/association_target.rb +16 -3
- data/lib/admin_assistant/belongs_to_column.rb +18 -10
- data/lib/admin_assistant/builder.rb +67 -30
- data/lib/admin_assistant/column.rb +153 -71
- data/lib/admin_assistant/date_time_range_end_point_selector.rb +340 -0
- data/lib/admin_assistant/default_search_column.rb +3 -7
- data/lib/admin_assistant/form_view.rb +114 -10
- data/lib/admin_assistant/has_many_column.rb +56 -0
- data/lib/admin_assistant/index.rb +220 -83
- data/lib/admin_assistant/polymorphic_belongs_to_column.rb +1 -1
- data/lib/admin_assistant/request/base.rb +196 -67
- data/lib/admin_assistant/request/create.rb +55 -7
- data/lib/admin_assistant/request/edit.rb +1 -2
- data/lib/admin_assistant/request/index.rb +16 -9
- data/lib/admin_assistant/request/new.rb +19 -7
- data/lib/admin_assistant/request/update.rb +28 -13
- data/lib/admin_assistant/search.rb +17 -2
- data/lib/admin_assistant/virtual_column.rb +15 -7
- data/lib/admin_assistant.rb +101 -81
- data/lib/javascripts/admin_assistant.js +1 -1
- data/lib/stylesheets/activescaffold.css +6 -1
- data/lib/stylesheets/default.css +17 -0
- data/lib/views/form.html.erb +7 -3
- data/lib/views/index.html.erb +13 -8
- data/lib/views/multi_form.html.erb +71 -0
- data/lib/views/show.html.erb +4 -4
- data/test_rails_app/README +256 -0
- data/test_rails_app/Rakefile +13 -0
- data/test_rails_app/app/controllers/admin/appointments2_controller.rb +15 -0
- data/test_rails_app/app/controllers/admin/appointments_controller.rb +11 -0
- data/test_rails_app/app/controllers/admin/blog_posts2_controller.rb +138 -0
- data/test_rails_app/app/controllers/admin/blog_posts3_controller.rb +76 -0
- data/test_rails_app/app/controllers/admin/blog_posts4_controller.rb +21 -0
- data/test_rails_app/app/controllers/admin/blog_posts5_controller.rb +27 -0
- data/test_rails_app/app/controllers/admin/blog_posts6_controller.rb +10 -0
- data/test_rails_app/app/controllers/admin/blog_posts_controller.rb +8 -0
- data/test_rails_app/app/controllers/admin/blog_posts_custom_new_and_edit_controller.rb +15 -0
- data/test_rails_app/app/controllers/admin/blog_posts_read_only_controller.rb +19 -0
- data/test_rails_app/app/controllers/admin/bookmarks_controller.rb +11 -0
- data/test_rails_app/app/controllers/admin/comments2_controller.rb +14 -0
- data/test_rails_app/app/controllers/admin/comments_controller.rb +12 -0
- data/test_rails_app/app/controllers/admin/file_column_images2_controller.rb +10 -0
- data/test_rails_app/app/controllers/admin/file_column_images_controller.rb +6 -0
- data/test_rails_app/app/controllers/admin/images2_controller.rb +11 -0
- data/test_rails_app/app/controllers/admin/images_controller.rb +6 -0
- data/test_rails_app/app/controllers/admin/misconfigured1_controller.rb +7 -0
- data/test_rails_app/app/controllers/admin/not_migrated_yets_controller.rb +9 -0
- data/test_rails_app/app/controllers/admin/product_categories2_controller.rb +7 -0
- data/test_rails_app/app/controllers/admin/product_categories_controller.rb +5 -0
- data/test_rails_app/app/controllers/admin/products2_controller.rb +15 -0
- data/test_rails_app/app/controllers/admin/products_controller.rb +31 -0
- data/test_rails_app/app/controllers/admin/television_airings_controller.rb +5 -0
- data/test_rails_app/app/controllers/admin/television_time_slots_controller.rb +5 -0
- data/test_rails_app/app/controllers/admin/users2_controller.rb +10 -0
- data/test_rails_app/app/controllers/admin/users_controller.rb +63 -0
- data/test_rails_app/app/controllers/application.rb +16 -0
- data/test_rails_app/app/controllers/application_controller.rb +16 -0
- data/test_rails_app/app/controllers/blog_posts_controller.rb +5 -0
- data/test_rails_app/app/helpers/admin/appointments2_helper.rb +2 -0
- data/test_rails_app/app/helpers/admin/appointments_helper.rb +2 -0
- data/test_rails_app/app/helpers/admin/blog_posts2_helper.rb +27 -0
- data/test_rails_app/app/helpers/admin/blog_posts3_helper.rb +2 -0
- data/test_rails_app/app/helpers/admin/blog_posts4_helper.rb +2 -0
- data/test_rails_app/app/helpers/admin/blog_posts6_helper.rb +16 -0
- data/test_rails_app/app/helpers/admin/blog_posts_custom_new_and_edit_helper.rb +29 -0
- data/test_rails_app/app/helpers/admin/blog_posts_helper.rb +2 -0
- data/test_rails_app/app/helpers/admin/blog_posts_read_only_helper.rb +2 -0
- data/test_rails_app/app/helpers/admin/bookmarks_helper.rb +2 -0
- data/test_rails_app/app/helpers/admin/comments2_helper.rb +2 -0
- data/test_rails_app/app/helpers/admin/comments_helper.rb +2 -0
- data/test_rails_app/app/helpers/admin/file_column_images2_helper.rb +2 -0
- data/test_rails_app/app/helpers/admin/file_column_images_helper.rb +2 -0
- data/test_rails_app/app/helpers/admin/images2_helper.rb +8 -0
- data/test_rails_app/app/helpers/admin/images_helper.rb +2 -0
- data/test_rails_app/app/helpers/admin/misconfigured1_helper.rb +2 -0
- data/test_rails_app/app/helpers/admin/not_migrated_yets_helper.rb +2 -0
- data/test_rails_app/app/helpers/admin/product_categories2_helper.rb +2 -0
- data/test_rails_app/app/helpers/admin/product_categories_helper.rb +2 -0
- data/test_rails_app/app/helpers/admin/products2_helper.rb +3 -0
- data/test_rails_app/app/helpers/admin/products_helper.rb +6 -0
- data/test_rails_app/app/helpers/admin/television_airings_helper.rb +2 -0
- data/test_rails_app/app/helpers/admin/television_time_slots_helper.rb +2 -0
- data/test_rails_app/app/helpers/admin/users2_helper.rb +2 -0
- data/test_rails_app/app/helpers/admin/users_helper.rb +25 -0
- data/test_rails_app/app/helpers/application_helper.rb +3 -0
- data/test_rails_app/app/helpers/blog_posts_helper.rb +2 -0
- data/test_rails_app/app/models/appointment.rb +5 -0
- data/test_rails_app/app/models/blog_post.rb +14 -0
- data/test_rails_app/app/models/blog_post_tag.rb +6 -0
- data/test_rails_app/app/models/bookmark.rb +6 -0
- data/test_rails_app/app/models/comment.rb +4 -0
- data/test_rails_app/app/models/file_column_image.rb +3 -0
- data/test_rails_app/app/models/image.rb +3 -0
- data/test_rails_app/app/models/not_migrated_yet.rb +2 -0
- data/test_rails_app/app/models/product.rb +7 -0
- data/test_rails_app/app/models/product_category.rb +9 -0
- data/test_rails_app/app/models/tag.rb +4 -0
- data/test_rails_app/app/models/television_airing.rb +3 -0
- data/test_rails_app/app/models/television_time_slot.rb +11 -0
- data/test_rails_app/app/models/user.rb +14 -0
- data/test_rails_app/app/views/admin/appointments/_subject_input.html.erb +2 -0
- data/test_rails_app/app/views/admin/appointments2/_time_input.html.erb +31 -0
- data/test_rails_app/app/views/admin/blog_posts2/_after_form.html.erb +5 -0
- data/test_rails_app/app/views/admin/blog_posts2/_after_index.html.erb +1 -0
- data/test_rails_app/app/views/admin/blog_posts2/_after_tags_input.html.erb +16 -0
- data/test_rails_app/app/views/admin/blog_posts2/_before_index.html.erb +2 -0
- data/test_rails_app/app/views/admin/blog_posts5/_after_index_header.html.erb +8 -0
- data/test_rails_app/app/views/admin/blog_posts_read_only/_body_for_show.html.erb +1 -0
- data/test_rails_app/app/views/admin/products/_name_input.html.erb +2 -0
- data/test_rails_app/app/views/admin/products/_percent_off_input.html.erb +2 -0
- data/test_rails_app/app/views/admin/products/_price_input.html.erb +10 -0
- data/test_rails_app/app/views/blog_posts/show.html.erb +13 -0
- data/test_rails_app/app/views/layouts/admin.html.erb +31 -0
- data/test_rails_app/config/boot.rb +109 -0
- data/test_rails_app/config/database.yml +28 -0
- data/test_rails_app/config/environment.rb +78 -0
- data/test_rails_app/config/environments/development.rb +17 -0
- data/test_rails_app/config/environments/production.rb +24 -0
- data/test_rails_app/config/environments/test.rb +24 -0
- data/test_rails_app/config/initializers/inflections.rb +10 -0
- data/test_rails_app/config/initializers/mime_types.rb +5 -0
- data/test_rails_app/config/initializers/new_rails_defaults.rb +17 -0
- data/test_rails_app/config/locales/en.yml +5 -0
- data/test_rails_app/config/routes.rb +43 -0
- data/test_rails_app/db/migrate/20090213215514_create_blog_posts.rb +12 -0
- data/test_rails_app/db/migrate/20090217225542_add_body_to_blog_posts.rb +9 -0
- data/test_rails_app/db/migrate/20090221220917_create_tags.rb +13 -0
- data/test_rails_app/db/migrate/20090221220947_create_blog_post_tags.rb +14 -0
- data/test_rails_app/db/migrate/20090222162204_add_textile_to_blog_posts.rb +9 -0
- data/test_rails_app/db/migrate/20090222163231_add_published_at_to_blog_posts.rb +9 -0
- data/test_rails_app/db/migrate/20090301191722_create_images.rb +16 -0
- data/test_rails_app/db/migrate/20090305165345_create_accounts.rb +14 -0
- data/test_rails_app/db/migrate/20090307225027_rename_accounts_to_users.rb +9 -0
- data/test_rails_app/db/migrate/20090307225750_add_user_id_to_blog_posts.rb +9 -0
- data/test_rails_app/db/migrate/20090309185114_change_blog_posts_textile.rb +9 -0
- data/test_rails_app/db/migrate/20090309193635_create_products.rb +14 -0
- data/test_rails_app/db/migrate/20090309203056_create_comments.rb +15 -0
- data/test_rails_app/db/migrate/20090323005947_create_file_column_images.rb +12 -0
- data/test_rails_app/db/migrate/20090326160049_add_birthday_to_users.rb +9 -0
- data/test_rails_app/db/migrate/20090326223606_add_state_to_users.rb +9 -0
- data/test_rails_app/db/migrate/20090503134004_add_file_column_image_to_products.rb +9 -0
- data/test_rails_app/db/migrate/20090617173651_create_bookmarks.rb +15 -0
- data/test_rails_app/db/migrate/20090624165355_add_tags_string_to_blog_post.rb +9 -0
- data/test_rails_app/db/migrate/20090625144313_add_avatar_fields_to_user.rb +11 -0
- data/test_rails_app/db/migrate/20090629202956_add_merged_into_to_blog_posts.rb +9 -0
- data/test_rails_app/db/migrate/20090701171857_add_force_textile_to_users.rb +9 -0
- data/test_rails_app/db/migrate/20090704163647_add_deleted_at_to_products.rb +9 -0
- data/test_rails_app/db/migrate/20090704173800_add_sale_fields_to_products.rb +13 -0
- data/test_rails_app/db/migrate/20090714024501_create_product_categories.rb +15 -0
- data/test_rails_app/db/migrate/20090819162835_add_admin_level_to_users.rb +9 -0
- data/test_rails_app/db/migrate/20091115134559_add_first_and_last_names_to_users.rb +11 -0
- data/test_rails_app/db/migrate/20091221011256_add_position_to_product_categories.rb +9 -0
- data/test_rails_app/db/migrate/20091222160814_create_appointments.rb +14 -0
- data/test_rails_app/db/migrate/20091227224547_add_user_id_to_appointments.rb +9 -0
- data/test_rails_app/db/migrate/20100214213359_create_television_time_slots.rb +13 -0
- data/test_rails_app/db/migrate/20100214213451_create_television_airings.rb +15 -0
- data/test_rails_app/doc/README_FOR_APP +5 -0
- data/test_rails_app/lib/tasks/rspec.rake +163 -0
- data/test_rails_app/public/404.html +30 -0
- data/test_rails_app/public/422.html +30 -0
- data/test_rails_app/public/500.html +33 -0
- data/test_rails_app/public/dispatch.cgi +10 -0
- data/test_rails_app/public/dispatch.fcgi +24 -0
- data/test_rails_app/public/dispatch.rb +10 -0
- data/test_rails_app/public/favicon.ico +0 -0
- data/test_rails_app/public/images/rails.png +0 -0
- data/test_rails_app/public/index.html +274 -0
- data/test_rails_app/public/javascripts/application.js +2 -0
- data/test_rails_app/public/javascripts/controls.js +963 -0
- data/test_rails_app/public/javascripts/dragdrop.js +973 -0
- data/test_rails_app/public/javascripts/effects.js +1128 -0
- data/test_rails_app/public/javascripts/prototype.js +4320 -0
- data/test_rails_app/public/robots.txt +5 -0
- data/test_rails_app/public/stylesheets/admin.css +3 -0
- data/test_rails_app/public/stylesheets/scaffold.css +54 -0
- data/test_rails_app/script/about +4 -0
- data/test_rails_app/script/autospec +5 -0
- data/test_rails_app/script/console +3 -0
- data/test_rails_app/script/dbconsole +3 -0
- data/test_rails_app/script/destroy +3 -0
- data/test_rails_app/script/generate +3 -0
- data/test_rails_app/script/performance/benchmarker +3 -0
- data/test_rails_app/script/performance/profiler +3 -0
- data/test_rails_app/script/performance/request +3 -0
- data/test_rails_app/script/plugin +3 -0
- data/test_rails_app/script/populate_tables.rb +49 -0
- data/test_rails_app/script/process/inspector +3 -0
- data/test_rails_app/script/process/reaper +3 -0
- data/test_rails_app/script/process/spawner +3 -0
- data/test_rails_app/script/runner +3 -0
- data/test_rails_app/script/server +3 -0
- data/test_rails_app/script/spec +5 -0
- data/test_rails_app/script/spec_server +125 -0
- data/test_rails_app/spec/controllers/admin/appointments2_controller_spec.rb +88 -0
- data/test_rails_app/spec/controllers/admin/appointments_controller_spec.rb +419 -0
- data/test_rails_app/spec/controllers/admin/blog_posts2_controller_spec.rb +1021 -0
- data/test_rails_app/spec/controllers/admin/blog_posts3_controller_spec.rb +532 -0
- data/test_rails_app/spec/controllers/admin/blog_posts4_controller_spec.rb +231 -0
- data/test_rails_app/spec/controllers/admin/blog_posts5_controller_spec.rb +77 -0
- data/test_rails_app/spec/controllers/admin/blog_posts6_controller_spec.rb +49 -0
- data/test_rails_app/spec/controllers/admin/blog_posts_controller_spec.rb +987 -0
- data/test_rails_app/spec/controllers/admin/blog_posts_custom_new_and_edit_controller_spec.rb +99 -0
- data/test_rails_app/spec/controllers/admin/blog_posts_read_only_controller_spec.rb +94 -0
- data/test_rails_app/spec/controllers/admin/bookmarks_controller_spec.rb +505 -0
- data/test_rails_app/spec/controllers/admin/comments2_controller_spec.rb +70 -0
- data/test_rails_app/spec/controllers/admin/comments_controller_spec.rb +82 -0
- data/test_rails_app/spec/controllers/admin/file_column_images2_controller_spec.rb +25 -0
- data/test_rails_app/spec/controllers/admin/file_column_images_controller_spec.rb +82 -0
- data/test_rails_app/spec/controllers/admin/images2_controller_spec.rb +44 -0
- data/test_rails_app/spec/controllers/admin/images_controller_spec.rb +97 -0
- data/test_rails_app/spec/controllers/admin/misconfigured1_controller_spec.rb +21 -0
- data/test_rails_app/spec/controllers/admin/not_migrated_yets_controller_spec.rb +10 -0
- data/test_rails_app/spec/controllers/admin/product_categories2_controller_spec.rb +215 -0
- data/test_rails_app/spec/controllers/admin/product_categories_controller_spec.rb +19 -0
- data/test_rails_app/spec/controllers/admin/products2_controller_spec.rb +203 -0
- data/test_rails_app/spec/controllers/admin/products_controller_spec.rb +255 -0
- data/test_rails_app/spec/controllers/admin/television_airings_controller_spec.rb +32 -0
- data/test_rails_app/spec/controllers/admin/television_time_slots_controller_spec.rb +10 -0
- data/test_rails_app/spec/controllers/admin/users2_controller_spec.rb +65 -0
- data/test_rails_app/spec/controllers/admin/users_controller_spec.rb +344 -0
- data/test_rails_app/spec/controllers/blog_posts_controller_spec.rb +13 -0
- data/test_rails_app/spec/data/ruby_throated.jpg +0 -0
- data/test_rails_app/spec/data/tweenbot.jpg +0 -0
- data/test_rails_app/spec/fixtures/appointments.yml +9 -0
- data/test_rails_app/spec/fixtures/blog_post_tags.yml +9 -0
- data/test_rails_app/spec/fixtures/blog_posts.yml +7 -0
- data/test_rails_app/spec/fixtures/bookmarks.yml +11 -0
- data/test_rails_app/spec/fixtures/comments.yml +11 -0
- data/test_rails_app/spec/fixtures/file_column_images.yml +7 -0
- data/test_rails_app/spec/fixtures/images.yml +7 -0
- data/test_rails_app/spec/fixtures/not_migrated_yets.yml +7 -0
- data/test_rails_app/spec/fixtures/product_categories.yml +7 -0
- data/test_rails_app/spec/fixtures/products.yml +9 -0
- data/test_rails_app/spec/fixtures/tags.yml +7 -0
- data/test_rails_app/spec/fixtures/television_airings.yml +11 -0
- data/test_rails_app/spec/fixtures/television_time_slots.yml +7 -0
- data/test_rails_app/spec/fixtures/users.yml +9 -0
- data/test_rails_app/spec/helpers/admin/appointments2_helper_spec.rb +11 -0
- data/test_rails_app/spec/helpers/admin/appointments_helper_spec.rb +11 -0
- data/test_rails_app/spec/helpers/admin/blog_posts2_helper_spec.rb +11 -0
- data/test_rails_app/spec/helpers/admin/blog_posts3_helper_spec.rb +11 -0
- data/test_rails_app/spec/helpers/admin/blog_posts4_helper_spec.rb +11 -0
- data/test_rails_app/spec/helpers/admin/blog_posts_custom_new_and_edit_helper_spec.rb +11 -0
- data/test_rails_app/spec/helpers/admin/blog_posts_helper_spec.rb +11 -0
- data/test_rails_app/spec/helpers/admin/blog_posts_read_only_helper_spec.rb +11 -0
- data/test_rails_app/spec/helpers/admin/bookmarks_helper_spec.rb +11 -0
- data/test_rails_app/spec/helpers/admin/comments2_helper_spec.rb +11 -0
- data/test_rails_app/spec/helpers/admin/comments_helper_spec.rb +11 -0
- data/test_rails_app/spec/helpers/admin/file_column_images2_helper_spec.rb +11 -0
- data/test_rails_app/spec/helpers/admin/file_column_images_helper_spec.rb +11 -0
- data/test_rails_app/spec/helpers/admin/images2_helper_spec.rb +11 -0
- data/test_rails_app/spec/helpers/admin/images_helper_spec.rb +11 -0
- data/test_rails_app/spec/helpers/admin/misconfigured1_helper_spec.rb +11 -0
- data/test_rails_app/spec/helpers/admin/not_migrated_yets_helper_spec.rb +11 -0
- data/test_rails_app/spec/helpers/admin/product_categories2_helper_spec.rb +11 -0
- data/test_rails_app/spec/helpers/admin/product_categories_helper_spec.rb +11 -0
- data/test_rails_app/spec/helpers/admin/products2_helper_spec.rb +11 -0
- data/test_rails_app/spec/helpers/admin/products_helper_spec.rb +11 -0
- data/test_rails_app/spec/helpers/admin/television_airings_helper_spec.rb +11 -0
- data/test_rails_app/spec/helpers/admin/television_time_slots_helper_spec.rb +11 -0
- data/test_rails_app/spec/helpers/admin/users2_helper_spec.rb +11 -0
- data/test_rails_app/spec/helpers/admin/users_helper_spec.rb +11 -0
- data/test_rails_app/spec/helpers/blog_posts_helper_spec.rb +11 -0
- data/test_rails_app/spec/models/appointment_spec.rb +16 -0
- data/test_rails_app/spec/models/blog_post_spec.rb +13 -0
- data/test_rails_app/spec/models/blog_post_tag_spec.rb +14 -0
- data/test_rails_app/spec/models/bookmark_spec.rb +15 -0
- data/test_rails_app/spec/models/comment_spec.rb +15 -0
- data/test_rails_app/spec/models/file_column_image_spec.rb +12 -0
- data/test_rails_app/spec/models/image_spec.rb +12 -0
- data/test_rails_app/spec/models/not_migrated_yet_spec.rb +15 -0
- data/test_rails_app/spec/models/product_category_spec.rb +15 -0
- data/test_rails_app/spec/models/product_spec.rb +14 -0
- data/test_rails_app/spec/models/tag_spec.rb +13 -0
- data/test_rails_app/spec/models/television_airing_spec.rb +15 -0
- data/test_rails_app/spec/models/television_time_slot_spec.rb +13 -0
- data/test_rails_app/spec/models/user_spec.rb +14 -0
- data/test_rails_app/spec/rcov.opts +2 -0
- data/test_rails_app/spec/spec.opts +4 -0
- data/test_rails_app/spec/spec_helper.rb +88 -0
- data/test_rails_app/spec/spec_or_test_helper.rb +49 -0
- data/test_rails_app/test/fixtures/file_column_images.yml +7 -0
- data/test_rails_app/test/integration/admin_blog_posts2_integration_test.rb +16 -0
- data/test_rails_app/test/integration/admin_blog_posts5_integration_test.rb +19 -0
- data/test_rails_app/test/integration/admin_blog_posts_integration_test.rb +25 -0
- data/test_rails_app/test/test_helper.rb +28 -0
- data/test_rails_app/vendor/plugins/file_column/CHANGELOG +69 -0
- data/test_rails_app/vendor/plugins/file_column/README +54 -0
- data/test_rails_app/vendor/plugins/file_column/Rakefile +36 -0
- data/test_rails_app/vendor/plugins/file_column/TODO +6 -0
- data/test_rails_app/vendor/plugins/file_column/init.rb +13 -0
- data/test_rails_app/vendor/plugins/file_column/lib/file_column.rb +723 -0
- data/test_rails_app/vendor/plugins/file_column/lib/file_column_helper.rb +150 -0
- data/test_rails_app/vendor/plugins/file_column/lib/file_compat.rb +28 -0
- data/test_rails_app/vendor/plugins/file_column/lib/magick_file_column.rb +260 -0
- data/test_rails_app/vendor/plugins/file_column/lib/rails_file_column.rb +19 -0
- data/test_rails_app/vendor/plugins/file_column/lib/test_case.rb +124 -0
- data/test_rails_app/vendor/plugins/file_column/lib/validations.rb +112 -0
- data/test_rails_app/vendor/plugins/file_column/test/abstract_unit.rb +63 -0
- data/test_rails_app/vendor/plugins/file_column/test/connection.rb +17 -0
- data/test_rails_app/vendor/plugins/file_column/test/file_column_helper_test.rb +97 -0
- data/test_rails_app/vendor/plugins/file_column/test/file_column_test.rb +650 -0
- data/test_rails_app/vendor/plugins/file_column/test/fixtures/entry.rb +32 -0
- data/test_rails_app/vendor/plugins/file_column/test/fixtures/invalid-image.jpg +1 -0
- data/test_rails_app/vendor/plugins/file_column/test/fixtures/kerb.jpg +0 -0
- data/test_rails_app/vendor/plugins/file_column/test/fixtures/mysql.sql +25 -0
- data/test_rails_app/vendor/plugins/file_column/test/fixtures/schema.rb +10 -0
- data/test_rails_app/vendor/plugins/file_column/test/fixtures/skanthak.png +0 -0
- data/test_rails_app/vendor/plugins/file_column/test/magick_test.rb +380 -0
- data/test_rails_app/vendor/plugins/file_column/test/magick_view_only_test.rb +21 -0
- data/vendor/ar_query/ar_query.gemspec +16 -0
- data/website/_layouts/api.html +39 -0
- data/website/_layouts/default.html +34 -0
- data/website/api/core.markdown +106 -0
- data/website/api/destroy.markdown +25 -0
- data/website/api/form.markdown +291 -0
- data/website/api/idx.markdown +286 -0
- data/website/api/index.markdown +147 -0
- data/website/api/search.markdown +108 -0
- data/website/api/show.markdown +22 -0
- data/website/community.markdown +27 -0
- data/website/css/lightbox.css +29 -0
- data/website/css/main.css +70 -0
- data/website/design_principles.markdown +50 -0
- data/website/getting_started.markdown +10 -0
- data/website/img/blog_posts-index.png +0 -0
- data/website/img/blog_posts-search.png +0 -0
- data/website/img/lightbox/bullet.gif +0 -0
- data/website/img/lightbox/close.gif +0 -0
- data/website/img/lightbox/closelabel.gif +0 -0
- data/website/img/lightbox/donate-button.gif +0 -0
- data/website/img/lightbox/download-icon.gif +0 -0
- data/website/img/lightbox/image-1.jpg +0 -0
- data/website/img/lightbox/loading.gif +0 -0
- data/website/img/lightbox/nextlabel.gif +0 -0
- data/website/img/lightbox/prevlabel.gif +0 -0
- data/website/img/lightbox/thumb-1.jpg +0 -0
- data/website/img/screen1-thumb.png +0 -0
- data/website/img/screen1.png +0 -0
- data/website/img/screen10-thumb.png +0 -0
- data/website/img/screen10.png +0 -0
- data/website/img/screen11-thumb.png +0 -0
- data/website/img/screen11.png +0 -0
- data/website/img/screen2-thumb.png +0 -0
- data/website/img/screen2.png +0 -0
- data/website/img/screen3-thumb.png +0 -0
- data/website/img/screen3.png +0 -0
- data/website/img/screen4-thumb.png +0 -0
- data/website/img/screen4.png +0 -0
- data/website/img/screen5-thumb.png +0 -0
- data/website/img/screen5.png +0 -0
- data/website/img/screen6-thumb.png +0 -0
- data/website/img/screen6.png +0 -0
- data/website/img/screen7-thumb.png +0 -0
- data/website/img/screen7.png +0 -0
- data/website/img/screen8-thumb.png +0 -0
- data/website/img/screen8.png +0 -0
- data/website/img/screen9-thumb.png +0 -0
- data/website/img/screen9.png +0 -0
- data/website/img/user-form.png +0 -0
- data/website/index.markdown +35 -0
- data/website/js/builder.js +136 -0
- data/website/js/effects.js +1122 -0
- data/website/js/lightbox.js +497 -0
- data/website/js/prototype.js +4221 -0
- data/website/js/scriptaculous.js +58 -0
- data/website/quick_start.markdown +44 -0
- data/website/screenshots.markdown +27 -0
- data/website/tutorial.markdown +56 -0
- metadata +391 -23
metadata
CHANGED
@@ -1,7 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: admin_assistant
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
|
4
|
+
hash: 21
|
5
|
+
prerelease: false
|
6
|
+
segments:
|
7
|
+
- 1
|
8
|
+
- 0
|
9
|
+
- 1
|
10
|
+
version: 1.0.1
|
5
11
|
platform: ruby
|
6
12
|
authors:
|
7
13
|
- Francis Hwang
|
@@ -9,50 +15,56 @@ autorequire:
|
|
9
15
|
bindir: bin
|
10
16
|
cert_chain: []
|
11
17
|
|
12
|
-
date:
|
18
|
+
date: 2010-11-06 00:00:00 -04:00
|
13
19
|
default_executable:
|
14
20
|
dependencies:
|
15
21
|
- !ruby/object:Gem::Dependency
|
16
|
-
name:
|
17
|
-
|
18
|
-
|
19
|
-
|
22
|
+
name: will_paginate
|
23
|
+
prerelease: false
|
24
|
+
requirement: &id001 !ruby/object:Gem::Requirement
|
25
|
+
none: false
|
20
26
|
requirements:
|
21
27
|
- - ">="
|
22
28
|
- !ruby/object:Gem::Version
|
29
|
+
hash: 3
|
30
|
+
segments:
|
31
|
+
- 0
|
23
32
|
version: "0"
|
24
|
-
|
33
|
+
type: :runtime
|
34
|
+
version_requirements: *id001
|
25
35
|
description: admin_assistant is a Rails plugin that automates a lot of features typically needed in admin interfaces.
|
26
36
|
email: sera@fhwang.net
|
27
37
|
executables: []
|
28
38
|
|
29
39
|
extensions: []
|
30
40
|
|
31
|
-
extra_rdoc_files:
|
32
|
-
|
41
|
+
extra_rdoc_files:
|
42
|
+
- README
|
33
43
|
files:
|
44
|
+
- .gitignore
|
34
45
|
- MIT-LICENSE
|
35
46
|
- README
|
47
|
+
- Rakefile
|
48
|
+
- VERSION
|
49
|
+
- admin_assistant.gemspec
|
50
|
+
- doc/img/blog_posts-index.png
|
36
51
|
- init.rb
|
37
52
|
- install.rb
|
38
|
-
- uninstall.rb
|
39
|
-
- Rakefile
|
40
53
|
- lib/admin_assistant.rb
|
41
54
|
- lib/admin_assistant/active_record_column.rb
|
42
55
|
- lib/admin_assistant/association_target.rb
|
43
56
|
- lib/admin_assistant/belongs_to_column.rb
|
44
57
|
- lib/admin_assistant/builder.rb
|
45
58
|
- lib/admin_assistant/column.rb
|
59
|
+
- lib/admin_assistant/date_time_range_end_point_selector.rb
|
46
60
|
- lib/admin_assistant/default_search_column.rb
|
47
61
|
- lib/admin_assistant/file_column_column.rb
|
48
62
|
- lib/admin_assistant/form_view.rb
|
63
|
+
- lib/admin_assistant/has_many_column.rb
|
49
64
|
- lib/admin_assistant/helper.rb
|
50
65
|
- lib/admin_assistant/index.rb
|
51
66
|
- lib/admin_assistant/paperclip_column.rb
|
52
67
|
- lib/admin_assistant/polymorphic_belongs_to_column.rb
|
53
|
-
- lib/admin_assistant/search.rb
|
54
|
-
- lib/admin_assistant/show_view.rb
|
55
|
-
- lib/admin_assistant/virtual_column.rb
|
56
68
|
- lib/admin_assistant/request/autocomplete.rb
|
57
69
|
- lib/admin_assistant/request/base.rb
|
58
70
|
- lib/admin_assistant/request/create.rb
|
@@ -62,6 +74,9 @@ files:
|
|
62
74
|
- lib/admin_assistant/request/new.rb
|
63
75
|
- lib/admin_assistant/request/show.rb
|
64
76
|
- lib/admin_assistant/request/update.rb
|
77
|
+
- lib/admin_assistant/search.rb
|
78
|
+
- lib/admin_assistant/show_view.rb
|
79
|
+
- lib/admin_assistant/virtual_column.rb
|
65
80
|
- lib/images/sort-asc.png
|
66
81
|
- lib/images/sort-desc.png
|
67
82
|
- lib/javascripts/admin_assistant.js
|
@@ -72,41 +87,394 @@ files:
|
|
72
87
|
- lib/views/autocomplete.html.erb
|
73
88
|
- lib/views/form.html.erb
|
74
89
|
- lib/views/index.html.erb
|
90
|
+
- lib/views/multi_form.html.erb
|
75
91
|
- lib/views/show.html.erb
|
76
92
|
- tasks/admin_assistant_tasks.rake
|
93
|
+
- test_rails_app/README
|
94
|
+
- test_rails_app/Rakefile
|
95
|
+
- test_rails_app/app/controllers/admin/appointments2_controller.rb
|
96
|
+
- test_rails_app/app/controllers/admin/appointments_controller.rb
|
97
|
+
- test_rails_app/app/controllers/admin/blog_posts2_controller.rb
|
98
|
+
- test_rails_app/app/controllers/admin/blog_posts3_controller.rb
|
99
|
+
- test_rails_app/app/controllers/admin/blog_posts4_controller.rb
|
100
|
+
- test_rails_app/app/controllers/admin/blog_posts5_controller.rb
|
101
|
+
- test_rails_app/app/controllers/admin/blog_posts6_controller.rb
|
102
|
+
- test_rails_app/app/controllers/admin/blog_posts_controller.rb
|
103
|
+
- test_rails_app/app/controllers/admin/blog_posts_custom_new_and_edit_controller.rb
|
104
|
+
- test_rails_app/app/controllers/admin/blog_posts_read_only_controller.rb
|
105
|
+
- test_rails_app/app/controllers/admin/bookmarks_controller.rb
|
106
|
+
- test_rails_app/app/controllers/admin/comments2_controller.rb
|
107
|
+
- test_rails_app/app/controllers/admin/comments_controller.rb
|
108
|
+
- test_rails_app/app/controllers/admin/file_column_images2_controller.rb
|
109
|
+
- test_rails_app/app/controllers/admin/file_column_images_controller.rb
|
110
|
+
- test_rails_app/app/controllers/admin/images2_controller.rb
|
111
|
+
- test_rails_app/app/controllers/admin/images_controller.rb
|
112
|
+
- test_rails_app/app/controllers/admin/misconfigured1_controller.rb
|
113
|
+
- test_rails_app/app/controllers/admin/not_migrated_yets_controller.rb
|
114
|
+
- test_rails_app/app/controllers/admin/product_categories2_controller.rb
|
115
|
+
- test_rails_app/app/controllers/admin/product_categories_controller.rb
|
116
|
+
- test_rails_app/app/controllers/admin/products2_controller.rb
|
117
|
+
- test_rails_app/app/controllers/admin/products_controller.rb
|
118
|
+
- test_rails_app/app/controllers/admin/television_airings_controller.rb
|
119
|
+
- test_rails_app/app/controllers/admin/television_time_slots_controller.rb
|
120
|
+
- test_rails_app/app/controllers/admin/users2_controller.rb
|
121
|
+
- test_rails_app/app/controllers/admin/users_controller.rb
|
122
|
+
- test_rails_app/app/controllers/application.rb
|
123
|
+
- test_rails_app/app/controllers/application_controller.rb
|
124
|
+
- test_rails_app/app/controllers/blog_posts_controller.rb
|
125
|
+
- test_rails_app/app/helpers/admin/appointments2_helper.rb
|
126
|
+
- test_rails_app/app/helpers/admin/appointments_helper.rb
|
127
|
+
- test_rails_app/app/helpers/admin/blog_posts2_helper.rb
|
128
|
+
- test_rails_app/app/helpers/admin/blog_posts3_helper.rb
|
129
|
+
- test_rails_app/app/helpers/admin/blog_posts4_helper.rb
|
130
|
+
- test_rails_app/app/helpers/admin/blog_posts6_helper.rb
|
131
|
+
- test_rails_app/app/helpers/admin/blog_posts_custom_new_and_edit_helper.rb
|
132
|
+
- test_rails_app/app/helpers/admin/blog_posts_helper.rb
|
133
|
+
- test_rails_app/app/helpers/admin/blog_posts_read_only_helper.rb
|
134
|
+
- test_rails_app/app/helpers/admin/bookmarks_helper.rb
|
135
|
+
- test_rails_app/app/helpers/admin/comments2_helper.rb
|
136
|
+
- test_rails_app/app/helpers/admin/comments_helper.rb
|
137
|
+
- test_rails_app/app/helpers/admin/file_column_images2_helper.rb
|
138
|
+
- test_rails_app/app/helpers/admin/file_column_images_helper.rb
|
139
|
+
- test_rails_app/app/helpers/admin/images2_helper.rb
|
140
|
+
- test_rails_app/app/helpers/admin/images_helper.rb
|
141
|
+
- test_rails_app/app/helpers/admin/misconfigured1_helper.rb
|
142
|
+
- test_rails_app/app/helpers/admin/not_migrated_yets_helper.rb
|
143
|
+
- test_rails_app/app/helpers/admin/product_categories2_helper.rb
|
144
|
+
- test_rails_app/app/helpers/admin/product_categories_helper.rb
|
145
|
+
- test_rails_app/app/helpers/admin/products2_helper.rb
|
146
|
+
- test_rails_app/app/helpers/admin/products_helper.rb
|
147
|
+
- test_rails_app/app/helpers/admin/television_airings_helper.rb
|
148
|
+
- test_rails_app/app/helpers/admin/television_time_slots_helper.rb
|
149
|
+
- test_rails_app/app/helpers/admin/users2_helper.rb
|
150
|
+
- test_rails_app/app/helpers/admin/users_helper.rb
|
151
|
+
- test_rails_app/app/helpers/application_helper.rb
|
152
|
+
- test_rails_app/app/helpers/blog_posts_helper.rb
|
153
|
+
- test_rails_app/app/models/appointment.rb
|
154
|
+
- test_rails_app/app/models/blog_post.rb
|
155
|
+
- test_rails_app/app/models/blog_post_tag.rb
|
156
|
+
- test_rails_app/app/models/bookmark.rb
|
157
|
+
- test_rails_app/app/models/comment.rb
|
158
|
+
- test_rails_app/app/models/file_column_image.rb
|
159
|
+
- test_rails_app/app/models/image.rb
|
160
|
+
- test_rails_app/app/models/not_migrated_yet.rb
|
161
|
+
- test_rails_app/app/models/product.rb
|
162
|
+
- test_rails_app/app/models/product_category.rb
|
163
|
+
- test_rails_app/app/models/tag.rb
|
164
|
+
- test_rails_app/app/models/television_airing.rb
|
165
|
+
- test_rails_app/app/models/television_time_slot.rb
|
166
|
+
- test_rails_app/app/models/user.rb
|
167
|
+
- test_rails_app/app/views/admin/appointments/_subject_input.html.erb
|
168
|
+
- test_rails_app/app/views/admin/appointments2/_time_input.html.erb
|
169
|
+
- test_rails_app/app/views/admin/blog_posts2/_after_form.html.erb
|
170
|
+
- test_rails_app/app/views/admin/blog_posts2/_after_index.html.erb
|
171
|
+
- test_rails_app/app/views/admin/blog_posts2/_after_tags_input.html.erb
|
172
|
+
- test_rails_app/app/views/admin/blog_posts2/_before_index.html.erb
|
173
|
+
- test_rails_app/app/views/admin/blog_posts5/_after_index_header.html.erb
|
174
|
+
- test_rails_app/app/views/admin/blog_posts_read_only/_body_for_show.html.erb
|
175
|
+
- test_rails_app/app/views/admin/products/_name_input.html.erb
|
176
|
+
- test_rails_app/app/views/admin/products/_percent_off_input.html.erb
|
177
|
+
- test_rails_app/app/views/admin/products/_price_input.html.erb
|
178
|
+
- test_rails_app/app/views/blog_posts/show.html.erb
|
179
|
+
- test_rails_app/app/views/layouts/admin.html.erb
|
180
|
+
- test_rails_app/config/boot.rb
|
181
|
+
- test_rails_app/config/database.yml
|
182
|
+
- test_rails_app/config/environment.rb
|
183
|
+
- test_rails_app/config/environments/development.rb
|
184
|
+
- test_rails_app/config/environments/production.rb
|
185
|
+
- test_rails_app/config/environments/test.rb
|
186
|
+
- test_rails_app/config/initializers/inflections.rb
|
187
|
+
- test_rails_app/config/initializers/mime_types.rb
|
188
|
+
- test_rails_app/config/initializers/new_rails_defaults.rb
|
189
|
+
- test_rails_app/config/locales/en.yml
|
190
|
+
- test_rails_app/config/routes.rb
|
191
|
+
- test_rails_app/db/migrate/20090213215514_create_blog_posts.rb
|
192
|
+
- test_rails_app/db/migrate/20090217225542_add_body_to_blog_posts.rb
|
193
|
+
- test_rails_app/db/migrate/20090221220917_create_tags.rb
|
194
|
+
- test_rails_app/db/migrate/20090221220947_create_blog_post_tags.rb
|
195
|
+
- test_rails_app/db/migrate/20090222162204_add_textile_to_blog_posts.rb
|
196
|
+
- test_rails_app/db/migrate/20090222163231_add_published_at_to_blog_posts.rb
|
197
|
+
- test_rails_app/db/migrate/20090301191722_create_images.rb
|
198
|
+
- test_rails_app/db/migrate/20090305165345_create_accounts.rb
|
199
|
+
- test_rails_app/db/migrate/20090307225027_rename_accounts_to_users.rb
|
200
|
+
- test_rails_app/db/migrate/20090307225750_add_user_id_to_blog_posts.rb
|
201
|
+
- test_rails_app/db/migrate/20090309185114_change_blog_posts_textile.rb
|
202
|
+
- test_rails_app/db/migrate/20090309193635_create_products.rb
|
203
|
+
- test_rails_app/db/migrate/20090309203056_create_comments.rb
|
204
|
+
- test_rails_app/db/migrate/20090323005947_create_file_column_images.rb
|
205
|
+
- test_rails_app/db/migrate/20090326160049_add_birthday_to_users.rb
|
206
|
+
- test_rails_app/db/migrate/20090326223606_add_state_to_users.rb
|
207
|
+
- test_rails_app/db/migrate/20090503134004_add_file_column_image_to_products.rb
|
208
|
+
- test_rails_app/db/migrate/20090617173651_create_bookmarks.rb
|
209
|
+
- test_rails_app/db/migrate/20090624165355_add_tags_string_to_blog_post.rb
|
210
|
+
- test_rails_app/db/migrate/20090625144313_add_avatar_fields_to_user.rb
|
211
|
+
- test_rails_app/db/migrate/20090629202956_add_merged_into_to_blog_posts.rb
|
212
|
+
- test_rails_app/db/migrate/20090701171857_add_force_textile_to_users.rb
|
213
|
+
- test_rails_app/db/migrate/20090704163647_add_deleted_at_to_products.rb
|
214
|
+
- test_rails_app/db/migrate/20090704173800_add_sale_fields_to_products.rb
|
215
|
+
- test_rails_app/db/migrate/20090714024501_create_product_categories.rb
|
216
|
+
- test_rails_app/db/migrate/20090819162835_add_admin_level_to_users.rb
|
217
|
+
- test_rails_app/db/migrate/20091115134559_add_first_and_last_names_to_users.rb
|
218
|
+
- test_rails_app/db/migrate/20091221011256_add_position_to_product_categories.rb
|
219
|
+
- test_rails_app/db/migrate/20091222160814_create_appointments.rb
|
220
|
+
- test_rails_app/db/migrate/20091227224547_add_user_id_to_appointments.rb
|
221
|
+
- test_rails_app/db/migrate/20100214213359_create_television_time_slots.rb
|
222
|
+
- test_rails_app/db/migrate/20100214213451_create_television_airings.rb
|
223
|
+
- test_rails_app/doc/README_FOR_APP
|
224
|
+
- test_rails_app/lib/tasks/rspec.rake
|
225
|
+
- test_rails_app/public/404.html
|
226
|
+
- test_rails_app/public/422.html
|
227
|
+
- test_rails_app/public/500.html
|
228
|
+
- test_rails_app/public/dispatch.cgi
|
229
|
+
- test_rails_app/public/dispatch.fcgi
|
230
|
+
- test_rails_app/public/dispatch.rb
|
231
|
+
- test_rails_app/public/favicon.ico
|
232
|
+
- test_rails_app/public/images/rails.png
|
233
|
+
- test_rails_app/public/index.html
|
234
|
+
- test_rails_app/public/javascripts/application.js
|
235
|
+
- test_rails_app/public/javascripts/controls.js
|
236
|
+
- test_rails_app/public/javascripts/dragdrop.js
|
237
|
+
- test_rails_app/public/javascripts/effects.js
|
238
|
+
- test_rails_app/public/javascripts/prototype.js
|
239
|
+
- test_rails_app/public/robots.txt
|
240
|
+
- test_rails_app/public/stylesheets/admin.css
|
241
|
+
- test_rails_app/public/stylesheets/scaffold.css
|
242
|
+
- test_rails_app/script/about
|
243
|
+
- test_rails_app/script/autospec
|
244
|
+
- test_rails_app/script/console
|
245
|
+
- test_rails_app/script/dbconsole
|
246
|
+
- test_rails_app/script/destroy
|
247
|
+
- test_rails_app/script/generate
|
248
|
+
- test_rails_app/script/performance/benchmarker
|
249
|
+
- test_rails_app/script/performance/profiler
|
250
|
+
- test_rails_app/script/performance/request
|
251
|
+
- test_rails_app/script/plugin
|
252
|
+
- test_rails_app/script/populate_tables.rb
|
253
|
+
- test_rails_app/script/process/inspector
|
254
|
+
- test_rails_app/script/process/reaper
|
255
|
+
- test_rails_app/script/process/spawner
|
256
|
+
- test_rails_app/script/runner
|
257
|
+
- test_rails_app/script/server
|
258
|
+
- test_rails_app/script/spec
|
259
|
+
- test_rails_app/script/spec_server
|
260
|
+
- test_rails_app/spec/controllers/admin/appointments2_controller_spec.rb
|
261
|
+
- test_rails_app/spec/controllers/admin/appointments_controller_spec.rb
|
262
|
+
- test_rails_app/spec/controllers/admin/blog_posts2_controller_spec.rb
|
263
|
+
- test_rails_app/spec/controllers/admin/blog_posts3_controller_spec.rb
|
264
|
+
- test_rails_app/spec/controllers/admin/blog_posts4_controller_spec.rb
|
265
|
+
- test_rails_app/spec/controllers/admin/blog_posts5_controller_spec.rb
|
266
|
+
- test_rails_app/spec/controllers/admin/blog_posts6_controller_spec.rb
|
267
|
+
- test_rails_app/spec/controllers/admin/blog_posts_controller_spec.rb
|
268
|
+
- test_rails_app/spec/controllers/admin/blog_posts_custom_new_and_edit_controller_spec.rb
|
269
|
+
- test_rails_app/spec/controllers/admin/blog_posts_read_only_controller_spec.rb
|
270
|
+
- test_rails_app/spec/controllers/admin/bookmarks_controller_spec.rb
|
271
|
+
- test_rails_app/spec/controllers/admin/comments2_controller_spec.rb
|
272
|
+
- test_rails_app/spec/controllers/admin/comments_controller_spec.rb
|
273
|
+
- test_rails_app/spec/controllers/admin/file_column_images2_controller_spec.rb
|
274
|
+
- test_rails_app/spec/controllers/admin/file_column_images_controller_spec.rb
|
275
|
+
- test_rails_app/spec/controllers/admin/images2_controller_spec.rb
|
276
|
+
- test_rails_app/spec/controllers/admin/images_controller_spec.rb
|
277
|
+
- test_rails_app/spec/controllers/admin/misconfigured1_controller_spec.rb
|
278
|
+
- test_rails_app/spec/controllers/admin/not_migrated_yets_controller_spec.rb
|
279
|
+
- test_rails_app/spec/controllers/admin/product_categories2_controller_spec.rb
|
280
|
+
- test_rails_app/spec/controllers/admin/product_categories_controller_spec.rb
|
281
|
+
- test_rails_app/spec/controllers/admin/products2_controller_spec.rb
|
282
|
+
- test_rails_app/spec/controllers/admin/products_controller_spec.rb
|
283
|
+
- test_rails_app/spec/controllers/admin/television_airings_controller_spec.rb
|
284
|
+
- test_rails_app/spec/controllers/admin/television_time_slots_controller_spec.rb
|
285
|
+
- test_rails_app/spec/controllers/admin/users2_controller_spec.rb
|
286
|
+
- test_rails_app/spec/controllers/admin/users_controller_spec.rb
|
287
|
+
- test_rails_app/spec/controllers/blog_posts_controller_spec.rb
|
288
|
+
- test_rails_app/spec/data/ruby_throated.jpg
|
289
|
+
- test_rails_app/spec/data/tweenbot.jpg
|
290
|
+
- test_rails_app/spec/fixtures/appointments.yml
|
291
|
+
- test_rails_app/spec/fixtures/blog_post_tags.yml
|
292
|
+
- test_rails_app/spec/fixtures/blog_posts.yml
|
293
|
+
- test_rails_app/spec/fixtures/bookmarks.yml
|
294
|
+
- test_rails_app/spec/fixtures/comments.yml
|
295
|
+
- test_rails_app/spec/fixtures/file_column_images.yml
|
296
|
+
- test_rails_app/spec/fixtures/images.yml
|
297
|
+
- test_rails_app/spec/fixtures/not_migrated_yets.yml
|
298
|
+
- test_rails_app/spec/fixtures/product_categories.yml
|
299
|
+
- test_rails_app/spec/fixtures/products.yml
|
300
|
+
- test_rails_app/spec/fixtures/tags.yml
|
301
|
+
- test_rails_app/spec/fixtures/television_airings.yml
|
302
|
+
- test_rails_app/spec/fixtures/television_time_slots.yml
|
303
|
+
- test_rails_app/spec/fixtures/users.yml
|
304
|
+
- test_rails_app/spec/helpers/admin/appointments2_helper_spec.rb
|
305
|
+
- test_rails_app/spec/helpers/admin/appointments_helper_spec.rb
|
306
|
+
- test_rails_app/spec/helpers/admin/blog_posts2_helper_spec.rb
|
307
|
+
- test_rails_app/spec/helpers/admin/blog_posts3_helper_spec.rb
|
308
|
+
- test_rails_app/spec/helpers/admin/blog_posts4_helper_spec.rb
|
309
|
+
- test_rails_app/spec/helpers/admin/blog_posts_custom_new_and_edit_helper_spec.rb
|
310
|
+
- test_rails_app/spec/helpers/admin/blog_posts_helper_spec.rb
|
311
|
+
- test_rails_app/spec/helpers/admin/blog_posts_read_only_helper_spec.rb
|
312
|
+
- test_rails_app/spec/helpers/admin/bookmarks_helper_spec.rb
|
313
|
+
- test_rails_app/spec/helpers/admin/comments2_helper_spec.rb
|
314
|
+
- test_rails_app/spec/helpers/admin/comments_helper_spec.rb
|
315
|
+
- test_rails_app/spec/helpers/admin/file_column_images2_helper_spec.rb
|
316
|
+
- test_rails_app/spec/helpers/admin/file_column_images_helper_spec.rb
|
317
|
+
- test_rails_app/spec/helpers/admin/images2_helper_spec.rb
|
318
|
+
- test_rails_app/spec/helpers/admin/images_helper_spec.rb
|
319
|
+
- test_rails_app/spec/helpers/admin/misconfigured1_helper_spec.rb
|
320
|
+
- test_rails_app/spec/helpers/admin/not_migrated_yets_helper_spec.rb
|
321
|
+
- test_rails_app/spec/helpers/admin/product_categories2_helper_spec.rb
|
322
|
+
- test_rails_app/spec/helpers/admin/product_categories_helper_spec.rb
|
323
|
+
- test_rails_app/spec/helpers/admin/products2_helper_spec.rb
|
324
|
+
- test_rails_app/spec/helpers/admin/products_helper_spec.rb
|
325
|
+
- test_rails_app/spec/helpers/admin/television_airings_helper_spec.rb
|
326
|
+
- test_rails_app/spec/helpers/admin/television_time_slots_helper_spec.rb
|
327
|
+
- test_rails_app/spec/helpers/admin/users2_helper_spec.rb
|
328
|
+
- test_rails_app/spec/helpers/admin/users_helper_spec.rb
|
329
|
+
- test_rails_app/spec/helpers/blog_posts_helper_spec.rb
|
330
|
+
- test_rails_app/spec/models/appointment_spec.rb
|
331
|
+
- test_rails_app/spec/models/blog_post_spec.rb
|
332
|
+
- test_rails_app/spec/models/blog_post_tag_spec.rb
|
333
|
+
- test_rails_app/spec/models/bookmark_spec.rb
|
334
|
+
- test_rails_app/spec/models/comment_spec.rb
|
335
|
+
- test_rails_app/spec/models/file_column_image_spec.rb
|
336
|
+
- test_rails_app/spec/models/image_spec.rb
|
337
|
+
- test_rails_app/spec/models/not_migrated_yet_spec.rb
|
338
|
+
- test_rails_app/spec/models/product_category_spec.rb
|
339
|
+
- test_rails_app/spec/models/product_spec.rb
|
340
|
+
- test_rails_app/spec/models/tag_spec.rb
|
341
|
+
- test_rails_app/spec/models/television_airing_spec.rb
|
342
|
+
- test_rails_app/spec/models/television_time_slot_spec.rb
|
343
|
+
- test_rails_app/spec/models/user_spec.rb
|
344
|
+
- test_rails_app/spec/rcov.opts
|
345
|
+
- test_rails_app/spec/spec.opts
|
346
|
+
- test_rails_app/spec/spec_helper.rb
|
347
|
+
- test_rails_app/spec/spec_or_test_helper.rb
|
348
|
+
- test_rails_app/test/fixtures/file_column_images.yml
|
349
|
+
- test_rails_app/test/integration/admin_blog_posts2_integration_test.rb
|
350
|
+
- test_rails_app/test/integration/admin_blog_posts5_integration_test.rb
|
351
|
+
- test_rails_app/test/integration/admin_blog_posts_integration_test.rb
|
352
|
+
- test_rails_app/test/test_helper.rb
|
353
|
+
- test_rails_app/vendor/plugins/file_column/CHANGELOG
|
354
|
+
- test_rails_app/vendor/plugins/file_column/README
|
355
|
+
- test_rails_app/vendor/plugins/file_column/Rakefile
|
356
|
+
- test_rails_app/vendor/plugins/file_column/TODO
|
357
|
+
- test_rails_app/vendor/plugins/file_column/init.rb
|
358
|
+
- test_rails_app/vendor/plugins/file_column/lib/file_column.rb
|
359
|
+
- test_rails_app/vendor/plugins/file_column/lib/file_column_helper.rb
|
360
|
+
- test_rails_app/vendor/plugins/file_column/lib/file_compat.rb
|
361
|
+
- test_rails_app/vendor/plugins/file_column/lib/magick_file_column.rb
|
362
|
+
- test_rails_app/vendor/plugins/file_column/lib/rails_file_column.rb
|
363
|
+
- test_rails_app/vendor/plugins/file_column/lib/test_case.rb
|
364
|
+
- test_rails_app/vendor/plugins/file_column/lib/validations.rb
|
365
|
+
- test_rails_app/vendor/plugins/file_column/test/abstract_unit.rb
|
366
|
+
- test_rails_app/vendor/plugins/file_column/test/connection.rb
|
367
|
+
- test_rails_app/vendor/plugins/file_column/test/file_column_helper_test.rb
|
368
|
+
- test_rails_app/vendor/plugins/file_column/test/file_column_test.rb
|
369
|
+
- test_rails_app/vendor/plugins/file_column/test/fixtures/entry.rb
|
370
|
+
- test_rails_app/vendor/plugins/file_column/test/fixtures/invalid-image.jpg
|
371
|
+
- test_rails_app/vendor/plugins/file_column/test/fixtures/kerb.jpg
|
372
|
+
- test_rails_app/vendor/plugins/file_column/test/fixtures/mysql.sql
|
373
|
+
- test_rails_app/vendor/plugins/file_column/test/fixtures/schema.rb
|
374
|
+
- test_rails_app/vendor/plugins/file_column/test/fixtures/skanthak.png
|
375
|
+
- test_rails_app/vendor/plugins/file_column/test/magick_test.rb
|
376
|
+
- test_rails_app/vendor/plugins/file_column/test/magick_view_only_test.rb
|
377
|
+
- uninstall.rb
|
77
378
|
- vendor/ar_query/MIT-LICENSE
|
78
379
|
- vendor/ar_query/README
|
380
|
+
- vendor/ar_query/ar_query.gemspec
|
79
381
|
- vendor/ar_query/init.rb
|
80
382
|
- vendor/ar_query/install.rb
|
81
|
-
- vendor/ar_query/uninstall.rb
|
82
383
|
- vendor/ar_query/lib/ar_query.rb
|
83
384
|
- vendor/ar_query/spec/ar_query_spec.rb
|
84
385
|
- vendor/ar_query/tasks/ar_query_tasks.rake
|
85
|
-
|
86
|
-
|
87
|
-
|
88
|
-
|
386
|
+
- vendor/ar_query/uninstall.rb
|
387
|
+
- website/_layouts/api.html
|
388
|
+
- website/_layouts/default.html
|
389
|
+
- website/api/core.markdown
|
390
|
+
- website/api/destroy.markdown
|
391
|
+
- website/api/form.markdown
|
392
|
+
- website/api/idx.markdown
|
393
|
+
- website/api/index.markdown
|
394
|
+
- website/api/search.markdown
|
395
|
+
- website/api/show.markdown
|
396
|
+
- website/community.markdown
|
397
|
+
- website/css/lightbox.css
|
398
|
+
- website/css/main.css
|
399
|
+
- website/design_principles.markdown
|
400
|
+
- website/getting_started.markdown
|
401
|
+
- website/img/blog_posts-index.png
|
402
|
+
- website/img/blog_posts-search.png
|
403
|
+
- website/img/lightbox/bullet.gif
|
404
|
+
- website/img/lightbox/close.gif
|
405
|
+
- website/img/lightbox/closelabel.gif
|
406
|
+
- website/img/lightbox/donate-button.gif
|
407
|
+
- website/img/lightbox/download-icon.gif
|
408
|
+
- website/img/lightbox/image-1.jpg
|
409
|
+
- website/img/lightbox/loading.gif
|
410
|
+
- website/img/lightbox/nextlabel.gif
|
411
|
+
- website/img/lightbox/prevlabel.gif
|
412
|
+
- website/img/lightbox/thumb-1.jpg
|
413
|
+
- website/img/screen1-thumb.png
|
414
|
+
- website/img/screen1.png
|
415
|
+
- website/img/screen10-thumb.png
|
416
|
+
- website/img/screen10.png
|
417
|
+
- website/img/screen11-thumb.png
|
418
|
+
- website/img/screen11.png
|
419
|
+
- website/img/screen2-thumb.png
|
420
|
+
- website/img/screen2.png
|
421
|
+
- website/img/screen3-thumb.png
|
422
|
+
- website/img/screen3.png
|
423
|
+
- website/img/screen4-thumb.png
|
424
|
+
- website/img/screen4.png
|
425
|
+
- website/img/screen5-thumb.png
|
426
|
+
- website/img/screen5.png
|
427
|
+
- website/img/screen6-thumb.png
|
428
|
+
- website/img/screen6.png
|
429
|
+
- website/img/screen7-thumb.png
|
430
|
+
- website/img/screen7.png
|
431
|
+
- website/img/screen8-thumb.png
|
432
|
+
- website/img/screen8.png
|
433
|
+
- website/img/screen9-thumb.png
|
434
|
+
- website/img/screen9.png
|
435
|
+
- website/img/user-form.png
|
436
|
+
- website/index.markdown
|
437
|
+
- website/js/builder.js
|
438
|
+
- website/js/effects.js
|
439
|
+
- website/js/lightbox.js
|
440
|
+
- website/js/prototype.js
|
441
|
+
- website/js/scriptaculous.js
|
442
|
+
- website/quick_start.markdown
|
443
|
+
- website/screenshots.markdown
|
444
|
+
- website/tutorial.markdown
|
445
|
+
has_rdoc: true
|
446
|
+
homepage: http://github.com/fhwang/admin_assistant
|
447
|
+
licenses: []
|
89
448
|
|
449
|
+
post_install_message:
|
450
|
+
rdoc_options:
|
451
|
+
- --charset=UTF-8
|
90
452
|
require_paths:
|
91
453
|
- lib
|
92
454
|
required_ruby_version: !ruby/object:Gem::Requirement
|
455
|
+
none: false
|
93
456
|
requirements:
|
94
457
|
- - ">="
|
95
458
|
- !ruby/object:Gem::Version
|
459
|
+
hash: 3
|
460
|
+
segments:
|
461
|
+
- 0
|
96
462
|
version: "0"
|
97
|
-
version:
|
98
463
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
464
|
+
none: false
|
99
465
|
requirements:
|
100
466
|
- - ">="
|
101
467
|
- !ruby/object:Gem::Version
|
468
|
+
hash: 3
|
469
|
+
segments:
|
470
|
+
- 0
|
102
471
|
version: "0"
|
103
|
-
version:
|
104
472
|
requirements: []
|
105
473
|
|
106
474
|
rubyforge_project:
|
107
|
-
rubygems_version: 1.3.
|
475
|
+
rubygems_version: 1.3.7
|
108
476
|
signing_key:
|
109
|
-
specification_version:
|
477
|
+
specification_version: 3
|
110
478
|
summary: admin_assistant is a Rails plugin that automates a lot of features typically needed in admin interfaces.
|
111
479
|
test_files: []
|
112
480
|
|