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.
Files changed (418) hide show
  1. data/Rakefile +2 -2
  2. data/VERSION +1 -1
  3. data/admin_assistant.gemspec +404 -8
  4. data/rails_2_test/README +256 -0
  5. data/rails_2_test/Rakefile +13 -0
  6. data/rails_2_test/app/controllers/admin/appointments2_controller.rb +15 -0
  7. data/rails_2_test/app/controllers/admin/appointments_controller.rb +11 -0
  8. data/rails_2_test/app/controllers/admin/blog_posts2_controller.rb +138 -0
  9. data/rails_2_test/app/controllers/admin/blog_posts3_controller.rb +76 -0
  10. data/rails_2_test/app/controllers/admin/blog_posts4_controller.rb +21 -0
  11. data/rails_2_test/app/controllers/admin/blog_posts5_controller.rb +27 -0
  12. data/rails_2_test/app/controllers/admin/blog_posts6_controller.rb +10 -0
  13. data/rails_2_test/app/controllers/admin/blog_posts_controller.rb +8 -0
  14. data/rails_2_test/app/controllers/admin/blog_posts_custom_new_and_edit_controller.rb +15 -0
  15. data/rails_2_test/app/controllers/admin/blog_posts_read_only_controller.rb +19 -0
  16. data/rails_2_test/app/controllers/admin/bookmarks_controller.rb +11 -0
  17. data/rails_2_test/app/controllers/admin/comments2_controller.rb +14 -0
  18. data/rails_2_test/app/controllers/admin/comments_controller.rb +12 -0
  19. data/rails_2_test/app/controllers/admin/file_column_images2_controller.rb +10 -0
  20. data/rails_2_test/app/controllers/admin/file_column_images_controller.rb +6 -0
  21. data/rails_2_test/app/controllers/admin/images2_controller.rb +11 -0
  22. data/rails_2_test/app/controllers/admin/images_controller.rb +6 -0
  23. data/rails_2_test/app/controllers/admin/misconfigured1_controller.rb +7 -0
  24. data/rails_2_test/app/controllers/admin/not_migrated_yets_controller.rb +9 -0
  25. data/rails_2_test/app/controllers/admin/product_categories2_controller.rb +7 -0
  26. data/rails_2_test/app/controllers/admin/product_categories_controller.rb +5 -0
  27. data/rails_2_test/app/controllers/admin/products2_controller.rb +15 -0
  28. data/rails_2_test/app/controllers/admin/products_controller.rb +31 -0
  29. data/rails_2_test/app/controllers/admin/television_airings_controller.rb +5 -0
  30. data/rails_2_test/app/controllers/admin/television_time_slots_controller.rb +5 -0
  31. data/rails_2_test/app/controllers/admin/users2_controller.rb +10 -0
  32. data/rails_2_test/app/controllers/admin/users_controller.rb +63 -0
  33. data/rails_2_test/app/controllers/application.rb +16 -0
  34. data/rails_2_test/app/controllers/application_controller.rb +16 -0
  35. data/rails_2_test/app/controllers/blog_posts_controller.rb +5 -0
  36. data/rails_2_test/app/helpers/admin/appointments2_helper.rb +2 -0
  37. data/rails_2_test/app/helpers/admin/appointments_helper.rb +2 -0
  38. data/rails_2_test/app/helpers/admin/blog_posts2_helper.rb +27 -0
  39. data/rails_2_test/app/helpers/admin/blog_posts3_helper.rb +2 -0
  40. data/rails_2_test/app/helpers/admin/blog_posts4_helper.rb +2 -0
  41. data/rails_2_test/app/helpers/admin/blog_posts6_helper.rb +16 -0
  42. data/rails_2_test/app/helpers/admin/blog_posts_custom_new_and_edit_helper.rb +29 -0
  43. data/rails_2_test/app/helpers/admin/blog_posts_helper.rb +2 -0
  44. data/rails_2_test/app/helpers/admin/blog_posts_read_only_helper.rb +2 -0
  45. data/rails_2_test/app/helpers/admin/bookmarks_helper.rb +2 -0
  46. data/rails_2_test/app/helpers/admin/comments2_helper.rb +2 -0
  47. data/rails_2_test/app/helpers/admin/comments_helper.rb +2 -0
  48. data/rails_2_test/app/helpers/admin/file_column_images2_helper.rb +2 -0
  49. data/rails_2_test/app/helpers/admin/file_column_images_helper.rb +2 -0
  50. data/rails_2_test/app/helpers/admin/images2_helper.rb +8 -0
  51. data/rails_2_test/app/helpers/admin/images_helper.rb +2 -0
  52. data/rails_2_test/app/helpers/admin/misconfigured1_helper.rb +2 -0
  53. data/rails_2_test/app/helpers/admin/not_migrated_yets_helper.rb +2 -0
  54. data/rails_2_test/app/helpers/admin/product_categories2_helper.rb +2 -0
  55. data/rails_2_test/app/helpers/admin/product_categories_helper.rb +2 -0
  56. data/rails_2_test/app/helpers/admin/products2_helper.rb +3 -0
  57. data/rails_2_test/app/helpers/admin/products_helper.rb +6 -0
  58. data/rails_2_test/app/helpers/admin/television_airings_helper.rb +2 -0
  59. data/rails_2_test/app/helpers/admin/television_time_slots_helper.rb +2 -0
  60. data/rails_2_test/app/helpers/admin/users2_helper.rb +2 -0
  61. data/rails_2_test/app/helpers/admin/users_helper.rb +25 -0
  62. data/rails_2_test/app/helpers/application_helper.rb +3 -0
  63. data/rails_2_test/app/helpers/blog_posts_helper.rb +2 -0
  64. data/rails_2_test/app/models/appointment.rb +5 -0
  65. data/rails_2_test/app/models/blog_post.rb +14 -0
  66. data/rails_2_test/app/models/blog_post_tag.rb +6 -0
  67. data/rails_2_test/app/models/bookmark.rb +6 -0
  68. data/rails_2_test/app/models/comment.rb +4 -0
  69. data/rails_2_test/app/models/file_column_image.rb +3 -0
  70. data/rails_2_test/app/models/image.rb +3 -0
  71. data/rails_2_test/app/models/not_migrated_yet.rb +2 -0
  72. data/rails_2_test/app/models/product.rb +7 -0
  73. data/rails_2_test/app/models/product_category.rb +9 -0
  74. data/rails_2_test/app/models/tag.rb +4 -0
  75. data/rails_2_test/app/models/television_airing.rb +3 -0
  76. data/rails_2_test/app/models/television_time_slot.rb +11 -0
  77. data/rails_2_test/app/models/user.rb +14 -0
  78. data/rails_2_test/app/views/admin/appointments/_subject_input.html.erb +2 -0
  79. data/rails_2_test/app/views/admin/appointments2/_time_input.html.erb +31 -0
  80. data/rails_2_test/app/views/admin/blog_posts2/_after_form.html.erb +5 -0
  81. data/rails_2_test/app/views/admin/blog_posts2/_after_index.html.erb +1 -0
  82. data/rails_2_test/app/views/admin/blog_posts2/_after_tags_input.html.erb +16 -0
  83. data/rails_2_test/app/views/admin/blog_posts2/_before_index.html.erb +2 -0
  84. data/rails_2_test/app/views/admin/blog_posts5/_after_index_header.html.erb +8 -0
  85. data/rails_2_test/app/views/admin/blog_posts_read_only/_body_for_show.html.erb +1 -0
  86. data/rails_2_test/app/views/admin/products/_name_input.html.erb +2 -0
  87. data/rails_2_test/app/views/admin/products/_percent_off_input.html.erb +2 -0
  88. data/rails_2_test/app/views/admin/products/_price_input.html.erb +10 -0
  89. data/rails_2_test/app/views/blog_posts/show.html.erb +13 -0
  90. data/rails_2_test/app/views/layouts/admin.html.erb +31 -0
  91. data/rails_2_test/config/boot.rb +109 -0
  92. data/rails_2_test/config/database.yml +28 -0
  93. data/rails_2_test/config/environment.rb +78 -0
  94. data/rails_2_test/config/environments/development.rb +17 -0
  95. data/rails_2_test/config/environments/production.rb +24 -0
  96. data/rails_2_test/config/environments/test.rb +24 -0
  97. data/rails_2_test/config/initializers/inflections.rb +10 -0
  98. data/rails_2_test/config/initializers/mime_types.rb +5 -0
  99. data/rails_2_test/config/initializers/new_rails_defaults.rb +17 -0
  100. data/rails_2_test/config/locales/en.yml +5 -0
  101. data/rails_2_test/config/routes.rb +43 -0
  102. data/rails_2_test/db/migrate/20090213215514_create_blog_posts.rb +12 -0
  103. data/rails_2_test/db/migrate/20090217225542_add_body_to_blog_posts.rb +9 -0
  104. data/rails_2_test/db/migrate/20090221220917_create_tags.rb +13 -0
  105. data/rails_2_test/db/migrate/20090221220947_create_blog_post_tags.rb +14 -0
  106. data/rails_2_test/db/migrate/20090222162204_add_textile_to_blog_posts.rb +9 -0
  107. data/rails_2_test/db/migrate/20090222163231_add_published_at_to_blog_posts.rb +9 -0
  108. data/rails_2_test/db/migrate/20090301191722_create_images.rb +16 -0
  109. data/rails_2_test/db/migrate/20090305165345_create_accounts.rb +14 -0
  110. data/rails_2_test/db/migrate/20090307225027_rename_accounts_to_users.rb +9 -0
  111. data/rails_2_test/db/migrate/20090307225750_add_user_id_to_blog_posts.rb +9 -0
  112. data/rails_2_test/db/migrate/20090309185114_change_blog_posts_textile.rb +9 -0
  113. data/rails_2_test/db/migrate/20090309193635_create_products.rb +14 -0
  114. data/rails_2_test/db/migrate/20090309203056_create_comments.rb +15 -0
  115. data/rails_2_test/db/migrate/20090323005947_create_file_column_images.rb +12 -0
  116. data/rails_2_test/db/migrate/20090326160049_add_birthday_to_users.rb +9 -0
  117. data/rails_2_test/db/migrate/20090326223606_add_state_to_users.rb +9 -0
  118. data/rails_2_test/db/migrate/20090503134004_add_file_column_image_to_products.rb +9 -0
  119. data/rails_2_test/db/migrate/20090617173651_create_bookmarks.rb +15 -0
  120. data/rails_2_test/db/migrate/20090624165355_add_tags_string_to_blog_post.rb +9 -0
  121. data/rails_2_test/db/migrate/20090625144313_add_avatar_fields_to_user.rb +11 -0
  122. data/rails_2_test/db/migrate/20090629202956_add_merged_into_to_blog_posts.rb +9 -0
  123. data/rails_2_test/db/migrate/20090701171857_add_force_textile_to_users.rb +9 -0
  124. data/rails_2_test/db/migrate/20090704163647_add_deleted_at_to_products.rb +9 -0
  125. data/rails_2_test/db/migrate/20090704173800_add_sale_fields_to_products.rb +13 -0
  126. data/rails_2_test/db/migrate/20090714024501_create_product_categories.rb +15 -0
  127. data/rails_2_test/db/migrate/20090819162835_add_admin_level_to_users.rb +9 -0
  128. data/rails_2_test/db/migrate/20091115134559_add_first_and_last_names_to_users.rb +11 -0
  129. data/rails_2_test/db/migrate/20091221011256_add_position_to_product_categories.rb +9 -0
  130. data/rails_2_test/db/migrate/20091222160814_create_appointments.rb +14 -0
  131. data/rails_2_test/db/migrate/20091227224547_add_user_id_to_appointments.rb +9 -0
  132. data/rails_2_test/db/migrate/20100214213359_create_television_time_slots.rb +13 -0
  133. data/rails_2_test/db/migrate/20100214213451_create_television_airings.rb +15 -0
  134. data/rails_2_test/doc/README_FOR_APP +5 -0
  135. data/rails_2_test/lib/tasks/rspec.rake +163 -0
  136. data/rails_2_test/public/404.html +30 -0
  137. data/rails_2_test/public/422.html +30 -0
  138. data/rails_2_test/public/500.html +33 -0
  139. data/rails_2_test/public/dispatch.cgi +10 -0
  140. data/rails_2_test/public/dispatch.fcgi +24 -0
  141. data/rails_2_test/public/dispatch.rb +10 -0
  142. data/rails_2_test/public/favicon.ico +0 -0
  143. data/rails_2_test/public/images/rails.png +0 -0
  144. data/rails_2_test/public/index.html +274 -0
  145. data/rails_2_test/public/javascripts/application.js +2 -0
  146. data/rails_2_test/public/javascripts/jquery-1.4.4.min.js +167 -0
  147. data/rails_2_test/public/robots.txt +5 -0
  148. data/rails_2_test/public/stylesheets/admin.css +3 -0
  149. data/rails_2_test/public/stylesheets/scaffold.css +54 -0
  150. data/rails_2_test/script/about +4 -0
  151. data/rails_2_test/script/autospec +5 -0
  152. data/rails_2_test/script/console +3 -0
  153. data/rails_2_test/script/dbconsole +3 -0
  154. data/rails_2_test/script/destroy +3 -0
  155. data/rails_2_test/script/generate +3 -0
  156. data/rails_2_test/script/performance/benchmarker +3 -0
  157. data/rails_2_test/script/performance/profiler +3 -0
  158. data/rails_2_test/script/performance/request +3 -0
  159. data/rails_2_test/script/plugin +3 -0
  160. data/rails_2_test/script/populate_tables.rb +49 -0
  161. data/rails_2_test/script/process/inspector +3 -0
  162. data/rails_2_test/script/process/reaper +3 -0
  163. data/rails_2_test/script/process/spawner +3 -0
  164. data/rails_2_test/script/runner +3 -0
  165. data/rails_2_test/script/server +3 -0
  166. data/rails_2_test/script/spec +5 -0
  167. data/rails_2_test/script/spec_server +125 -0
  168. data/rails_2_test/test/data/ruby_throated.jpg +0 -0
  169. data/rails_2_test/test/data/tweenbot.jpg +0 -0
  170. data/rails_2_test/test/fixtures/file_column_images.yml +7 -0
  171. data/rails_2_test/test/integration/admin/appointments2_integration_test.rb +79 -0
  172. data/rails_2_test/test/integration/admin/appointments_integration_test.rb +367 -0
  173. data/rails_2_test/test/integration/admin/blog_posts2_integration_test.rb +806 -0
  174. data/rails_2_test/test/integration/admin/blog_posts3_integration_test.rb +418 -0
  175. data/rails_2_test/test/integration/admin/blog_posts4_integration_test.rb +189 -0
  176. data/rails_2_test/test/integration/admin/blog_posts5_integration_test.rb +75 -0
  177. data/rails_2_test/test/integration/admin/blog_posts6_integration_test.rb +39 -0
  178. data/rails_2_test/test/integration/admin/blog_posts_custom_new_and_edit_integration_test.rb +89 -0
  179. data/rails_2_test/test/integration/admin/blog_posts_integration_test.rb +788 -0
  180. data/rails_2_test/test/integration/admin/blog_posts_read_only_integration_test.rb +69 -0
  181. data/rails_2_test/test/integration/admin/bookmarks_integration_test.rb +445 -0
  182. data/rails_2_test/test/integration/admin/comments2_integration_test.rb +52 -0
  183. data/rails_2_test/test/integration/admin/comments_integration_test.rb +50 -0
  184. data/rails_2_test/test/integration/admin/file_column_images2_integration_test.rb +19 -0
  185. data/rails_2_test/test/integration/admin/file_column_images_integration_test.rb +69 -0
  186. data/rails_2_test/test/integration/admin/images2_integration_test.rb +33 -0
  187. data/rails_2_test/test/integration/admin/images_integration_test.rb +79 -0
  188. data/rails_2_test/test/integration/admin/misconfigured1_integration_test.rb +17 -0
  189. data/rails_2_test/test/integration/admin/product_categories2_integration_test.rb +179 -0
  190. data/rails_2_test/test/integration/admin/product_categories_integration_test.rb +12 -0
  191. data/rails_2_test/test/integration/admin/products2_integration_test.rb +155 -0
  192. data/rails_2_test/test/integration/admin/products_integration_test.rb +210 -0
  193. data/rails_2_test/test/integration/admin/television_airings_integration_test.rb +25 -0
  194. data/rails_2_test/test/integration/admin/users2_integration_test.rb +48 -0
  195. data/rails_2_test/test/integration/admin/users_integration_test.rb +266 -0
  196. data/rails_2_test/test/integration/blog_posts_integration_test.rb +9 -0
  197. data/rails_2_test/test/test_helper.rb +114 -0
  198. data/rails_2_test/vendor/plugins/file_column/CHANGELOG +69 -0
  199. data/rails_2_test/vendor/plugins/file_column/README +54 -0
  200. data/rails_2_test/vendor/plugins/file_column/Rakefile +36 -0
  201. data/rails_2_test/vendor/plugins/file_column/TODO +6 -0
  202. data/rails_2_test/vendor/plugins/file_column/init.rb +13 -0
  203. data/rails_2_test/vendor/plugins/file_column/lib/file_column.rb +723 -0
  204. data/rails_2_test/vendor/plugins/file_column/lib/file_column_helper.rb +150 -0
  205. data/rails_2_test/vendor/plugins/file_column/lib/file_compat.rb +28 -0
  206. data/rails_2_test/vendor/plugins/file_column/lib/magick_file_column.rb +260 -0
  207. data/rails_2_test/vendor/plugins/file_column/lib/rails_file_column.rb +19 -0
  208. data/rails_2_test/vendor/plugins/file_column/lib/test_case.rb +124 -0
  209. data/rails_2_test/vendor/plugins/file_column/lib/validations.rb +112 -0
  210. data/rails_2_test/vendor/plugins/file_column/test/abstract_unit.rb +63 -0
  211. data/rails_2_test/vendor/plugins/file_column/test/connection.rb +17 -0
  212. data/rails_2_test/vendor/plugins/file_column/test/file_column_helper_test.rb +97 -0
  213. data/rails_2_test/vendor/plugins/file_column/test/file_column_test.rb +650 -0
  214. data/rails_2_test/vendor/plugins/file_column/test/fixtures/entry.rb +32 -0
  215. data/rails_2_test/vendor/plugins/file_column/test/fixtures/invalid-image.jpg +1 -0
  216. data/rails_2_test/vendor/plugins/file_column/test/fixtures/kerb.jpg +0 -0
  217. data/rails_2_test/vendor/plugins/file_column/test/fixtures/mysql.sql +25 -0
  218. data/rails_2_test/vendor/plugins/file_column/test/fixtures/schema.rb +10 -0
  219. data/rails_2_test/vendor/plugins/file_column/test/fixtures/skanthak.png +0 -0
  220. data/rails_2_test/vendor/plugins/file_column/test/magick_test.rb +380 -0
  221. data/rails_2_test/vendor/plugins/file_column/test/magick_view_only_test.rb +21 -0
  222. data/rails_3_test/.gitignore +4 -0
  223. data/rails_3_test/Gemfile +12 -0
  224. data/rails_3_test/Gemfile.lock +100 -0
  225. data/rails_3_test/README +256 -0
  226. data/rails_3_test/Rakefile +7 -0
  227. data/rails_3_test/app/controllers/admin/appointments2_controller.rb +15 -0
  228. data/rails_3_test/app/controllers/admin/appointments_controller.rb +11 -0
  229. data/rails_3_test/app/controllers/admin/blog_posts2_controller.rb +138 -0
  230. data/rails_3_test/app/controllers/admin/blog_posts3_controller.rb +76 -0
  231. data/rails_3_test/app/controllers/admin/blog_posts4_controller.rb +21 -0
  232. data/rails_3_test/app/controllers/admin/blog_posts5_controller.rb +27 -0
  233. data/rails_3_test/app/controllers/admin/blog_posts6_controller.rb +10 -0
  234. data/rails_3_test/app/controllers/admin/blog_posts_controller.rb +9 -0
  235. data/rails_3_test/app/controllers/admin/blog_posts_custom_new_and_edit_controller.rb +15 -0
  236. data/rails_3_test/app/controllers/admin/blog_posts_read_only_controller.rb +19 -0
  237. data/rails_3_test/app/controllers/admin/bookmarks_controller.rb +11 -0
  238. data/rails_3_test/app/controllers/admin/comments2_controller.rb +14 -0
  239. data/rails_3_test/app/controllers/admin/comments_controller.rb +12 -0
  240. data/rails_3_test/app/controllers/admin/images2_controller.rb +11 -0
  241. data/rails_3_test/app/controllers/admin/images_controller.rb +6 -0
  242. data/rails_3_test/app/controllers/admin/misconfigured1_controller.rb +7 -0
  243. data/rails_3_test/app/controllers/admin/not_migrated_yets_controller.rb +9 -0
  244. data/rails_3_test/app/controllers/admin/product_categories2_controller.rb +7 -0
  245. data/rails_3_test/app/controllers/admin/product_categories_controller.rb +5 -0
  246. data/rails_3_test/app/controllers/admin/television_airings_controller.rb +5 -0
  247. data/rails_3_test/app/controllers/admin/television_time_slots_controller.rb +5 -0
  248. data/rails_3_test/app/controllers/admin/users2_controller.rb +10 -0
  249. data/rails_3_test/app/controllers/admin/users_controller.rb +48 -0
  250. data/rails_3_test/app/controllers/application_controller.rb +7 -0
  251. data/rails_3_test/app/controllers/blog_posts_controller.rb +5 -0
  252. data/rails_3_test/app/helpers/admin/appointments_helper.rb +2 -0
  253. data/rails_3_test/app/helpers/admin/blog_posts2_helper.rb +27 -0
  254. data/rails_3_test/app/helpers/admin/blog_posts3_helper.rb +2 -0
  255. data/rails_3_test/app/helpers/admin/blog_posts4_helper.rb +2 -0
  256. data/rails_3_test/app/helpers/admin/blog_posts6_helper.rb +13 -0
  257. data/rails_3_test/app/helpers/admin/blog_posts_custom_new_and_edit_helper.rb +29 -0
  258. data/rails_3_test/app/helpers/admin/blog_posts_helper.rb +2 -0
  259. data/rails_3_test/app/helpers/admin/blog_posts_read_only_helper.rb +2 -0
  260. data/rails_3_test/app/helpers/admin/bookmarks_helper.rb +2 -0
  261. data/rails_3_test/app/helpers/admin/comments2_helper.rb +2 -0
  262. data/rails_3_test/app/helpers/admin/comments_helper.rb +2 -0
  263. data/rails_3_test/app/helpers/admin/images2_helper.rb +8 -0
  264. data/rails_3_test/app/helpers/admin/images_helper.rb +2 -0
  265. data/rails_3_test/app/helpers/admin/misconfigured1_helper.rb +2 -0
  266. data/rails_3_test/app/helpers/admin/not_migrated_yets_helper.rb +2 -0
  267. data/rails_3_test/app/helpers/admin/product_categories2_helper.rb +2 -0
  268. data/rails_3_test/app/helpers/admin/product_categories_helper.rb +2 -0
  269. data/rails_3_test/app/helpers/admin/television_airings_helper.rb +2 -0
  270. data/rails_3_test/app/helpers/admin/television_time_slots_helper.rb +2 -0
  271. data/rails_3_test/app/helpers/admin/users2_helper.rb +2 -0
  272. data/rails_3_test/app/helpers/admin/users_helper.rb +13 -0
  273. data/rails_3_test/app/helpers/application_helper.rb +2 -0
  274. data/rails_3_test/app/models/appointment.rb +5 -0
  275. data/rails_3_test/app/models/blog_post.rb +14 -0
  276. data/rails_3_test/app/models/blog_post_tag.rb +6 -0
  277. data/rails_3_test/app/models/bookmark.rb +6 -0
  278. data/rails_3_test/app/models/comment.rb +4 -0
  279. data/rails_3_test/app/models/image.rb +3 -0
  280. data/rails_3_test/app/models/not_migrated_yet.rb +2 -0
  281. data/rails_3_test/app/models/product.rb +5 -0
  282. data/rails_3_test/app/models/product_category.rb +9 -0
  283. data/rails_3_test/app/models/tag.rb +4 -0
  284. data/rails_3_test/app/models/television_airing.rb +3 -0
  285. data/rails_3_test/app/models/television_time_slot.rb +11 -0
  286. data/rails_3_test/app/models/user.rb +11 -0
  287. data/rails_3_test/app/views/admin/appointments/_subject_input.html.erb +2 -0
  288. data/rails_3_test/app/views/admin/appointments2/_time_input.html.erb +31 -0
  289. data/rails_3_test/app/views/admin/blog_posts2/_after_form.html.erb +5 -0
  290. data/rails_3_test/app/views/admin/blog_posts2/_after_index.html.erb +1 -0
  291. data/rails_3_test/app/views/admin/blog_posts2/_after_tags_input.html.erb +16 -0
  292. data/rails_3_test/app/views/admin/blog_posts2/_before_index.html.erb +2 -0
  293. data/rails_3_test/app/views/admin/blog_posts5/_after_index_header.html.erb +8 -0
  294. data/rails_3_test/app/views/admin/blog_posts_read_only/_body_for_show.html.erb +1 -0
  295. data/rails_3_test/app/views/layouts/admin.html.erb +32 -0
  296. data/rails_3_test/app/views/layouts/application.html.erb +14 -0
  297. data/rails_3_test/config/application.rb +42 -0
  298. data/rails_3_test/config/boot.rb +6 -0
  299. data/rails_3_test/config/database.yml +22 -0
  300. data/rails_3_test/config/environment.rb +5 -0
  301. data/rails_3_test/config/environments/development.rb +26 -0
  302. data/rails_3_test/config/environments/production.rb +49 -0
  303. data/rails_3_test/config/environments/test.rb +35 -0
  304. data/rails_3_test/config/initializers/backtrace_silencers.rb +7 -0
  305. data/rails_3_test/config/initializers/inflections.rb +10 -0
  306. data/rails_3_test/config/initializers/mime_types.rb +5 -0
  307. data/rails_3_test/config/initializers/secret_token.rb +7 -0
  308. data/rails_3_test/config/initializers/session_store.rb +8 -0
  309. data/rails_3_test/config/locales/en.yml +5 -0
  310. data/rails_3_test/config/routes.rb +63 -0
  311. data/rails_3_test/config.ru +4 -0
  312. data/rails_3_test/db/migrate/20090213215514_create_blog_posts.rb +12 -0
  313. data/rails_3_test/db/migrate/20090217225542_add_body_to_blog_posts.rb +9 -0
  314. data/rails_3_test/db/migrate/20090221220917_create_tags.rb +13 -0
  315. data/rails_3_test/db/migrate/20090221220947_create_blog_post_tags.rb +14 -0
  316. data/rails_3_test/db/migrate/20090222162204_add_textile_to_blog_posts.rb +9 -0
  317. data/rails_3_test/db/migrate/20090222163231_add_published_at_to_blog_posts.rb +9 -0
  318. data/rails_3_test/db/migrate/20090301191722_create_images.rb +16 -0
  319. data/rails_3_test/db/migrate/20090305165345_create_accounts.rb +14 -0
  320. data/rails_3_test/db/migrate/20090307225027_rename_accounts_to_users.rb +9 -0
  321. data/rails_3_test/db/migrate/20090307225750_add_user_id_to_blog_posts.rb +9 -0
  322. data/rails_3_test/db/migrate/20090309185114_change_blog_posts_textile.rb +9 -0
  323. data/rails_3_test/db/migrate/20090309193635_create_products.rb +14 -0
  324. data/rails_3_test/db/migrate/20090309203056_create_comments.rb +15 -0
  325. data/rails_3_test/db/migrate/20090323005947_create_file_column_images.rb +12 -0
  326. data/rails_3_test/db/migrate/20090326160049_add_birthday_to_users.rb +9 -0
  327. data/rails_3_test/db/migrate/20090326223606_add_state_to_users.rb +9 -0
  328. data/rails_3_test/db/migrate/20090503134004_add_file_column_image_to_products.rb +9 -0
  329. data/rails_3_test/db/migrate/20090617173651_create_bookmarks.rb +15 -0
  330. data/rails_3_test/db/migrate/20090624165355_add_tags_string_to_blog_post.rb +9 -0
  331. data/rails_3_test/db/migrate/20090625144313_add_avatar_fields_to_user.rb +11 -0
  332. data/rails_3_test/db/migrate/20090629202956_add_merged_into_to_blog_posts.rb +9 -0
  333. data/rails_3_test/db/migrate/20090701171857_add_force_textile_to_users.rb +9 -0
  334. data/rails_3_test/db/migrate/20090704163647_add_deleted_at_to_products.rb +9 -0
  335. data/rails_3_test/db/migrate/20090704173800_add_sale_fields_to_products.rb +13 -0
  336. data/rails_3_test/db/migrate/20090714024501_create_product_categories.rb +15 -0
  337. data/rails_3_test/db/migrate/20090819162835_add_admin_level_to_users.rb +9 -0
  338. data/rails_3_test/db/migrate/20091115134559_add_first_and_last_names_to_users.rb +11 -0
  339. data/rails_3_test/db/migrate/20091221011256_add_position_to_product_categories.rb +9 -0
  340. data/rails_3_test/db/migrate/20091222160814_create_appointments.rb +14 -0
  341. data/rails_3_test/db/migrate/20091227224547_add_user_id_to_appointments.rb +9 -0
  342. data/rails_3_test/db/migrate/20100214213359_create_television_time_slots.rb +13 -0
  343. data/rails_3_test/db/migrate/20100214213451_create_television_airings.rb +15 -0
  344. data/rails_3_test/db/migrate/20110426215702_remove_avatar_fields_from_users.rb +11 -0
  345. data/rails_3_test/db/seeds.rb +7 -0
  346. data/rails_3_test/doc/README_FOR_APP +2 -0
  347. data/rails_3_test/lib/tasks/.gitkeep +0 -0
  348. data/rails_3_test/public/404.html +26 -0
  349. data/rails_3_test/public/422.html +26 -0
  350. data/rails_3_test/public/500.html +26 -0
  351. data/rails_3_test/public/favicon.ico +0 -0
  352. data/rails_3_test/public/images/rails.png +0 -0
  353. data/rails_3_test/public/index.html +239 -0
  354. data/rails_3_test/public/javascripts/application.js +2 -0
  355. data/rails_3_test/public/javascripts/jquery-1.4.4.min.js +167 -0
  356. data/rails_3_test/public/javascripts/rails.js +191 -0
  357. data/rails_3_test/public/robots.txt +5 -0
  358. data/rails_3_test/public/stylesheets/.gitkeep +0 -0
  359. data/rails_3_test/public/stylesheets/admin.css +3 -0
  360. data/rails_3_test/public/stylesheets/scaffold.css +54 -0
  361. data/rails_3_test/script/rails +6 -0
  362. data/rails_3_test/test/data/ruby_throated.jpg +0 -0
  363. data/rails_3_test/test/data/tweenbot.jpg +0 -0
  364. data/rails_3_test/test/fixtures/placeholder.txt +0 -0
  365. data/rails_3_test/test/integration/admin/appointments2_integration_test.rb +79 -0
  366. data/rails_3_test/test/integration/admin/appointments_integration_test.rb +367 -0
  367. data/rails_3_test/test/integration/admin/blog_posts2_integration_test.rb +789 -0
  368. data/rails_3_test/test/integration/admin/blog_posts3_integration_test.rb +418 -0
  369. data/rails_3_test/test/integration/admin/blog_posts4_integration_test.rb +189 -0
  370. data/rails_3_test/test/integration/admin/blog_posts5_integration_test.rb +75 -0
  371. data/rails_3_test/test/integration/admin/blog_posts6_integration_test.rb +39 -0
  372. data/rails_3_test/test/integration/admin/blog_posts_custom_new_and_edit_integration_test.rb +89 -0
  373. data/rails_3_test/test/integration/admin/blog_posts_integration_test.rb +784 -0
  374. data/rails_3_test/test/integration/admin/blog_posts_read_only_integration_test.rb +69 -0
  375. data/rails_3_test/test/integration/admin/bookmarks_integration_test.rb +445 -0
  376. data/rails_3_test/test/integration/admin/comments2_integration_test.rb +52 -0
  377. data/rails_3_test/test/integration/admin/comments_integration_test.rb +50 -0
  378. data/rails_3_test/test/integration/admin/images2_integration_test.rb +33 -0
  379. data/rails_3_test/test/integration/admin/images_integration_test.rb +79 -0
  380. data/rails_3_test/test/integration/admin/misconfigured1_integration_test.rb +21 -0
  381. data/rails_3_test/test/integration/admin/product_categories2_integration_test.rb +179 -0
  382. data/rails_3_test/test/integration/admin/product_categories_integration_test.rb +12 -0
  383. data/rails_3_test/test/integration/admin/television_airings_integration_test.rb +25 -0
  384. data/rails_3_test/test/integration/admin/users2_integration_test.rb +48 -0
  385. data/rails_3_test/test/integration/admin/users_integration_test.rb +182 -0
  386. data/rails_3_test/test/integration/blog_posts_integration_test.rb +10 -0
  387. data/rails_3_test/test/performance/browsing_test.rb +9 -0
  388. data/rails_3_test/test/test_helper.rb +98 -0
  389. data/rails_3_test/vendor/plugins/.gitkeep +0 -0
  390. data/website/_layouts/api.html +20 -17
  391. data/website/_layouts/api1.html +42 -0
  392. data/website/_layouts/default.html +42 -18
  393. data/website/api/core.markdown +6 -3
  394. data/website/api/destroy.markdown +4 -2
  395. data/website/api/form.markdown +6 -5
  396. data/website/api/idx.markdown +8 -7
  397. data/website/api/index.markdown +9 -7
  398. data/website/api/search.markdown +5 -3
  399. data/website/api/show.markdown +4 -2
  400. data/website/community.markdown +3 -2
  401. data/website/css/main.css +83 -17
  402. data/website/design_principles.markdown +3 -8
  403. data/website/index.markdown +13 -9
  404. data/website/js/lightbox.js +2 -2
  405. data/website/quick_start.markdown +10 -10
  406. data/website/screenshots.markdown +11 -11
  407. data/website/tutorial.markdown +23 -14
  408. data/website/v1/api/core.markdown +108 -0
  409. data/website/v1/api/destroy.markdown +27 -0
  410. data/website/v1/api/form.markdown +293 -0
  411. data/website/v1/api/idx.markdown +288 -0
  412. data/website/v1/api/index.markdown +149 -0
  413. data/website/v1/api/search.markdown +110 -0
  414. data/website/v1/api/show.markdown +24 -0
  415. data/website/v1/index.markdown +10 -0
  416. data/website/v1/quick_start.markdown +48 -0
  417. data/website/v1/tutorial.markdown +60 -0
  418. metadata +407 -9
@@ -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="../css/main.css" type="text/css" media="screen">
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="../">admin_assistant</a></h1>
14
+ <h1><a href="/admin_assistant/">admin_assistant</a></h1>
11
15
  <div class="nav">
12
- <a href="../screenshots.html">Screenshots</a> |
13
- <a href="../quick_start.html">Quick start</a> |
14
- <a href="../tutorial.html">Tutorial</a> |
15
- <a href="../api/">API&nbsp;reference</a> |
16
- <a href="../community.html">Community</a> |
17
- <a href="../design_principles.html">Design&nbsp;principles</a> |
18
- <a href="http://groups.google.com/group/admin_assistant">Mailing&nbsp;list</a> |
19
- <a href="http://github.com/fhwang/admin_assistant">Github&nbsp;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&nbsp;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="../api/">API</a>
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="../api/core.html">Core</a> |
29
- <a href="../api/destroy.html">Destroy</a> |
30
- <a href="../api/form.html">Form</a> |
31
- <a href="../api/idx.html">Index</a> |
32
- <a href="../api/search.html">Search</a> |
33
- <a href="../api/show.html">Show</a>
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&nbsp;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="./css/main.css" type="text/css" media="screen">
6
-
7
- <script type="text/javascript" src="./js/prototype.js"></script>
8
- <script type="text/javascript" src="./js/scriptaculous.js?load=effects,builder"></script>
9
- <script type="text/javascript" src="./js/lightbox.js"></script>
10
- <link rel="stylesheet" href="./css/lightbox.css" type="text/css" media="screen" />
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="./">admin_assistant</a></h1>
14
+ <h1><a href="/admin_assistant/">admin_assistant</a></h1>
16
15
  <div class="nav">
17
- <a href="./screenshots.html">Screenshots</a> |
18
- <a href="./quick_start.html">Quick start</a> |
19
- <a href="./tutorial.html">Tutorial</a> |
20
- <a href="./api/">API&nbsp;reference</a> |
21
- <a href="./community.html">Community</a> |
22
- <a href="./design_principles.html">Design&nbsp;principles</a> |
23
- <a href="http://groups.google.com/group/admin_assistant">Mailing&nbsp;list</a> |
24
- <a href="http://github.com/fhwang/admin_assistant">Github&nbsp;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&nbsp;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.title != '' %}
29
- <h2>{{ page.title }}</h2>
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>
@@ -1,8 +1,11 @@
1
1
  ---
2
- layout: api
3
- title: Core
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"></a>
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:
@@ -1,6 +1,8 @@
1
1
  ---
2
- layout: api
3
- title: Destroy
2
+ layout: default
3
+ title: "API: Destroy"
4
+ subnav: api
5
+ subtitle: Destroy
4
6
  ---
5
7
 
6
8
  Note that the `destroy` action is turned off by default. To turn it on, use the core [actions](./core.html#builder_actions) method.
@@ -1,9 +1,11 @@
1
1
  ---
2
- layout: api
3
- title: Form
2
+ layout: default
3
+ title: "API: Form"
4
+ subnav: api
5
+ subtitle: Form
4
6
  ---
5
7
 
6
- ![form](../img/user-form.png)
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] and [FileColumn] image files are rendered at full-size in the form. To restrict their size, pass a size string to `image_size`.
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
 
@@ -1,6 +1,8 @@
1
1
  ---
2
- layout: api
3
- title: Index
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"></a>
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] and [FileColumn] image files are rendered at full-size in the index. To restrict their size, pass a size string to `image_size`.
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"></a>
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
 
@@ -1,17 +1,19 @@
1
1
  ---
2
- layout: api
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](./core.html): Settings that apply to an admin controller in general.
10
- * [Destroy](./destroy.html): Settings that apply to destroying records. Note that `destroy` is turned off by default. To turn it on, use the core [actions](./core.html#builder_actions) method.
11
- * [Form](./form.html): Settings that apply to creating or updating records.
12
- * [Index](./idx.html): Settings that apply to the index view, which you use to view records, paginate, and sort.
13
- * [Search](./search.html): Settings that apply to how searches work.
14
- * [Show](./show.html): Settings that apply to how the show view.
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
@@ -1,6 +1,8 @@
1
1
  ---
2
- layout: api
3
- title: Search
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"></a>
37
+ <a name="builder_columns"> </a>
36
38
 
37
39
  search.columns :title, :user
38
40
 
@@ -1,6 +1,8 @@
1
1
  ---
2
- layout: api
3
- title: Show
2
+ layout: default
3
+ title: "API: Show"
4
+ subnav: api
5
+ subtitle: Show
4
6
  ---
5
7
 
6
8
  Show configuration affects what is displayed in a show page, e.g. `/admin/blog_posts/show/5`.
@@ -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"></a>
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
- * [weplay.com](http://www.weplay.com) by [Weplay](http://www.weplay.com/)
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
- font-family: Verdana, "Bitstream Vera Sans", sans-serif;
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 a, h1 a:visited {
13
- text-decoration: none;
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: #ffc
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: black;
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: #ff3;
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 in the `test_rails_app` directory. This app serves as the reference implementation of admin\_assistant, so new features can be added with minimal worry of breaking old features.
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 something out of `vendor/plugins/admin_assistant`, that's a design flaw.
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 decision to allow a way to erase production data should be taken seriously.
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.
@@ -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 either [Paperclip](http://thoughtbot.com/projects/paperclip) or [FileColumn](http://www.kanthak.net/opensource/file_column/).
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](./screenshots.html), [who's using admin\_assistant](./community.html#whos_using), or our [design principles](./design_principles.html).
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](./getting_started.html) is easy.
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/
@@ -46,8 +46,8 @@
46
46
  // Configurationl
47
47
  //
48
48
  LightboxOptions = Object.extend({
49
- fileLoadingImage: './img/lightbox/loading.gif',
50
- fileBottomNavCloseImage: './img/lightbox/closelabel.gif',
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